The dataset that I am studying is a dataset that consist of 10,000 movies. I will be trying to find any correlation with some of the variables that were given in this dataset to see if I can make any significant conclusions regarding the movies and its variables.
Loading in the dataset I learned to differentiate the release dates by its years, months, and days of movies using library(lubridate) and now have created more variables to look into. The variables that are included in this dataset are the titles of the movies, the dates that were released, vote average(ratings of the movies), vote counts, original language, and popularity.
library(tidyverse)
## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
## ✔ dplyr 1.1.0 ✔ readr 2.1.4
## ✔ forcats 1.0.0 ✔ stringr 1.5.0
## ✔ ggplot2 3.4.1 ✔ tibble 3.1.8
## ✔ lubridate 1.9.2 ✔ tidyr 1.3.0
## ✔ purrr 1.0.1
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag() masks stats::lag()
## ℹ Use the ]8;;http://conflicted.r-lib.org/conflicted package]8;; to force all conflicts to become errors
library(dplyr)
library(ggplot2)
setwd("C:/Users/andre/Downloads/")
read.csv("movies-tmdb-10000.csv")
## X
## 1 0
## 2 1
## 3 2
## 4 3
## 5 4
## 6 5
## 7 6
## 8 7
## 9 8
## 10 9
## 11 10
## 12 11
## 13 12
## 14 13
## 15 14
## 16 15
## 17 16
## 18 17
## 19 18
## 20 19
## 21 20
## 22 21
## 23 22
## 24 23
## 25 24
## 26 25
## 27 26
## 28 27
## 29 28
## 30 29
## 31 30
## 32 31
## 33 32
## 34 33
## 35 34
## 36 35
## 37 36
## 38 37
## 39 38
## 40 39
## 41 40
## 42 41
## 43 42
## 44 43
## 45 44
## 46 45
## 47 46
## 48 47
## 49 48
## 50 49
## 51 50
## 52 51
## 53 52
## 54 53
## 55 54
## 56 55
## 57 56
## 58 57
## 59 58
## 60 59
## 61 60
## 62 61
## 63 62
## 64 63
## 65 64
## 66 65
## 67 66
## 68 67
## 69 68
## 70 69
## 71 70
## 72 71
## 73 72
## 74 73
## 75 74
## 76 75
## 77 76
## 78 77
## 79 78
## 80 79
## 81 80
## 82 81
## 83 82
## 84 83
## 85 84
## 86 85
## 87 86
## 88 87
## 89 88
## 90 89
## 91 90
## 92 91
## 93 92
## 94 93
## 95 94
## 96 95
## 97 96
## 98 97
## 99 98
## 100 99
## 101 100
## 102 101
## 103 102
## 104 103
## 105 104
## 106 105
## 107 106
## 108 107
## 109 108
## 110 109
## 111 110
## 112 111
## 113 112
## 114 113
## 115 114
## 116 115
## 117 116
## 118 117
## 119 118
## 120 119
## 121 120
## 122 121
## 123 122
## 124 123
## 125 124
## 126 125
## 127 126
## 128 127
## 129 128
## 130 129
## 131 130
## 132 131
## 133 132
## 134 133
## 135 134
## 136 135
## 137 136
## 138 137
## 139 138
## 140 139
## 141 140
## 142 141
## 143 142
## 144 143
## 145 144
## 146 145
## 147 146
## 148 147
## 149 148
## 150 149
## 151 150
## 152 151
## 153 152
## 154 153
## 155 154
## 156 155
## 157 156
## 158 157
## 159 158
## 160 159
## 161 160
## 162 161
## 163 162
## 164 163
## 165 164
## 166 165
## 167 166
## 168 167
## 169 168
## 170 169
## 171 170
## 172 171
## 173 172
## 174 173
## 175 174
## 176 175
## 177 176
## 178 177
## 179 178
## 180 179
## 181 180
## 182 181
## 183 182
## 184 183
## 185 184
## 186 185
## 187 186
## 188 187
## 189 188
## 190 189
## 191 190
## 192 191
## 193 192
## 194 193
## 195 194
## 196 195
## 197 196
## 198 197
## 199 198
## 200 199
## 201 200
## 202 201
## 203 202
## 204 203
## 205 204
## 206 205
## 207 206
## 208 207
## 209 208
## 210 209
## 211 210
## 212 211
## 213 212
## 214 213
## 215 214
## 216 215
## 217 216
## 218 217
## 219 218
## 220 219
## 221 220
## 222 221
## 223 222
## 224 223
## 225 224
## 226 225
## 227 226
## 228 227
## 229 228
## 230 229
## 231 230
## 232 231
## 233 232
## 234 233
## 235 234
## 236 235
## 237 236
## 238 237
## 239 238
## 240 239
## 241 240
## 242 241
## 243 242
## 244 243
## 245 244
## 246 245
## 247 246
## 248 247
## 249 248
## 250 249
## 251 250
## 252 251
## 253 252
## 254 253
## 255 254
## 256 255
## 257 256
## 258 257
## 259 258
## 260 259
## 261 260
## 262 261
## 263 262
## 264 263
## 265 264
## 266 265
## 267 266
## 268 267
## 269 268
## 270 269
## 271 270
## 272 271
## 273 272
## 274 273
## 275 274
## 276 275
## 277 276
## 278 277
## 279 278
## 280 279
## 281 280
## 282 281
## 283 282
## 284 283
## 285 284
## 286 285
## 287 286
## 288 287
## 289 288
## 290 289
## 291 290
## 292 291
## 293 292
## 294 293
## 295 294
## 296 295
## 297 296
## 298 297
## 299 298
## 300 299
## 301 300
## 302 301
## 303 302
## 304 303
## 305 304
## 306 305
## 307 306
## 308 307
## 309 308
## 310 309
## 311 310
## 312 311
## 313 312
## 314 313
## 315 314
## 316 315
## 317 316
## 318 317
## 319 318
## 320 319
## 321 320
## 322 321
## 323 322
## 324 323
## 325 324
## 326 325
## 327 326
## 328 327
## 329 328
## 330 329
## 331 330
## 332 331
## 333 332
## 334 333
## 335 334
## 336 335
## 337 336
## 338 337
## 339 338
## 340 339
## 341 340
## 342 341
## 343 342
## 344 343
## 345 344
## 346 345
## 347 346
## 348 347
## 349 348
## 350 349
## 351 350
## 352 351
## 353 352
## 354 353
## 355 354
## 356 355
## 357 356
## 358 357
## 359 358
## 360 359
## 361 360
## 362 361
## 363 362
## 364 363
## 365 364
## 366 365
## 367 366
## 368 367
## 369 368
## 370 369
## 371 370
## 372 371
## 373 372
## 374 373
## 375 374
## 376 375
## 377 376
## 378 377
## 379 378
## 380 379
## 381 380
## 382 381
## 383 382
## 384 383
## 385 384
## 386 385
## 387 386
## 388 387
## 389 388
## 390 389
## 391 390
## 392 391
## 393 392
## 394 393
## 395 394
## 396 395
## 397 396
## 398 397
## 399 398
## 400 399
## 401 400
## 402 401
## 403 402
## 404 403
## 405 404
## 406 405
## 407 406
## 408 407
## 409 408
## 410 409
## 411 410
## 412 411
## 413 412
## 414 413
## 415 414
## 416 415
## 417 416
## 418 417
## 419 418
## 420 419
## 421 420
## 422 421
## 423 422
## 424 423
## 425 424
## 426 425
## 427 426
## 428 427
## 429 428
## 430 429
## 431 430
## 432 431
## 433 432
## 434 433
## 435 434
## 436 435
## 437 436
## 438 437
## 439 438
## 440 439
## 441 440
## 442 441
## 443 442
## 444 443
## 445 444
## 446 445
## 447 446
## 448 447
## 449 448
## 450 449
## 451 450
## 452 451
## 453 452
## 454 453
## 455 454
## 456 455
## 457 456
## 458 457
## 459 458
## 460 459
## 461 460
## 462 461
## 463 462
## 464 463
## 465 464
## 466 465
## 467 466
## 468 467
## 469 468
## 470 469
## 471 470
## 472 471
## 473 472
## 474 473
## 475 474
## 476 475
## 477 476
## 478 477
## 479 478
## 480 479
## 481 480
## 482 481
## 483 482
## 484 483
## 485 484
## 486 485
## 487 486
## 488 487
## 489 488
## 490 489
## 491 490
## 492 491
## 493 492
## 494 493
## 495 494
## 496 495
## 497 496
## 498 497
## 499 498
## 500 499
## 501 500
## 502 501
## 503 502
## 504 503
## 505 504
## 506 505
## 507 506
## 508 507
## 509 508
## 510 509
## 511 510
## 512 511
## 513 512
## 514 513
## 515 514
## 516 515
## 517 516
## 518 517
## 519 518
## 520 519
## 521 520
## 522 521
## 523 522
## 524 523
## 525 524
## 526 525
## 527 526
## 528 527
## 529 528
## 530 529
## 531 530
## 532 531
## 533 532
## 534 533
## 535 534
## 536 535
## 537 536
## 538 537
## 539 538
## 540 539
## 541 540
## 542 541
## 543 542
## 544 543
## 545 544
## 546 545
## 547 546
## 548 547
## 549 548
## 550 549
## 551 550
## 552 551
## 553 552
## 554 553
## 555 554
## 556 555
## 557 556
## 558 557
## 559 558
## 560 559
## 561 560
## 562 561
## 563 562
## 564 563
## 565 564
## 566 565
## 567 566
## 568 567
## 569 568
## 570 569
## 571 570
## 572 571
## 573 572
## 574 573
## 575 574
## 576 575
## 577 576
## 578 577
## 579 578
## 580 579
## 581 580
## 582 581
## 583 582
## 584 583
## 585 584
## 586 585
## 587 586
## 588 587
## 589 588
## 590 589
## 591 590
## 592 591
## 593 592
## 594 593
## 595 594
## 596 595
## 597 596
## 598 597
## 599 598
## 600 599
## 601 600
## 602 601
## 603 602
## 604 603
## 605 604
## 606 605
## 607 606
## 608 607
## 609 608
## 610 609
## 611 610
## 612 611
## 613 612
## 614 613
## 615 614
## 616 615
## 617 616
## 618 617
## 619 618
## 620 619
## 621 620
## 622 621
## 623 622
## 624 623
## 625 624
## 626 625
## 627 626
## 628 627
## 629 628
## 630 629
## 631 630
## 632 631
## 633 632
## 634 633
## 635 634
## 636 635
## 637 636
## 638 637
## 639 638
## 640 639
## 641 640
## 642 641
## 643 642
## 644 643
## 645 644
## 646 645
## 647 646
## 648 647
## 649 648
## 650 649
## 651 650
## 652 651
## 653 652
## 654 653
## 655 654
## 656 655
## 657 656
## 658 657
## 659 658
## 660 659
## 661 660
## 662 661
## 663 662
## 664 663
## 665 664
## 666 665
## 667 666
## 668 667
## 669 668
## 670 669
## 671 670
## 672 671
## 673 672
## 674 673
## 675 674
## 676 675
## 677 676
## 678 677
## 679 678
## 680 679
## 681 680
## 682 681
## 683 682
## 684 683
## 685 684
## 686 685
## 687 686
## 688 687
## 689 688
## 690 689
## 691 690
## 692 691
## 693 692
## 694 693
## 695 694
## 696 695
## 697 696
## 698 697
## 699 698
## 700 699
## 701 700
## 702 701
## 703 702
## 704 703
## 705 704
## 706 705
## 707 706
## 708 707
## 709 708
## 710 709
## 711 710
## 712 711
## 713 712
## 714 713
## 715 714
## 716 715
## 717 716
## 718 717
## 719 718
## 720 719
## 721 720
## 722 721
## 723 722
## 724 723
## 725 724
## 726 725
## 727 726
## 728 727
## 729 728
## 730 729
## 731 730
## 732 731
## 733 732
## 734 733
## 735 734
## 736 735
## 737 736
## 738 737
## 739 738
## 740 739
## 741 740
## 742 741
## 743 742
## 744 743
## 745 744
## 746 745
## 747 746
## 748 747
## 749 748
## 750 749
## 751 750
## 752 751
## 753 752
## 754 753
## 755 754
## 756 755
## 757 756
## 758 757
## 759 758
## 760 759
## 761 760
## 762 761
## 763 762
## 764 763
## 765 764
## 766 765
## 767 766
## 768 767
## 769 768
## 770 769
## 771 770
## 772 771
## 773 772
## 774 773
## 775 774
## 776 775
## 777 776
## 778 777
## 779 778
## 780 779
## 781 780
## 782 781
## 783 782
## 784 783
## 785 784
## 786 785
## 787 786
## 788 787
## 789 788
## 790 789
## 791 790
## 792 791
## 793 792
## 794 793
## 795 794
## 796 795
## 797 796
## 798 797
## 799 798
## 800 799
## 801 800
## 802 801
## 803 802
## 804 803
## 805 804
## 806 805
## 807 806
## 808 807
## 809 808
## 810 809
## 811 810
## 812 811
## 813 812
## 814 813
## 815 814
## 816 815
## 817 816
## 818 817
## 819 818
## 820 819
## 821 820
## 822 821
## 823 822
## 824 823
## 825 824
## 826 825
## 827 826
## 828 827
## 829 828
## 830 829
## 831 830
## 832 831
## 833 832
## 834 833
## 835 834
## 836 835
## 837 836
## 838 837
## 839 838
## 840 839
## 841 840
## 842 841
## 843 842
## 844 843
## 845 844
## 846 845
## 847 846
## 848 847
## 849 848
## 850 849
## 851 850
## 852 851
## 853 852
## 854 853
## 855 854
## 856 855
## 857 856
## 858 857
## 859 858
## 860 859
## 861 860
## 862 861
## 863 862
## 864 863
## 865 864
## 866 865
## 867 866
## 868 867
## 869 868
## 870 869
## 871 870
## 872 871
## 873 872
## 874 873
## 875 874
## 876 875
## 877 876
## 878 877
## 879 878
## 880 879
## 881 880
## 882 881
## 883 882
## 884 883
## 885 884
## 886 885
## 887 886
## 888 887
## 889 888
## 890 889
## 891 890
## 892 891
## 893 892
## 894 893
## 895 894
## 896 895
## 897 896
## 898 897
## 899 898
## 900 899
## 901 900
## 902 901
## 903 902
## 904 903
## 905 904
## 906 905
## 907 906
## 908 907
## 909 908
## 910 909
## 911 910
## 912 911
## 913 912
## 914 913
## 915 914
## 916 915
## 917 916
## 918 917
## 919 918
## 920 919
## 921 920
## 922 921
## 923 922
## 924 923
## 925 924
## 926 925
## 927 926
## 928 927
## 929 928
## 930 929
## 931 930
## 932 931
## 933 932
## 934 933
## 935 934
## 936 935
## 937 936
## 938 937
## 939 938
## 940 939
## 941 940
## 942 941
## 943 942
## 944 943
## 945 944
## 946 945
## 947 946
## 948 947
## 949 948
## 950 949
## 951 950
## 952 951
## 953 952
## 954 953
## 955 954
## 956 955
## 957 956
## 958 957
## 959 958
## 960 959
## 961 960
## 962 961
## 963 962
## 964 963
## 965 964
## 966 965
## 967 966
## 968 967
## 969 968
## 970 969
## 971 970
## 972 971
## 973 972
## 974 973
## 975 974
## 976 975
## 977 976
## 978 977
## 979 978
## 980 979
## 981 980
## 982 981
## 983 982
## 984 983
## 985 984
## 986 985
## 987 986
## 988 987
## 989 988
## 990 989
## 991 990
## 992 991
## 993 992
## 994 993
## 995 994
## 996 995
## 997 996
## 998 997
## 999 998
## 1000 999
## 1001 1000
## 1002 1001
## 1003 1002
## 1004 1003
## 1005 1004
## 1006 1005
## 1007 1006
## 1008 1007
## 1009 1008
## 1010 1009
## 1011 1010
## 1012 1011
## 1013 1012
## 1014 1013
## 1015 1014
## 1016 1015
## 1017 1016
## 1018 1017
## 1019 1018
## 1020 1019
## 1021 1020
## 1022 1021
## 1023 1022
## 1024 1023
## 1025 1024
## 1026 1025
## 1027 1026
## 1028 1027
## 1029 1028
## 1030 1029
## 1031 1030
## 1032 1031
## 1033 1032
## 1034 1033
## 1035 1034
## 1036 1035
## 1037 1036
## 1038 1037
## 1039 1038
## 1040 1039
## 1041 1040
## 1042 1041
## 1043 1042
## 1044 1043
## 1045 1044
## 1046 1045
## 1047 1046
## 1048 1047
## 1049 1048
## 1050 1049
## 1051 1050
## 1052 1051
## 1053 1052
## 1054 1053
## 1055 1054
## 1056 1055
## 1057 1056
## 1058 1057
## 1059 1058
## 1060 1059
## 1061 1060
## 1062 1061
## 1063 1062
## 1064 1063
## 1065 1064
## 1066 1065
## 1067 1066
## 1068 1067
## 1069 1068
## 1070 1069
## 1071 1070
## 1072 1071
## 1073 1072
## 1074 1073
## 1075 1074
## 1076 1075
## 1077 1076
## 1078 1077
## 1079 1078
## 1080 1079
## 1081 1080
## 1082 1081
## 1083 1082
## 1084 1083
## 1085 1084
## 1086 1085
## 1087 1086
## 1088 1087
## 1089 1088
## 1090 1089
## 1091 1090
## 1092 1091
## 1093 1092
## 1094 1093
## 1095 1094
## 1096 1095
## 1097 1096
## 1098 1097
## 1099 1098
## 1100 1099
## 1101 1100
## 1102 1101
## 1103 1102
## 1104 1103
## 1105 1104
## 1106 1105
## 1107 1106
## 1108 1107
## 1109 1108
## 1110 1109
## 1111 1110
## 1112 1111
## 1113 1112
## 1114 1113
## 1115 1114
## 1116 1115
## 1117 1116
## 1118 1117
## 1119 1118
## 1120 1119
## 1121 1120
## 1122 1121
## 1123 1122
## 1124 1123
## 1125 1124
## 1126 1125
## 1127 1126
## 1128 1127
## 1129 1128
## 1130 1129
## 1131 1130
## 1132 1131
## 1133 1132
## 1134 1133
## 1135 1134
## 1136 1135
## 1137 1136
## 1138 1137
## 1139 1138
## 1140 1139
## 1141 1140
## 1142 1141
## 1143 1142
## 1144 1143
## 1145 1144
## 1146 1145
## 1147 1146
## 1148 1147
## 1149 1148
## 1150 1149
## 1151 1150
## 1152 1151
## 1153 1152
## 1154 1153
## 1155 1154
## 1156 1155
## 1157 1156
## 1158 1157
## 1159 1158
## 1160 1159
## 1161 1160
## 1162 1161
## 1163 1162
## 1164 1163
## 1165 1164
## 1166 1165
## 1167 1166
## 1168 1167
## 1169 1168
## 1170 1169
## 1171 1170
## 1172 1171
## 1173 1172
## 1174 1173
## 1175 1174
## 1176 1175
## 1177 1176
## 1178 1177
## 1179 1178
## 1180 1179
## 1181 1180
## 1182 1181
## 1183 1182
## 1184 1183
## 1185 1184
## 1186 1185
## 1187 1186
## 1188 1187
## 1189 1188
## 1190 1189
## 1191 1190
## 1192 1191
## 1193 1192
## 1194 1193
## 1195 1194
## 1196 1195
## 1197 1196
## 1198 1197
## 1199 1198
## 1200 1199
## 1201 1200
## 1202 1201
## 1203 1202
## 1204 1203
## 1205 1204
## 1206 1205
## 1207 1206
## 1208 1207
## 1209 1208
## 1210 1209
## 1211 1210
## 1212 1211
## 1213 1212
## 1214 1213
## 1215 1214
## 1216 1215
## 1217 1216
## 1218 1217
## 1219 1218
## 1220 1219
## 1221 1220
## 1222 1221
## 1223 1222
## 1224 1223
## 1225 1224
## 1226 1225
## 1227 1226
## 1228 1227
## 1229 1228
## 1230 1229
## 1231 1230
## 1232 1231
## 1233 1232
## 1234 1233
## 1235 1234
## 1236 1235
## 1237 1236
## 1238 1237
## 1239 1238
## 1240 1239
## 1241 1240
## 1242 1241
## 1243 1242
## 1244 1243
## 1245 1244
## 1246 1245
## 1247 1246
## 1248 1247
## 1249 1248
## 1250 1249
## 1251 1250
## 1252 1251
## 1253 1252
## 1254 1253
## 1255 1254
## 1256 1255
## 1257 1256
## 1258 1257
## 1259 1258
## 1260 1259
## 1261 1260
## 1262 1261
## 1263 1262
## 1264 1263
## 1265 1264
## 1266 1265
## 1267 1266
## 1268 1267
## 1269 1268
## 1270 1269
## 1271 1270
## 1272 1271
## 1273 1272
## 1274 1273
## 1275 1274
## 1276 1275
## 1277 1276
## 1278 1277
## 1279 1278
## 1280 1279
## 1281 1280
## 1282 1281
## 1283 1282
## 1284 1283
## 1285 1284
## 1286 1285
## 1287 1286
## 1288 1287
## 1289 1288
## 1290 1289
## 1291 1290
## 1292 1291
## 1293 1292
## 1294 1293
## 1295 1294
## 1296 1295
## 1297 1296
## 1298 1297
## 1299 1298
## 1300 1299
## 1301 1300
## 1302 1301
## 1303 1302
## 1304 1303
## 1305 1304
## 1306 1305
## 1307 1306
## 1308 1307
## 1309 1308
## 1310 1309
## 1311 1310
## 1312 1311
## 1313 1312
## 1314 1313
## 1315 1314
## 1316 1315
## 1317 1316
## 1318 1317
## 1319 1318
## 1320 1319
## 1321 1320
## 1322 1321
## 1323 1322
## 1324 1323
## 1325 1324
## 1326 1325
## 1327 1326
## 1328 1327
## 1329 1328
## 1330 1329
## 1331 1330
## 1332 1331
## 1333 1332
## 1334 1333
## 1335 1334
## 1336 1335
## 1337 1336
## 1338 1337
## 1339 1338
## 1340 1339
## 1341 1340
## 1342 1341
## 1343 1342
## 1344 1343
## 1345 1344
## 1346 1345
## 1347 1346
## 1348 1347
## 1349 1348
## 1350 1349
## 1351 1350
## 1352 1351
## 1353 1352
## 1354 1353
## 1355 1354
## 1356 1355
## 1357 1356
## 1358 1357
## 1359 1358
## 1360 1359
## 1361 1360
## 1362 1361
## 1363 1362
## 1364 1363
## 1365 1364
## 1366 1365
## 1367 1366
## 1368 1367
## 1369 1368
## 1370 1369
## 1371 1370
## 1372 1371
## 1373 1372
## 1374 1373
## 1375 1374
## 1376 1375
## 1377 1376
## 1378 1377
## 1379 1378
## 1380 1379
## 1381 1380
## 1382 1381
## 1383 1382
## 1384 1383
## 1385 1384
## 1386 1385
## 1387 1386
## 1388 1387
## 1389 1388
## 1390 1389
## 1391 1390
## 1392 1391
## 1393 1392
## 1394 1393
## 1395 1394
## 1396 1395
## 1397 1396
## 1398 1397
## 1399 1398
## 1400 1399
## 1401 1400
## 1402 1401
## 1403 1402
## 1404 1403
## 1405 1404
## 1406 1405
## 1407 1406
## 1408 1407
## 1409 1408
## 1410 1409
## 1411 1410
## 1412 1411
## 1413 1412
## 1414 1413
## 1415 1414
## 1416 1415
## 1417 1416
## 1418 1417
## 1419 1418
## 1420 1419
## 1421 1420
## 1422 1421
## 1423 1422
## 1424 1423
## 1425 1424
## 1426 1425
## 1427 1426
## 1428 1427
## 1429 1428
## 1430 1429
## 1431 1430
## 1432 1431
## 1433 1432
## 1434 1433
## 1435 1434
## 1436 1435
## 1437 1436
## 1438 1437
## 1439 1438
## 1440 1439
## 1441 1440
## 1442 1441
## 1443 1442
## 1444 1443
## 1445 1444
## 1446 1445
## 1447 1446
## 1448 1447
## 1449 1448
## 1450 1449
## 1451 1450
## 1452 1451
## 1453 1452
## 1454 1453
## 1455 1454
## 1456 1455
## 1457 1456
## 1458 1457
## 1459 1458
## 1460 1459
## 1461 1460
## 1462 1461
## 1463 1462
## 1464 1463
## 1465 1464
## 1466 1465
## 1467 1466
## 1468 1467
## 1469 1468
## 1470 1469
## 1471 1470
## 1472 1471
## 1473 1472
## 1474 1473
## 1475 1474
## 1476 1475
## 1477 1476
## 1478 1477
## 1479 1478
## 1480 1479
## 1481 1480
## 1482 1481
## 1483 1482
## 1484 1483
## 1485 1484
## 1486 1485
## 1487 1486
## 1488 1487
## 1489 1488
## 1490 1489
## 1491 1490
## 1492 1491
## 1493 1492
## 1494 1493
## 1495 1494
## 1496 1495
## 1497 1496
## 1498 1497
## 1499 1498
## 1500 1499
## 1501 1500
## 1502 1501
## 1503 1502
## 1504 1503
## 1505 1504
## 1506 1505
## 1507 1506
## 1508 1507
## 1509 1508
## 1510 1509
## 1511 1510
## 1512 1511
## 1513 1512
## 1514 1513
## 1515 1514
## 1516 1515
## 1517 1516
## 1518 1517
## 1519 1518
## 1520 1519
## 1521 1520
## 1522 1521
## 1523 1522
## 1524 1523
## 1525 1524
## 1526 1525
## 1527 1526
## 1528 1527
## 1529 1528
## 1530 1529
## 1531 1530
## 1532 1531
## 1533 1532
## 1534 1533
## 1535 1534
## 1536 1535
## 1537 1536
## 1538 1537
## 1539 1538
## 1540 1539
## 1541 1540
## 1542 1541
## 1543 1542
## 1544 1543
## 1545 1544
## 1546 1545
## 1547 1546
## 1548 1547
## 1549 1548
## 1550 1549
## 1551 1550
## 1552 1551
## 1553 1552
## 1554 1553
## 1555 1554
## 1556 1555
## 1557 1556
## 1558 1557
## 1559 1558
## 1560 1559
## 1561 1560
## 1562 1561
## 1563 1562
## 1564 1563
## 1565 1564
## 1566 1565
## 1567 1566
## 1568 1567
## 1569 1568
## 1570 1569
## 1571 1570
## 1572 1571
## 1573 1572
## 1574 1573
## 1575 1574
## 1576 1575
## 1577 1576
## 1578 1577
## 1579 1578
## 1580 1579
## 1581 1580
## 1582 1581
## 1583 1582
## 1584 1583
## 1585 1584
## 1586 1585
## 1587 1586
## 1588 1587
## 1589 1588
## 1590 1589
## 1591 1590
## 1592 1591
## 1593 1592
## 1594 1593
## 1595 1594
## 1596 1595
## 1597 1596
## 1598 1597
## 1599 1598
## 1600 1599
## 1601 1600
## 1602 1601
## 1603 1602
## 1604 1603
## 1605 1604
## 1606 1605
## 1607 1606
## 1608 1607
## 1609 1608
## 1610 1609
## 1611 1610
## 1612 1611
## 1613 1612
## 1614 1613
## 1615 1614
## 1616 1615
## 1617 1616
## 1618 1617
## 1619 1618
## 1620 1619
## 1621 1620
## 1622 1621
## 1623 1622
## 1624 1623
## 1625 1624
## 1626 1625
## 1627 1626
## 1628 1627
## 1629 1628
## 1630 1629
## 1631 1630
## 1632 1631
## 1633 1632
## 1634 1633
## 1635 1634
## 1636 1635
## 1637 1636
## 1638 1637
## 1639 1638
## 1640 1639
## 1641 1640
## 1642 1641
## 1643 1642
## 1644 1643
## 1645 1644
## 1646 1645
## 1647 1646
## 1648 1647
## 1649 1648
## 1650 1649
## 1651 1650
## 1652 1651
## 1653 1652
## 1654 1653
## 1655 1654
## 1656 1655
## 1657 1656
## 1658 1657
## 1659 1658
## 1660 1659
## 1661 1660
## 1662 1661
## 1663 1662
## 1664 1663
## 1665 1664
## 1666 1665
## 1667 1666
## 1668 1667
## 1669 1668
## 1670 1669
## 1671 1670
## 1672 1671
## 1673 1672
## 1674 1673
## 1675 1674
## 1676 1675
## 1677 1676
## 1678 1677
## 1679 1678
## 1680 1679
## 1681 1680
## 1682 1681
## 1683 1682
## 1684 1683
## 1685 1684
## 1686 1685
## 1687 1686
## 1688 1687
## 1689 1688
## 1690 1689
## 1691 1690
## 1692 1691
## 1693 1692
## 1694 1693
## 1695 1694
## 1696 1695
## 1697 1696
## 1698 1697
## 1699 1698
## 1700 1699
## 1701 1700
## 1702 1701
## 1703 1702
## 1704 1703
## 1705 1704
## 1706 1705
## 1707 1706
## 1708 1707
## 1709 1708
## 1710 1709
## 1711 1710
## 1712 1711
## 1713 1712
## 1714 1713
## 1715 1714
## 1716 1715
## 1717 1716
## 1718 1717
## 1719 1718
## 1720 1719
## 1721 1720
## 1722 1721
## 1723 1722
## 1724 1723
## 1725 1724
## 1726 1725
## 1727 1726
## 1728 1727
## 1729 1728
## 1730 1729
## 1731 1730
## 1732 1731
## 1733 1732
## 1734 1733
## 1735 1734
## 1736 1735
## 1737 1736
## 1738 1737
## 1739 1738
## 1740 1739
## 1741 1740
## 1742 1741
## 1743 1742
## 1744 1743
## 1745 1744
## 1746 1745
## 1747 1746
## 1748 1747
## 1749 1748
## 1750 1749
## 1751 1750
## 1752 1751
## 1753 1752
## 1754 1753
## 1755 1754
## 1756 1755
## 1757 1756
## 1758 1757
## 1759 1758
## 1760 1759
## 1761 1760
## 1762 1761
## 1763 1762
## 1764 1763
## 1765 1764
## 1766 1765
## 1767 1766
## 1768 1767
## 1769 1768
## 1770 1769
## 1771 1770
## 1772 1771
## 1773 1772
## 1774 1773
## 1775 1774
## 1776 1775
## 1777 1776
## 1778 1777
## 1779 1778
## 1780 1779
## 1781 1780
## 1782 1781
## 1783 1782
## 1784 1783
## 1785 1784
## 1786 1785
## 1787 1786
## 1788 1787
## 1789 1788
## 1790 1789
## 1791 1790
## 1792 1791
## 1793 1792
## 1794 1793
## 1795 1794
## 1796 1795
## 1797 1796
## 1798 1797
## 1799 1798
## 1800 1799
## 1801 1800
## 1802 1801
## 1803 1802
## 1804 1803
## 1805 1804
## 1806 1805
## 1807 1806
## 1808 1807
## 1809 1808
## 1810 1809
## 1811 1810
## 1812 1811
## 1813 1812
## 1814 1813
## 1815 1814
## 1816 1815
## 1817 1816
## 1818 1817
## 1819 1818
## 1820 1819
## 1821 1820
## 1822 1821
## 1823 1822
## 1824 1823
## 1825 1824
## 1826 1825
## 1827 1826
## 1828 1827
## 1829 1828
## 1830 1829
## 1831 1830
## 1832 1831
## 1833 1832
## 1834 1833
## 1835 1834
## 1836 1835
## 1837 1836
## 1838 1837
## 1839 1838
## 1840 1839
## 1841 1840
## 1842 1841
## 1843 1842
## 1844 1843
## 1845 1844
## 1846 1845
## 1847 1846
## 1848 1847
## 1849 1848
## 1850 1849
## 1851 1850
## 1852 1851
## 1853 1852
## 1854 1853
## 1855 1854
## 1856 1855
## 1857 1856
## 1858 1857
## 1859 1858
## 1860 1859
## 1861 1860
## 1862 1861
## 1863 1862
## 1864 1863
## 1865 1864
## 1866 1865
## 1867 1866
## 1868 1867
## 1869 1868
## 1870 1869
## 1871 1870
## 1872 1871
## 1873 1872
## 1874 1873
## 1875 1874
## 1876 1875
## 1877 1876
## 1878 1877
## 1879 1878
## 1880 1879
## 1881 1880
## 1882 1881
## 1883 1882
## 1884 1883
## 1885 1884
## 1886 1885
## 1887 1886
## 1888 1887
## 1889 1888
## 1890 1889
## 1891 1890
## 1892 1891
## 1893 1892
## 1894 1893
## 1895 1894
## 1896 1895
## 1897 1896
## 1898 1897
## 1899 1898
## 1900 1899
## 1901 1900
## 1902 1901
## 1903 1902
## 1904 1903
## 1905 1904
## 1906 1905
## 1907 1906
## 1908 1907
## 1909 1908
## 1910 1909
## 1911 1910
## 1912 1911
## 1913 1912
## 1914 1913
## 1915 1914
## 1916 1915
## 1917 1916
## 1918 1917
## 1919 1918
## 1920 1919
## 1921 1920
## 1922 1921
## 1923 1922
## 1924 1923
## 1925 1924
## 1926 1925
## 1927 1926
## 1928 1927
## 1929 1928
## 1930 1929
## 1931 1930
## 1932 1931
## 1933 1932
## 1934 1933
## 1935 1934
## 1936 1935
## 1937 1936
## 1938 1937
## 1939 1938
## 1940 1939
## 1941 1940
## 1942 1941
## 1943 1942
## 1944 1943
## 1945 1944
## 1946 1945
## 1947 1946
## 1948 1947
## 1949 1948
## 1950 1949
## 1951 1950
## 1952 1951
## 1953 1952
## 1954 1953
## 1955 1954
## 1956 1955
## 1957 1956
## 1958 1957
## 1959 1958
## 1960 1959
## 1961 1960
## 1962 1961
## 1963 1962
## 1964 1963
## 1965 1964
## 1966 1965
## 1967 1966
## 1968 1967
## 1969 1968
## 1970 1969
## 1971 1970
## 1972 1971
## 1973 1972
## 1974 1973
## 1975 1974
## 1976 1975
## 1977 1976
## 1978 1977
## 1979 1978
## 1980 1979
## 1981 1980
## 1982 1981
## 1983 1982
## 1984 1983
## 1985 1984
## 1986 1985
## 1987 1986
## 1988 1987
## 1989 1988
## 1990 1989
## 1991 1990
## 1992 1991
## 1993 1992
## 1994 1993
## 1995 1994
## 1996 1995
## 1997 1996
## 1998 1997
## 1999 1998
## 2000 1999
## 2001 2000
## 2002 2001
## 2003 2002
## 2004 2003
## 2005 2004
## 2006 2005
## 2007 2006
## 2008 2007
## 2009 2008
## 2010 2009
## 2011 2010
## 2012 2011
## 2013 2012
## 2014 2013
## 2015 2014
## 2016 2015
## 2017 2016
## 2018 2017
## 2019 2018
## 2020 2019
## 2021 2020
## 2022 2021
## 2023 2022
## 2024 2023
## 2025 2024
## 2026 2025
## 2027 2026
## 2028 2027
## 2029 2028
## 2030 2029
## 2031 2030
## 2032 2031
## 2033 2032
## 2034 2033
## 2035 2034
## 2036 2035
## 2037 2036
## 2038 2037
## 2039 2038
## 2040 2039
## 2041 2040
## 2042 2041
## 2043 2042
## 2044 2043
## 2045 2044
## 2046 2045
## 2047 2046
## 2048 2047
## 2049 2048
## 2050 2049
## 2051 2050
## 2052 2051
## 2053 2052
## 2054 2053
## 2055 2054
## 2056 2055
## 2057 2056
## 2058 2057
## 2059 2058
## 2060 2059
## 2061 2060
## 2062 2061
## 2063 2062
## 2064 2063
## 2065 2064
## 2066 2065
## 2067 2066
## 2068 2067
## 2069 2068
## 2070 2069
## 2071 2070
## 2072 2071
## 2073 2072
## 2074 2073
## 2075 2074
## 2076 2075
## 2077 2076
## 2078 2077
## 2079 2078
## 2080 2079
## 2081 2080
## 2082 2081
## 2083 2082
## 2084 2083
## 2085 2084
## 2086 2085
## 2087 2086
## 2088 2087
## 2089 2088
## 2090 2089
## 2091 2090
## 2092 2091
## 2093 2092
## 2094 2093
## 2095 2094
## 2096 2095
## 2097 2096
## 2098 2097
## 2099 2098
## 2100 2099
## 2101 2100
## 2102 2101
## 2103 2102
## 2104 2103
## 2105 2104
## 2106 2105
## 2107 2106
## 2108 2107
## 2109 2108
## 2110 2109
## 2111 2110
## 2112 2111
## 2113 2112
## 2114 2113
## 2115 2114
## 2116 2115
## 2117 2116
## 2118 2117
## 2119 2118
## 2120 2119
## 2121 2120
## 2122 2121
## 2123 2122
## 2124 2123
## 2125 2124
## 2126 2125
## 2127 2126
## 2128 2127
## 2129 2128
## 2130 2129
## 2131 2130
## 2132 2131
## 2133 2132
## 2134 2133
## 2135 2134
## 2136 2135
## 2137 2136
## 2138 2137
## 2139 2138
## 2140 2139
## 2141 2140
## 2142 2141
## 2143 2142
## 2144 2143
## 2145 2144
## 2146 2145
## 2147 2146
## 2148 2147
## 2149 2148
## 2150 2149
## 2151 2150
## 2152 2151
## 2153 2152
## 2154 2153
## 2155 2154
## 2156 2155
## 2157 2156
## 2158 2157
## 2159 2158
## 2160 2159
## 2161 2160
## 2162 2161
## 2163 2162
## 2164 2163
## 2165 2164
## 2166 2165
## 2167 2166
## 2168 2167
## 2169 2168
## 2170 2169
## 2171 2170
## 2172 2171
## 2173 2172
## 2174 2173
## 2175 2174
## 2176 2175
## 2177 2176
## 2178 2177
## 2179 2178
## 2180 2179
## 2181 2180
## 2182 2181
## 2183 2182
## 2184 2183
## 2185 2184
## 2186 2185
## 2187 2186
## 2188 2187
## 2189 2188
## 2190 2189
## 2191 2190
## 2192 2191
## 2193 2192
## 2194 2193
## 2195 2194
## 2196 2195
## 2197 2196
## 2198 2197
## 2199 2198
## 2200 2199
## 2201 2200
## 2202 2201
## 2203 2202
## 2204 2203
## 2205 2204
## 2206 2205
## 2207 2206
## 2208 2207
## 2209 2208
## 2210 2209
## 2211 2210
## 2212 2211
## 2213 2212
## 2214 2213
## 2215 2214
## 2216 2215
## 2217 2216
## 2218 2217
## 2219 2218
## 2220 2219
## 2221 2220
## 2222 2221
## 2223 2222
## 2224 2223
## 2225 2224
## 2226 2225
## 2227 2226
## 2228 2227
## 2229 2228
## 2230 2229
## 2231 2230
## 2232 2231
## 2233 2232
## 2234 2233
## 2235 2234
## 2236 2235
## 2237 2236
## 2238 2237
## 2239 2238
## 2240 2239
## 2241 2240
## 2242 2241
## 2243 2242
## 2244 2243
## 2245 2244
## 2246 2245
## 2247 2246
## 2248 2247
## 2249 2248
## 2250 2249
## 2251 2250
## 2252 2251
## 2253 2252
## 2254 2253
## 2255 2254
## 2256 2255
## 2257 2256
## 2258 2257
## 2259 2258
## 2260 2259
## 2261 2260
## 2262 2261
## 2263 2262
## 2264 2263
## 2265 2264
## 2266 2265
## 2267 2266
## 2268 2267
## 2269 2268
## 2270 2269
## 2271 2270
## 2272 2271
## 2273 2272
## 2274 2273
## 2275 2274
## 2276 2275
## 2277 2276
## 2278 2277
## 2279 2278
## 2280 2279
## 2281 2280
## 2282 2281
## 2283 2282
## 2284 2283
## 2285 2284
## 2286 2285
## 2287 2286
## 2288 2287
## 2289 2288
## 2290 2289
## 2291 2290
## 2292 2291
## 2293 2292
## 2294 2293
## 2295 2294
## 2296 2295
## 2297 2296
## 2298 2297
## 2299 2298
## 2300 2299
## 2301 2300
## 2302 2301
## 2303 2302
## 2304 2303
## 2305 2304
## 2306 2305
## 2307 2306
## 2308 2307
## 2309 2308
## 2310 2309
## 2311 2310
## 2312 2311
## 2313 2312
## 2314 2313
## 2315 2314
## 2316 2315
## 2317 2316
## 2318 2317
## 2319 2318
## 2320 2319
## 2321 2320
## 2322 2321
## 2323 2322
## 2324 2323
## 2325 2324
## 2326 2325
## 2327 2326
## 2328 2327
## 2329 2328
## 2330 2329
## 2331 2330
## 2332 2331
## 2333 2332
## 2334 2333
## 2335 2334
## 2336 2335
## 2337 2336
## 2338 2337
## 2339 2338
## 2340 2339
## 2341 2340
## 2342 2341
## 2343 2342
## 2344 2343
## 2345 2344
## 2346 2345
## 2347 2346
## 2348 2347
## 2349 2348
## 2350 2349
## 2351 2350
## 2352 2351
## 2353 2352
## 2354 2353
## 2355 2354
## 2356 2355
## 2357 2356
## 2358 2357
## 2359 2358
## 2360 2359
## 2361 2360
## 2362 2361
## 2363 2362
## 2364 2363
## 2365 2364
## 2366 2365
## 2367 2366
## 2368 2367
## 2369 2368
## 2370 2369
## 2371 2370
## 2372 2371
## 2373 2372
## 2374 2373
## 2375 2374
## 2376 2375
## 2377 2376
## 2378 2377
## 2379 2378
## 2380 2379
## 2381 2380
## 2382 2381
## 2383 2382
## 2384 2383
## 2385 2384
## 2386 2385
## 2387 2386
## 2388 2387
## 2389 2388
## 2390 2389
## 2391 2390
## 2392 2391
## 2393 2392
## 2394 2393
## 2395 2394
## 2396 2395
## 2397 2396
## 2398 2397
## 2399 2398
## 2400 2399
## 2401 2400
## 2402 2401
## 2403 2402
## 2404 2403
## 2405 2404
## 2406 2405
## 2407 2406
## 2408 2407
## 2409 2408
## 2410 2409
## 2411 2410
## 2412 2411
## 2413 2412
## 2414 2413
## 2415 2414
## 2416 2415
## 2417 2416
## 2418 2417
## 2419 2418
## 2420 2419
## 2421 2420
## 2422 2421
## 2423 2422
## 2424 2423
## 2425 2424
## 2426 2425
## 2427 2426
## 2428 2427
## 2429 2428
## 2430 2429
## 2431 2430
## 2432 2431
## 2433 2432
## 2434 2433
## 2435 2434
## 2436 2435
## 2437 2436
## 2438 2437
## 2439 2438
## 2440 2439
## 2441 2440
## 2442 2441
## 2443 2442
## 2444 2443
## 2445 2444
## 2446 2445
## 2447 2446
## 2448 2447
## 2449 2448
## 2450 2449
## 2451 2450
## 2452 2451
## 2453 2452
## 2454 2453
## 2455 2454
## 2456 2455
## 2457 2456
## 2458 2457
## 2459 2458
## 2460 2459
## 2461 2460
## 2462 2461
## 2463 2462
## 2464 2463
## 2465 2464
## 2466 2465
## 2467 2466
## 2468 2467
## 2469 2468
## 2470 2469
## 2471 2470
## 2472 2471
## 2473 2472
## 2474 2473
## 2475 2474
## 2476 2475
## 2477 2476
## 2478 2477
## 2479 2478
## 2480 2479
## 2481 2480
## 2482 2481
## 2483 2482
## 2484 2483
## 2485 2484
## 2486 2485
## 2487 2486
## 2488 2487
## 2489 2488
## 2490 2489
## 2491 2490
## 2492 2491
## 2493 2492
## 2494 2493
## 2495 2494
## 2496 2495
## 2497 2496
## 2498 2497
## 2499 2498
## 2500 2499
## 2501 2500
## 2502 2501
## 2503 2502
## 2504 2503
## 2505 2504
## 2506 2505
## 2507 2506
## 2508 2507
## 2509 2508
## 2510 2509
## 2511 2510
## 2512 2511
## 2513 2512
## 2514 2513
## 2515 2514
## 2516 2515
## 2517 2516
## 2518 2517
## 2519 2518
## 2520 2519
## 2521 2520
## 2522 2521
## 2523 2522
## 2524 2523
## 2525 2524
## 2526 2525
## 2527 2526
## 2528 2527
## 2529 2528
## 2530 2529
## 2531 2530
## 2532 2531
## 2533 2532
## 2534 2533
## 2535 2534
## 2536 2535
## 2537 2536
## 2538 2537
## 2539 2538
## 2540 2539
## 2541 2540
## 2542 2541
## 2543 2542
## 2544 2543
## 2545 2544
## 2546 2545
## 2547 2546
## 2548 2547
## 2549 2548
## 2550 2549
## 2551 2550
## 2552 2551
## 2553 2552
## 2554 2553
## 2555 2554
## 2556 2555
## 2557 2556
## 2558 2557
## 2559 2558
## 2560 2559
## 2561 2560
## 2562 2561
## 2563 2562
## 2564 2563
## 2565 2564
## 2566 2565
## 2567 2566
## 2568 2567
## 2569 2568
## 2570 2569
## 2571 2570
## 2572 2571
## 2573 2572
## 2574 2573
## 2575 2574
## 2576 2575
## 2577 2576
## 2578 2577
## 2579 2578
## 2580 2579
## 2581 2580
## 2582 2581
## 2583 2582
## 2584 2583
## 2585 2584
## 2586 2585
## 2587 2586
## 2588 2587
## 2589 2588
## 2590 2589
## 2591 2590
## 2592 2591
## 2593 2592
## 2594 2593
## 2595 2594
## 2596 2595
## 2597 2596
## 2598 2597
## 2599 2598
## 2600 2599
## 2601 2600
## 2602 2601
## 2603 2602
## 2604 2603
## 2605 2604
## 2606 2605
## 2607 2606
## 2608 2607
## 2609 2608
## 2610 2609
## 2611 2610
## 2612 2611
## 2613 2612
## 2614 2613
## 2615 2614
## 2616 2615
## 2617 2616
## 2618 2617
## 2619 2618
## 2620 2619
## 2621 2620
## 2622 2621
## 2623 2622
## 2624 2623
## 2625 2624
## 2626 2625
## 2627 2626
## 2628 2627
## 2629 2628
## 2630 2629
## 2631 2630
## 2632 2631
## 2633 2632
## 2634 2633
## 2635 2634
## 2636 2635
## 2637 2636
## 2638 2637
## 2639 2638
## 2640 2639
## 2641 2640
## 2642 2641
## 2643 2642
## 2644 2643
## 2645 2644
## 2646 2645
## 2647 2646
## 2648 2647
## 2649 2648
## 2650 2649
## 2651 2650
## 2652 2651
## 2653 2652
## 2654 2653
## 2655 2654
## 2656 2655
## 2657 2656
## 2658 2657
## 2659 2658
## 2660 2659
## 2661 2660
## 2662 2661
## 2663 2662
## 2664 2663
## 2665 2664
## 2666 2665
## 2667 2666
## 2668 2667
## 2669 2668
## 2670 2669
## 2671 2670
## 2672 2671
## 2673 2672
## 2674 2673
## 2675 2674
## 2676 2675
## 2677 2676
## 2678 2677
## 2679 2678
## 2680 2679
## 2681 2680
## 2682 2681
## 2683 2682
## 2684 2683
## 2685 2684
## 2686 2685
## 2687 2686
## 2688 2687
## 2689 2688
## 2690 2689
## 2691 2690
## 2692 2691
## 2693 2692
## 2694 2693
## 2695 2694
## 2696 2695
## 2697 2696
## 2698 2697
## 2699 2698
## 2700 2699
## 2701 2700
## 2702 2701
## 2703 2702
## 2704 2703
## 2705 2704
## 2706 2705
## 2707 2706
## 2708 2707
## 2709 2708
## 2710 2709
## 2711 2710
## 2712 2711
## 2713 2712
## 2714 2713
## 2715 2714
## 2716 2715
## 2717 2716
## 2718 2717
## 2719 2718
## 2720 2719
## 2721 2720
## 2722 2721
## 2723 2722
## 2724 2723
## 2725 2724
## 2726 2725
## 2727 2726
## 2728 2727
## 2729 2728
## 2730 2729
## 2731 2730
## 2732 2731
## 2733 2732
## 2734 2733
## 2735 2734
## 2736 2735
## 2737 2736
## 2738 2737
## 2739 2738
## 2740 2739
## 2741 2740
## 2742 2741
## 2743 2742
## 2744 2743
## 2745 2744
## 2746 2745
## 2747 2746
## 2748 2747
## 2749 2748
## 2750 2749
## 2751 2750
## 2752 2751
## 2753 2752
## 2754 2753
## 2755 2754
## 2756 2755
## 2757 2756
## 2758 2757
## 2759 2758
## 2760 2759
## 2761 2760
## 2762 2761
## 2763 2762
## 2764 2763
## 2765 2764
## 2766 2765
## 2767 2766
## 2768 2767
## 2769 2768
## 2770 2769
## 2771 2770
## 2772 2771
## 2773 2772
## 2774 2773
## 2775 2774
## 2776 2775
## 2777 2776
## 2778 2777
## 2779 2778
## 2780 2779
## 2781 2780
## 2782 2781
## 2783 2782
## 2784 2783
## 2785 2784
## 2786 2785
## 2787 2786
## 2788 2787
## 2789 2788
## 2790 2789
## 2791 2790
## 2792 2791
## 2793 2792
## 2794 2793
## 2795 2794
## 2796 2795
## 2797 2796
## 2798 2797
## 2799 2798
## 2800 2799
## 2801 2800
## 2802 2801
## 2803 2802
## 2804 2803
## 2805 2804
## 2806 2805
## 2807 2806
## 2808 2807
## 2809 2808
## 2810 2809
## 2811 2810
## 2812 2811
## 2813 2812
## 2814 2813
## 2815 2814
## 2816 2815
## 2817 2816
## 2818 2817
## 2819 2818
## 2820 2819
## 2821 2820
## 2822 2821
## 2823 2822
## 2824 2823
## 2825 2824
## 2826 2825
## 2827 2826
## 2828 2827
## 2829 2828
## 2830 2829
## 2831 2830
## 2832 2831
## 2833 2832
## 2834 2833
## 2835 2834
## 2836 2835
## 2837 2836
## 2838 2837
## 2839 2838
## 2840 2839
## 2841 2840
## 2842 2841
## 2843 2842
## 2844 2843
## 2845 2844
## 2846 2845
## 2847 2846
## 2848 2847
## 2849 2848
## 2850 2849
## 2851 2850
## 2852 2851
## 2853 2852
## 2854 2853
## 2855 2854
## 2856 2855
## 2857 2856
## 2858 2857
## 2859 2858
## 2860 2859
## 2861 2860
## 2862 2861
## 2863 2862
## 2864 2863
## 2865 2864
## 2866 2865
## 2867 2866
## 2868 2867
## 2869 2868
## 2870 2869
## 2871 2870
## 2872 2871
## 2873 2872
## 2874 2873
## 2875 2874
## 2876 2875
## 2877 2876
## 2878 2877
## 2879 2878
## 2880 2879
## 2881 2880
## 2882 2881
## 2883 2882
## 2884 2883
## 2885 2884
## 2886 2885
## 2887 2886
## 2888 2887
## 2889 2888
## 2890 2889
## 2891 2890
## 2892 2891
## 2893 2892
## 2894 2893
## 2895 2894
## 2896 2895
## 2897 2896
## 2898 2897
## 2899 2898
## 2900 2899
## 2901 2900
## 2902 2901
## 2903 2902
## 2904 2903
## 2905 2904
## 2906 2905
## 2907 2906
## 2908 2907
## 2909 2908
## 2910 2909
## 2911 2910
## 2912 2911
## 2913 2912
## 2914 2913
## 2915 2914
## 2916 2915
## 2917 2916
## 2918 2917
## 2919 2918
## 2920 2919
## 2921 2920
## 2922 2921
## 2923 2922
## 2924 2923
## 2925 2924
## 2926 2925
## 2927 2926
## 2928 2927
## 2929 2928
## 2930 2929
## 2931 2930
## 2932 2931
## 2933 2932
## 2934 2933
## 2935 2934
## 2936 2935
## 2937 2936
## 2938 2937
## 2939 2938
## 2940 2939
## 2941 2940
## 2942 2941
## 2943 2942
## 2944 2943
## 2945 2944
## 2946 2945
## 2947 2946
## 2948 2947
## 2949 2948
## 2950 2949
## 2951 2950
## 2952 2951
## 2953 2952
## 2954 2953
## 2955 2954
## 2956 2955
## 2957 2956
## 2958 2957
## 2959 2958
## 2960 2959
## 2961 2960
## 2962 2961
## 2963 2962
## 2964 2963
## 2965 2964
## 2966 2965
## 2967 2966
## 2968 2967
## 2969 2968
## 2970 2969
## 2971 2970
## 2972 2971
## 2973 2972
## 2974 2973
## 2975 2974
## 2976 2975
## 2977 2976
## 2978 2977
## 2979 2978
## 2980 2979
## 2981 2980
## 2982 2981
## 2983 2982
## 2984 2983
## 2985 2984
## 2986 2985
## 2987 2986
## 2988 2987
## 2989 2988
## 2990 2989
## 2991 2990
## 2992 2991
## 2993 2992
## 2994 2993
## 2995 2994
## 2996 2995
## 2997 2996
## 2998 2997
## 2999 2998
## 3000 2999
## 3001 3000
## 3002 3001
## 3003 3002
## 3004 3003
## 3005 3004
## 3006 3005
## 3007 3006
## 3008 3007
## 3009 3008
## 3010 3009
## 3011 3010
## 3012 3011
## 3013 3012
## 3014 3013
## 3015 3014
## 3016 3015
## 3017 3016
## 3018 3017
## 3019 3018
## 3020 3019
## 3021 3020
## 3022 3021
## 3023 3022
## 3024 3023
## 3025 3024
## 3026 3025
## 3027 3026
## 3028 3027
## 3029 3028
## 3030 3029
## 3031 3030
## 3032 3031
## 3033 3032
## 3034 3033
## 3035 3034
## 3036 3035
## 3037 3036
## 3038 3037
## 3039 3038
## 3040 3039
## 3041 3040
## 3042 3041
## 3043 3042
## 3044 3043
## 3045 3044
## 3046 3045
## 3047 3046
## 3048 3047
## 3049 3048
## 3050 3049
## 3051 3050
## 3052 3051
## 3053 3052
## 3054 3053
## 3055 3054
## 3056 3055
## 3057 3056
## 3058 3057
## 3059 3058
## 3060 3059
## 3061 3060
## 3062 3061
## 3063 3062
## 3064 3063
## 3065 3064
## 3066 3065
## 3067 3066
## 3068 3067
## 3069 3068
## 3070 3069
## 3071 3070
## 3072 3071
## 3073 3072
## 3074 3073
## 3075 3074
## 3076 3075
## 3077 3076
## 3078 3077
## 3079 3078
## 3080 3079
## 3081 3080
## 3082 3081
## 3083 3082
## 3084 3083
## 3085 3084
## 3086 3085
## 3087 3086
## 3088 3087
## 3089 3088
## 3090 3089
## 3091 3090
## 3092 3091
## 3093 3092
## 3094 3093
## 3095 3094
## 3096 3095
## 3097 3096
## 3098 3097
## 3099 3098
## 3100 3099
## 3101 3100
## 3102 3101
## 3103 3102
## 3104 3103
## 3105 3104
## 3106 3105
## 3107 3106
## 3108 3107
## 3109 3108
## 3110 3109
## 3111 3110
## 3112 3111
## 3113 3112
## 3114 3113
## 3115 3114
## 3116 3115
## 3117 3116
## 3118 3117
## 3119 3118
## 3120 3119
## 3121 3120
## 3122 3121
## 3123 3122
## 3124 3123
## 3125 3124
## 3126 3125
## 3127 3126
## 3128 3127
## 3129 3128
## 3130 3129
## 3131 3130
## 3132 3131
## 3133 3132
## 3134 3133
## 3135 3134
## 3136 3135
## 3137 3136
## 3138 3137
## 3139 3138
## 3140 3139
## 3141 3140
## 3142 3141
## 3143 3142
## 3144 3143
## 3145 3144
## 3146 3145
## 3147 3146
## 3148 3147
## 3149 3148
## 3150 3149
## 3151 3150
## 3152 3151
## 3153 3152
## 3154 3153
## 3155 3154
## 3156 3155
## 3157 3156
## 3158 3157
## 3159 3158
## 3160 3159
## 3161 3160
## 3162 3161
## 3163 3162
## 3164 3163
## 3165 3164
## 3166 3165
## 3167 3166
## 3168 3167
## 3169 3168
## 3170 3169
## 3171 3170
## 3172 3171
## 3173 3172
## 3174 3173
## 3175 3174
## 3176 3175
## 3177 3176
## 3178 3177
## 3179 3178
## 3180 3179
## 3181 3180
## 3182 3181
## 3183 3182
## 3184 3183
## 3185 3184
## 3186 3185
## 3187 3186
## 3188 3187
## 3189 3188
## 3190 3189
## 3191 3190
## 3192 3191
## 3193 3192
## 3194 3193
## 3195 3194
## 3196 3195
## 3197 3196
## 3198 3197
## 3199 3198
## 3200 3199
## 3201 3200
## 3202 3201
## 3203 3202
## 3204 3203
## 3205 3204
## 3206 3205
## 3207 3206
## 3208 3207
## 3209 3208
## 3210 3209
## 3211 3210
## 3212 3211
## 3213 3212
## 3214 3213
## 3215 3214
## 3216 3215
## 3217 3216
## 3218 3217
## 3219 3218
## 3220 3219
## 3221 3220
## 3222 3221
## 3223 3222
## 3224 3223
## 3225 3224
## 3226 3225
## 3227 3226
## 3228 3227
## 3229 3228
## 3230 3229
## 3231 3230
## 3232 3231
## 3233 3232
## 3234 3233
## 3235 3234
## 3236 3235
## 3237 3236
## 3238 3237
## 3239 3238
## 3240 3239
## 3241 3240
## 3242 3241
## 3243 3242
## 3244 3243
## 3245 3244
## 3246 3245
## 3247 3246
## 3248 3247
## 3249 3248
## 3250 3249
## 3251 3250
## 3252 3251
## 3253 3252
## 3254 3253
## 3255 3254
## 3256 3255
## 3257 3256
## 3258 3257
## 3259 3258
## 3260 3259
## 3261 3260
## 3262 3261
## 3263 3262
## 3264 3263
## 3265 3264
## 3266 3265
## 3267 3266
## 3268 3267
## 3269 3268
## 3270 3269
## 3271 3270
## 3272 3271
## 3273 3272
## 3274 3273
## 3275 3274
## 3276 3275
## 3277 3276
## 3278 3277
## 3279 3278
## 3280 3279
## 3281 3280
## 3282 3281
## 3283 3282
## 3284 3283
## 3285 3284
## 3286 3285
## 3287 3286
## 3288 3287
## 3289 3288
## 3290 3289
## 3291 3290
## 3292 3291
## 3293 3292
## 3294 3293
## 3295 3294
## 3296 3295
## 3297 3296
## 3298 3297
## 3299 3298
## 3300 3299
## 3301 3300
## 3302 3301
## 3303 3302
## 3304 3303
## 3305 3304
## 3306 3305
## 3307 3306
## 3308 3307
## 3309 3308
## 3310 3309
## 3311 3310
## 3312 3311
## 3313 3312
## 3314 3313
## 3315 3314
## 3316 3315
## 3317 3316
## 3318 3317
## 3319 3318
## 3320 3319
## 3321 3320
## 3322 3321
## 3323 3322
## 3324 3323
## 3325 3324
## 3326 3325
## 3327 3326
## 3328 3327
## 3329 3328
## 3330 3329
## 3331 3330
## 3332 3331
## 3333 3332
## 3334 3333
## 3335 3334
## 3336 3335
## 3337 3336
## 3338 3337
## 3339 3338
## 3340 3339
## 3341 3340
## 3342 3341
## 3343 3342
## 3344 3343
## 3345 3344
## 3346 3345
## 3347 3346
## 3348 3347
## 3349 3348
## 3350 3349
## 3351 3350
## 3352 3351
## 3353 3352
## 3354 3353
## 3355 3354
## 3356 3355
## 3357 3356
## 3358 3357
## 3359 3358
## 3360 3359
## 3361 3360
## 3362 3361
## 3363 3362
## 3364 3363
## 3365 3364
## 3366 3365
## 3367 3366
## 3368 3367
## 3369 3368
## 3370 3369
## 3371 3370
## 3372 3371
## 3373 3372
## 3374 3373
## 3375 3374
## 3376 3375
## 3377 3376
## 3378 3377
## 3379 3378
## 3380 3379
## 3381 3380
## 3382 3381
## 3383 3382
## 3384 3383
## 3385 3384
## 3386 3385
## 3387 3386
## 3388 3387
## 3389 3388
## 3390 3389
## 3391 3390
## 3392 3391
## 3393 3392
## 3394 3393
## 3395 3394
## 3396 3395
## 3397 3396
## 3398 3397
## 3399 3398
## 3400 3399
## 3401 3400
## 3402 3401
## 3403 3402
## 3404 3403
## 3405 3404
## 3406 3405
## 3407 3406
## 3408 3407
## 3409 3408
## 3410 3409
## 3411 3410
## 3412 3411
## 3413 3412
## 3414 3413
## 3415 3414
## 3416 3415
## 3417 3416
## 3418 3417
## 3419 3418
## 3420 3419
## 3421 3420
## 3422 3421
## 3423 3422
## 3424 3423
## 3425 3424
## 3426 3425
## 3427 3426
## 3428 3427
## 3429 3428
## 3430 3429
## 3431 3430
## 3432 3431
## 3433 3432
## 3434 3433
## 3435 3434
## 3436 3435
## 3437 3436
## 3438 3437
## 3439 3438
## 3440 3439
## 3441 3440
## 3442 3441
## 3443 3442
## 3444 3443
## 3445 3444
## 3446 3445
## 3447 3446
## 3448 3447
## 3449 3448
## 3450 3449
## 3451 3450
## 3452 3451
## 3453 3452
## 3454 3453
## 3455 3454
## 3456 3455
## 3457 3456
## 3458 3457
## 3459 3458
## 3460 3459
## 3461 3460
## 3462 3461
## 3463 3462
## 3464 3463
## 3465 3464
## 3466 3465
## 3467 3466
## 3468 3467
## 3469 3468
## 3470 3469
## 3471 3470
## 3472 3471
## 3473 3472
## 3474 3473
## 3475 3474
## 3476 3475
## 3477 3476
## 3478 3477
## 3479 3478
## 3480 3479
## 3481 3480
## 3482 3481
## 3483 3482
## 3484 3483
## 3485 3484
## 3486 3485
## 3487 3486
## 3488 3487
## 3489 3488
## 3490 3489
## 3491 3490
## 3492 3491
## 3493 3492
## 3494 3493
## 3495 3494
## 3496 3495
## 3497 3496
## 3498 3497
## 3499 3498
## 3500 3499
## 3501 3500
## 3502 3501
## 3503 3502
## 3504 3503
## 3505 3504
## 3506 3505
## 3507 3506
## 3508 3507
## 3509 3508
## 3510 3509
## 3511 3510
## 3512 3511
## 3513 3512
## 3514 3513
## 3515 3514
## 3516 3515
## 3517 3516
## 3518 3517
## 3519 3518
## 3520 3519
## 3521 3520
## 3522 3521
## 3523 3522
## 3524 3523
## 3525 3524
## 3526 3525
## 3527 3526
## 3528 3527
## 3529 3528
## 3530 3529
## 3531 3530
## 3532 3531
## 3533 3532
## 3534 3533
## 3535 3534
## 3536 3535
## 3537 3536
## 3538 3537
## 3539 3538
## 3540 3539
## 3541 3540
## 3542 3541
## 3543 3542
## 3544 3543
## 3545 3544
## 3546 3545
## 3547 3546
## 3548 3547
## 3549 3548
## 3550 3549
## 3551 3550
## 3552 3551
## 3553 3552
## 3554 3553
## 3555 3554
## 3556 3555
## 3557 3556
## 3558 3557
## 3559 3558
## 3560 3559
## 3561 3560
## 3562 3561
## 3563 3562
## 3564 3563
## 3565 3564
## 3566 3565
## 3567 3566
## 3568 3567
## 3569 3568
## 3570 3569
## 3571 3570
## 3572 3571
## 3573 3572
## 3574 3573
## 3575 3574
## 3576 3575
## 3577 3576
## 3578 3577
## 3579 3578
## 3580 3579
## 3581 3580
## 3582 3581
## 3583 3582
## 3584 3583
## 3585 3584
## 3586 3585
## 3587 3586
## 3588 3587
## 3589 3588
## 3590 3589
## 3591 3590
## 3592 3591
## 3593 3592
## 3594 3593
## 3595 3594
## 3596 3595
## 3597 3596
## 3598 3597
## 3599 3598
## 3600 3599
## 3601 3600
## 3602 3601
## 3603 3602
## 3604 3603
## 3605 3604
## 3606 3605
## 3607 3606
## 3608 3607
## 3609 3608
## 3610 3609
## 3611 3610
## 3612 3611
## 3613 3612
## 3614 3613
## 3615 3614
## 3616 3615
## 3617 3616
## 3618 3617
## 3619 3618
## 3620 3619
## 3621 3620
## 3622 3621
## 3623 3622
## 3624 3623
## 3625 3624
## 3626 3625
## 3627 3626
## 3628 3627
## 3629 3628
## 3630 3629
## 3631 3630
## 3632 3631
## 3633 3632
## 3634 3633
## 3635 3634
## 3636 3635
## 3637 3636
## 3638 3637
## 3639 3638
## 3640 3639
## 3641 3640
## 3642 3641
## 3643 3642
## 3644 3643
## 3645 3644
## 3646 3645
## 3647 3646
## 3648 3647
## 3649 3648
## 3650 3649
## 3651 3650
## 3652 3651
## 3653 3652
## 3654 3653
## 3655 3654
## 3656 3655
## 3657 3656
## 3658 3657
## 3659 3658
## 3660 3659
## 3661 3660
## 3662 3661
## 3663 3662
## 3664 3663
## 3665 3664
## 3666 3665
## 3667 3666
## 3668 3667
## 3669 3668
## 3670 3669
## 3671 3670
## 3672 3671
## 3673 3672
## 3674 3673
## 3675 3674
## 3676 3675
## 3677 3676
## 3678 3677
## 3679 3678
## 3680 3679
## 3681 3680
## 3682 3681
## 3683 3682
## 3684 3683
## 3685 3684
## 3686 3685
## 3687 3686
## 3688 3687
## 3689 3688
## 3690 3689
## 3691 3690
## 3692 3691
## 3693 3692
## 3694 3693
## 3695 3694
## 3696 3695
## 3697 3696
## 3698 3697
## 3699 3698
## 3700 3699
## 3701 3700
## 3702 3701
## 3703 3702
## 3704 3703
## 3705 3704
## 3706 3705
## 3707 3706
## 3708 3707
## 3709 3708
## 3710 3709
## 3711 3710
## 3712 3711
## 3713 3712
## 3714 3713
## 3715 3714
## 3716 3715
## 3717 3716
## 3718 3717
## 3719 3718
## 3720 3719
## 3721 3720
## 3722 3721
## 3723 3722
## 3724 3723
## 3725 3724
## 3726 3725
## 3727 3726
## 3728 3727
## 3729 3728
## 3730 3729
## 3731 3730
## 3732 3731
## 3733 3732
## 3734 3733
## 3735 3734
## 3736 3735
## 3737 3736
## 3738 3737
## 3739 3738
## 3740 3739
## 3741 3740
## 3742 3741
## 3743 3742
## 3744 3743
## 3745 3744
## 3746 3745
## 3747 3746
## 3748 3747
## 3749 3748
## 3750 3749
## 3751 3750
## 3752 3751
## 3753 3752
## 3754 3753
## 3755 3754
## 3756 3755
## 3757 3756
## 3758 3757
## 3759 3758
## 3760 3759
## 3761 3760
## 3762 3761
## 3763 3762
## 3764 3763
## 3765 3764
## 3766 3765
## 3767 3766
## 3768 3767
## 3769 3768
## 3770 3769
## 3771 3770
## 3772 3771
## 3773 3772
## 3774 3773
## 3775 3774
## 3776 3775
## 3777 3776
## 3778 3777
## 3779 3778
## 3780 3779
## 3781 3780
## 3782 3781
## 3783 3782
## 3784 3783
## 3785 3784
## 3786 3785
## 3787 3786
## 3788 3787
## 3789 3788
## 3790 3789
## 3791 3790
## 3792 3791
## 3793 3792
## 3794 3793
## 3795 3794
## 3796 3795
## 3797 3796
## 3798 3797
## 3799 3798
## 3800 3799
## 3801 3800
## 3802 3801
## 3803 3802
## 3804 3803
## 3805 3804
## 3806 3805
## 3807 3806
## 3808 3807
## 3809 3808
## 3810 3809
## 3811 3810
## 3812 3811
## 3813 3812
## 3814 3813
## 3815 3814
## 3816 3815
## 3817 3816
## 3818 3817
## 3819 3818
## 3820 3819
## 3821 3820
## 3822 3821
## 3823 3822
## 3824 3823
## 3825 3824
## 3826 3825
## 3827 3826
## 3828 3827
## 3829 3828
## 3830 3829
## 3831 3830
## 3832 3831
## 3833 3832
## 3834 3833
## 3835 3834
## 3836 3835
## 3837 3836
## 3838 3837
## 3839 3838
## 3840 3839
## 3841 3840
## 3842 3841
## 3843 3842
## 3844 3843
## 3845 3844
## 3846 3845
## 3847 3846
## 3848 3847
## 3849 3848
## 3850 3849
## 3851 3850
## 3852 3851
## 3853 3852
## 3854 3853
## 3855 3854
## 3856 3855
## 3857 3856
## 3858 3857
## 3859 3858
## 3860 3859
## 3861 3860
## 3862 3861
## 3863 3862
## 3864 3863
## 3865 3864
## 3866 3865
## 3867 3866
## 3868 3867
## 3869 3868
## 3870 3869
## 3871 3870
## 3872 3871
## 3873 3872
## 3874 3873
## 3875 3874
## 3876 3875
## 3877 3876
## 3878 3877
## 3879 3878
## 3880 3879
## 3881 3880
## 3882 3881
## 3883 3882
## 3884 3883
## 3885 3884
## 3886 3885
## 3887 3886
## 3888 3887
## 3889 3888
## 3890 3889
## 3891 3890
## 3892 3891
## 3893 3892
## 3894 3893
## 3895 3894
## 3896 3895
## 3897 3896
## 3898 3897
## 3899 3898
## 3900 3899
## 3901 3900
## 3902 3901
## 3903 3902
## 3904 3903
## 3905 3904
## 3906 3905
## 3907 3906
## 3908 3907
## 3909 3908
## 3910 3909
## 3911 3910
## 3912 3911
## 3913 3912
## 3914 3913
## 3915 3914
## 3916 3915
## 3917 3916
## 3918 3917
## 3919 3918
## 3920 3919
## 3921 3920
## 3922 3921
## 3923 3922
## 3924 3923
## 3925 3924
## 3926 3925
## 3927 3926
## 3928 3927
## 3929 3928
## 3930 3929
## 3931 3930
## 3932 3931
## 3933 3932
## 3934 3933
## 3935 3934
## 3936 3935
## 3937 3936
## 3938 3937
## 3939 3938
## 3940 3939
## 3941 3940
## 3942 3941
## 3943 3942
## 3944 3943
## 3945 3944
## 3946 3945
## 3947 3946
## 3948 3947
## 3949 3948
## 3950 3949
## 3951 3950
## 3952 3951
## 3953 3952
## 3954 3953
## 3955 3954
## 3956 3955
## 3957 3956
## 3958 3957
## 3959 3958
## 3960 3959
## 3961 3960
## 3962 3961
## 3963 3962
## 3964 3963
## 3965 3964
## 3966 3965
## 3967 3966
## 3968 3967
## 3969 3968
## 3970 3969
## 3971 3970
## 3972 3971
## 3973 3972
## 3974 3973
## 3975 3974
## 3976 3975
## 3977 3976
## 3978 3977
## 3979 3978
## 3980 3979
## 3981 3980
## 3982 3981
## 3983 3982
## 3984 3983
## 3985 3984
## 3986 3985
## 3987 3986
## 3988 3987
## 3989 3988
## 3990 3989
## 3991 3990
## 3992 3991
## 3993 3992
## 3994 3993
## 3995 3994
## 3996 3995
## 3997 3996
## 3998 3997
## 3999 3998
## 4000 3999
## 4001 4000
## 4002 4001
## 4003 4002
## 4004 4003
## 4005 4004
## 4006 4005
## 4007 4006
## 4008 4007
## 4009 4008
## 4010 4009
## 4011 4010
## 4012 4011
## 4013 4012
## 4014 4013
## 4015 4014
## 4016 4015
## 4017 4016
## 4018 4017
## 4019 4018
## 4020 4019
## 4021 4020
## 4022 4021
## 4023 4022
## 4024 4023
## 4025 4024
## 4026 4025
## 4027 4026
## 4028 4027
## 4029 4028
## 4030 4029
## 4031 4030
## 4032 4031
## 4033 4032
## 4034 4033
## 4035 4034
## 4036 4035
## 4037 4036
## 4038 4037
## 4039 4038
## 4040 4039
## 4041 4040
## 4042 4041
## 4043 4042
## 4044 4043
## 4045 4044
## 4046 4045
## 4047 4046
## 4048 4047
## 4049 4048
## 4050 4049
## 4051 4050
## 4052 4051
## 4053 4052
## 4054 4053
## 4055 4054
## 4056 4055
## 4057 4056
## 4058 4057
## 4059 4058
## 4060 4059
## 4061 4060
## 4062 4061
## 4063 4062
## 4064 4063
## 4065 4064
## 4066 4065
## 4067 4066
## 4068 4067
## 4069 4068
## 4070 4069
## 4071 4070
## 4072 4071
## 4073 4072
## 4074 4073
## 4075 4074
## 4076 4075
## 4077 4076
## 4078 4077
## 4079 4078
## 4080 4079
## 4081 4080
## 4082 4081
## 4083 4082
## 4084 4083
## 4085 4084
## 4086 4085
## 4087 4086
## 4088 4087
## 4089 4088
## 4090 4089
## 4091 4090
## 4092 4091
## 4093 4092
## 4094 4093
## 4095 4094
## 4096 4095
## 4097 4096
## 4098 4097
## 4099 4098
## 4100 4099
## 4101 4100
## 4102 4101
## 4103 4102
## 4104 4103
## 4105 4104
## 4106 4105
## 4107 4106
## 4108 4107
## 4109 4108
## 4110 4109
## 4111 4110
## 4112 4111
## 4113 4112
## 4114 4113
## 4115 4114
## 4116 4115
## 4117 4116
## 4118 4117
## 4119 4118
## 4120 4119
## 4121 4120
## 4122 4121
## 4123 4122
## 4124 4123
## 4125 4124
## 4126 4125
## 4127 4126
## 4128 4127
## 4129 4128
## 4130 4129
## 4131 4130
## 4132 4131
## 4133 4132
## 4134 4133
## 4135 4134
## 4136 4135
## 4137 4136
## 4138 4137
## 4139 4138
## 4140 4139
## 4141 4140
## 4142 4141
## 4143 4142
## 4144 4143
## 4145 4144
## 4146 4145
## 4147 4146
## 4148 4147
## 4149 4148
## 4150 4149
## 4151 4150
## 4152 4151
## 4153 4152
## 4154 4153
## 4155 4154
## 4156 4155
## 4157 4156
## 4158 4157
## 4159 4158
## 4160 4159
## 4161 4160
## 4162 4161
## 4163 4162
## 4164 4163
## 4165 4164
## 4166 4165
## 4167 4166
## 4168 4167
## 4169 4168
## 4170 4169
## 4171 4170
## 4172 4171
## 4173 4172
## 4174 4173
## 4175 4174
## 4176 4175
## 4177 4176
## 4178 4177
## 4179 4178
## 4180 4179
## 4181 4180
## 4182 4181
## 4183 4182
## 4184 4183
## 4185 4184
## 4186 4185
## 4187 4186
## 4188 4187
## 4189 4188
## 4190 4189
## 4191 4190
## 4192 4191
## 4193 4192
## 4194 4193
## 4195 4194
## 4196 4195
## 4197 4196
## 4198 4197
## 4199 4198
## 4200 4199
## 4201 4200
## 4202 4201
## 4203 4202
## 4204 4203
## 4205 4204
## 4206 4205
## 4207 4206
## 4208 4207
## 4209 4208
## 4210 4209
## 4211 4210
## 4212 4211
## 4213 4212
## 4214 4213
## 4215 4214
## 4216 4215
## 4217 4216
## 4218 4217
## 4219 4218
## 4220 4219
## 4221 4220
## 4222 4221
## 4223 4222
## 4224 4223
## 4225 4224
## 4226 4225
## 4227 4226
## 4228 4227
## 4229 4228
## 4230 4229
## 4231 4230
## 4232 4231
## 4233 4232
## 4234 4233
## 4235 4234
## 4236 4235
## 4237 4236
## 4238 4237
## 4239 4238
## 4240 4239
## 4241 4240
## 4242 4241
## 4243 4242
## 4244 4243
## 4245 4244
## 4246 4245
## 4247 4246
## 4248 4247
## 4249 4248
## 4250 4249
## 4251 4250
## 4252 4251
## 4253 4252
## 4254 4253
## 4255 4254
## 4256 4255
## 4257 4256
## 4258 4257
## 4259 4258
## 4260 4259
## 4261 4260
## 4262 4261
## 4263 4262
## 4264 4263
## 4265 4264
## 4266 4265
## 4267 4266
## 4268 4267
## 4269 4268
## 4270 4269
## 4271 4270
## 4272 4271
## 4273 4272
## 4274 4273
## 4275 4274
## 4276 4275
## 4277 4276
## 4278 4277
## 4279 4278
## 4280 4279
## 4281 4280
## 4282 4281
## 4283 4282
## 4284 4283
## 4285 4284
## 4286 4285
## 4287 4286
## 4288 4287
## 4289 4288
## 4290 4289
## 4291 4290
## 4292 4291
## 4293 4292
## 4294 4293
## 4295 4294
## 4296 4295
## 4297 4296
## 4298 4297
## 4299 4298
## 4300 4299
## 4301 4300
## 4302 4301
## 4303 4302
## 4304 4303
## 4305 4304
## 4306 4305
## 4307 4306
## 4308 4307
## 4309 4308
## 4310 4309
## 4311 4310
## 4312 4311
## 4313 4312
## 4314 4313
## 4315 4314
## 4316 4315
## 4317 4316
## 4318 4317
## 4319 4318
## 4320 4319
## 4321 4320
## 4322 4321
## 4323 4322
## 4324 4323
## 4325 4324
## 4326 4325
## 4327 4326
## 4328 4327
## 4329 4328
## 4330 4329
## 4331 4330
## 4332 4331
## 4333 4332
## 4334 4333
## 4335 4334
## 4336 4335
## 4337 4336
## 4338 4337
## 4339 4338
## 4340 4339
## 4341 4340
## 4342 4341
## 4343 4342
## 4344 4343
## 4345 4344
## 4346 4345
## 4347 4346
## 4348 4347
## 4349 4348
## 4350 4349
## 4351 4350
## 4352 4351
## 4353 4352
## 4354 4353
## 4355 4354
## 4356 4355
## 4357 4356
## 4358 4357
## 4359 4358
## 4360 4359
## 4361 4360
## 4362 4361
## 4363 4362
## 4364 4363
## 4365 4364
## 4366 4365
## 4367 4366
## 4368 4367
## 4369 4368
## 4370 4369
## 4371 4370
## 4372 4371
## 4373 4372
## 4374 4373
## 4375 4374
## 4376 4375
## 4377 4376
## 4378 4377
## 4379 4378
## 4380 4379
## 4381 4380
## 4382 4381
## 4383 4382
## 4384 4383
## 4385 4384
## 4386 4385
## 4387 4386
## 4388 4387
## 4389 4388
## 4390 4389
## 4391 4390
## 4392 4391
## 4393 4392
## 4394 4393
## 4395 4394
## 4396 4395
## 4397 4396
## 4398 4397
## 4399 4398
## 4400 4399
## 4401 4400
## 4402 4401
## 4403 4402
## 4404 4403
## 4405 4404
## 4406 4405
## 4407 4406
## 4408 4407
## 4409 4408
## 4410 4409
## 4411 4410
## 4412 4411
## 4413 4412
## 4414 4413
## 4415 4414
## 4416 4415
## 4417 4416
## 4418 4417
## 4419 4418
## 4420 4419
## 4421 4420
## 4422 4421
## 4423 4422
## 4424 4423
## 4425 4424
## 4426 4425
## 4427 4426
## 4428 4427
## 4429 4428
## 4430 4429
## 4431 4430
## 4432 4431
## 4433 4432
## 4434 4433
## 4435 4434
## 4436 4435
## 4437 4436
## 4438 4437
## 4439 4438
## 4440 4439
## 4441 4440
## 4442 4441
## 4443 4442
## 4444 4443
## 4445 4444
## 4446 4445
## 4447 4446
## 4448 4447
## 4449 4448
## 4450 4449
## 4451 4450
## 4452 4451
## 4453 4452
## 4454 4453
## 4455 4454
## 4456 4455
## 4457 4456
## 4458 4457
## 4459 4458
## 4460 4459
## 4461 4460
## 4462 4461
## 4463 4462
## 4464 4463
## 4465 4464
## 4466 4465
## 4467 4466
## 4468 4467
## 4469 4468
## 4470 4469
## 4471 4470
## 4472 4471
## 4473 4472
## 4474 4473
## 4475 4474
## 4476 4475
## 4477 4476
## 4478 4477
## 4479 4478
## 4480 4479
## 4481 4480
## 4482 4481
## 4483 4482
## 4484 4483
## 4485 4484
## 4486 4485
## 4487 4486
## 4488 4487
## 4489 4488
## 4490 4489
## 4491 4490
## 4492 4491
## 4493 4492
## 4494 4493
## 4495 4494
## 4496 4495
## 4497 4496
## 4498 4497
## 4499 4498
## 4500 4499
## 4501 4500
## 4502 4501
## 4503 4502
## 4504 4503
## 4505 4504
## 4506 4505
## 4507 4506
## 4508 4507
## 4509 4508
## 4510 4509
## 4511 4510
## 4512 4511
## 4513 4512
## 4514 4513
## 4515 4514
## 4516 4515
## 4517 4516
## 4518 4517
## 4519 4518
## 4520 4519
## 4521 4520
## 4522 4521
## 4523 4522
## 4524 4523
## 4525 4524
## 4526 4525
## 4527 4526
## 4528 4527
## 4529 4528
## 4530 4529
## 4531 4530
## 4532 4531
## 4533 4532
## 4534 4533
## 4535 4534
## 4536 4535
## 4537 4536
## 4538 4537
## 4539 4538
## 4540 4539
## 4541 4540
## 4542 4541
## 4543 4542
## 4544 4543
## 4545 4544
## 4546 4545
## 4547 4546
## 4548 4547
## 4549 4548
## 4550 4549
## 4551 4550
## 4552 4551
## 4553 4552
## 4554 4553
## 4555 4554
## 4556 4555
## 4557 4556
## 4558 4557
## 4559 4558
## 4560 4559
## 4561 4560
## 4562 4561
## 4563 4562
## 4564 4563
## 4565 4564
## 4566 4565
## 4567 4566
## 4568 4567
## 4569 4568
## 4570 4569
## 4571 4570
## 4572 4571
## 4573 4572
## 4574 4573
## 4575 4574
## 4576 4575
## 4577 4576
## 4578 4577
## 4579 4578
## 4580 4579
## 4581 4580
## 4582 4581
## 4583 4582
## 4584 4583
## 4585 4584
## 4586 4585
## 4587 4586
## 4588 4587
## 4589 4588
## 4590 4589
## 4591 4590
## 4592 4591
## 4593 4592
## 4594 4593
## 4595 4594
## 4596 4595
## 4597 4596
## 4598 4597
## 4599 4598
## 4600 4599
## 4601 4600
## 4602 4601
## 4603 4602
## 4604 4603
## 4605 4604
## 4606 4605
## 4607 4606
## 4608 4607
## 4609 4608
## 4610 4609
## 4611 4610
## 4612 4611
## 4613 4612
## 4614 4613
## 4615 4614
## 4616 4615
## 4617 4616
## 4618 4617
## 4619 4618
## 4620 4619
## 4621 4620
## 4622 4621
## 4623 4622
## 4624 4623
## 4625 4624
## 4626 4625
## 4627 4626
## 4628 4627
## 4629 4628
## 4630 4629
## 4631 4630
## 4632 4631
## 4633 4632
## 4634 4633
## 4635 4634
## 4636 4635
## 4637 4636
## 4638 4637
## 4639 4638
## 4640 4639
## 4641 4640
## 4642 4641
## 4643 4642
## 4644 4643
## 4645 4644
## 4646 4645
## 4647 4646
## 4648 4647
## 4649 4648
## 4650 4649
## 4651 4650
## 4652 4651
## 4653 4652
## 4654 4653
## 4655 4654
## 4656 4655
## 4657 4656
## 4658 4657
## 4659 4658
## 4660 4659
## 4661 4660
## 4662 4661
## 4663 4662
## 4664 4663
## 4665 4664
## 4666 4665
## 4667 4666
## 4668 4667
## 4669 4668
## 4670 4669
## 4671 4670
## 4672 4671
## 4673 4672
## 4674 4673
## 4675 4674
## 4676 4675
## 4677 4676
## 4678 4677
## 4679 4678
## 4680 4679
## 4681 4680
## 4682 4681
## 4683 4682
## 4684 4683
## 4685 4684
## 4686 4685
## 4687 4686
## 4688 4687
## 4689 4688
## 4690 4689
## 4691 4690
## 4692 4691
## 4693 4692
## 4694 4693
## 4695 4694
## 4696 4695
## 4697 4696
## 4698 4697
## 4699 4698
## 4700 4699
## 4701 4700
## 4702 4701
## 4703 4702
## 4704 4703
## 4705 4704
## 4706 4705
## 4707 4706
## 4708 4707
## 4709 4708
## 4710 4709
## 4711 4710
## 4712 4711
## 4713 4712
## 4714 4713
## 4715 4714
## 4716 4715
## 4717 4716
## 4718 4717
## 4719 4718
## 4720 4719
## 4721 4720
## 4722 4721
## 4723 4722
## 4724 4723
## 4725 4724
## 4726 4725
## 4727 4726
## 4728 4727
## 4729 4728
## 4730 4729
## 4731 4730
## 4732 4731
## 4733 4732
## 4734 4733
## 4735 4734
## 4736 4735
## 4737 4736
## 4738 4737
## 4739 4738
## 4740 4739
## 4741 4740
## 4742 4741
## 4743 4742
## 4744 4743
## 4745 4744
## 4746 4745
## 4747 4746
## 4748 4747
## 4749 4748
## 4750 4749
## 4751 4750
## 4752 4751
## 4753 4752
## 4754 4753
## 4755 4754
## 4756 4755
## 4757 4756
## 4758 4757
## 4759 4758
## 4760 4759
## 4761 4760
## 4762 4761
## 4763 4762
## 4764 4763
## 4765 4764
## 4766 4765
## 4767 4766
## 4768 4767
## 4769 4768
## 4770 4769
## 4771 4770
## 4772 4771
## 4773 4772
## 4774 4773
## 4775 4774
## 4776 4775
## 4777 4776
## 4778 4777
## 4779 4778
## 4780 4779
## 4781 4780
## 4782 4781
## 4783 4782
## 4784 4783
## 4785 4784
## 4786 4785
## 4787 4786
## 4788 4787
## 4789 4788
## 4790 4789
## 4791 4790
## 4792 4791
## 4793 4792
## 4794 4793
## 4795 4794
## 4796 4795
## 4797 4796
## 4798 4797
## 4799 4798
## 4800 4799
## 4801 4800
## 4802 4801
## 4803 4802
## 4804 4803
## 4805 4804
## 4806 4805
## 4807 4806
## 4808 4807
## 4809 4808
## 4810 4809
## 4811 4810
## 4812 4811
## 4813 4812
## 4814 4813
## 4815 4814
## 4816 4815
## 4817 4816
## 4818 4817
## 4819 4818
## 4820 4819
## 4821 4820
## 4822 4821
## 4823 4822
## 4824 4823
## 4825 4824
## 4826 4825
## 4827 4826
## 4828 4827
## 4829 4828
## 4830 4829
## 4831 4830
## 4832 4831
## 4833 4832
## 4834 4833
## 4835 4834
## 4836 4835
## 4837 4836
## 4838 4837
## 4839 4838
## 4840 4839
## 4841 4840
## 4842 4841
## 4843 4842
## 4844 4843
## 4845 4844
## 4846 4845
## 4847 4846
## 4848 4847
## 4849 4848
## 4850 4849
## 4851 4850
## 4852 4851
## 4853 4852
## 4854 4853
## 4855 4854
## 4856 4855
## 4857 4856
## 4858 4857
## 4859 4858
## 4860 4859
## 4861 4860
## 4862 4861
## 4863 4862
## 4864 4863
## 4865 4864
## 4866 4865
## 4867 4866
## 4868 4867
## 4869 4868
## 4870 4869
## 4871 4870
## 4872 4871
## 4873 4872
## 4874 4873
## 4875 4874
## 4876 4875
## 4877 4876
## 4878 4877
## 4879 4878
## 4880 4879
## 4881 4880
## 4882 4881
## 4883 4882
## 4884 4883
## 4885 4884
## 4886 4885
## 4887 4886
## 4888 4887
## 4889 4888
## 4890 4889
## 4891 4890
## 4892 4891
## 4893 4892
## 4894 4893
## 4895 4894
## 4896 4895
## 4897 4896
## 4898 4897
## 4899 4898
## 4900 4899
## 4901 4900
## 4902 4901
## 4903 4902
## 4904 4903
## 4905 4904
## 4906 4905
## 4907 4906
## 4908 4907
## 4909 4908
## 4910 4909
## 4911 4910
## 4912 4911
## 4913 4912
## 4914 4913
## 4915 4914
## 4916 4915
## 4917 4916
## 4918 4917
## 4919 4918
## 4920 4919
## 4921 4920
## 4922 4921
## 4923 4922
## 4924 4923
## 4925 4924
## 4926 4925
## 4927 4926
## 4928 4927
## 4929 4928
## 4930 4929
## 4931 4930
## 4932 4931
## 4933 4932
## 4934 4933
## 4935 4934
## 4936 4935
## 4937 4936
## 4938 4937
## 4939 4938
## 4940 4939
## 4941 4940
## 4942 4941
## 4943 4942
## 4944 4943
## 4945 4944
## 4946 4945
## 4947 4946
## 4948 4947
## 4949 4948
## 4950 4949
## 4951 4950
## 4952 4951
## 4953 4952
## 4954 4953
## 4955 4954
## 4956 4955
## 4957 4956
## 4958 4957
## 4959 4958
## 4960 4959
## 4961 4960
## 4962 4961
## 4963 4962
## 4964 4963
## 4965 4964
## 4966 4965
## 4967 4966
## 4968 4967
## 4969 4968
## 4970 4969
## 4971 4970
## 4972 4971
## 4973 4972
## 4974 4973
## 4975 4974
## 4976 4975
## 4977 4976
## 4978 4977
## 4979 4978
## 4980 4979
## 4981 4980
## 4982 4981
## 4983 4982
## 4984 4983
## 4985 4984
## 4986 4985
## 4987 4986
## 4988 4987
## 4989 4988
## 4990 4989
## 4991 4990
## 4992 4991
## 4993 4992
## 4994 4993
## 4995 4994
## 4996 4995
## 4997 4996
## 4998 4997
## 4999 4998
## 5000 4999
## 5001 5000
## 5002 5001
## 5003 5002
## 5004 5003
## 5005 5004
## 5006 5005
## 5007 5006
## 5008 5007
## 5009 5008
## 5010 5009
## 5011 5010
## 5012 5011
## 5013 5012
## 5014 5013
## 5015 5014
## 5016 5015
## 5017 5016
## 5018 5017
## 5019 5018
## 5020 5019
## 5021 5020
## 5022 5021
## 5023 5022
## 5024 5023
## 5025 5024
## 5026 5025
## 5027 5026
## 5028 5027
## 5029 5028
## 5030 5029
## 5031 5030
## 5032 5031
## 5033 5032
## 5034 5033
## 5035 5034
## 5036 5035
## 5037 5036
## 5038 5037
## 5039 5038
## 5040 5039
## 5041 5040
## 5042 5041
## 5043 5042
## 5044 5043
## 5045 5044
## 5046 5045
## 5047 5046
## 5048 5047
## 5049 5048
## 5050 5049
## 5051 5050
## 5052 5051
## 5053 5052
## 5054 5053
## 5055 5054
## 5056 5055
## 5057 5056
## 5058 5057
## 5059 5058
## 5060 5059
## 5061 5060
## 5062 5061
## 5063 5062
## 5064 5063
## 5065 5064
## 5066 5065
## 5067 5066
## 5068 5067
## 5069 5068
## 5070 5069
## 5071 5070
## 5072 5071
## 5073 5072
## 5074 5073
## 5075 5074
## 5076 5075
## 5077 5076
## 5078 5077
## 5079 5078
## 5080 5079
## 5081 5080
## 5082 5081
## 5083 5082
## 5084 5083
## 5085 5084
## 5086 5085
## 5087 5086
## 5088 5087
## 5089 5088
## 5090 5089
## 5091 5090
## 5092 5091
## 5093 5092
## 5094 5093
## 5095 5094
## 5096 5095
## 5097 5096
## 5098 5097
## 5099 5098
## 5100 5099
## 5101 5100
## 5102 5101
## 5103 5102
## 5104 5103
## 5105 5104
## 5106 5105
## 5107 5106
## 5108 5107
## 5109 5108
## 5110 5109
## 5111 5110
## 5112 5111
## 5113 5112
## 5114 5113
## 5115 5114
## 5116 5115
## 5117 5116
## 5118 5117
## 5119 5118
## 5120 5119
## 5121 5120
## 5122 5121
## 5123 5122
## 5124 5123
## 5125 5124
## 5126 5125
## 5127 5126
## 5128 5127
## 5129 5128
## 5130 5129
## 5131 5130
## 5132 5131
## 5133 5132
## 5134 5133
## 5135 5134
## 5136 5135
## 5137 5136
## 5138 5137
## 5139 5138
## 5140 5139
## 5141 5140
## 5142 5141
## 5143 5142
## 5144 5143
## 5145 5144
## 5146 5145
## 5147 5146
## 5148 5147
## 5149 5148
## 5150 5149
## 5151 5150
## 5152 5151
## 5153 5152
## 5154 5153
## 5155 5154
## 5156 5155
## 5157 5156
## 5158 5157
## 5159 5158
## 5160 5159
## 5161 5160
## 5162 5161
## 5163 5162
## 5164 5163
## 5165 5164
## 5166 5165
## 5167 5166
## 5168 5167
## 5169 5168
## 5170 5169
## 5171 5170
## 5172 5171
## 5173 5172
## 5174 5173
## 5175 5174
## 5176 5175
## 5177 5176
## 5178 5177
## 5179 5178
## 5180 5179
## 5181 5180
## 5182 5181
## 5183 5182
## 5184 5183
## 5185 5184
## 5186 5185
## 5187 5186
## 5188 5187
## 5189 5188
## 5190 5189
## 5191 5190
## 5192 5191
## 5193 5192
## 5194 5193
## 5195 5194
## 5196 5195
## 5197 5196
## 5198 5197
## 5199 5198
## 5200 5199
## 5201 5200
## 5202 5201
## 5203 5202
## 5204 5203
## 5205 5204
## 5206 5205
## 5207 5206
## 5208 5207
## 5209 5208
## 5210 5209
## 5211 5210
## 5212 5211
## 5213 5212
## 5214 5213
## 5215 5214
## 5216 5215
## 5217 5216
## 5218 5217
## 5219 5218
## 5220 5219
## 5221 5220
## 5222 5221
## 5223 5222
## 5224 5223
## 5225 5224
## 5226 5225
## 5227 5226
## 5228 5227
## 5229 5228
## 5230 5229
## 5231 5230
## 5232 5231
## 5233 5232
## 5234 5233
## 5235 5234
## 5236 5235
## 5237 5236
## 5238 5237
## 5239 5238
## 5240 5239
## 5241 5240
## 5242 5241
## 5243 5242
## 5244 5243
## 5245 5244
## 5246 5245
## 5247 5246
## 5248 5247
## 5249 5248
## 5250 5249
## 5251 5250
## 5252 5251
## 5253 5252
## 5254 5253
## 5255 5254
## 5256 5255
## 5257 5256
## 5258 5257
## 5259 5258
## 5260 5259
## 5261 5260
## 5262 5261
## 5263 5262
## 5264 5263
## 5265 5264
## 5266 5265
## 5267 5266
## 5268 5267
## 5269 5268
## 5270 5269
## 5271 5270
## 5272 5271
## 5273 5272
## 5274 5273
## 5275 5274
## 5276 5275
## 5277 5276
## 5278 5277
## 5279 5278
## 5280 5279
## 5281 5280
## 5282 5281
## 5283 5282
## 5284 5283
## 5285 5284
## 5286 5285
## 5287 5286
## 5288 5287
## 5289 5288
## 5290 5289
## 5291 5290
## 5292 5291
## 5293 5292
## 5294 5293
## 5295 5294
## 5296 5295
## 5297 5296
## 5298 5297
## 5299 5298
## 5300 5299
## 5301 5300
## 5302 5301
## 5303 5302
## 5304 5303
## 5305 5304
## 5306 5305
## 5307 5306
## 5308 5307
## 5309 5308
## 5310 5309
## 5311 5310
## 5312 5311
## 5313 5312
## 5314 5313
## 5315 5314
## 5316 5315
## 5317 5316
## 5318 5317
## 5319 5318
## 5320 5319
## 5321 5320
## 5322 5321
## 5323 5322
## 5324 5323
## 5325 5324
## 5326 5325
## 5327 5326
## 5328 5327
## 5329 5328
## 5330 5329
## 5331 5330
## 5332 5331
## 5333 5332
## 5334 5333
## 5335 5334
## 5336 5335
## 5337 5336
## 5338 5337
## 5339 5338
## 5340 5339
## 5341 5340
## 5342 5341
## 5343 5342
## 5344 5343
## 5345 5344
## 5346 5345
## 5347 5346
## 5348 5347
## 5349 5348
## 5350 5349
## 5351 5350
## 5352 5351
## 5353 5352
## 5354 5353
## 5355 5354
## 5356 5355
## 5357 5356
## 5358 5357
## 5359 5358
## 5360 5359
## 5361 5360
## 5362 5361
## 5363 5362
## 5364 5363
## 5365 5364
## 5366 5365
## 5367 5366
## 5368 5367
## 5369 5368
## 5370 5369
## 5371 5370
## 5372 5371
## 5373 5372
## 5374 5373
## 5375 5374
## 5376 5375
## 5377 5376
## 5378 5377
## 5379 5378
## 5380 5379
## 5381 5380
## 5382 5381
## 5383 5382
## 5384 5383
## 5385 5384
## 5386 5385
## 5387 5386
## 5388 5387
## 5389 5388
## 5390 5389
## 5391 5390
## 5392 5391
## 5393 5392
## 5394 5393
## 5395 5394
## 5396 5395
## 5397 5396
## 5398 5397
## 5399 5398
## 5400 5399
## 5401 5400
## 5402 5401
## 5403 5402
## 5404 5403
## 5405 5404
## 5406 5405
## 5407 5406
## 5408 5407
## 5409 5408
## 5410 5409
## 5411 5410
## 5412 5411
## 5413 5412
## 5414 5413
## 5415 5414
## 5416 5415
## 5417 5416
## 5418 5417
## 5419 5418
## 5420 5419
## 5421 5420
## 5422 5421
## 5423 5422
## 5424 5423
## 5425 5424
## 5426 5425
## 5427 5426
## 5428 5427
## 5429 5428
## 5430 5429
## 5431 5430
## 5432 5431
## 5433 5432
## 5434 5433
## 5435 5434
## 5436 5435
## 5437 5436
## 5438 5437
## 5439 5438
## 5440 5439
## 5441 5440
## 5442 5441
## 5443 5442
## 5444 5443
## 5445 5444
## 5446 5445
## 5447 5446
## 5448 5447
## 5449 5448
## 5450 5449
## 5451 5450
## 5452 5451
## 5453 5452
## 5454 5453
## 5455 5454
## 5456 5455
## 5457 5456
## 5458 5457
## 5459 5458
## 5460 5459
## 5461 5460
## 5462 5461
## 5463 5462
## 5464 5463
## 5465 5464
## 5466 5465
## 5467 5466
## 5468 5467
## 5469 5468
## 5470 5469
## 5471 5470
## 5472 5471
## 5473 5472
## 5474 5473
## 5475 5474
## 5476 5475
## 5477 5476
## 5478 5477
## 5479 5478
## 5480 5479
## 5481 5480
## 5482 5481
## 5483 5482
## 5484 5483
## 5485 5484
## 5486 5485
## 5487 5486
## 5488 5487
## 5489 5488
## 5490 5489
## 5491 5490
## 5492 5491
## 5493 5492
## 5494 5493
## 5495 5494
## 5496 5495
## 5497 5496
## 5498 5497
## 5499 5498
## 5500 5499
## 5501 5500
## 5502 5501
## 5503 5502
## 5504 5503
## 5505 5504
## 5506 5505
## 5507 5506
## 5508 5507
## 5509 5508
## 5510 5509
## 5511 5510
## 5512 5511
## 5513 5512
## 5514 5513
## 5515 5514
## 5516 5515
## 5517 5516
## 5518 5517
## 5519 5518
## 5520 5519
## 5521 5520
## 5522 5521
## 5523 5522
## 5524 5523
## 5525 5524
## 5526 5525
## 5527 5526
## 5528 5527
## 5529 5528
## 5530 5529
## 5531 5530
## 5532 5531
## 5533 5532
## 5534 5533
## 5535 5534
## 5536 5535
## 5537 5536
## 5538 5537
## 5539 5538
## 5540 5539
## 5541 5540
## 5542 5541
## 5543 5542
## 5544 5543
## 5545 5544
## 5546 5545
## 5547 5546
## 5548 5547
## 5549 5548
## 5550 5549
## 5551 5550
## 5552 5551
## 5553 5552
## 5554 5553
## 5555 5554
## 5556 5555
## 5557 5556
## 5558 5557
## 5559 5558
## 5560 5559
## 5561 5560
## 5562 5561
## 5563 5562
## 5564 5563
## 5565 5564
## 5566 5565
## 5567 5566
## 5568 5567
## 5569 5568
## 5570 5569
## 5571 5570
## 5572 5571
## 5573 5572
## 5574 5573
## 5575 5574
## 5576 5575
## 5577 5576
## 5578 5577
## 5579 5578
## 5580 5579
## 5581 5580
## 5582 5581
## 5583 5582
## 5584 5583
## 5585 5584
## 5586 5585
## 5587 5586
## 5588 5587
## 5589 5588
## 5590 5589
## 5591 5590
## 5592 5591
## 5593 5592
## 5594 5593
## 5595 5594
## 5596 5595
## 5597 5596
## 5598 5597
## 5599 5598
## 5600 5599
## 5601 5600
## 5602 5601
## 5603 5602
## 5604 5603
## 5605 5604
## 5606 5605
## 5607 5606
## 5608 5607
## 5609 5608
## 5610 5609
## 5611 5610
## 5612 5611
## 5613 5612
## 5614 5613
## 5615 5614
## 5616 5615
## 5617 5616
## 5618 5617
## 5619 5618
## 5620 5619
## 5621 5620
## 5622 5621
## 5623 5622
## 5624 5623
## 5625 5624
## 5626 5625
## 5627 5626
## 5628 5627
## 5629 5628
## 5630 5629
## 5631 5630
## 5632 5631
## 5633 5632
## 5634 5633
## 5635 5634
## 5636 5635
## 5637 5636
## 5638 5637
## 5639 5638
## 5640 5639
## 5641 5640
## 5642 5641
## 5643 5642
## 5644 5643
## 5645 5644
## 5646 5645
## 5647 5646
## 5648 5647
## 5649 5648
## 5650 5649
## 5651 5650
## 5652 5651
## 5653 5652
## 5654 5653
## 5655 5654
## 5656 5655
## 5657 5656
## 5658 5657
## 5659 5658
## 5660 5659
## 5661 5660
## 5662 5661
## 5663 5662
## 5664 5663
## 5665 5664
## 5666 5665
## 5667 5666
## 5668 5667
## 5669 5668
## 5670 5669
## 5671 5670
## 5672 5671
## 5673 5672
## 5674 5673
## 5675 5674
## 5676 5675
## 5677 5676
## 5678 5677
## 5679 5678
## 5680 5679
## 5681 5680
## 5682 5681
## 5683 5682
## 5684 5683
## 5685 5684
## 5686 5685
## 5687 5686
## 5688 5687
## 5689 5688
## 5690 5689
## 5691 5690
## 5692 5691
## 5693 5692
## 5694 5693
## 5695 5694
## 5696 5695
## 5697 5696
## 5698 5697
## 5699 5698
## 5700 5699
## 5701 5700
## 5702 5701
## 5703 5702
## 5704 5703
## 5705 5704
## 5706 5705
## 5707 5706
## 5708 5707
## 5709 5708
## 5710 5709
## 5711 5710
## 5712 5711
## 5713 5712
## 5714 5713
## 5715 5714
## 5716 5715
## 5717 5716
## 5718 5717
## 5719 5718
## 5720 5719
## 5721 5720
## 5722 5721
## 5723 5722
## 5724 5723
## 5725 5724
## 5726 5725
## 5727 5726
## 5728 5727
## 5729 5728
## 5730 5729
## 5731 5730
## 5732 5731
## 5733 5732
## 5734 5733
## 5735 5734
## 5736 5735
## 5737 5736
## 5738 5737
## 5739 5738
## 5740 5739
## 5741 5740
## 5742 5741
## 5743 5742
## 5744 5743
## 5745 5744
## 5746 5745
## 5747 5746
## 5748 5747
## 5749 5748
## 5750 5749
## 5751 5750
## 5752 5751
## 5753 5752
## 5754 5753
## 5755 5754
## 5756 5755
## 5757 5756
## 5758 5757
## 5759 5758
## 5760 5759
## 5761 5760
## 5762 5761
## 5763 5762
## 5764 5763
## 5765 5764
## 5766 5765
## 5767 5766
## 5768 5767
## 5769 5768
## 5770 5769
## 5771 5770
## 5772 5771
## 5773 5772
## 5774 5773
## 5775 5774
## 5776 5775
## 5777 5776
## 5778 5777
## 5779 5778
## 5780 5779
## 5781 5780
## 5782 5781
## 5783 5782
## 5784 5783
## 5785 5784
## 5786 5785
## 5787 5786
## 5788 5787
## 5789 5788
## 5790 5789
## 5791 5790
## 5792 5791
## 5793 5792
## 5794 5793
## 5795 5794
## 5796 5795
## 5797 5796
## 5798 5797
## 5799 5798
## 5800 5799
## 5801 5800
## 5802 5801
## 5803 5802
## 5804 5803
## 5805 5804
## 5806 5805
## 5807 5806
## 5808 5807
## 5809 5808
## 5810 5809
## 5811 5810
## 5812 5811
## 5813 5812
## 5814 5813
## 5815 5814
## 5816 5815
## 5817 5816
## 5818 5817
## 5819 5818
## 5820 5819
## 5821 5820
## 5822 5821
## 5823 5822
## 5824 5823
## 5825 5824
## 5826 5825
## 5827 5826
## 5828 5827
## 5829 5828
## 5830 5829
## 5831 5830
## 5832 5831
## 5833 5832
## 5834 5833
## 5835 5834
## 5836 5835
## 5837 5836
## 5838 5837
## 5839 5838
## 5840 5839
## 5841 5840
## 5842 5841
## 5843 5842
## 5844 5843
## 5845 5844
## 5846 5845
## 5847 5846
## 5848 5847
## 5849 5848
## 5850 5849
## 5851 5850
## 5852 5851
## 5853 5852
## 5854 5853
## 5855 5854
## 5856 5855
## 5857 5856
## 5858 5857
## 5859 5858
## 5860 5859
## 5861 5860
## 5862 5861
## 5863 5862
## 5864 5863
## 5865 5864
## 5866 5865
## 5867 5866
## 5868 5867
## 5869 5868
## 5870 5869
## 5871 5870
## 5872 5871
## 5873 5872
## 5874 5873
## 5875 5874
## 5876 5875
## 5877 5876
## 5878 5877
## 5879 5878
## 5880 5879
## 5881 5880
## 5882 5881
## 5883 5882
## 5884 5883
## 5885 5884
## 5886 5885
## 5887 5886
## 5888 5887
## 5889 5888
## 5890 5889
## 5891 5890
## 5892 5891
## 5893 5892
## 5894 5893
## 5895 5894
## 5896 5895
## 5897 5896
## 5898 5897
## 5899 5898
## 5900 5899
## 5901 5900
## 5902 5901
## 5903 5902
## 5904 5903
## 5905 5904
## 5906 5905
## 5907 5906
## 5908 5907
## 5909 5908
## 5910 5909
## 5911 5910
## 5912 5911
## 5913 5912
## 5914 5913
## 5915 5914
## 5916 5915
## 5917 5916
## 5918 5917
## 5919 5918
## 5920 5919
## 5921 5920
## 5922 5921
## 5923 5922
## 5924 5923
## 5925 5924
## 5926 5925
## 5927 5926
## 5928 5927
## 5929 5928
## 5930 5929
## 5931 5930
## 5932 5931
## 5933 5932
## 5934 5933
## 5935 5934
## 5936 5935
## 5937 5936
## 5938 5937
## 5939 5938
## 5940 5939
## 5941 5940
## 5942 5941
## 5943 5942
## 5944 5943
## 5945 5944
## 5946 5945
## 5947 5946
## 5948 5947
## 5949 5948
## 5950 5949
## 5951 5950
## 5952 5951
## 5953 5952
## 5954 5953
## 5955 5954
## 5956 5955
## 5957 5956
## 5958 5957
## 5959 5958
## 5960 5959
## 5961 5960
## 5962 5961
## 5963 5962
## 5964 5963
## 5965 5964
## 5966 5965
## 5967 5966
## 5968 5967
## 5969 5968
## 5970 5969
## 5971 5970
## 5972 5971
## 5973 5972
## 5974 5973
## 5975 5974
## 5976 5975
## 5977 5976
## 5978 5977
## 5979 5978
## 5980 5979
## 5981 5980
## 5982 5981
## 5983 5982
## 5984 5983
## 5985 5984
## 5986 5985
## 5987 5986
## 5988 5987
## 5989 5988
## 5990 5989
## 5991 5990
## 5992 5991
## 5993 5992
## 5994 5993
## 5995 5994
## 5996 5995
## 5997 5996
## 5998 5997
## 5999 5998
## 6000 5999
## 6001 6000
## 6002 6001
## 6003 6002
## 6004 6003
## 6005 6004
## 6006 6005
## 6007 6006
## 6008 6007
## 6009 6008
## 6010 6009
## 6011 6010
## 6012 6011
## 6013 6012
## 6014 6013
## 6015 6014
## 6016 6015
## 6017 6016
## 6018 6017
## 6019 6018
## 6020 6019
## 6021 6020
## 6022 6021
## 6023 6022
## 6024 6023
## 6025 6024
## 6026 6025
## 6027 6026
## 6028 6027
## 6029 6028
## 6030 6029
## 6031 6030
## 6032 6031
## 6033 6032
## 6034 6033
## 6035 6034
## 6036 6035
## 6037 6036
## 6038 6037
## 6039 6038
## 6040 6039
## 6041 6040
## 6042 6041
## 6043 6042
## 6044 6043
## 6045 6044
## 6046 6045
## 6047 6046
## 6048 6047
## 6049 6048
## 6050 6049
## 6051 6050
## 6052 6051
## 6053 6052
## 6054 6053
## 6055 6054
## 6056 6055
## 6057 6056
## 6058 6057
## 6059 6058
## 6060 6059
## 6061 6060
## 6062 6061
## 6063 6062
## 6064 6063
## 6065 6064
## 6066 6065
## 6067 6066
## 6068 6067
## 6069 6068
## 6070 6069
## 6071 6070
## 6072 6071
## 6073 6072
## 6074 6073
## 6075 6074
## 6076 6075
## 6077 6076
## 6078 6077
## 6079 6078
## 6080 6079
## 6081 6080
## 6082 6081
## 6083 6082
## 6084 6083
## 6085 6084
## 6086 6085
## 6087 6086
## 6088 6087
## 6089 6088
## 6090 6089
## 6091 6090
## 6092 6091
## 6093 6092
## 6094 6093
## 6095 6094
## 6096 6095
## 6097 6096
## 6098 6097
## 6099 6098
## 6100 6099
## 6101 6100
## 6102 6101
## 6103 6102
## 6104 6103
## 6105 6104
## 6106 6105
## 6107 6106
## 6108 6107
## 6109 6108
## 6110 6109
## 6111 6110
## 6112 6111
## 6113 6112
## 6114 6113
## 6115 6114
## 6116 6115
## 6117 6116
## 6118 6117
## 6119 6118
## 6120 6119
## 6121 6120
## 6122 6121
## 6123 6122
## 6124 6123
## 6125 6124
## 6126 6125
## 6127 6126
## 6128 6127
## 6129 6128
## 6130 6129
## 6131 6130
## 6132 6131
## 6133 6132
## 6134 6133
## 6135 6134
## 6136 6135
## 6137 6136
## 6138 6137
## 6139 6138
## 6140 6139
## 6141 6140
## 6142 6141
## 6143 6142
## 6144 6143
## 6145 6144
## 6146 6145
## 6147 6146
## 6148 6147
## 6149 6148
## 6150 6149
## 6151 6150
## 6152 6151
## 6153 6152
## 6154 6153
## 6155 6154
## 6156 6155
## 6157 6156
## 6158 6157
## 6159 6158
## 6160 6159
## 6161 6160
## 6162 6161
## 6163 6162
## 6164 6163
## 6165 6164
## 6166 6165
## 6167 6166
## 6168 6167
## 6169 6168
## 6170 6169
## 6171 6170
## 6172 6171
## 6173 6172
## 6174 6173
## 6175 6174
## 6176 6175
## 6177 6176
## 6178 6177
## 6179 6178
## 6180 6179
## 6181 6180
## 6182 6181
## 6183 6182
## 6184 6183
## 6185 6184
## 6186 6185
## 6187 6186
## 6188 6187
## 6189 6188
## 6190 6189
## 6191 6190
## 6192 6191
## 6193 6192
## 6194 6193
## 6195 6194
## 6196 6195
## 6197 6196
## 6198 6197
## 6199 6198
## 6200 6199
## 6201 6200
## 6202 6201
## 6203 6202
## 6204 6203
## 6205 6204
## 6206 6205
## 6207 6206
## 6208 6207
## 6209 6208
## 6210 6209
## 6211 6210
## 6212 6211
## 6213 6212
## 6214 6213
## 6215 6214
## 6216 6215
## 6217 6216
## 6218 6217
## 6219 6218
## 6220 6219
## 6221 6220
## 6222 6221
## 6223 6222
## 6224 6223
## 6225 6224
## 6226 6225
## 6227 6226
## 6228 6227
## 6229 6228
## 6230 6229
## 6231 6230
## 6232 6231
## 6233 6232
## 6234 6233
## 6235 6234
## 6236 6235
## 6237 6236
## 6238 6237
## 6239 6238
## 6240 6239
## 6241 6240
## 6242 6241
## 6243 6242
## 6244 6243
## 6245 6244
## 6246 6245
## 6247 6246
## 6248 6247
## 6249 6248
## 6250 6249
## 6251 6250
## 6252 6251
## 6253 6252
## 6254 6253
## 6255 6254
## 6256 6255
## 6257 6256
## 6258 6257
## 6259 6258
## 6260 6259
## 6261 6260
## 6262 6261
## 6263 6262
## 6264 6263
## 6265 6264
## 6266 6265
## 6267 6266
## 6268 6267
## 6269 6268
## 6270 6269
## 6271 6270
## 6272 6271
## 6273 6272
## 6274 6273
## 6275 6274
## 6276 6275
## 6277 6276
## 6278 6277
## 6279 6278
## 6280 6279
## 6281 6280
## 6282 6281
## 6283 6282
## 6284 6283
## 6285 6284
## 6286 6285
## 6287 6286
## 6288 6287
## 6289 6288
## 6290 6289
## 6291 6290
## 6292 6291
## 6293 6292
## 6294 6293
## 6295 6294
## 6296 6295
## 6297 6296
## 6298 6297
## 6299 6298
## 6300 6299
## 6301 6300
## 6302 6301
## 6303 6302
## 6304 6303
## 6305 6304
## 6306 6305
## 6307 6306
## 6308 6307
## 6309 6308
## 6310 6309
## 6311 6310
## 6312 6311
## 6313 6312
## 6314 6313
## 6315 6314
## 6316 6315
## 6317 6316
## 6318 6317
## 6319 6318
## 6320 6319
## 6321 6320
## 6322 6321
## 6323 6322
## 6324 6323
## 6325 6324
## 6326 6325
## 6327 6326
## 6328 6327
## 6329 6328
## 6330 6329
## 6331 6330
## 6332 6331
## 6333 6332
## 6334 6333
## 6335 6334
## 6336 6335
## 6337 6336
## 6338 6337
## 6339 6338
## 6340 6339
## 6341 6340
## 6342 6341
## 6343 6342
## 6344 6343
## 6345 6344
## 6346 6345
## 6347 6346
## 6348 6347
## 6349 6348
## 6350 6349
## 6351 6350
## 6352 6351
## 6353 6352
## 6354 6353
## 6355 6354
## 6356 6355
## 6357 6356
## 6358 6357
## 6359 6358
## 6360 6359
## 6361 6360
## 6362 6361
## 6363 6362
## 6364 6363
## 6365 6364
## 6366 6365
## 6367 6366
## 6368 6367
## 6369 6368
## 6370 6369
## 6371 6370
## 6372 6371
## 6373 6372
## 6374 6373
## 6375 6374
## 6376 6375
## 6377 6376
## 6378 6377
## 6379 6378
## 6380 6379
## 6381 6380
## 6382 6381
## 6383 6382
## 6384 6383
## 6385 6384
## 6386 6385
## 6387 6386
## 6388 6387
## 6389 6388
## 6390 6389
## 6391 6390
## 6392 6391
## 6393 6392
## 6394 6393
## 6395 6394
## 6396 6395
## 6397 6396
## 6398 6397
## 6399 6398
## 6400 6399
## 6401 6400
## 6402 6401
## 6403 6402
## 6404 6403
## 6405 6404
## 6406 6405
## 6407 6406
## 6408 6407
## 6409 6408
## 6410 6409
## 6411 6410
## 6412 6411
## 6413 6412
## 6414 6413
## 6415 6414
## 6416 6415
## 6417 6416
## 6418 6417
## 6419 6418
## 6420 6419
## 6421 6420
## 6422 6421
## 6423 6422
## 6424 6423
## 6425 6424
## 6426 6425
## 6427 6426
## 6428 6427
## 6429 6428
## 6430 6429
## 6431 6430
## 6432 6431
## 6433 6432
## 6434 6433
## 6435 6434
## 6436 6435
## 6437 6436
## 6438 6437
## 6439 6438
## 6440 6439
## 6441 6440
## 6442 6441
## 6443 6442
## 6444 6443
## 6445 6444
## 6446 6445
## 6447 6446
## 6448 6447
## 6449 6448
## 6450 6449
## 6451 6450
## 6452 6451
## 6453 6452
## 6454 6453
## 6455 6454
## 6456 6455
## 6457 6456
## 6458 6457
## 6459 6458
## 6460 6459
## 6461 6460
## 6462 6461
## 6463 6462
## 6464 6463
## 6465 6464
## 6466 6465
## 6467 6466
## 6468 6467
## 6469 6468
## 6470 6469
## 6471 6470
## 6472 6471
## 6473 6472
## 6474 6473
## 6475 6474
## 6476 6475
## 6477 6476
## 6478 6477
## 6479 6478
## 6480 6479
## 6481 6480
## 6482 6481
## 6483 6482
## 6484 6483
## 6485 6484
## 6486 6485
## 6487 6486
## 6488 6487
## 6489 6488
## 6490 6489
## 6491 6490
## 6492 6491
## 6493 6492
## 6494 6493
## 6495 6494
## 6496 6495
## 6497 6496
## 6498 6497
## 6499 6498
## 6500 6499
## 6501 6500
## 6502 6501
## 6503 6502
## 6504 6503
## 6505 6504
## 6506 6505
## 6507 6506
## 6508 6507
## 6509 6508
## 6510 6509
## 6511 6510
## 6512 6511
## 6513 6512
## 6514 6513
## 6515 6514
## 6516 6515
## 6517 6516
## 6518 6517
## 6519 6518
## 6520 6519
## 6521 6520
## 6522 6521
## 6523 6522
## 6524 6523
## 6525 6524
## 6526 6525
## 6527 6526
## 6528 6527
## 6529 6528
## 6530 6529
## 6531 6530
## 6532 6531
## 6533 6532
## 6534 6533
## 6535 6534
## 6536 6535
## 6537 6536
## 6538 6537
## 6539 6538
## 6540 6539
## 6541 6540
## 6542 6541
## 6543 6542
## 6544 6543
## 6545 6544
## 6546 6545
## 6547 6546
## 6548 6547
## 6549 6548
## 6550 6549
## 6551 6550
## 6552 6551
## 6553 6552
## 6554 6553
## 6555 6554
## 6556 6555
## 6557 6556
## 6558 6557
## 6559 6558
## 6560 6559
## 6561 6560
## 6562 6561
## 6563 6562
## 6564 6563
## 6565 6564
## 6566 6565
## 6567 6566
## 6568 6567
## 6569 6568
## 6570 6569
## 6571 6570
## 6572 6571
## 6573 6572
## 6574 6573
## 6575 6574
## 6576 6575
## 6577 6576
## 6578 6577
## 6579 6578
## 6580 6579
## 6581 6580
## 6582 6581
## 6583 6582
## 6584 6583
## 6585 6584
## 6586 6585
## 6587 6586
## 6588 6587
## 6589 6588
## 6590 6589
## 6591 6590
## 6592 6591
## 6593 6592
## 6594 6593
## 6595 6594
## 6596 6595
## 6597 6596
## 6598 6597
## 6599 6598
## 6600 6599
## 6601 6600
## 6602 6601
## 6603 6602
## 6604 6603
## 6605 6604
## 6606 6605
## 6607 6606
## 6608 6607
## 6609 6608
## 6610 6609
## 6611 6610
## 6612 6611
## 6613 6612
## 6614 6613
## 6615 6614
## 6616 6615
## 6617 6616
## 6618 6617
## 6619 6618
## 6620 6619
## 6621 6620
## 6622 6621
## 6623 6622
## 6624 6623
## 6625 6624
## 6626 6625
## 6627 6626
## 6628 6627
## 6629 6628
## 6630 6629
## 6631 6630
## 6632 6631
## 6633 6632
## 6634 6633
## 6635 6634
## 6636 6635
## 6637 6636
## 6638 6637
## 6639 6638
## 6640 6639
## 6641 6640
## 6642 6641
## 6643 6642
## 6644 6643
## 6645 6644
## 6646 6645
## 6647 6646
## 6648 6647
## 6649 6648
## 6650 6649
## 6651 6650
## 6652 6651
## 6653 6652
## 6654 6653
## 6655 6654
## 6656 6655
## 6657 6656
## 6658 6657
## 6659 6658
## 6660 6659
## 6661 6660
## 6662 6661
## 6663 6662
## 6664 6663
## 6665 6664
## 6666 6665
## 6667 6666
## 6668 6667
## 6669 6668
## 6670 6669
## 6671 6670
## 6672 6671
## 6673 6672
## 6674 6673
## 6675 6674
## 6676 6675
## 6677 6676
## 6678 6677
## 6679 6678
## 6680 6679
## 6681 6680
## 6682 6681
## 6683 6682
## 6684 6683
## 6685 6684
## 6686 6685
## 6687 6686
## 6688 6687
## 6689 6688
## 6690 6689
## 6691 6690
## 6692 6691
## 6693 6692
## 6694 6693
## 6695 6694
## 6696 6695
## 6697 6696
## 6698 6697
## 6699 6698
## 6700 6699
## 6701 6700
## 6702 6701
## 6703 6702
## 6704 6703
## 6705 6704
## 6706 6705
## 6707 6706
## 6708 6707
## 6709 6708
## 6710 6709
## 6711 6710
## 6712 6711
## 6713 6712
## 6714 6713
## 6715 6714
## 6716 6715
## 6717 6716
## 6718 6717
## 6719 6718
## 6720 6719
## 6721 6720
## 6722 6721
## 6723 6722
## 6724 6723
## 6725 6724
## 6726 6725
## 6727 6726
## 6728 6727
## 6729 6728
## 6730 6729
## 6731 6730
## 6732 6731
## 6733 6732
## 6734 6733
## 6735 6734
## 6736 6735
## 6737 6736
## 6738 6737
## 6739 6738
## 6740 6739
## 6741 6740
## 6742 6741
## 6743 6742
## 6744 6743
## 6745 6744
## 6746 6745
## 6747 6746
## 6748 6747
## 6749 6748
## 6750 6749
## 6751 6750
## 6752 6751
## 6753 6752
## 6754 6753
## 6755 6754
## 6756 6755
## 6757 6756
## 6758 6757
## 6759 6758
## 6760 6759
## 6761 6760
## 6762 6761
## 6763 6762
## 6764 6763
## 6765 6764
## 6766 6765
## 6767 6766
## 6768 6767
## 6769 6768
## 6770 6769
## 6771 6770
## 6772 6771
## 6773 6772
## 6774 6773
## 6775 6774
## 6776 6775
## 6777 6776
## 6778 6777
## 6779 6778
## 6780 6779
## 6781 6780
## 6782 6781
## 6783 6782
## 6784 6783
## 6785 6784
## 6786 6785
## 6787 6786
## 6788 6787
## 6789 6788
## 6790 6789
## 6791 6790
## 6792 6791
## 6793 6792
## 6794 6793
## 6795 6794
## 6796 6795
## 6797 6796
## 6798 6797
## 6799 6798
## 6800 6799
## 6801 6800
## 6802 6801
## 6803 6802
## 6804 6803
## 6805 6804
## 6806 6805
## 6807 6806
## 6808 6807
## 6809 6808
## 6810 6809
## 6811 6810
## 6812 6811
## 6813 6812
## 6814 6813
## 6815 6814
## 6816 6815
## 6817 6816
## 6818 6817
## 6819 6818
## 6820 6819
## 6821 6820
## 6822 6821
## 6823 6822
## 6824 6823
## 6825 6824
## 6826 6825
## 6827 6826
## 6828 6827
## 6829 6828
## 6830 6829
## 6831 6830
## 6832 6831
## 6833 6832
## 6834 6833
## 6835 6834
## 6836 6835
## 6837 6836
## 6838 6837
## 6839 6838
## 6840 6839
## 6841 6840
## 6842 6841
## 6843 6842
## 6844 6843
## 6845 6844
## 6846 6845
## 6847 6846
## 6848 6847
## 6849 6848
## 6850 6849
## 6851 6850
## 6852 6851
## 6853 6852
## 6854 6853
## 6855 6854
## 6856 6855
## 6857 6856
## 6858 6857
## 6859 6858
## 6860 6859
## 6861 6860
## 6862 6861
## 6863 6862
## 6864 6863
## 6865 6864
## 6866 6865
## 6867 6866
## 6868 6867
## 6869 6868
## 6870 6869
## 6871 6870
## 6872 6871
## 6873 6872
## 6874 6873
## 6875 6874
## 6876 6875
## 6877 6876
## 6878 6877
## 6879 6878
## 6880 6879
## 6881 6880
## 6882 6881
## 6883 6882
## 6884 6883
## 6885 6884
## 6886 6885
## 6887 6886
## 6888 6887
## 6889 6888
## 6890 6889
## 6891 6890
## 6892 6891
## 6893 6892
## 6894 6893
## 6895 6894
## 6896 6895
## 6897 6896
## 6898 6897
## 6899 6898
## 6900 6899
## 6901 6900
## 6902 6901
## 6903 6902
## 6904 6903
## 6905 6904
## 6906 6905
## 6907 6906
## 6908 6907
## 6909 6908
## 6910 6909
## 6911 6910
## 6912 6911
## 6913 6912
## 6914 6913
## 6915 6914
## 6916 6915
## 6917 6916
## 6918 6917
## 6919 6918
## 6920 6919
## 6921 6920
## 6922 6921
## 6923 6922
## 6924 6923
## 6925 6924
## 6926 6925
## 6927 6926
## 6928 6927
## 6929 6928
## 6930 6929
## 6931 6930
## 6932 6931
## 6933 6932
## 6934 6933
## 6935 6934
## 6936 6935
## 6937 6936
## 6938 6937
## 6939 6938
## 6940 6939
## 6941 6940
## 6942 6941
## 6943 6942
## 6944 6943
## 6945 6944
## 6946 6945
## 6947 6946
## 6948 6947
## 6949 6948
## 6950 6949
## 6951 6950
## 6952 6951
## 6953 6952
## 6954 6953
## 6955 6954
## 6956 6955
## 6957 6956
## 6958 6957
## 6959 6958
## 6960 6959
## 6961 6960
## 6962 6961
## 6963 6962
## 6964 6963
## 6965 6964
## 6966 6965
## 6967 6966
## 6968 6967
## 6969 6968
## 6970 6969
## 6971 6970
## 6972 6971
## 6973 6972
## 6974 6973
## 6975 6974
## 6976 6975
## 6977 6976
## 6978 6977
## 6979 6978
## 6980 6979
## 6981 6980
## 6982 6981
## 6983 6982
## 6984 6983
## 6985 6984
## 6986 6985
## 6987 6986
## 6988 6987
## 6989 6988
## 6990 6989
## 6991 6990
## 6992 6991
## 6993 6992
## 6994 6993
## 6995 6994
## 6996 6995
## 6997 6996
## 6998 6997
## 6999 6998
## 7000 6999
## 7001 7000
## 7002 7001
## 7003 7002
## 7004 7003
## 7005 7004
## 7006 7005
## 7007 7006
## 7008 7007
## 7009 7008
## 7010 7009
## 7011 7010
## 7012 7011
## 7013 7012
## 7014 7013
## 7015 7014
## 7016 7015
## 7017 7016
## 7018 7017
## 7019 7018
## 7020 7019
## 7021 7020
## 7022 7021
## 7023 7022
## 7024 7023
## 7025 7024
## 7026 7025
## 7027 7026
## 7028 7027
## 7029 7028
## 7030 7029
## 7031 7030
## 7032 7031
## 7033 7032
## 7034 7033
## 7035 7034
## 7036 7035
## 7037 7036
## 7038 7037
## 7039 7038
## 7040 7039
## 7041 7040
## 7042 7041
## 7043 7042
## 7044 7043
## 7045 7044
## 7046 7045
## 7047 7046
## 7048 7047
## 7049 7048
## 7050 7049
## 7051 7050
## 7052 7051
## 7053 7052
## 7054 7053
## 7055 7054
## 7056 7055
## 7057 7056
## 7058 7057
## 7059 7058
## 7060 7059
## 7061 7060
## 7062 7061
## 7063 7062
## 7064 7063
## 7065 7064
## 7066 7065
## 7067 7066
## 7068 7067
## 7069 7068
## 7070 7069
## 7071 7070
## 7072 7071
## 7073 7072
## 7074 7073
## 7075 7074
## 7076 7075
## 7077 7076
## 7078 7077
## 7079 7078
## 7080 7079
## 7081 7080
## 7082 7081
## 7083 7082
## 7084 7083
## 7085 7084
## 7086 7085
## 7087 7086
## 7088 7087
## 7089 7088
## 7090 7089
## 7091 7090
## 7092 7091
## 7093 7092
## 7094 7093
## 7095 7094
## 7096 7095
## 7097 7096
## 7098 7097
## 7099 7098
## 7100 7099
## 7101 7100
## 7102 7101
## 7103 7102
## 7104 7103
## 7105 7104
## 7106 7105
## 7107 7106
## 7108 7107
## 7109 7108
## 7110 7109
## 7111 7110
## 7112 7111
## 7113 7112
## 7114 7113
## 7115 7114
## 7116 7115
## 7117 7116
## 7118 7117
## 7119 7118
## 7120 7119
## 7121 7120
## 7122 7121
## 7123 7122
## 7124 7123
## 7125 7124
## 7126 7125
## 7127 7126
## 7128 7127
## 7129 7128
## 7130 7129
## 7131 7130
## 7132 7131
## 7133 7132
## 7134 7133
## 7135 7134
## 7136 7135
## 7137 7136
## 7138 7137
## 7139 7138
## 7140 7139
## 7141 7140
## 7142 7141
## 7143 7142
## 7144 7143
## 7145 7144
## 7146 7145
## 7147 7146
## 7148 7147
## 7149 7148
## 7150 7149
## 7151 7150
## 7152 7151
## 7153 7152
## 7154 7153
## 7155 7154
## 7156 7155
## 7157 7156
## 7158 7157
## 7159 7158
## 7160 7159
## 7161 7160
## 7162 7161
## 7163 7162
## 7164 7163
## 7165 7164
## 7166 7165
## 7167 7166
## 7168 7167
## 7169 7168
## 7170 7169
## 7171 7170
## 7172 7171
## 7173 7172
## 7174 7173
## 7175 7174
## 7176 7175
## 7177 7176
## 7178 7177
## 7179 7178
## 7180 7179
## 7181 7180
## 7182 7181
## 7183 7182
## 7184 7183
## 7185 7184
## 7186 7185
## 7187 7186
## 7188 7187
## 7189 7188
## 7190 7189
## 7191 7190
## 7192 7191
## 7193 7192
## 7194 7193
## 7195 7194
## 7196 7195
## 7197 7196
## 7198 7197
## 7199 7198
## 7200 7199
## 7201 7200
## 7202 7201
## 7203 7202
## 7204 7203
## 7205 7204
## 7206 7205
## 7207 7206
## 7208 7207
## 7209 7208
## 7210 7209
## 7211 7210
## 7212 7211
## 7213 7212
## 7214 7213
## 7215 7214
## 7216 7215
## 7217 7216
## 7218 7217
## 7219 7218
## 7220 7219
## 7221 7220
## 7222 7221
## 7223 7222
## 7224 7223
## 7225 7224
## 7226 7225
## 7227 7226
## 7228 7227
## 7229 7228
## 7230 7229
## 7231 7230
## 7232 7231
## 7233 7232
## 7234 7233
## 7235 7234
## 7236 7235
## 7237 7236
## 7238 7237
## 7239 7238
## 7240 7239
## 7241 7240
## 7242 7241
## 7243 7242
## 7244 7243
## 7245 7244
## 7246 7245
## 7247 7246
## 7248 7247
## 7249 7248
## 7250 7249
## 7251 7250
## 7252 7251
## 7253 7252
## 7254 7253
## 7255 7254
## 7256 7255
## 7257 7256
## 7258 7257
## 7259 7258
## 7260 7259
## 7261 7260
## 7262 7261
## 7263 7262
## 7264 7263
## 7265 7264
## 7266 7265
## 7267 7266
## 7268 7267
## 7269 7268
## 7270 7269
## 7271 7270
## 7272 7271
## 7273 7272
## 7274 7273
## 7275 7274
## 7276 7275
## 7277 7276
## 7278 7277
## 7279 7278
## 7280 7279
## 7281 7280
## 7282 7281
## 7283 7282
## 7284 7283
## 7285 7284
## 7286 7285
## 7287 7286
## 7288 7287
## 7289 7288
## 7290 7289
## 7291 7290
## 7292 7291
## 7293 7292
## 7294 7293
## 7295 7294
## 7296 7295
## 7297 7296
## 7298 7297
## 7299 7298
## 7300 7299
## 7301 7300
## 7302 7301
## 7303 7302
## 7304 7303
## 7305 7304
## 7306 7305
## 7307 7306
## 7308 7307
## 7309 7308
## 7310 7309
## 7311 7310
## 7312 7311
## 7313 7312
## 7314 7313
## 7315 7314
## 7316 7315
## 7317 7316
## 7318 7317
## 7319 7318
## 7320 7319
## 7321 7320
## 7322 7321
## 7323 7322
## 7324 7323
## 7325 7324
## 7326 7325
## 7327 7326
## 7328 7327
## 7329 7328
## 7330 7329
## 7331 7330
## 7332 7331
## 7333 7332
## 7334 7333
## 7335 7334
## 7336 7335
## 7337 7336
## 7338 7337
## 7339 7338
## 7340 7339
## 7341 7340
## 7342 7341
## 7343 7342
## 7344 7343
## 7345 7344
## 7346 7345
## 7347 7346
## 7348 7347
## 7349 7348
## 7350 7349
## 7351 7350
## 7352 7351
## 7353 7352
## 7354 7353
## 7355 7354
## 7356 7355
## 7357 7356
## 7358 7357
## 7359 7358
## 7360 7359
## 7361 7360
## 7362 7361
## 7363 7362
## 7364 7363
## 7365 7364
## 7366 7365
## 7367 7366
## 7368 7367
## 7369 7368
## 7370 7369
## 7371 7370
## 7372 7371
## 7373 7372
## 7374 7373
## 7375 7374
## 7376 7375
## 7377 7376
## 7378 7377
## 7379 7378
## 7380 7379
## 7381 7380
## 7382 7381
## 7383 7382
## 7384 7383
## 7385 7384
## 7386 7385
## 7387 7386
## 7388 7387
## 7389 7388
## 7390 7389
## 7391 7390
## 7392 7391
## 7393 7392
## 7394 7393
## 7395 7394
## 7396 7395
## 7397 7396
## 7398 7397
## 7399 7398
## 7400 7399
## 7401 7400
## 7402 7401
## 7403 7402
## 7404 7403
## 7405 7404
## 7406 7405
## 7407 7406
## 7408 7407
## 7409 7408
## 7410 7409
## 7411 7410
## 7412 7411
## 7413 7412
## 7414 7413
## 7415 7414
## 7416 7415
## 7417 7416
## 7418 7417
## 7419 7418
## 7420 7419
## 7421 7420
## 7422 7421
## 7423 7422
## 7424 7423
## 7425 7424
## 7426 7425
## 7427 7426
## 7428 7427
## 7429 7428
## 7430 7429
## 7431 7430
## 7432 7431
## 7433 7432
## 7434 7433
## 7435 7434
## 7436 7435
## 7437 7436
## 7438 7437
## 7439 7438
## 7440 7439
## 7441 7440
## 7442 7441
## 7443 7442
## 7444 7443
## 7445 7444
## 7446 7445
## 7447 7446
## 7448 7447
## 7449 7448
## 7450 7449
## 7451 7450
## 7452 7451
## 7453 7452
## 7454 7453
## 7455 7454
## 7456 7455
## 7457 7456
## 7458 7457
## 7459 7458
## 7460 7459
## 7461 7460
## 7462 7461
## 7463 7462
## 7464 7463
## 7465 7464
## 7466 7465
## 7467 7466
## 7468 7467
## 7469 7468
## 7470 7469
## 7471 7470
## 7472 7471
## 7473 7472
## 7474 7473
## 7475 7474
## 7476 7475
## 7477 7476
## 7478 7477
## 7479 7478
## 7480 7479
## 7481 7480
## 7482 7481
## 7483 7482
## 7484 7483
## 7485 7484
## 7486 7485
## 7487 7486
## 7488 7487
## 7489 7488
## 7490 7489
## 7491 7490
## 7492 7491
## 7493 7492
## 7494 7493
## 7495 7494
## 7496 7495
## 7497 7496
## 7498 7497
## 7499 7498
## 7500 7499
## 7501 7500
## 7502 7501
## 7503 7502
## 7504 7503
## 7505 7504
## 7506 7505
## 7507 7506
## 7508 7507
## 7509 7508
## 7510 7509
## 7511 7510
## 7512 7511
## 7513 7512
## 7514 7513
## 7515 7514
## 7516 7515
## 7517 7516
## 7518 7517
## 7519 7518
## 7520 7519
## 7521 7520
## 7522 7521
## 7523 7522
## 7524 7523
## 7525 7524
## 7526 7525
## 7527 7526
## 7528 7527
## 7529 7528
## 7530 7529
## 7531 7530
## 7532 7531
## 7533 7532
## 7534 7533
## 7535 7534
## 7536 7535
## 7537 7536
## 7538 7537
## 7539 7538
## 7540 7539
## 7541 7540
## 7542 7541
## 7543 7542
## 7544 7543
## 7545 7544
## 7546 7545
## 7547 7546
## 7548 7547
## 7549 7548
## 7550 7549
## 7551 7550
## 7552 7551
## 7553 7552
## 7554 7553
## 7555 7554
## 7556 7555
## 7557 7556
## 7558 7557
## 7559 7558
## 7560 7559
## 7561 7560
## 7562 7561
## 7563 7562
## 7564 7563
## 7565 7564
## 7566 7565
## 7567 7566
## 7568 7567
## 7569 7568
## 7570 7569
## 7571 7570
## 7572 7571
## 7573 7572
## 7574 7573
## 7575 7574
## 7576 7575
## 7577 7576
## 7578 7577
## 7579 7578
## 7580 7579
## 7581 7580
## 7582 7581
## 7583 7582
## 7584 7583
## 7585 7584
## 7586 7585
## 7587 7586
## 7588 7587
## 7589 7588
## 7590 7589
## 7591 7590
## 7592 7591
## 7593 7592
## 7594 7593
## 7595 7594
## 7596 7595
## 7597 7596
## 7598 7597
## 7599 7598
## 7600 7599
## 7601 7600
## 7602 7601
## 7603 7602
## 7604 7603
## 7605 7604
## 7606 7605
## 7607 7606
## 7608 7607
## 7609 7608
## 7610 7609
## 7611 7610
## 7612 7611
## 7613 7612
## 7614 7613
## 7615 7614
## 7616 7615
## 7617 7616
## 7618 7617
## 7619 7618
## 7620 7619
## 7621 7620
## 7622 7621
## 7623 7622
## 7624 7623
## 7625 7624
## 7626 7625
## 7627 7626
## 7628 7627
## 7629 7628
## 7630 7629
## 7631 7630
## 7632 7631
## 7633 7632
## 7634 7633
## 7635 7634
## 7636 7635
## 7637 7636
## 7638 7637
## 7639 7638
## 7640 7639
## 7641 7640
## 7642 7641
## 7643 7642
## 7644 7643
## 7645 7644
## 7646 7645
## 7647 7646
## 7648 7647
## 7649 7648
## 7650 7649
## 7651 7650
## 7652 7651
## 7653 7652
## 7654 7653
## 7655 7654
## 7656 7655
## 7657 7656
## 7658 7657
## 7659 7658
## 7660 7659
## 7661 7660
## 7662 7661
## 7663 7662
## 7664 7663
## 7665 7664
## 7666 7665
## 7667 7666
## 7668 7667
## 7669 7668
## 7670 7669
## 7671 7670
## 7672 7671
## 7673 7672
## 7674 7673
## 7675 7674
## 7676 7675
## 7677 7676
## 7678 7677
## 7679 7678
## 7680 7679
## 7681 7680
## 7682 7681
## 7683 7682
## 7684 7683
## 7685 7684
## 7686 7685
## 7687 7686
## 7688 7687
## 7689 7688
## 7690 7689
## 7691 7690
## 7692 7691
## 7693 7692
## 7694 7693
## 7695 7694
## 7696 7695
## 7697 7696
## 7698 7697
## 7699 7698
## 7700 7699
## 7701 7700
## 7702 7701
## 7703 7702
## 7704 7703
## 7705 7704
## 7706 7705
## 7707 7706
## 7708 7707
## 7709 7708
## 7710 7709
## 7711 7710
## 7712 7711
## 7713 7712
## 7714 7713
## 7715 7714
## 7716 7715
## 7717 7716
## 7718 7717
## 7719 7718
## 7720 7719
## 7721 7720
## 7722 7721
## 7723 7722
## 7724 7723
## 7725 7724
## 7726 7725
## 7727 7726
## 7728 7727
## 7729 7728
## 7730 7729
## 7731 7730
## 7732 7731
## 7733 7732
## 7734 7733
## 7735 7734
## 7736 7735
## 7737 7736
## 7738 7737
## 7739 7738
## 7740 7739
## 7741 7740
## 7742 7741
## 7743 7742
## 7744 7743
## 7745 7744
## 7746 7745
## 7747 7746
## 7748 7747
## 7749 7748
## 7750 7749
## 7751 7750
## 7752 7751
## 7753 7752
## 7754 7753
## 7755 7754
## 7756 7755
## 7757 7756
## 7758 7757
## 7759 7758
## 7760 7759
## 7761 7760
## 7762 7761
## 7763 7762
## 7764 7763
## 7765 7764
## 7766 7765
## 7767 7766
## 7768 7767
## 7769 7768
## 7770 7769
## 7771 7770
## 7772 7771
## 7773 7772
## 7774 7773
## 7775 7774
## 7776 7775
## 7777 7776
## 7778 7777
## 7779 7778
## 7780 7779
## 7781 7780
## 7782 7781
## 7783 7782
## 7784 7783
## 7785 7784
## 7786 7785
## 7787 7786
## 7788 7787
## 7789 7788
## 7790 7789
## 7791 7790
## 7792 7791
## 7793 7792
## 7794 7793
## 7795 7794
## 7796 7795
## 7797 7796
## 7798 7797
## 7799 7798
## 7800 7799
## 7801 7800
## 7802 7801
## 7803 7802
## 7804 7803
## 7805 7804
## 7806 7805
## 7807 7806
## 7808 7807
## 7809 7808
## 7810 7809
## 7811 7810
## 7812 7811
## 7813 7812
## 7814 7813
## 7815 7814
## 7816 7815
## 7817 7816
## 7818 7817
## 7819 7818
## 7820 7819
## 7821 7820
## 7822 7821
## 7823 7822
## 7824 7823
## 7825 7824
## 7826 7825
## 7827 7826
## 7828 7827
## 7829 7828
## 7830 7829
## 7831 7830
## 7832 7831
## 7833 7832
## 7834 7833
## 7835 7834
## 7836 7835
## 7837 7836
## 7838 7837
## 7839 7838
## 7840 7839
## 7841 7840
## 7842 7841
## 7843 7842
## 7844 7843
## 7845 7844
## 7846 7845
## 7847 7846
## 7848 7847
## 7849 7848
## 7850 7849
## 7851 7850
## 7852 7851
## 7853 7852
## 7854 7853
## 7855 7854
## 7856 7855
## 7857 7856
## 7858 7857
## 7859 7858
## 7860 7859
## 7861 7860
## 7862 7861
## 7863 7862
## 7864 7863
## 7865 7864
## 7866 7865
## 7867 7866
## 7868 7867
## 7869 7868
## 7870 7869
## 7871 7870
## 7872 7871
## 7873 7872
## 7874 7873
## 7875 7874
## 7876 7875
## 7877 7876
## 7878 7877
## 7879 7878
## 7880 7879
## 7881 7880
## 7882 7881
## 7883 7882
## 7884 7883
## 7885 7884
## 7886 7885
## 7887 7886
## 7888 7887
## 7889 7888
## 7890 7889
## 7891 7890
## 7892 7891
## 7893 7892
## 7894 7893
## 7895 7894
## 7896 7895
## 7897 7896
## 7898 7897
## 7899 7898
## 7900 7899
## 7901 7900
## 7902 7901
## 7903 7902
## 7904 7903
## 7905 7904
## 7906 7905
## 7907 7906
## 7908 7907
## 7909 7908
## 7910 7909
## 7911 7910
## 7912 7911
## 7913 7912
## 7914 7913
## 7915 7914
## 7916 7915
## 7917 7916
## 7918 7917
## 7919 7918
## 7920 7919
## 7921 7920
## 7922 7921
## 7923 7922
## 7924 7923
## 7925 7924
## 7926 7925
## 7927 7926
## 7928 7927
## 7929 7928
## 7930 7929
## 7931 7930
## 7932 7931
## 7933 7932
## 7934 7933
## 7935 7934
## 7936 7935
## 7937 7936
## 7938 7937
## 7939 7938
## 7940 7939
## 7941 7940
## 7942 7941
## 7943 7942
## 7944 7943
## 7945 7944
## 7946 7945
## 7947 7946
## 7948 7947
## 7949 7948
## 7950 7949
## 7951 7950
## 7952 7951
## 7953 7952
## 7954 7953
## 7955 7954
## 7956 7955
## 7957 7956
## 7958 7957
## 7959 7958
## 7960 7959
## 7961 7960
## 7962 7961
## 7963 7962
## 7964 7963
## 7965 7964
## 7966 7965
## 7967 7966
## 7968 7967
## 7969 7968
## 7970 7969
## 7971 7970
## 7972 7971
## 7973 7972
## 7974 7973
## 7975 7974
## 7976 7975
## 7977 7976
## 7978 7977
## 7979 7978
## 7980 7979
## 7981 7980
## 7982 7981
## 7983 7982
## 7984 7983
## 7985 7984
## 7986 7985
## 7987 7986
## 7988 7987
## 7989 7988
## 7990 7989
## 7991 7990
## 7992 7991
## 7993 7992
## 7994 7993
## 7995 7994
## 7996 7995
## 7997 7996
## 7998 7997
## 7999 7998
## 8000 7999
## 8001 8000
## 8002 8001
## 8003 8002
## 8004 8003
## 8005 8004
## 8006 8005
## 8007 8006
## 8008 8007
## 8009 8008
## 8010 8009
## 8011 8010
## 8012 8011
## 8013 8012
## 8014 8013
## 8015 8014
## 8016 8015
## 8017 8016
## 8018 8017
## 8019 8018
## 8020 8019
## 8021 8020
## 8022 8021
## 8023 8022
## 8024 8023
## 8025 8024
## 8026 8025
## 8027 8026
## 8028 8027
## 8029 8028
## 8030 8029
## 8031 8030
## 8032 8031
## 8033 8032
## 8034 8033
## 8035 8034
## 8036 8035
## 8037 8036
## 8038 8037
## 8039 8038
## 8040 8039
## 8041 8040
## 8042 8041
## 8043 8042
## 8044 8043
## 8045 8044
## 8046 8045
## 8047 8046
## 8048 8047
## 8049 8048
## 8050 8049
## 8051 8050
## 8052 8051
## 8053 8052
## 8054 8053
## 8055 8054
## 8056 8055
## 8057 8056
## 8058 8057
## 8059 8058
## 8060 8059
## 8061 8060
## 8062 8061
## 8063 8062
## 8064 8063
## 8065 8064
## 8066 8065
## 8067 8066
## 8068 8067
## 8069 8068
## 8070 8069
## 8071 8070
## 8072 8071
## 8073 8072
## 8074 8073
## 8075 8074
## 8076 8075
## 8077 8076
## 8078 8077
## 8079 8078
## 8080 8079
## 8081 8080
## 8082 8081
## 8083 8082
## 8084 8083
## 8085 8084
## 8086 8085
## 8087 8086
## 8088 8087
## 8089 8088
## 8090 8089
## 8091 8090
## 8092 8091
## 8093 8092
## 8094 8093
## 8095 8094
## 8096 8095
## 8097 8096
## 8098 8097
## 8099 8098
## 8100 8099
## 8101 8100
## 8102 8101
## 8103 8102
## 8104 8103
## 8105 8104
## 8106 8105
## 8107 8106
## 8108 8107
## 8109 8108
## 8110 8109
## 8111 8110
## 8112 8111
## 8113 8112
## 8114 8113
## 8115 8114
## 8116 8115
## 8117 8116
## 8118 8117
## 8119 8118
## 8120 8119
## 8121 8120
## 8122 8121
## 8123 8122
## 8124 8123
## 8125 8124
## 8126 8125
## 8127 8126
## 8128 8127
## 8129 8128
## 8130 8129
## 8131 8130
## 8132 8131
## 8133 8132
## 8134 8133
## 8135 8134
## 8136 8135
## 8137 8136
## 8138 8137
## 8139 8138
## 8140 8139
## 8141 8140
## 8142 8141
## 8143 8142
## 8144 8143
## 8145 8144
## 8146 8145
## 8147 8146
## 8148 8147
## 8149 8148
## 8150 8149
## 8151 8150
## 8152 8151
## 8153 8152
## 8154 8153
## 8155 8154
## 8156 8155
## 8157 8156
## 8158 8157
## 8159 8158
## 8160 8159
## 8161 8160
## 8162 8161
## 8163 8162
## 8164 8163
## 8165 8164
## 8166 8165
## 8167 8166
## 8168 8167
## 8169 8168
## 8170 8169
## 8171 8170
## 8172 8171
## 8173 8172
## 8174 8173
## 8175 8174
## 8176 8175
## 8177 8176
## 8178 8177
## 8179 8178
## 8180 8179
## 8181 8180
## 8182 8181
## 8183 8182
## 8184 8183
## 8185 8184
## 8186 8185
## 8187 8186
## 8188 8187
## 8189 8188
## 8190 8189
## 8191 8190
## 8192 8191
## 8193 8192
## 8194 8193
## 8195 8194
## 8196 8195
## 8197 8196
## 8198 8197
## 8199 8198
## 8200 8199
## 8201 8200
## 8202 8201
## 8203 8202
## 8204 8203
## 8205 8204
## 8206 8205
## 8207 8206
## 8208 8207
## 8209 8208
## 8210 8209
## 8211 8210
## 8212 8211
## 8213 8212
## 8214 8213
## 8215 8214
## 8216 8215
## 8217 8216
## 8218 8217
## 8219 8218
## 8220 8219
## 8221 8220
## 8222 8221
## 8223 8222
## 8224 8223
## 8225 8224
## 8226 8225
## 8227 8226
## 8228 8227
## 8229 8228
## 8230 8229
## 8231 8230
## 8232 8231
## 8233 8232
## 8234 8233
## 8235 8234
## 8236 8235
## 8237 8236
## 8238 8237
## 8239 8238
## 8240 8239
## 8241 8240
## 8242 8241
## 8243 8242
## 8244 8243
## 8245 8244
## 8246 8245
## 8247 8246
## 8248 8247
## 8249 8248
## 8250 8249
## 8251 8250
## 8252 8251
## 8253 8252
## 8254 8253
## 8255 8254
## 8256 8255
## 8257 8256
## 8258 8257
## 8259 8258
## 8260 8259
## 8261 8260
## 8262 8261
## 8263 8262
## 8264 8263
## 8265 8264
## 8266 8265
## 8267 8266
## 8268 8267
## 8269 8268
## 8270 8269
## 8271 8270
## 8272 8271
## 8273 8272
## 8274 8273
## 8275 8274
## 8276 8275
## 8277 8276
## 8278 8277
## 8279 8278
## 8280 8279
## 8281 8280
## 8282 8281
## 8283 8282
## 8284 8283
## 8285 8284
## 8286 8285
## 8287 8286
## 8288 8287
## 8289 8288
## 8290 8289
## 8291 8290
## 8292 8291
## 8293 8292
## 8294 8293
## 8295 8294
## 8296 8295
## 8297 8296
## 8298 8297
## 8299 8298
## 8300 8299
## 8301 8300
## 8302 8301
## 8303 8302
## 8304 8303
## 8305 8304
## 8306 8305
## 8307 8306
## 8308 8307
## 8309 8308
## 8310 8309
## 8311 8310
## 8312 8311
## 8313 8312
## 8314 8313
## 8315 8314
## 8316 8315
## 8317 8316
## 8318 8317
## 8319 8318
## 8320 8319
## 8321 8320
## 8322 8321
## 8323 8322
## 8324 8323
## 8325 8324
## 8326 8325
## 8327 8326
## 8328 8327
## 8329 8328
## 8330 8329
## 8331 8330
## 8332 8331
## 8333 8332
## 8334 8333
## 8335 8334
## 8336 8335
## 8337 8336
## 8338 8337
## 8339 8338
## 8340 8339
## 8341 8340
## 8342 8341
## 8343 8342
## 8344 8343
## 8345 8344
## 8346 8345
## 8347 8346
## 8348 8347
## 8349 8348
## 8350 8349
## 8351 8350
## 8352 8351
## 8353 8352
## 8354 8353
## 8355 8354
## 8356 8355
## 8357 8356
## 8358 8357
## 8359 8358
## 8360 8359
## 8361 8360
## 8362 8361
## 8363 8362
## 8364 8363
## 8365 8364
## 8366 8365
## 8367 8366
## 8368 8367
## 8369 8368
## 8370 8369
## 8371 8370
## 8372 8371
## 8373 8372
## 8374 8373
## 8375 8374
## 8376 8375
## 8377 8376
## 8378 8377
## 8379 8378
## 8380 8379
## 8381 8380
## 8382 8381
## 8383 8382
## 8384 8383
## 8385 8384
## 8386 8385
## 8387 8386
## 8388 8387
## 8389 8388
## 8390 8389
## 8391 8390
## 8392 8391
## 8393 8392
## 8394 8393
## 8395 8394
## 8396 8395
## 8397 8396
## 8398 8397
## 8399 8398
## 8400 8399
## 8401 8400
## 8402 8401
## 8403 8402
## 8404 8403
## 8405 8404
## 8406 8405
## 8407 8406
## 8408 8407
## 8409 8408
## 8410 8409
## 8411 8410
## 8412 8411
## 8413 8412
## 8414 8413
## 8415 8414
## 8416 8415
## 8417 8416
## 8418 8417
## 8419 8418
## 8420 8419
## 8421 8420
## 8422 8421
## 8423 8422
## 8424 8423
## 8425 8424
## 8426 8425
## 8427 8426
## 8428 8427
## 8429 8428
## 8430 8429
## 8431 8430
## 8432 8431
## 8433 8432
## 8434 8433
## 8435 8434
## 8436 8435
## 8437 8436
## 8438 8437
## 8439 8438
## 8440 8439
## 8441 8440
## 8442 8441
## 8443 8442
## 8444 8443
## 8445 8444
## 8446 8445
## 8447 8446
## 8448 8447
## 8449 8448
## 8450 8449
## 8451 8450
## 8452 8451
## 8453 8452
## 8454 8453
## 8455 8454
## 8456 8455
## 8457 8456
## 8458 8457
## 8459 8458
## 8460 8459
## 8461 8460
## 8462 8461
## 8463 8462
## 8464 8463
## 8465 8464
## 8466 8465
## 8467 8466
## 8468 8467
## 8469 8468
## 8470 8469
## 8471 8470
## 8472 8471
## 8473 8472
## 8474 8473
## 8475 8474
## 8476 8475
## 8477 8476
## 8478 8477
## 8479 8478
## 8480 8479
## 8481 8480
## 8482 8481
## 8483 8482
## 8484 8483
## 8485 8484
## 8486 8485
## 8487 8486
## 8488 8487
## 8489 8488
## 8490 8489
## 8491 8490
## 8492 8491
## 8493 8492
## 8494 8493
## 8495 8494
## 8496 8495
## 8497 8496
## 8498 8497
## 8499 8498
## 8500 8499
## 8501 8500
## 8502 8501
## 8503 8502
## 8504 8503
## 8505 8504
## 8506 8505
## 8507 8506
## 8508 8507
## 8509 8508
## 8510 8509
## 8511 8510
## 8512 8511
## 8513 8512
## 8514 8513
## 8515 8514
## 8516 8515
## 8517 8516
## 8518 8517
## 8519 8518
## 8520 8519
## 8521 8520
## 8522 8521
## 8523 8522
## 8524 8523
## 8525 8524
## 8526 8525
## 8527 8526
## 8528 8527
## 8529 8528
## 8530 8529
## 8531 8530
## 8532 8531
## 8533 8532
## 8534 8533
## 8535 8534
## 8536 8535
## 8537 8536
## 8538 8537
## 8539 8538
## 8540 8539
## 8541 8540
## 8542 8541
## 8543 8542
## 8544 8543
## 8545 8544
## 8546 8545
## 8547 8546
## 8548 8547
## 8549 8548
## 8550 8549
## 8551 8550
## 8552 8551
## 8553 8552
## 8554 8553
## 8555 8554
## 8556 8555
## 8557 8556
## 8558 8557
## 8559 8558
## 8560 8559
## 8561 8560
## 8562 8561
## 8563 8562
## 8564 8563
## 8565 8564
## 8566 8565
## 8567 8566
## 8568 8567
## 8569 8568
## 8570 8569
## 8571 8570
## 8572 8571
## 8573 8572
## 8574 8573
## 8575 8574
## 8576 8575
## 8577 8576
## 8578 8577
## 8579 8578
## 8580 8579
## 8581 8580
## 8582 8581
## 8583 8582
## 8584 8583
## 8585 8584
## 8586 8585
## 8587 8586
## 8588 8587
## 8589 8588
## 8590 8589
## 8591 8590
## 8592 8591
## 8593 8592
## 8594 8593
## 8595 8594
## 8596 8595
## 8597 8596
## 8598 8597
## 8599 8598
## 8600 8599
## 8601 8600
## 8602 8601
## 8603 8602
## 8604 8603
## 8605 8604
## 8606 8605
## 8607 8606
## 8608 8607
## 8609 8608
## 8610 8609
## 8611 8610
## 8612 8611
## 8613 8612
## 8614 8613
## 8615 8614
## 8616 8615
## 8617 8616
## 8618 8617
## 8619 8618
## 8620 8619
## 8621 8620
## 8622 8621
## 8623 8622
## 8624 8623
## 8625 8624
## 8626 8625
## 8627 8626
## 8628 8627
## 8629 8628
## 8630 8629
## 8631 8630
## 8632 8631
## 8633 8632
## 8634 8633
## 8635 8634
## 8636 8635
## 8637 8636
## 8638 8637
## 8639 8638
## 8640 8639
## 8641 8640
## 8642 8641
## 8643 8642
## 8644 8643
## 8645 8644
## 8646 8645
## 8647 8646
## 8648 8647
## 8649 8648
## 8650 8649
## 8651 8650
## 8652 8651
## 8653 8652
## 8654 8653
## 8655 8654
## 8656 8655
## 8657 8656
## 8658 8657
## 8659 8658
## 8660 8659
## 8661 8660
## 8662 8661
## 8663 8662
## 8664 8663
## 8665 8664
## 8666 8665
## 8667 8666
## 8668 8667
## 8669 8668
## 8670 8669
## 8671 8670
## 8672 8671
## 8673 8672
## 8674 8673
## 8675 8674
## 8676 8675
## 8677 8676
## 8678 8677
## 8679 8678
## 8680 8679
## 8681 8680
## 8682 8681
## 8683 8682
## 8684 8683
## 8685 8684
## 8686 8685
## 8687 8686
## 8688 8687
## 8689 8688
## 8690 8689
## 8691 8690
## 8692 8691
## 8693 8692
## 8694 8693
## 8695 8694
## 8696 8695
## 8697 8696
## 8698 8697
## 8699 8698
## 8700 8699
## 8701 8700
## 8702 8701
## 8703 8702
## 8704 8703
## 8705 8704
## 8706 8705
## 8707 8706
## 8708 8707
## 8709 8708
## 8710 8709
## 8711 8710
## 8712 8711
## 8713 8712
## 8714 8713
## 8715 8714
## 8716 8715
## 8717 8716
## 8718 8717
## 8719 8718
## 8720 8719
## 8721 8720
## 8722 8721
## 8723 8722
## 8724 8723
## 8725 8724
## 8726 8725
## 8727 8726
## 8728 8727
## 8729 8728
## 8730 8729
## 8731 8730
## 8732 8731
## 8733 8732
## 8734 8733
## 8735 8734
## 8736 8735
## 8737 8736
## 8738 8737
## 8739 8738
## 8740 8739
## 8741 8740
## 8742 8741
## 8743 8742
## 8744 8743
## 8745 8744
## 8746 8745
## 8747 8746
## 8748 8747
## 8749 8748
## 8750 8749
## 8751 8750
## 8752 8751
## 8753 8752
## 8754 8753
## 8755 8754
## 8756 8755
## 8757 8756
## 8758 8757
## 8759 8758
## 8760 8759
## 8761 8760
## 8762 8761
## 8763 8762
## 8764 8763
## 8765 8764
## 8766 8765
## 8767 8766
## 8768 8767
## 8769 8768
## 8770 8769
## 8771 8770
## 8772 8771
## 8773 8772
## 8774 8773
## 8775 8774
## 8776 8775
## 8777 8776
## 8778 8777
## 8779 8778
## 8780 8779
## 8781 8780
## 8782 8781
## 8783 8782
## 8784 8783
## 8785 8784
## 8786 8785
## 8787 8786
## 8788 8787
## 8789 8788
## 8790 8789
## 8791 8790
## 8792 8791
## 8793 8792
## 8794 8793
## 8795 8794
## 8796 8795
## 8797 8796
## 8798 8797
## 8799 8798
## 8800 8799
## 8801 8800
## 8802 8801
## 8803 8802
## 8804 8803
## 8805 8804
## 8806 8805
## 8807 8806
## 8808 8807
## 8809 8808
## 8810 8809
## 8811 8810
## 8812 8811
## 8813 8812
## 8814 8813
## 8815 8814
## 8816 8815
## 8817 8816
## 8818 8817
## 8819 8818
## 8820 8819
## 8821 8820
## 8822 8821
## 8823 8822
## 8824 8823
## 8825 8824
## 8826 8825
## 8827 8826
## 8828 8827
## 8829 8828
## 8830 8829
## 8831 8830
## 8832 8831
## 8833 8832
## 8834 8833
## 8835 8834
## 8836 8835
## 8837 8836
## 8838 8837
## 8839 8838
## 8840 8839
## 8841 8840
## 8842 8841
## 8843 8842
## 8844 8843
## 8845 8844
## 8846 8845
## 8847 8846
## 8848 8847
## 8849 8848
## 8850 8849
## 8851 8850
## 8852 8851
## 8853 8852
## 8854 8853
## 8855 8854
## 8856 8855
## 8857 8856
## 8858 8857
## 8859 8858
## 8860 8859
## 8861 8860
## 8862 8861
## 8863 8862
## 8864 8863
## 8865 8864
## 8866 8865
## 8867 8866
## 8868 8867
## 8869 8868
## 8870 8869
## 8871 8870
## 8872 8871
## 8873 8872
## 8874 8873
## 8875 8874
## 8876 8875
## 8877 8876
## 8878 8877
## 8879 8878
## 8880 8879
## 8881 8880
## 8882 8881
## 8883 8882
## 8884 8883
## 8885 8884
## 8886 8885
## 8887 8886
## 8888 8887
## 8889 8888
## 8890 8889
## 8891 8890
## 8892 8891
## 8893 8892
## 8894 8893
## 8895 8894
## 8896 8895
## 8897 8896
## 8898 8897
## 8899 8898
## 8900 8899
## 8901 8900
## 8902 8901
## 8903 8902
## 8904 8903
## 8905 8904
## 8906 8905
## 8907 8906
## 8908 8907
## 8909 8908
## 8910 8909
## 8911 8910
## 8912 8911
## 8913 8912
## 8914 8913
## 8915 8914
## 8916 8915
## 8917 8916
## 8918 8917
## 8919 8918
## 8920 8919
## 8921 8920
## 8922 8921
## 8923 8922
## 8924 8923
## 8925 8924
## 8926 8925
## 8927 8926
## 8928 8927
## 8929 8928
## 8930 8929
## 8931 8930
## 8932 8931
## 8933 8932
## 8934 8933
## 8935 8934
## 8936 8935
## 8937 8936
## 8938 8937
## 8939 8938
## 8940 8939
## 8941 8940
## 8942 8941
## 8943 8942
## 8944 8943
## 8945 8944
## 8946 8945
## 8947 8946
## 8948 8947
## 8949 8948
## 8950 8949
## 8951 8950
## 8952 8951
## 8953 8952
## 8954 8953
## 8955 8954
## 8956 8955
## 8957 8956
## 8958 8957
## 8959 8958
## 8960 8959
## 8961 8960
## 8962 8961
## 8963 8962
## 8964 8963
## 8965 8964
## 8966 8965
## 8967 8966
## 8968 8967
## 8969 8968
## 8970 8969
## 8971 8970
## 8972 8971
## 8973 8972
## 8974 8973
## 8975 8974
## 8976 8975
## 8977 8976
## 8978 8977
## 8979 8978
## 8980 8979
## 8981 8980
## 8982 8981
## 8983 8982
## 8984 8983
## 8985 8984
## 8986 8985
## 8987 8986
## 8988 8987
## 8989 8988
## 8990 8989
## 8991 8990
## 8992 8991
## 8993 8992
## 8994 8993
## 8995 8994
## 8996 8995
## 8997 8996
## 8998 8997
## 8999 8998
## 9000 8999
## 9001 9000
## 9002 9001
## 9003 9002
## 9004 9003
## 9005 9004
## 9006 9005
## 9007 9006
## 9008 9007
## 9009 9008
## 9010 9009
## 9011 9010
## 9012 9011
## 9013 9012
## 9014 9013
## 9015 9014
## 9016 9015
## 9017 9016
## 9018 9017
## 9019 9018
## 9020 9019
## 9021 9020
## 9022 9021
## 9023 9022
## 9024 9023
## 9025 9024
## 9026 9025
## 9027 9026
## 9028 9027
## 9029 9028
## 9030 9029
## 9031 9030
## 9032 9031
## 9033 9032
## 9034 9033
## 9035 9034
## 9036 9035
## 9037 9036
## 9038 9037
## 9039 9038
## 9040 9039
## 9041 9040
## 9042 9041
## 9043 9042
## 9044 9043
## 9045 9044
## 9046 9045
## 9047 9046
## 9048 9047
## 9049 9048
## 9050 9049
## 9051 9050
## 9052 9051
## 9053 9052
## 9054 9053
## 9055 9054
## 9056 9055
## 9057 9056
## 9058 9057
## 9059 9058
## 9060 9059
## 9061 9060
## 9062 9061
## 9063 9062
## 9064 9063
## 9065 9064
## 9066 9065
## 9067 9066
## 9068 9067
## 9069 9068
## 9070 9069
## 9071 9070
## 9072 9071
## 9073 9072
## 9074 9073
## 9075 9074
## 9076 9075
## 9077 9076
## 9078 9077
## 9079 9078
## 9080 9079
## 9081 9080
## 9082 9081
## 9083 9082
## 9084 9083
## 9085 9084
## 9086 9085
## 9087 9086
## 9088 9087
## 9089 9088
## 9090 9089
## 9091 9090
## 9092 9091
## 9093 9092
## 9094 9093
## 9095 9094
## 9096 9095
## 9097 9096
## 9098 9097
## 9099 9098
## 9100 9099
## 9101 9100
## 9102 9101
## 9103 9102
## 9104 9103
## 9105 9104
## 9106 9105
## 9107 9106
## 9108 9107
## 9109 9108
## 9110 9109
## 9111 9110
## 9112 9111
## 9113 9112
## 9114 9113
## 9115 9114
## 9116 9115
## 9117 9116
## 9118 9117
## 9119 9118
## 9120 9119
## 9121 9120
## 9122 9121
## 9123 9122
## 9124 9123
## 9125 9124
## 9126 9125
## 9127 9126
## 9128 9127
## 9129 9128
## 9130 9129
## 9131 9130
## 9132 9131
## 9133 9132
## 9134 9133
## 9135 9134
## 9136 9135
## 9137 9136
## 9138 9137
## 9139 9138
## 9140 9139
## 9141 9140
## 9142 9141
## 9143 9142
## 9144 9143
## 9145 9144
## 9146 9145
## 9147 9146
## 9148 9147
## 9149 9148
## 9150 9149
## 9151 9150
## 9152 9151
## 9153 9152
## 9154 9153
## 9155 9154
## 9156 9155
## 9157 9156
## 9158 9157
## 9159 9158
## 9160 9159
## 9161 9160
## 9162 9161
## 9163 9162
## 9164 9163
## 9165 9164
## 9166 9165
## 9167 9166
## 9168 9167
## 9169 9168
## 9170 9169
## 9171 9170
## 9172 9171
## 9173 9172
## 9174 9173
## 9175 9174
## 9176 9175
## 9177 9176
## 9178 9177
## 9179 9178
## 9180 9179
## 9181 9180
## 9182 9181
## 9183 9182
## 9184 9183
## 9185 9184
## 9186 9185
## 9187 9186
## 9188 9187
## 9189 9188
## 9190 9189
## 9191 9190
## 9192 9191
## 9193 9192
## 9194 9193
## 9195 9194
## 9196 9195
## 9197 9196
## 9198 9197
## 9199 9198
## 9200 9199
## 9201 9200
## 9202 9201
## 9203 9202
## 9204 9203
## 9205 9204
## 9206 9205
## 9207 9206
## 9208 9207
## 9209 9208
## 9210 9209
## 9211 9210
## 9212 9211
## 9213 9212
## 9214 9213
## 9215 9214
## 9216 9215
## 9217 9216
## 9218 9217
## 9219 9218
## 9220 9219
## 9221 9220
## 9222 9221
## 9223 9222
## 9224 9223
## 9225 9224
## 9226 9225
## 9227 9226
## 9228 9227
## 9229 9228
## 9230 9229
## 9231 9230
## 9232 9231
## 9233 9232
## 9234 9233
## 9235 9234
## 9236 9235
## 9237 9236
## 9238 9237
## 9239 9238
## 9240 9239
## 9241 9240
## 9242 9241
## 9243 9242
## 9244 9243
## 9245 9244
## 9246 9245
## 9247 9246
## 9248 9247
## 9249 9248
## 9250 9249
## 9251 9250
## 9252 9251
## 9253 9252
## 9254 9253
## 9255 9254
## 9256 9255
## 9257 9256
## 9258 9257
## 9259 9258
## 9260 9259
## 9261 9260
## 9262 9261
## 9263 9262
## 9264 9263
## 9265 9264
## 9266 9265
## 9267 9266
## 9268 9267
## 9269 9268
## 9270 9269
## 9271 9270
## 9272 9271
## 9273 9272
## 9274 9273
## 9275 9274
## 9276 9275
## 9277 9276
## 9278 9277
## 9279 9278
## 9280 9279
## 9281 9280
## 9282 9281
## 9283 9282
## 9284 9283
## 9285 9284
## 9286 9285
## 9287 9286
## 9288 9287
## 9289 9288
## 9290 9289
## 9291 9290
## 9292 9291
## 9293 9292
## 9294 9293
## 9295 9294
## 9296 9295
## 9297 9296
## 9298 9297
## 9299 9298
## 9300 9299
## 9301 9300
## 9302 9301
## 9303 9302
## 9304 9303
## 9305 9304
## 9306 9305
## 9307 9306
## 9308 9307
## 9309 9308
## 9310 9309
## 9311 9310
## 9312 9311
## 9313 9312
## 9314 9313
## 9315 9314
## 9316 9315
## 9317 9316
## 9318 9317
## 9319 9318
## 9320 9319
## 9321 9320
## 9322 9321
## 9323 9322
## 9324 9323
## 9325 9324
## 9326 9325
## 9327 9326
## 9328 9327
## 9329 9328
## 9330 9329
## 9331 9330
## 9332 9331
## 9333 9332
## 9334 9333
## 9335 9334
## 9336 9335
## 9337 9336
## 9338 9337
## 9339 9338
## 9340 9339
## 9341 9340
## 9342 9341
## 9343 9342
## 9344 9343
## 9345 9344
## 9346 9345
## 9347 9346
## 9348 9347
## 9349 9348
## 9350 9349
## 9351 9350
## 9352 9351
## 9353 9352
## 9354 9353
## 9355 9354
## 9356 9355
## 9357 9356
## 9358 9357
## 9359 9358
## 9360 9359
## 9361 9360
## 9362 9361
## 9363 9362
## 9364 9363
## 9365 9364
## 9366 9365
## 9367 9366
## 9368 9367
## 9369 9368
## 9370 9369
## 9371 9370
## 9372 9371
## 9373 9372
## 9374 9373
## 9375 9374
## 9376 9375
## 9377 9376
## 9378 9377
## 9379 9378
## 9380 9379
## 9381 9380
## 9382 9381
## 9383 9382
## 9384 9383
## 9385 9384
## 9386 9385
## 9387 9386
## 9388 9387
## 9389 9388
## 9390 9389
## 9391 9390
## 9392 9391
## 9393 9392
## 9394 9393
## 9395 9394
## 9396 9395
## 9397 9396
## 9398 9397
## 9399 9398
## 9400 9399
## 9401 9400
## 9402 9401
## 9403 9402
## 9404 9403
## 9405 9404
## 9406 9405
## 9407 9406
## 9408 9407
## 9409 9408
## 9410 9409
## 9411 9410
## 9412 9411
## 9413 9412
## 9414 9413
## 9415 9414
## 9416 9415
## 9417 9416
## 9418 9417
## 9419 9418
## 9420 9419
## 9421 9420
## 9422 9421
## 9423 9422
## 9424 9423
## 9425 9424
## 9426 9425
## 9427 9426
## 9428 9427
## 9429 9428
## 9430 9429
## 9431 9430
## 9432 9431
## 9433 9432
## 9434 9433
## 9435 9434
## 9436 9435
## 9437 9436
## 9438 9437
## 9439 9438
## 9440 9439
## 9441 9440
## 9442 9441
## 9443 9442
## 9444 9443
## 9445 9444
## 9446 9445
## 9447 9446
## 9448 9447
## 9449 9448
## 9450 9449
## 9451 9450
## 9452 9451
## 9453 9452
## 9454 9453
## 9455 9454
## 9456 9455
## 9457 9456
## 9458 9457
## 9459 9458
## 9460 9459
## 9461 9460
## 9462 9461
## 9463 9462
## 9464 9463
## 9465 9464
## 9466 9465
## 9467 9466
## 9468 9467
## 9469 9468
## 9470 9469
## 9471 9470
## 9472 9471
## 9473 9472
## 9474 9473
## 9475 9474
## 9476 9475
## 9477 9476
## 9478 9477
## 9479 9478
## 9480 9479
## 9481 9480
## 9482 9481
## 9483 9482
## 9484 9483
## 9485 9484
## 9486 9485
## 9487 9486
## 9488 9487
## 9489 9488
## 9490 9489
## 9491 9490
## 9492 9491
## 9493 9492
## 9494 9493
## 9495 9494
## 9496 9495
## 9497 9496
## 9498 9497
## 9499 9498
## 9500 9499
## 9501 9500
## 9502 9501
## 9503 9502
## 9504 9503
## 9505 9504
## 9506 9505
## 9507 9506
## 9508 9507
## 9509 9508
## 9510 9509
## 9511 9510
## 9512 9511
## 9513 9512
## 9514 9513
## 9515 9514
## 9516 9515
## 9517 9516
## 9518 9517
## 9519 9518
## 9520 9519
## 9521 9520
## 9522 9521
## 9523 9522
## 9524 9523
## 9525 9524
## 9526 9525
## 9527 9526
## 9528 9527
## 9529 9528
## 9530 9529
## 9531 9530
## 9532 9531
## 9533 9532
## 9534 9533
## 9535 9534
## 9536 9535
## 9537 9536
## 9538 9537
## 9539 9538
## 9540 9539
## 9541 9540
## 9542 9541
## 9543 9542
## 9544 9543
## 9545 9544
## 9546 9545
## 9547 9546
## 9548 9547
## 9549 9548
## 9550 9549
## 9551 9550
## 9552 9551
## 9553 9552
## 9554 9553
## 9555 9554
## 9556 9555
## 9557 9556
## 9558 9557
## 9559 9558
## 9560 9559
## 9561 9560
## 9562 9561
## 9563 9562
## 9564 9563
## 9565 9564
## 9566 9565
## 9567 9566
## 9568 9567
## 9569 9568
## 9570 9569
## 9571 9570
## 9572 9571
## 9573 9572
## 9574 9573
## 9575 9574
## 9576 9575
## 9577 9576
## 9578 9577
## 9579 9578
## 9580 9579
## 9581 9580
## 9582 9581
## 9583 9582
## 9584 9583
## 9585 9584
## 9586 9585
## 9587 9586
## 9588 9587
## 9589 9588
## 9590 9589
## 9591 9590
## 9592 9591
## 9593 9592
## 9594 9593
## 9595 9594
## 9596 9595
## 9597 9596
## 9598 9597
## 9599 9598
## 9600 9599
## 9601 9600
## 9602 9601
## 9603 9602
## 9604 9603
## 9605 9604
## 9606 9605
## 9607 9606
## 9608 9607
## 9609 9608
## 9610 9609
## 9611 9610
## 9612 9611
## 9613 9612
## 9614 9613
## 9615 9614
## 9616 9615
## 9617 9616
## 9618 9617
## 9619 9618
## 9620 9619
## 9621 9620
## 9622 9621
## 9623 9622
## 9624 9623
## 9625 9624
## 9626 9625
## 9627 9626
## 9628 9627
## 9629 9628
## 9630 9629
## 9631 9630
## 9632 9631
## 9633 9632
## 9634 9633
## 9635 9634
## 9636 9635
## 9637 9636
## 9638 9637
## 9639 9638
## 9640 9639
## 9641 9640
## 9642 9641
## 9643 9642
## 9644 9643
## 9645 9644
## 9646 9645
## 9647 9646
## 9648 9647
## 9649 9648
## 9650 9649
## 9651 9650
## 9652 9651
## 9653 9652
## 9654 9653
## 9655 9654
## 9656 9655
## 9657 9656
## 9658 9657
## 9659 9658
## 9660 9659
## 9661 9660
## 9662 9661
## 9663 9662
## 9664 9663
## 9665 9664
## 9666 9665
## 9667 9666
## 9668 9667
## 9669 9668
## 9670 9669
## 9671 9670
## 9672 9671
## 9673 9672
## 9674 9673
## 9675 9674
## 9676 9675
## 9677 9676
## 9678 9677
## 9679 9678
## 9680 9679
## 9681 9680
## 9682 9681
## 9683 9682
## 9684 9683
## 9685 9684
## 9686 9685
## 9687 9686
## 9688 9687
## 9689 9688
## 9690 9689
## 9691 9690
## 9692 9691
## 9693 9692
## 9694 9693
## 9695 9694
## 9696 9695
## 9697 9696
## 9698 9697
## 9699 9698
## 9700 9699
## 9701 9700
## 9702 9701
## 9703 9702
## 9704 9703
## 9705 9704
## 9706 9705
## 9707 9706
## 9708 9707
## 9709 9708
## 9710 9709
## 9711 9710
## 9712 9711
## 9713 9712
## 9714 9713
## 9715 9714
## 9716 9715
## 9717 9716
## 9718 9717
## 9719 9718
## 9720 9719
## 9721 9720
## 9722 9721
## 9723 9722
## 9724 9723
## 9725 9724
## 9726 9725
## 9727 9726
## 9728 9727
## 9729 9728
## 9730 9729
## 9731 9730
## 9732 9731
## 9733 9732
## 9734 9733
## 9735 9734
## 9736 9735
## 9737 9736
## 9738 9737
## 9739 9738
## 9740 9739
## 9741 9740
## 9742 9741
## 9743 9742
## 9744 9743
## 9745 9744
## 9746 9745
## 9747 9746
## 9748 9747
## 9749 9748
## 9750 9749
## 9751 9750
## 9752 9751
## 9753 9752
## 9754 9753
## 9755 9754
## 9756 9755
## 9757 9756
## 9758 9757
## 9759 9758
## 9760 9759
## 9761 9760
## 9762 9761
## 9763 9762
## 9764 9763
## 9765 9764
## 9766 9765
## 9767 9766
## 9768 9767
## 9769 9768
## 9770 9769
## 9771 9770
## 9772 9771
## 9773 9772
## 9774 9773
## 9775 9774
## 9776 9775
## 9777 9776
## 9778 9777
## 9779 9778
## 9780 9779
## 9781 9780
## 9782 9781
## 9783 9782
## 9784 9783
## 9785 9784
## 9786 9785
## 9787 9786
## 9788 9787
## 9789 9788
## 9790 9789
## 9791 9790
## 9792 9791
## 9793 9792
## 9794 9793
## 9795 9794
## 9796 9795
## 9797 9796
## 9798 9797
## 9799 9798
## 9800 9799
## 9801 9800
## 9802 9801
## 9803 9802
## 9804 9803
## 9805 9804
## 9806 9805
## 9807 9806
## 9808 9807
## 9809 9808
## 9810 9809
## 9811 9810
## 9812 9811
## 9813 9812
## 9814 9813
## 9815 9814
## 9816 9815
## 9817 9816
## 9818 9817
## 9819 9818
## 9820 9819
## 9821 9820
## 9822 9821
## 9823 9822
## 9824 9823
## 9825 9824
## 9826 9825
## 9827 9826
## 9828 9827
## 9829 9828
## 9830 9829
## 9831 9830
## 9832 9831
## 9833 9832
## 9834 9833
## 9835 9834
## 9836 9835
## 9837 9836
## 9838 9837
## 9839 9838
## 9840 9839
## 9841 9840
## 9842 9841
## 9843 9842
## 9844 9843
## 9845 9844
## 9846 9845
## 9847 9846
## 9848 9847
## 9849 9848
## 9850 9849
## 9851 9850
## 9852 9851
## 9853 9852
## 9854 9853
## 9855 9854
## 9856 9855
## 9857 9856
## 9858 9857
## 9859 9858
## 9860 9859
## 9861 9860
## 9862 9861
## 9863 9862
## 9864 9863
## 9865 9864
## 9866 9865
## 9867 9866
## 9868 9867
## 9869 9868
## 9870 9869
## 9871 9870
## 9872 9871
## 9873 9872
## 9874 9873
## 9875 9874
## 9876 9875
## 9877 9876
## 9878 9877
## 9879 9878
## 9880 9879
## 9881 9880
## 9882 9881
## 9883 9882
## 9884 9883
## 9885 9884
## 9886 9885
## 9887 9886
## 9888 9887
## 9889 9888
## 9890 9889
## 9891 9890
## 9892 9891
## 9893 9892
## 9894 9893
## 9895 9894
## 9896 9895
## 9897 9896
## 9898 9897
## 9899 9898
## 9900 9899
## 9901 9900
## 9902 9901
## 9903 9902
## 9904 9903
## 9905 9904
## 9906 9905
## 9907 9906
## 9908 9907
## 9909 9908
## 9910 9909
## 9911 9910
## 9912 9911
## 9913 9912
## 9914 9913
## 9915 9914
## 9916 9915
## 9917 9916
## 9918 9917
## 9919 9918
## 9920 9919
## 9921 9920
## 9922 9921
## 9923 9922
## 9924 9923
## 9925 9924
## 9926 9925
## 9927 9926
## 9928 9927
## 9929 9928
## 9930 9929
## 9931 9930
## 9932 9931
## 9933 9932
## 9934 9933
## 9935 9934
## 9936 9935
## 9937 9936
## 9938 9937
## 9939 9938
## 9940 9939
## 9941 9940
## 9942 9941
## 9943 9942
## 9944 9943
## 9945 9944
## 9946 9945
## 9947 9946
## 9948 9947
## 9949 9948
## 9950 9949
## 9951 9950
## 9952 9951
## 9953 9952
## 9954 9953
## 9955 9954
## 9956 9955
## 9957 9956
## 9958 9957
## 9959 9958
## 9960 9959
## 9961 9960
## 9962 9961
## 9963 9962
## 9964 9963
## 9965 9964
## 9966 9965
## 9967 9966
## 9968 9967
## 9969 9968
## 9970 9969
## 9971 9970
## 9972 9971
## 9973 9972
## 9974 9973
## 9975 9974
## 9976 9975
## 9977 9976
## 9978 9977
## 9979 9978
## 9980 9979
## 9981 9980
## 9982 9981
## 9983 9982
## 9984 9983
## 9985 9984
## 9986 9985
## 9987 9986
## 9988 9987
## 9989 9988
## 9990 9989
## 9991 9990
## 9992 9991
## 9993 9992
## 9994 9993
## 9995 9994
## 9996 9995
## 9997 9996
## 9998 9997
## 9999 9998
## 10000 9999
## title
## 1 The Godfather
## 2 The Shawshank Redemption
## 3 Cuando Sea Joven
## 4 The Boy, the Mole, the Fox and the Horse
## 5 The Godfather Part II
## 6 Schindler's List
## 7 Dilwale Dulhania Le Jayenge
## 8 Spirited Away
## 9 12 Angry Men
## 10 Your Name.
## 11 Parasite
## 12 The Green Mile
## 13 The Dark Knight
## 14 Pulp Fiction
## 15 The Good, the Bad and the Ugly
## 16 Forrest Gump
## 17 The Lord of the Rings: The Return of the King
## 18 Dou kyu sei – Classmates
## 19 Gabriel's Inferno
## 20 GoodFellas
## 21 Cinema Paradiso
## 22 Seven Samurai
## 23 Puss in Boots: The Last Wish
## 24 Life Is Beautiful
## 25 Primal: Tales of Savagery
## 26 Gabriel's Inferno: Part II
## 27 Once Upon a Time in America
## 28 Grave of the Fireflies
## 29 Psycho
## 30 Fight Club
## 31 Impossible Things
## 32 One Flew Over the Cuckoo's Nest
## 33 Gabriel's Inferno: Part III
## 34 The Legend of Hei
## 35 City of God
## 36 Spider-Man: Into the Spider-Verse
## 37 Josee, the Tiger and the Fish
## 38 Howl's Moving Castle
## 39 Harakiri
## 40 A Silent Voice: The Movie
## 41 The Lord of the Rings: The Fellowship of the Ring
## 42 Hotarubi no Mori e
## 43 The Empire Strikes Back
## 44 Interstellar
## 45 20th Century Girl
## 46 The Pianist
## 47 Whiplash
## 48 The Lord of the Rings: The Two Towers
## 49 A Dog's Will
## 50 Sunset Boulevard
## 51 Neon Genesis Evangelion: The End of Evangelion
## 52 Se7en
## 53 Burn the Stage: The Movie
## 54 Inception
## 55 Rear Window
## 56 American History X
## 57 Ikiru
## 58 The Great Dictator
## 59 Hope
## 60 The Silence of the Lambs
## 61 Princess Mononoke
## 62 City Lights
## 63 High and Low
## 64 Léon: The Professional
## 65 Green Snake
## 66 Violet Evergarden: The Movie
## 67 Dead Poets Society
## 68 Dedicated to my ex
## 69 The Shop Around the Corner
## 70 Modern Times
## 71 Wolfwalkers
## 72 Back to the Future
## 73 Top Gun: Maverick
## 74 Evangelion: 3.0+1.0 Thrice Upon a Time
## 75 Five Feet Apart
## 76 Clouds
## 77 BTS World Tour: Love Yourself in Seoul
## 78 Guillermo del Toro's Pinocchio
## 79 Come and See
## 80 Once Upon a Time in the West
## 81 Demon Slayer -Kimetsu no Yaiba- The Movie: Mugen Train
## 82 Taylor Swift: Reputation Stadium Tour
## 83 Woman in the Dunes
## 84 Apocalypse Now
## 85 Life in a Year
## 86 Paths of Glory
## 87 Le Trou
## 88 Given
## 89 Justice League Dark: Apokolips War
## 90 Miracle in Cell No. 7
## 91 Perfect Blue
## 92 The Intouchables
## 93 Mommy
## 94 The Legend of 1900
## 95 Avengers: Endgame
## 96 Oldboy
## 97 Persona
## 98 Better Days
## 99 Klaus
## 100 It's a Wonderful Life
## 101 Avengers: Infinity War
## 102 The Lion King
## 103 The Handmaiden
## 104 Steven Universe: The Movie
## 105 A Brighter Summer Day
## 106 We All Loved Each Other So Much
## 107 Tokyo Story
## 108 Satantango
## 109 Green Book
## 110 Rascal Does Not Dream of a Dreaming Girl
## 111 Il Sorpasso
## 112 The Art of Racing in the Rain
## 113 Hamilton
## 114 Bicycle Thieves
## 115 Miraculous World: New York, United HeroeZ
## 116 Wolf Children
## 117 Along with the Gods: The Last 49 Days
## 118 Jujutsu Kaisen 0
## 119 Coco
## 120 The Apartment
## 121 Purple Hearts
## 122 The Shining
## 123 Witness for the Prosecution
## 124 A Clockwork Orange
## 125 Zack Snyder's Justice League
## 126 The Seventh Seal
## 127 Violet Evergarden: Eternity and the Auto Memory Doll
## 128 My Hero Academia: Heroes Rising
## 129 I Want to Eat Your Pancreas
## 130 Inglourious Basterds
## 131 Star Wars
## 132 The Kid
## 133 Gladiator
## 134 Saving Private Ryan
## 135 The Prestige
## 136 Stalker
## 137 8½
## 138 The Usual Suspects
## 139 The Matrix
## 140 Maquia: When the Promised Flower Blooms
## 141 The Help
## 142 Shutter Island
## 143 Vertigo
## 144 Bo Burnham: Inside
## 145 Mortal Kombat Legends: Scorpion's Revenge
## 146 The Hate U Give
## 147 Memento
## 148 Hacksaw Ridge
## 149 Doctor Who: The Day of the Doctor
## 150 Scenes from a Marriage
## 151 Investigation of a Citizen Above Suspicion
## 152 Portrait of a Lady on Fire
## 153 Michael Jackson's Thriller
## 154 Call Me by Your Name
## 155 Abraham Lincoln Vampire Hunter: The Great Calamity
## 156 Children of Paradise
## 157 Joker
## 158 Piper
## 159 KonoSuba: God's Blessing on this Wonderful World! Legend of Crimson
## 160 Capernaum
## 161 Taxi Driver
## 162 Casablanca
## 163 Metropolis
## 164 The Departed
## 165 Scarface
## 166 Wonder
## 167 Togo
## 168 Singin' in the Rain
## 169 My Mom is a Character 3
## 170 Soul
## 171 Django Unchained
## 172 Sansho the Bailiff
## 173 All About Eve
## 174 My Friends
## 175 Out of the Clear Blue Sky
## 176 Far from the Tree
## 177 Yojimbo
## 178 La Dolce Vita
## 179 Double Indemnity
## 180 Central Station
## 181 The Father
## 182 Good Will Hunting
## 183 Black Beauty
## 184 Anne of Green Gables
## 185 Wild Strawberries
## 186 Full Metal Jacket
## 187 Reservoir Dogs
## 188 Rashomon
## 189 Alien
## 190 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 191 Lock, Stock and Two Smoking Barrels
## 192 Hannah Gadsby: Nanette
## 193 The Great War
## 194 Me Against You: Mr. S's Vendetta
## 195 The Truman Show
## 196 The Invisible Guest
## 197 Some Like It Hot
## 198 Ayla: The Daughter of War
## 199 Sherlock Jr.
## 200 Bo Burnham: Make Happy
## 201 Big Deal on Madonna Street
## 202 Harry Potter and the Deathly Hallows: Part 2
## 203 In the Mood for Love
## 204 Along with the Gods: The Two Worlds
## 205 Innocent Voices
## 206 I corti
## 207 Red Beard
## 208 The Tale of The Princess Kaguya
## 209 M
## 210 Andrei Rublev
## 211 Eternal Sunshine of the Spotless Mind
## 212 Paris, Texas
## 213 Bound by Honor
## 214 How to Train Your Dragon: Homecoming
## 215 The Hunt
## 216 Incendies
## 217 New Gods: Nezha Reborn
## 218 Three Billboards Outside Ebbing, Missouri
## 219 There Will Be Blood
## 220 Terminator 2: Judgment Day
## 221 Pride & Prejudice
## 222 Silenced
## 223 Cruella
## 224 Digimon Adventure: Last Evolution Kizuna
## 225 Lion
## 226 Das Boot
## 227 2001: A Space Odyssey
## 228 The 400 Blows
## 229 Nobody
## 230 Scooby-Doo! and KISS: Rock and Roll Mystery
## 231 In the Arms of an Assassin
## 232 Prisoners
## 233 Argentina, 1985
## 234 A Taxi Driver
## 235 Prayers for Bobby
## 236 Pather Panchali
## 237 La Haine
## 238 Emancipation
## 239 WALL·E
## 240 Memories of Murder
## 241 My Neighbor Totoro
## 242 Believe Me: The Abduction of Lisa McVey
## 243 Toto, Peppino, and the Hussy
## 244 The Passion of Joan of Arc
## 245 A Special Day
## 246 Elite Squad
## 247 The Best of Youth
## 248 Misfit
## 249 Veinteañera, Divorciada y Fantástica
## 250 My Name Is Khan
## 251 Jojo Rabbit
## 252 Love, Simon
## 253 Rocco and His Brothers
## 254 The Elephant Man
## 255 The Grand Budapest Hotel
## 256 Hidden Figures
## 257 Paper Lives
## 258 El mesero
## 259 Ran
## 260 On My Skin
## 261 Cool Kids Don't Cry
## 262 Gifted
## 263 Loving Vincent
## 264 Dersu Uzala
## 265 The Second Mother
## 266 Palmer
## 267 The Lives of Others
## 268 Room
## 269 Late Spring
## 270 Nights of Cabiria
## 271 Judgment at Nuremberg
## 272 Doctor Who: The Time of the Doctor
## 273 The Thing
## 274 Kitbull
## 275 A Dog's Journey
## 276 The Wolf of Wall Street
## 277 Bingo: The King of the Mornings
## 278 Requiem for a Dream
## 279 Amadeus
## 280 Ghosts
## 281 American Beauty
## 282 In a Heartbeat
## 283 For a Few Dollars More
## 284 The Red Shoes
## 285 Mirror
## 286 The Gold Rush
## 287 The Circus
## 288 The Young and the Damned
## 289 The Wages of Fear
## 290 Citizen Kane
## 291 Love Exposure
## 292 Harry Potter and the Prisoner of Azkaban
## 293 Weathering with You
## 294 The Sting
## 295 Dial M for Murder
## 296 In This Corner of the World
## 297 Death Note Relight 1: Visions of a God
## 298 Chungking Express
## 299 Casino
## 300 Spider-Man: No Way Home
## 301 The Boy and the Beast
## 302 Scooby-Doo! Camp Scare
## 303 To Kill a Mockingbird
## 304 The Imitation Game
## 305 The Deer Hunter
## 306 Song of the Sea
## 307 CODA
## 308 Bohemian Rhapsody
## 309 The General
## 310 Ron's Gone Wrong
## 311 Forgotten
## 312 Poverty and Nobility
## 313 Barry Lyndon
## 314 Where Hands Touch
## 315 Ford v Ferrari
## 316 Hachi: A Dog's Tale
## 317 A Frozen Rooster
## 318 Paperman
## 319 The Treasure of the Sierra Madre
## 320 Gran Torino
## 321 Rome, Open City
## 322 The Fool
## 323 Autumn Sonata
## 324 Wish Dragon
## 325 No Manches Frida 2
## 326 The Secret in Their Eyes
## 327 Everything Everywhere All at Once
## 328 Castaway on the Moon
## 329 Ugetsu
## 330 Pink Floyd: The Wall
## 331 Finch
## 332 The Hidden Fortress
## 333 North by Northwest
## 334 One Week
## 335 Like Stars on Earth
## 336 Nobody Knows
## 337 The Killer
## 338 The Way He Looks
## 339 1917
## 340 A Man Escaped
## 341 My Way
## 342 Gone with the Wind
## 343 When Marnie Was There
## 344 3 Idiots
## 345 To Live
## 346 Tae Guk Gi: The Brotherhood of War
## 347 Lawrence of Arabia
## 348 Flipped
## 349 On the Waterfront
## 350 Batman: The Dark Knight Returns, Part 2
## 351 The Cranes Are Flying
## 352 The Exterminating Angel
## 353 Raging Bull
## 354 The Third Man
## 355 Trainspotting
## 356 The Mitchells vs. the Machines
## 357 Sing 2
## 358 Kill Bill: Vol. 1
## 359 Remi, Nobody's Boy
## 360 Rope
## 361 Scooby-Doo! and the Curse of the 13th Ghost
## 362 Ivan Vasilyevich Changes His Profession
## 363 Three Men and a Leg
## 364 Children of Heaven
## 365 Raise the Red Lantern
## 366 Toy Story
## 367 La Strada
## 368 Kill Bill: The Whole Bloody Affair
## 369 Cries and Whispers
## 370 Before Sunrise
## 371 Sanjuro
## 372 The Whale
## 373 Dangal
## 374 Castle in the Sky
## 375 Million Dollar Baby
## 376 Thirteen Lives
## 377 Redeeming Love
## 378 Catch Me If You Can
## 379 Limelight
## 380 A Whisker Away
## 381 Three Colors: Red
## 382 Throne of Blood
## 383 A Trip to the Moon
## 384 The Cabinet of Dr. Caligari
## 385 Doctor Who: A Christmas Carol
## 386 Straight Outta Nowhere: Scooby-Doo! Meets Courage the Cowardly Dog
## 387 All My Life
## 388 Dragon Ball Super: Super Hero
## 389 12 Years a Slave
## 390 La Maison en Petits Cubes
## 391 Tel chi el telùn
## 392 Akira
## 393 La Notte
## 394 The Postman
## 395 Army of Shadows
## 396 Operation Y and Other Shurik's Adventures
## 397 Up
## 398 It's Such a Beautiful Day
## 399 Miracle in Cell No. 7
## 400 The Great Escape
## 401 The Fabelmans
## 402 The Boy Who Harnessed the Wind
## 403 What Ever Happened to Baby Jane?
## 404 Ghost in the Shell
## 405 Teen Wolf: The Movie
## 406 The Eight Mountains
## 407 The Sixth Sense
## 408 Bad Genius
## 409 Raya and the Last Dragon
## 410 Words on Bathroom Walls
## 411 Girl in the Basement
## 412 Luck
## 413 Dallas Buyers Club
## 414 Faust
## 415 No Country for Old Men
## 416 Blade Runner
## 417 Jurassic Park
## 418 Beyond the Universe
## 419 Braveheart
## 420 You've Got This
## 421 Don't Look Now... We're Being Shot At!
## 422 My Father's Violin
## 423 La Jetée
## 424 Nausicaä of the Valley of the Wind
## 425 Inside Out
## 426 Divorce Italian Style
## 427 Amarcord
## 428 Ne Zha
## 429 Whisper of the Heart
## 430 Freedom Writers
## 431 Unforgiven
## 432 Mamma Roma
## 433 Raiders of the Lost Ark
## 434 The Cure
## 435 Young Frankenstein
## 436 Chinatown
## 437 Cousins
## 438 Close to the Horizon
## 439 Honor Society
## 440 Captain Fantastic
## 441 The Iron Giant
## 442 My Hero Academia: Two Heroes
## 443 Charm City Kings
## 444 Just Mercy
## 445 The Greatest Showman
## 446 Mulan
## 447 Mr. Smith Goes to Washington
## 448 Tokyo Revengers
## 449 Vincent
## 450 My Policeman
## 451 Aliens
## 452 The Cameraman
## 453 Harry Potter and the Philosopher's Stone
## 454 Justice League: The Flashpoint Paradox
## 455 Rebecca
## 456 Persepolis
## 457 Happy Halloween, Scooby-Doo!
## 458 Estômago: A Gastronomic Story
## 459 In the Name of the Father
## 460 An Egg Rescue
## 461 The Battle of Algiers
## 462 Me Before You
## 463 About Time
## 464 Teen Titans Go! vs. Teen Titans
## 465 Little Women
## 466 A Separation
## 467 Amélie
## 468 Cindy La Regia
## 469 The Breadwinner
## 470 Guardians of the Galaxy
## 471 The Pursuit of Happyness
## 472 The Tomorrow War
## 473 Two Women
## 474 V for Vendetta
## 475 To Be or Not to Be
## 476 Tune in for Love
## 477 Ivan's Childhood
## 478 Safety Last!
## 479 Heat
## 480 Dancer in the Dark
## 481 Invisible Life
## 482 Belle
## 483 Luca
## 484 Ace in the Hole
## 485 1900
## 486 Sing Street
## 487 Gone Girl
## 488 Return of the Jedi
## 489 Inner Workings
## 490 Titanic
## 491 La La Land
## 492 The Summit of the Gods
## 493 It Happened One Night
## 494 Roman Holiday
## 495 Sunrise: A Song of Two Humans
## 496 The Specials
## 497 Whiplash
## 498 The Night of the Hunter
## 499 Umberto D.
## 500 Miraculous World: Shanghai – The Legend of Ladydragon
## 501 We Are the Nobles
## 502 Tokyo Godfathers
## 503 Rio Bravo
## 504 Always
## 505 The Working Class Goes to Heaven
## 506 The Notebook
## 507 Scooby-Doo! and the Samurai Sword
## 508 Kill Bill: Vol. 2
## 509 Nostalgia
## 510 The Miracle Worker
## 511 Diabolique
## 512 Fargo
## 513 Sherlock: The Abominable Bride
## 514 Rififi
## 515 No Game No Life: Zero
## 516 See You Up There
## 517 A Street Cat Named Bob
## 518 Perfect Strangers
## 519 Ordet
## 520 Winter Light
## 521 Werckmeister Harmonies
## 522 Farewell My Concubine
## 523 Minha Vida em Marte
## 524 Shoeshine
## 525 Stand by Me
## 526 La luna
## 527 Us Again
## 528 The Theory of Everything
## 529 A Fistful of Dollars
## 530 Shoplifters
## 531 Yi Yi
## 532 Tampopo
## 533 Paper Moon
## 534 Dragon Ball Super: Broly
## 535 Her
## 536 Scooby-Doo! and the Goblin King
## 537 Isle of Dogs
## 538 Dances with Wolves
## 539 Bajrangi Bhaijaan
## 540 Wild Tales
## 541 Where Is My Friend's House?
## 542 Louis C.K.: Hilarious
## 543 Mary and Max
## 544 Solaris
## 545 Close
## 546 Departures
## 547 Joint Security Area
## 548 Interstella 5555
## 549 Knives Out
## 550 Papillon
## 551 Z
## 552 A Beautiful Mind
## 553 El Infierno
## 554 Network
## 555 Don't Be Bad
## 556 Monsieur Verdoux
## 557 Evangelion: 2.0 You Can (Not) Advance
## 558 Feast
## 559 The Marquis of Grillo
## 560 Le Samouraï
## 561 Anatomy of a Murder
## 562 Mulholland Dr.
## 563 Kiki's Delivery Service
## 564 Day for Night
## 565 A Bag of Marbles
## 566 The Boy in the Striped Pyjamas
## 567 Letter from an Unknown Woman
## 568 The Big Lebowski
## 569 Spring, Summer, Fall, Winter... and Spring
## 570 Regular Show: The Movie
## 571 Ben-Hur
## 572 The Legend of La Llorona
## 573 Downfall
## 574 Warrior
## 575 The Nightmare Before Christmas
## 576 My Little Pony: A New Generation
## 577 The Best Offer
## 578 Mulholland Drive
## 579 The Best Years of Our Lives
## 580 We Bare Bears: The Movie
## 581 The Last: Naruto the Movie
## 582 Polisse
## 583 Partly Cloudy
## 584 Indiana Jones and the Last Crusade
## 585 Elite Squad: The Enemy Within
## 586 Grand Illusion
## 587 Love, Rosie
## 588 Mr. Nobody
## 589 The Phantom Carriage
## 590 The Diamond Arm
## 591 Back to the Outback
## 592 The Grapes of Wrath
## 593 Monsters, Inc.
## 594 Freaks
## 595 Millennium Actress
## 596 Finding Nemo
## 597 Crooks in Clover
## 598 Dog Day Afternoon
## 599 The Bridge on the River Kwai
## 600 Rosemary's Baby
## 601 Before Sunset
## 602 Hustle
## 603 Carlito's Way
## 604 L'Eclisse
## 605 The Outlaws
## 606 Infernal Affairs
## 607 Harry Potter and the Goblet of Fire
## 608 The Witch: Part 1. The Subversion
## 609 The Normal Heart
## 610 A Moment to Remember
## 611 Logan
## 612 Land of Mine
## 613 Spotlight
## 614 World of Tomorrow
## 615 Kabhi Khushi Kabhie Gham
## 616 Gone Mom: The Disappearance of Jennifer Dulos
## 617 The Shadow in My Eye
## 618 Coraline
## 619 Into the Wild
## 620 3-Iron
## 621 The Heist of the Century
## 622 Hiroshima Mon Amour
## 623 Aftersun
## 624 Through a Glass Darkly
## 625 Never Look Away
## 626 White Collar Blues
## 627 Wings of Desire
## 628 No Manches Frida
## 629 War Room
## 630 The Woman King
## 631 Fanny and Alexander
## 632 Monty Python and the Holy Grail
## 633 Prey
## 634 Vivre Sa Vie
## 635 Mortal Kombat Legends: Battle of the Realms
## 636 The Man Who Shot Liberty Valance
## 637 How to Train Your Dragon
## 638 My Life as a Zucchini
## 639 Gifted Hands: The Ben Carson Story
## 640 The Virgin Spring
## 641 Midnight Sun
## 642 An Autumn Afternoon
## 643 Kagemusha
## 644 The Last Laugh
## 645 Brokeback Mountain
## 646 Snatch
## 647 Ninja Scroll
## 648 The King of Comedy
## 649 Ernest & Celestine
## 650 Ratatouille
## 651 Fail Safe
## 652 Who's Afraid of Virginia Woolf?
## 653 All Quiet on the Western Front
## 654 I Saw the Devil
## 655 Presto
## 656 Forbidden Games
## 657 Dogville
## 658 One Hundred Steps
## 659 Toy Story 3
## 660 Lisbela and the Prisoner
## 661 A Short Film About Love
## 662 Paprika
## 663 A Bronx Tale
## 664 Rurouni Kenshin: The Final
## 665 The Face of Another
## 666 Mishima: A Life in Four Chapters
## 667 Rich in Love
## 668 The Wind Rises
## 669 Shelter
## 670 Batman: Under the Red Hood
## 671 Notorious
## 672 Donnie Darko
## 673 Drishyam
## 674 Porco Rosso
## 675 The Seven Deadly Sins: Cursed by Light
## 676 The Chaser
## 677 The Ox-Bow Incident
## 678 L.A. Confidential
## 679 Rocky
## 680 Pirates of the Caribbean: The Curse of the Black Pearl
## 681 Constantine: City of Demons - The Movie
## 682 The Girl Who Leapt Through Time
## 683 Scooby-Doo! Abracadabra-Doo
## 684 Descendants 3
## 685 Touch of Evil
## 686 Manhattan
## 687 Tod@s Caen
## 688 Mustang
## 689 Deep Red
## 690 The Black Phone
## 691 The Perks of Being a Wallflower
## 692 Annie Hall
## 693 Holding the Man
## 694 Fantastic Mr. Fox
## 695 Short Term 12
## 696 The Dark Knight Rises
## 697 A Woman Under the Influence
## 698 Angel's Egg
## 699 Straight Outta Compton
## 700 PlayTime
## 701 God's Own Country
## 702 The Color Purple
## 703 Marriage Italian Style
## 704 Nothing Left to Do but Cry
## 705 Harry Potter and the Deathly Hallows: Part 1
## 706 The Dinner Game
## 707 If Anything Happens I Love You
## 708 Bad Seeds
## 709 All Quiet on the Western Front
## 710 The Turin Horse
## 711 Inherit the Wind
## 712 I'm No Longer Here
## 713 Red Shoes and the Seven Dwarfs
## 714 The Untouchables
## 715 How to Train Your Dragon: The Hidden World
## 716 Big Fish
## 717 Brief Encounter
## 718 Three Steps Above Heaven
## 719 King Richard
## 720 Meshes of the Afternoon
## 721 Life of Brian
## 722 The Searchers
## 723 The Breakfast Club
## 724 Die Hard
## 725 Nine Queens
## 726 Rain Man
## 727 Kizumonogatari Part 1: Tekketsu
## 728 A Matter of Life and Death
## 729 Marriage Story
## 730 Amour
## 731 The Maltese Falcon
## 732 Train to Busan
## 733 Do the Right Thing
## 734 Awakenings
## 735 Misery
## 736 Bacurau
## 737 RRR
## 738 Onward
## 739 Fabricated City
## 740 Pan's Labyrinth
## 741 The Blues Brothers
## 742 Sound of Metal
## 743 Doctor Who: Last Christmas
## 744 I, Daniel Blake
## 745 The King and the Mockingbird
## 746 The Twilight Samurai
## 747 Scent of a Woman
## 748 The Spirit of the Beehive
## 749 Back to the Future Part II
## 750 Zootopia
## 751 Teen Titans: Trouble in Tokyo
## 752 The Greatest Beer Run Ever
## 753 Ip Man
## 754 Cool Hand Luke
## 755 Mystic River
## 756 A Walk to Remember
## 757 Dune
## 758 Pride
## 759 Batman: The Dark Knight Returns, Part 1
## 760 Platoon
## 761 The Kissing Booth 2
## 762 Two Is a Family
## 763 Maudie
## 764 Big Hero 6
## 765 Selena
## 766 The Hateful Eight
## 767 Ali: Fear Eats the Soul
## 768 They Shoot Horses, Don't They?
## 769 The Straight Story
## 770 Trollhunters: Rise of the Titans
## 771 Avatar: The Way of Water
## 772 The King's Speech
## 773 Barbie in The 12 Dancing Princesses
## 774 The Trial of the Chicago 7
## 775 Divines
## 776 Underground
## 777 An Egg-celent movie
## 778 Slumdog Millionaire
## 779 Magnolia
## 780 Silver Skates
## 781 My Friends Act II
## 782 Ponyo
## 783 Fallen Angels
## 784 Beauty and the Beast
## 785 War of Likes
## 786 Day & Night
## 787 The Ten Commandments
## 788 Stalag 17
## 789 Doctor Who: The Runaway Bride
## 790 My Mom Is a Character
## 791 The Heiress
## 792 tick, tick... BOOM!
## 793 Mother
## 794 Philadelphia
## 795 The Celebration
## 796 BPM (Beats per Minute)
## 797 The Hustler
## 798 The Wrong Trousers
## 799 Entergalactic
## 800 Temple Grandin
## 801 Kwaidan
## 802 K-12
## 803 Rurouni Kenshin Part III: The Legend Ends
## 804 I Don't Want to Go Back Alone
## 805 The Exorcist
## 806 Nosferatu
## 807 Geri's Game
## 808 Harry Potter and the Chamber of Secrets
## 809 Duck, You Sucker
## 810 Anonymously Yours
## 811 The Gangster, the Cop, the Devil
## 812 White Snake
## 813 Ricky Gervais: Humanity
## 814 The Traitor
## 815 Sword Art Online: The Movie – Ordinal Scale
## 816 Accattone
## 817 Still Walking
## 818 The Chorus
## 819 Shrek
## 820 Edward Scissorhands
## 821 Cléo from 5 to 7
## 822 Fiddler on the Roof
## 823 Hotel Rwanda
## 824 The Children's Hour
## 825 Hey Arnold! The Jungle Movie
## 826 Time of the Gypsies
## 827 Tad, the Lost Explorer and the Emerald Tablet
## 828 The Sound of Music
## 829 The Avengers
## 830 The Batman
## 831 John Mulaney: The Comeback Kid
## 832 Rush
## 833 Rise
## 834 Dave Chappelle: The Age of Spin
## 835 PK
## 836 Strangers on a Train
## 837 The Leopard
## 838 Godzilla vs. Kong
## 839 The Broken Circle Breakdown
## 840 A Werewolf Boy
## 841 My Night at Maud's
## 842 Cat on a Hot Tin Roof
## 843 Boys
## 844 The Red Balloon
## 845 Harry Potter and the Half-Blood Prince
## 846 High Noon
## 847 The Fallout
## 848 The Incredibles
## 849 The Young Girls of Rochefort
## 850 Onibaba
## 851 Overcomer
## 852 Nightcrawler
## 853 Azur & Asmar: The Princes' Quest
## 854 All the Bright Places
## 855 The Big Bad Fox and Other Tales
## 856 Sleuth
## 857 Batman Begins
## 858 The Tenant
## 859 Spirit: Stallion of the Cimarron
## 860 Charade
## 861 Black Cat, White Cat
## 862 The Conformist
## 863 The Killing
## 864 The Bad Guys
## 865 Hunt for the Wilderpeople
## 866 Instructions Not Included
## 867 Harvey
## 868 In the Heat of the Night
## 869 Don Camillo
## 870 Rurouni Kenshin: The Beginning
## 871 Hair Love
## 872 Moonrise Kingdom
## 873 The Kingdom
## 874 Harry Potter and the Order of the Phoenix
## 875 Love Hurts
## 876 Breakfast at Tiffany's
## 877 The Man from Nowhere
## 878 A Charlie Brown Christmas
## 879 The Valet
## 880 Free Fall
## 881 Fried Green Tomatoes
## 882 Brazil
## 883 System Crasher
## 884 The Bridges of Madison County
## 885 The Gentlemen
## 886 Stagecoach
## 887 Persian Lessons
## 888 Scooby-Doo on Zombie Island
## 889 All the President's Men
## 890 Three Colors: Blue
## 891 Good Morning
## 892 Eddie Murphy: Delirious
## 893 Cowboy Bebop: The Movie
## 894 The Killer
## 895 Memoirs of a Geisha
## 896 Father There Is Only One
## 897 Another Round
## 898 Laurence Anyways
## 899 The Blind Side
## 900 Wrath of Man
## 901 Captain America: The Winter Soldier
## 902 Drunken Angel
## 903 Viridiana
## 904 Elvis
## 905 Fantastic Planet
## 906 The Big Heat
## 907 Dreams
## 908 The Warriors
## 909 Lucky and Zorba
## 910 Germany, Year Zero
## 911 Corpus Christi
## 912 Victoria
## 913 Mississippi Burning
## 914 Winter Sleep
## 915 The Lost Weekend
## 916 I Vitelloni
## 917 Little Miss Sunshine
## 918 Il Divo
## 919 What's Eating Gilbert Grape
## 920 A Streetcar Named Desire
## 921 Crush
## 922 The Martian
## 923 The Last Picture Show
## 924 Mildred Pierce
## 925 All About My Mother
## 926 Spies in Disguise
## 927 How to Train Your Dragon 2
## 928 For Love and Gold
## 929 White Heat
## 930 To All the Boys I've Loved Before
## 931 Roma
## 932 Fireworks
## 933 The Princess Bride
## 934 Jean de Florette
## 935 Tangerines
## 936 Mickey's Christmas Carol
## 937 The Philadelphia Story
## 938 Feel the Beat
## 939 The Sacrifice
## 940 Kind Hearts and Coronets
## 941 Alice in the Cities
## 942 Laura
## 943 My Mom is a Character 2
## 944 Black Swan
## 945 Embrace of the Serpent
## 946 Ask Me If I Am Happy
## 947 The Graduate
## 948 Get a Horse!
## 949 Heroic Losers
## 950 Atonement
## 951 Sweet Smell of Success
## 952 The Big Sleep
## 953 Cast Away
## 954 The Wild Bunch
## 955 Encanto
## 956 Breakthrough
## 957 Maurice
## 958 Out of the Past
## 959 Z-O-M-B-I-E-S 2
## 960 Don't Blame the Kid
## 961 Threads
## 962 Angels with Dirty Faces
## 963 A Man Called Otto
## 964 To All the Boys: Always and Forever
## 965 Hidden Kisses
## 966 Jaws
## 967 One Cut of the Dead
## 968 The Big Country
## 969 The Count of Monte Cristo
## 970 12 Angry Men
## 971 The Sicilian Clan
## 972 Berserk: The Golden Age Arc III - The Advent
## 973 Steamboat Bill, Jr.
## 974 Evangelion: 1.0 You Are (Not) Alone
## 975 Dave Chappelle: Sticks & Stones
## 976 Kubo and the Two Strings
## 977 Synecdoche, New York
## 978 Where the Crawdads Sing
## 979 Scarlet Street
## 980 Fitzcarraldo
## 981 Aladdin
## 982 Boruto: Naruto the Movie
## 983 Au Hasard Balthazar
## 984 Sword of the Stranger
## 985 Battleship Potemkin
## 986 Papicha
## 987 The Ultimate Gift
## 988 Primal Fear
## 989 Planet of the Apes
## 990 Les Misérables
## 991 Andhadhun
## 992 The Beauty Inside
## 993 Scooby-Doo! Pirates Ahoy!
## 994 Blue Velvet
## 995 Enola Holmes 2
## 996 Like Father, Like Son
## 997 The Terminator
## 998 Kingsman: The Secret Service
## 999 Lilya 4-ever
## 1000 Knockin' on Heaven's Door
## 1001 Boogie Nights
## 1002 Harold and Maude
## 1003 I Still Believe
## 1004 October Sky
## 1005 Blue Bayou
## 1006 Who Am I
## 1007 Jules and Jim
## 1008 The Raid 2
## 1009 Paisan
## 1010 Iron Man
## 1011 Elevator to the Gallows
## 1012 Shang-Chi and the Legend of the Ten Rings
## 1013 Rurouni Kenshin Part II: Kyoto Inferno
## 1014 King Kong
## 1015 Work It
## 1016 Saint Seiya Heaven Chapter: Overture
## 1017 Taste of Cherry
## 1018 Night of the Living Dead
## 1019 JFK
## 1020 The Last Emperor
## 1021 The Anthem of the Heart
## 1022 The Ghost and Mrs. Muir
## 1023 The Irishman
## 1024 Guardians of the Galaxy Vol. 2
## 1025 Stand and Deliver
## 1026 Happy Together
## 1027 Sniper: The White Raven
## 1028 The Secret World of Arrietty
## 1029 The Man from Earth
## 1030 Confessions
## 1031 Ferris Bueller's Day Off
## 1032 The Hand of God
## 1033 Yu-Gi-Oh!: The Dark Side of Dimensions
## 1034 I'm Starting from Three
## 1035 Amores Perros
## 1036 Monica and Friends: Bonds
## 1037 A Little Princess
## 1038 The Others
## 1039 I Can't Think Straight
## 1040 Balkan Line
## 1041 Ready Player One
## 1042 The Witcher: Nightmare of the Wolf
## 1043 Three Wishes for Cinderella
## 1044 Arsenic and Old Lace
## 1045 The Danish Girl
## 1046 Get Out
## 1047 Steins;Gate: The Movie - Load Region of Déjà Vu
## 1048 A Man Called Ove
## 1049 The Little Prince
## 1050 Butch Cassidy and the Sundance Kid
## 1051 Forever My Girl
## 1052 Mediterraneo
## 1053 Lady Snowblood
## 1054 Ride Your Wave
## 1055 Eyes Without a Face
## 1056 Black Narcissus
## 1057 Seven Pounds
## 1058 The Manchurian Candidate
## 1059 Anastasia
## 1060 The Phantom of Liberty
## 1061 Seven Chances
## 1062 The Holy Mountain
## 1063 Talk to Her
## 1064 Breathless
## 1065 Bao
## 1066 Remember the Titans
## 1067 Being There
## 1068 Fireproof
## 1069 The World's Fastest Indian
## 1070 Dolls
## 1071 Searching
## 1072 A Dog's Purpose
## 1073 The Longest Ride
## 1074 Road to Ninja: Naruto the Movie
## 1075 Children of Men
## 1076 Giant
## 1077 Le Cercle Rouge
## 1078 Changeling
## 1079 Deadpool
## 1080 Thor: Ragnarok
## 1081 The Fault in Our Stars
## 1082 The Dirty Dozen
## 1083 Groundhog Day
## 1084 L'Avventura
## 1085 Lost Highway
## 1086 Sonic the Hedgehog 2
## 1087 Edge of Tomorrow
## 1088 Shottas
## 1089 The Fall
## 1090 Sleepers
## 1091 The Rules of the Game
## 1092 Twelve Monkeys
## 1093 The Suicide Squad
## 1094 A Short Film About Killing
## 1095 Guess Who's Coming to Dinner
## 1096 Quo Vadis, Aida?
## 1097 Moulin Rouge!
## 1098 Babylon
## 1099 Tombstone
## 1100 A Prophet
## 1101 Love and Death
## 1102 Godzilla
## 1103 Boyz n the Hood
## 1104 Free Guy
## 1105 I Origins
## 1106 The Consequences of Love
## 1107 Secrets & Lies
## 1108 The Garden of Words
## 1109 Ugly, Dirty and Bad
## 1110 The Longest Day
## 1111 Billy Elliot
## 1112 The Worst Person in the World
## 1113 Imagine Me & You
## 1114 Violent Night
## 1115 Band of Outsiders
## 1116 My Hero Academia: World Heroes' Mission
## 1117 Lou
## 1118 Manon of the Spring
## 1119 Rebel Without a Cause
## 1120 Lyle, Lyle, Crocodile
## 1121 They Call Me Trinity
## 1122 Kikujiro
## 1123 Toy Story 2
## 1124 The Wizard of Oz
## 1125 The Blue Umbrella
## 1126 Tangled
## 1127 Beasts of No Nation
## 1128 Detachment
## 1129 Yesterday, Today and Tomorrow
## 1130 The Sea Inside
## 1131 East of Eden
## 1132 Gilda
## 1133 Rise
## 1134 Arrival
## 1135 Brother
## 1136 Bāhubali: The Beginning
## 1137 Bullet in the Head
## 1138 Z-O-M-B-I-E-S 3
## 1139 Purple Noon
## 1140 American Gangster
## 1141 Dogman
## 1142 The Round Up
## 1143 Moon
## 1144 Mad Max: Fury Road
## 1145 The Curious Case of Benjamin Button
## 1146 Orpheus
## 1147 What We Do in the Shadows
## 1148 Sin Nombre
## 1149 Running on Empty
## 1150 Chill Out, Scooby-Doo!
## 1151 Kuch Kuch Hota Hai
## 1152 Devdas
## 1153 Fatherhood
## 1154 Ex Machina
## 1155 BURN·E
## 1156 I Am Sam
## 1157 The Man Who Wasn't There
## 1158 Halloween
## 1159 The Hobbit: The Desolation of Smaug
## 1160 Mary Poppins
## 1161 The Swimmers
## 1162 The Banker
## 1163 Hard Boiled
## 1164 The Diving Bell and the Butterfly
## 1165 One, Two, Three
## 1166 Hotel Mumbai
## 1167 Rurouni Kenshin Part I: Origins
## 1168 Drive
## 1169 The Servant
## 1170 In a Lonely Place
## 1171 The Snowman
## 1172 The Bride of Frankenstein
## 1173 We Need to Talk About Kevin
## 1174 Avatar
## 1175 My Man Godfrey
## 1176 Evil Dead II
## 1177 Tell It to the Bees
## 1178 Moana
## 1179 Kramer vs. Kramer
## 1180 A Night to Remember
## 1181 Bringing Up Baby
## 1182 Champions
## 1183 My Blind Date with Life
## 1184 The Call of the Wild
## 1185 Bianca
## 1186 Instant Family
## 1187 The Wolf's Call
## 1188 Undisputed III: Redemption
## 1189 My Dinner with Andre
## 1190 Somewhere in Time
## 1191 Little Big Man
## 1192 Thelma & Louise
## 1193 Good Bye, Lenin!
## 1194 The Legend of Sleepy Hollow
## 1195 The Last Samurai
## 1196 Slumberland
## 1197 The Odd Couple
## 1198 Mysterious Skin
## 1199 Rabid Dogs
## 1200 10 Things I Hate About You
## 1201 The Wolf and the Lion
## 1202 Hidden Away
## 1203 Badlands
## 1204 The Call
## 1205 Lady Vengeance
## 1206 The Game
## 1207 Italian Race
## 1208 Me and Earl and the Dying Girl
## 1209 Still Life
## 1210 Captain Phillips
## 1211 Vampire Hunter D: Bloodlust
## 1212 Where Eagles Dare
## 1213 Let the Bullets Fly
## 1214 My Father and My Son
## 1215 Sling Blade
## 1216 Girl, Interrupted
## 1217 Spartacus
## 1218 My Fair Lady
## 1219 Gladiator
## 1220 Control
## 1221 The Seven Deadly Sins: Prisoners of the Sky
## 1222 In Cold Blood
## 1223 My Left Foot: The Story of Christy Brown
## 1224 Coach Carter
## 1225 Apocalypto
## 1226 Night on Earth
## 1227 Beautiful Boy
## 1228 The Conjuring: The Devil Made Me Do It
## 1229 The Butterfly Effect
## 1230 Hot Fuzz
## 1231 The Double Life of Véronique
## 1232 Father There Is Only One 2
## 1233 Courageous
## 1234 Mr. Deeds Goes to Town
## 1235 Menace II Society
## 1236 Gattaca
## 1237 The Emperor's New Groove
## 1238 Doctor Zhivago
## 1239 The Sea Beast
## 1240 The Favourite
## 1241 The Asphalt Jungle
## 1242 Serpico
## 1243 The Body
## 1244 Batman: The Long Halloween, Part One
## 1245 The SpongeBob Movie: Sponge on the Run
## 1246 True Romance
## 1247 Dark Waters
## 1248 Splendor in the Grass
## 1249 Escape from Alcatraz
## 1250 Hannah and Her Sisters
## 1251 4 Months, 3 Weeks and 2 Days
## 1252 Blue Miracle
## 1253 Stargirl
## 1254 The Book of Henry
## 1255 The Conversation
## 1256 PAW Patrol: Mighty Pups
## 1257 Custody
## 1258 Midnight in Paris
## 1259 Dragon Ball Z: The History of Trunks
## 1260 Summer Wars
## 1261 Hamlet
## 1262 The Magnificent Seven
## 1263 From Up on Poppy Hill
## 1264 Scent of a Woman
## 1265 Gandhi
## 1266 Toy Story 4
## 1267 The Conjuring
## 1268 Shadow of a Doubt
## 1269 Gaslight
## 1270 Aguirre, the Wrath of God
## 1271 I Stand Alone
## 1272 Cyrano, My Love
## 1273 Manchester by the Sea
## 1274 Poetry
## 1275 The Thin Man
## 1276 A Quiet Place Part II
## 1277 The Croods: A New Age
## 1278 Shaun of the Dead
## 1279 Our Little Sister
## 1280 The Book of Life
## 1281 Facing the Giants
## 1282 The Discreet Charm of the Bourgeoisie
## 1283 Ninotchka
## 1284 The French Connection
## 1285 Cinderella Man
## 1286 The Wild Pear Tree
## 1287 Midnight Express
## 1288 Sabrina
## 1289 All Three of Us
## 1290 The Great Beauty
## 1291 Lupin the Third: The Castle of Cagliostro
## 1292 Donnie Brasco
## 1293 Injustice
## 1294 Batman: The Long Halloween, Part Two
## 1295 One Piece Film: Z
## 1296 A Close Shave
## 1297 The Second Tragic Fantozzi
## 1298 BlacKkKlansman
## 1299 Ghostbusters: Afterlife
## 1300 Sidewalls
## 1301 The Skin I Live In
## 1302 The Invisible Man
## 1303 Empire of the Sun
## 1304 The Lighthouse
## 1305 The Flu
## 1306 Casino Royale
## 1307 Treasure Planet
## 1308 Rescued by Ruby
## 1309 Abominable
## 1310 Then Came You
## 1311 Blade Runner 2049
## 1312 High School of the Dead: Drifters of the Dead
## 1313 The Return
## 1314 Blood Diamond
## 1315 Justice Society: World War II
## 1316 The Two Popes
## 1317 X-Men: Days of Future Past
## 1318 Let the Right One In
## 1319 The Wrestler
## 1320 I Can Only Imagine
## 1321 To Sir, with Love
## 1322 Key Largo
## 1323 The Machinist
## 1324 The Fifth Element
## 1325 The Banshees of Inisherin
## 1326 The Death of Superman
## 1327 Midnight Cowboy
## 1328 The Revenant
## 1329 The Girl with the Dragon Tattoo
## 1330 Our Hospitality
## 1331 The Birds
## 1332 The Last Letter from Your Lover
## 1333 The Adventures of Pinocchio
## 1334 Gun Crazy
## 1335 Kes
## 1336 Suspiria
## 1337 The Day of the Jackal
## 1338 The Beasts
## 1339 Diary of a Country Priest
## 1340 Malcolm X
## 1341 Birdman of Alcatraz
## 1342 Un Chien Andalou
## 1343 You Can't Take It with You
## 1344 A Pure Formality
## 1345 The Silence
## 1346 The Day the Earth Stood Still
## 1347 Hero
## 1348 I Killed My Mother
## 1349 I Lost My Body
## 1350 Swept Away
## 1351 Days of Heaven
## 1352 The Goonies
## 1353 Frankenstein
## 1354 Zodiac
## 1355 I, Tonya
## 1356 The Red Turtle
## 1357 L'Atalante
## 1358 Waking Life
## 1359 The Train
## 1360 Boyhood
## 1361 Zindagi Na Milegi Dobara
## 1362 Crimes and Misdemeanors
## 1363 Corpse Bride
## 1364 A Few Good Men
## 1365 The Dirt
## 1366 Night and the City
## 1367 Zorba the Greek
## 1368 Who Framed Roger Rabbit
## 1369 The Unforgivable
## 1370 Fury
## 1371 The Seventh Continent
## 1372 Hercules
## 1373 A Bittersweet Life
## 1374 M3GAN
## 1375 Desert Flower
## 1376 Le Corbeau
## 1377 Fear City: A Family-Style Comedy
## 1378 This Is England
## 1379 E.T. the Extra-Terrestrial
## 1380 The Man Who Knew Too Much
## 1381 Prison Break: The Final Break
## 1382 Happiness
## 1383 Au Revoir les Enfants
## 1384 The Lady Vanishes
## 1385 Ed Wood
## 1386 Bonnie and Clyde
## 1387 The Insult
## 1388 A Star Is Born
## 1389 Pandora
## 1390 Cold Eyes
## 1391 The Wave
## 1392 That Man from Rio
## 1393 My Sassy Girl
## 1394 A Grand Day Out
## 1395 Leto
## 1396 Upgrade
## 1397 Port of Shadows
## 1398 Invasion of the Body Snatchers
## 1399 Police Story
## 1400 The Man Who Would Be King
## 1401 Before Midnight
## 1402 Phantom of the Paradise
## 1403 Bullet Train
## 1404 Sullivan's Travels
## 1405 Lilo & Stitch
## 1406 Play It Again, Sam
## 1407 How to Steal a Million
## 1408 The Killing Fields
## 1409 Batman: Mask of the Phantasm
## 1410 The Sandlot
## 1411 Ciao Alberto
## 1412 The White Ribbon
## 1413 The Rocky Horror Picture Show
## 1414 Patton
## 1415 The Crow
## 1416 Mr & Mme Adelman
## 1417 The Last Duel
## 1418 Still Alice
## 1419 Imitation of Life
## 1420 Carandiru
## 1421 Turning Red
## 1422 Deadpool 2
## 1423 For the Birds
## 1424 The Outlaw Josey Wales
## 1425 The Trial
## 1426 Breaking the Waves
## 1427 Little Tickles
## 1428 Balloon
## 1429 Aquarius
## 1430 Barbie as The Princess & the Pauper
## 1431 Bubble
## 1432 Eat Drink Man Woman
## 1433 The Vanishing
## 1434 Walk the Line
## 1435 Incredibles 2
## 1436 Miller's Crossing
## 1437 Promising Young Woman
## 1438 Last Year at Marienbad
## 1439 Barfi!
## 1440 Love & Basketball
## 1441 The Royal Tenenbaums
## 1442 No Man's Land
## 1443 Dawn of the Dead
## 1444 Lost Illusions
## 1445 The Shack
## 1446 The Flowers of War
## 1447 Dirty Harry
## 1448 Mulan: Rise of a Warrior
## 1449 The First Day of the Rest of Your Life
## 1450 Fearless
## 1451 Chickenhare and the Hamster of Darkness
## 1452 Rogue One: A Star Wars Story
## 1453 Almost Famous
## 1454 Predator
## 1455 Repulsion
## 1456 The Last Full Measure
## 1457 The Book Thief
## 1458 3096 Days
## 1459 Hedwig and the Angry Inch
## 1460 Beauty and the Beast
## 1461 Carol
## 1462 Redline
## 1463 Cold War
## 1464 Delusions of Grandeur
## 1465 This Is Spinal Tap
## 1466 Black Book
## 1467 Adam's Apples
## 1468 The Hating Game
## 1469 Kung Fury
## 1470 Hwayi: A Monster Boy
## 1471 Glory
## 1472 Live Twice, Love Once
## 1473 Sympathy for Mr. Vengeance
## 1474 Big Time Adolescence
## 1475 Mary Forever
## 1476 That's Life
## 1477 After Hours
## 1478 A Perfect World
## 1479 Burrow
## 1480 In Safe Hands
## 1481 Zelig
## 1482 Eyes Wide Shut
## 1483 The Boss Baby: Family Business
## 1484 mid90s
## 1485 Human Capital
## 1486 Once Upon a Time in Anatolia
## 1487 Paddington 2
## 1488 Fist of Legend
## 1489 Lucky Number Slevin
## 1490 Dragon Ball Z: Bardock - The Father of Goku
## 1491 The Incredible Shrinking Man
## 1492 My Cousin Vinny
## 1493 Sonatine
## 1494 The Long Goodbye
## 1495 Volver
## 1496 The Guernsey Literary & Potato Peel Pie Society
## 1497 C.R.A.Z.Y.
## 1498 Willy Wonka & the Chocolate Factory
## 1499 The Big Blue
## 1500 Three Colors: White
## 1501 Johnny Got His Gun
## 1502 It's the Great Pumpkin, Charlie Brown
## 1503 2 Hearts
## 1504 ¿Y cómo es él?
## 1505 Birdman or (The Unexpected Virtue of Ignorance)
## 1506 Peeping Tom
## 1507 Scarface
## 1508 Trouble in Paradise
## 1509 How the Grinch Stole Christmas!
## 1510 In Bruges
## 1511 The Name of the Rose
## 1512 Superman II: The Richard Donner Cut
## 1513 Paul, Apostle of Christ
## 1514 Spider-Man: Far from Home
## 1515 The Best of Me
## 1516 One Piece: Strong World
## 1517 The Secret Life of Bees
## 1518 The Gospel According to St. Matthew
## 1519 The Insider
## 1520 Spellbound
## 1521 Training Day
## 1522 First Blood
## 1523 Justice League: War
## 1524 La Vie en Rose
## 1525 Barton Fink
## 1526 Spread Your Wings
## 1527 Open Your Eyes
## 1528 Star Trek II: The Wrath of Khan
## 1529 Jungle Cruise
## 1530 Minions: The Rise of Gru
## 1531 Bhaag Milkha Bhaag
## 1532 Pierrot le Fou
## 1533 Waiting for Bojangles
## 1534 That Obscure Object of Desire
## 1535 Sense and Sensibility
## 1536 PAW Patrol: The Movie
## 1537 The 36th Chamber of Shaolin
## 1538 The Magdalene Sisters
## 1539 Ghostbusters
## 1540 Kalashnikov AK-47
## 1541 Through the Fire
## 1542 Patients
## 1543 A Night at the Opera
## 1544 Catman
## 1545 Mirage
## 1546 Dunkirk
## 1547 Marty
## 1548 The Great Silence
## 1549 Back to the Future Part III
## 1550 Berserk: The Golden Age Arc II - The Battle for Doldrey
## 1551 Lemonade Mouth
## 1552 Johnny Guitar
## 1553 A Better Tomorrow
## 1554 Letters from Iwo Jima
## 1555 The Devils
## 1556 Peaceful Warrior
## 1557 Everything You Want
## 1558 Baby Driver
## 1559 The Age of Adaline
## 1560 Scott Pilgrim vs. the World
## 1561 Black Sunday
## 1562 The One and Only Ivan
## 1563 Nocturnal Animals
## 1564 The Secret of NIMH
## 1565 The Adventures of Robin Hood
## 1566 Hamlet
## 1567 Boys Don't Cry
## 1568 To Have and Have Not
## 1569 The Fugitive
## 1570 Breathe
## 1571 Ray
## 1572 Stray Dog
## 1573 Chaplin
## 1574 Irma la Douce
## 1575 The Bourne Identity
## 1576 18 Presents
## 1577 The Farewell
## 1578 The Thin Red Line
## 1579 Shane
## 1580 Words Bubble Up Like Soda Pop
## 1581 Miss Sloane
## 1582 Sweet Bean
## 1583 Cell 211
## 1584 All That Jazz
## 1585 Fireheart
## 1586 Hocus Pocus 2
## 1587 The Woman in the Window
## 1588 The Reader
## 1589 Ip Man 2
## 1590 Lifted
## 1591 Maggie Simpson in Playdate with Destiny
## 1592 They Call Me Jeeg
## 1593 Ordinary People
## 1594 Ghost in the Shell 2.0
## 1595 The Devil's Advocate
## 1596 Miss You Already
## 1597 Bram Stoker's Dracula
## 1598 Richard Jewell
## 1599 Unbroken
## 1600 The Artist
## 1601 Through My Window
## 1602 The Mauritanian
## 1603 Iron Monkey
## 1604 The Stronghold
## 1605 Nebraska
## 1606 Dragon Ball Z: Fusion Reborn
## 1607 About Elly
## 1608 Scooby-Doo! in Where's My Mummy?
## 1609 Trinity Is Still My Name
## 1610 Head-On
## 1611 Predestination
## 1612 The Verdict
## 1613 Men of Honor
## 1614 Fabrizio De André: Principe libero
## 1615 You're Not You
## 1616 Captain America: Civil War
## 1617 The Color of Pomegranates
## 1618 Man on Fire
## 1619 El Angel
## 1620 I Can Quit Whenever I Want
## 1621 The Right Stuff
## 1622 Thesis
## 1623 Miracles from Heaven
## 1624 Scooby-Doo and the Ghoul School
## 1625 An Affair to Remember
## 1626 The Enigma of Kaspar Hauser
## 1627 Cape Fear
## 1628 Watch Out, We're Mad
## 1629 The Last King of Scotland
## 1630 Apollo 13
## 1631 Sin City
## 1632 A Boy Called Christmas
## 1633 Once Upon a Time… in Hollywood
## 1634 John Wick: Chapter 3 - Parabellum
## 1635 Like Crazy
## 1636 Chemical Hearts
## 1637 American Sniper
## 1638 Frida
## 1639 Uncle Frank
## 1640 Pain and Glory
## 1641 Leviathan
## 1642 Tekkonkinkreet
## 1643 Star Trek
## 1644 The Taking of Pelham One Two Three
## 1645 Last Night in Soho
## 1646 The Lion in Winter
## 1647 I'm Not Ashamed
## 1648 His Girl Friday
## 1649 Monster Pets: A Hotel Transylvania Short
## 1650 The Silent Revolution
## 1651 No Time to Die
## 1652 Neon Genesis Evangelion: Death and Rebirth
## 1653 Mind Game
## 1654 The Innocents
## 1655 Kal Ho Naa Ho
## 1656 The Hurricane
## 1657 The Umbrellas of Cherbourg
## 1658 DC League of Super-Pets
## 1659 Wind River
## 1660 Suicide Room
## 1661 Rushmore
## 1662 Lone Survivor
## 1663 The Motorcycle Diaries
## 1664 Doctor Strange
## 1665 Decision to Leave
## 1666 Barbie: Princess Charm School
## 1667 Alice
## 1668 Hour of the Wolf
## 1669 Glory Road
## 1670 Clerks
## 1671 School of Life
## 1672 The Secret of Kells
## 1673 A Hard Day's Night
## 1674 The Passion of the Christ
## 1675 Status Update
## 1676 Belladonna of Sadness
## 1677 Caro Diario
## 1678 The Life of David Gale
## 1679 Cabaret
## 1680 Veer-Zaara
## 1681 Vivo
## 1682 I Can Quit Whenever I Want 3: Ad Honorem
## 1683 The Hunger Games: Catching Fire
## 1684 The Raid
## 1685 Oslo, August 31st
## 1686 New World
## 1687 Y Tu Mamá También
## 1688 Eraserhead
## 1689 Ocean's Eleven
## 1690 Devotion
## 1691 Teen Titans: The Judas Contract
## 1692 Cure
## 1693 Joyeux Noel
## 1694 Enter the Dragon
## 1695 Belle de Jour
## 1696 Stroszek
## 1697 The Station Agent
## 1698 The Godfather Part III
## 1699 Pretty Woman
## 1700 On the Basis of Sex
## 1701 Those Happy Days
## 1702 True Grit
## 1703 The Secret Garden
## 1704 La Belle Époque
## 1705 The Man Who Copied
## 1706 District 9
## 1707 Contact
## 1708 When Harry Met Sally...
## 1709 Drive My Car
## 1710 Frantz
## 1711 The Lego Movie
## 1712 The Man in the Moon
## 1713 The Lovers on the Bridge
## 1714 Blow-Up
## 1715 Erin Brockovich
## 1716 The Florida Project
## 1717 Being John Malkovich
## 1718 Why Don't You Play in Hell?
## 1719 High Plains Drifter
## 1720 Malena
## 1721 El Dorado
## 1722 The Bourne Ultimatum
## 1723 Cherry
## 1724 Greyhound
## 1725 Big Fish & Begonia
## 1726 A Woman Is a Woman
## 1727 The Legend of Drunken Master
## 1728 The Way of the Dragon
## 1729 South Park: Post COVID: The Return of COVID
## 1730 This Crazy Heart
## 1731 The Purple Rose of Cairo
## 1732 Selma
## 1733 Santa Claus Is a Stinker
## 1734 My Darling Clementine
## 1735 Duel
## 1736 So Long, Stooge
## 1737 Red Desert
## 1738 Jin-Roh: The Wolf Brigade
## 1739 Re:ZERO -Starting Life in Another World- Memory Snow
## 1740 Once in a Lifetime
## 1741 Frances Ha
## 1742 Russian Ark
## 1743 The Piano
## 1744 A Hero
## 1745 Head Full of Honey
## 1746 One Day
## 1747 Submarine
## 1748 The Peanut Butter Falcon
## 1749 Sorry If I Call You Love
## 1750 The Bandit
## 1751 Grease
## 1752 The Best of Enemies
## 1753 Waves
## 1754 Doctor Strange in the Multiverse of Madness
## 1755 Black Panther: Wakanda Forever
## 1756 Red River
## 1757 Home Alone
## 1758 Braindead
## 1759 The Experiment
## 1760 The 39 Steps
## 1761 Mudbound
## 1762 Okja
## 1763 Bāhubali 2: The Conclusion
## 1764 Kingdom: Ashin of the North
## 1765 First They Killed My Father
## 1766 Mission: Impossible - Fallout
## 1767 Pelé: Birth of a Legend
## 1768 Don't Torture a Duckling
## 1769 Crouching Tiger, Hidden Dragon
## 1770 Ecce Bombo
## 1771 Tarzan
## 1772 Moonlight
## 1773 Creed
## 1774 Star Wars: Episode III - Revenge of the Sith
## 1775 Inside Man
## 1776 Black Box
## 1777 Burning
## 1778 A Quiet Place
## 1779 Palm Trees in the Snow
## 1780 McFarland, USA
## 1781 A Dog's Life
## 1782 The Killers
## 1783 Windstorm
## 1784 Pickup on South Street
## 1785 A Place in the Sun
## 1786 Legends of the Fall
## 1787 As Good as It Gets
## 1788 Pearl
## 1789 Black Panther
## 1790 Life of Pi
## 1791 Daisies
## 1792 Memories
## 1793 Scooby-Doo! and the Loch Ness Monster
## 1794 Kung Fu Hustle
## 1795 Once
## 1796 I Can Quit Whenever I Want 2: Masterclass
## 1797 Adaptation.
## 1798 The Good Lie
## 1799 I Want You
## 1800 Saw
## 1801 Lost in Translation
## 1802 Land and Freedom
## 1803 The Red Violin
## 1804 The Mission
## 1805 Justice League: Doom
## 1806 Mad Max 2
## 1807 American Psycho
## 1808 Minari
## 1809 House
## 1810 My Father's Glory
## 1811 Kelly's Heroes
## 1812 August Rush
## 1813 Bad Education
## 1814 Memoir of a Murderer
## 1815 John Wick
## 1816 A Letter to Momo
## 1817 All That Heaven Allows
## 1818 Futurama: Bender's Big Score
## 1819 Women on the Verge of a Nervous Breakdown
## 1820 The Hunt for Red October
## 1821 Enemy at the Gates
## 1822 Lupin III: The First
## 1823 Moxie
## 1824 Happy as Lazzaro
## 1825 The Twelve Tasks of Asterix
## 1826 The Last of the Mohicans
## 1827 The Cook, the Thief, His Wife & Her Lover
## 1828 The Lady from Shanghai
## 1829 The Omen
## 1830 The Sucker
## 1831 The Man Without a Past
## 1832 A Twelve-Year Night
## 1833 Just Another Christmas
## 1834 Descendants 2
## 1835 A Christmas Carol
## 1836 Bones and All
## 1837 Summer of 85
## 1838 Promise at Dawn
## 1839 The Fighter
## 1840 Fantasia
## 1841 Blindspotting
## 1842 The Great Gatsby
## 1843 The Basketball Diaries
## 1844 Beetlejuice
## 1845 Mon Oncle
## 1846 Trolls World Tour
## 1847 If I Stay
## 1848 Stuck in Love
## 1849 American Me
## 1850 Taken
## 1851 Jacob's Ladder
## 1852 The Devil Wears Prada
## 1853 Sicario
## 1854 Scooby-Doo! and the Reluctant Werewolf
## 1855 Scrooge
## 1856 Barbie and the Diamond Castle
## 1857 Glengarry Glen Ross
## 1858 Boiling Point
## 1859 Happiest Season
## 1860 Zulu
## 1861 Withnail & I
## 1862 The Triplets of Belleville
## 1863 The Mad Adventures of Rabbi Jacob
## 1864 Dog
## 1865 Naked
## 1866 Shine
## 1867 Queen
## 1868 Blood and Black Lace
## 1869 Sophie's Choice
## 1870 Persuasion
## 1871 Miracle on 34th Street
## 1872 The Fly
## 1873 Only the Brave
## 1874 A Royal Affair
## 1875 The Time Machine
## 1876 Judas and the Black Messiah
## 1877 Serenity
## 1878 The Wind That Shakes the Barley
## 1879 November
## 1880 Mesrine: Killer Instinct
## 1881 EverAfter
## 1882 Bloody Sunday
## 1883 Down by Law
## 1884 Lolita
## 1885 Interview with the Vampire
## 1886 Teen Titans Go! To the Movies
## 1887 Scooby-Doo! WrestleMania Mystery
## 1888 God's Crooked Lines
## 1889 The Seventh Company Has Been Found
## 1890 The Zookeeper's Wife
## 1891 Philomena
## 1892 Secretariat
## 1893 Office Space
## 1894 Sorry We Missed You
## 1895 Lifeboat
## 1896 The Remains of the Day
## 1897 Scream
## 1898 The Simpsons: The Good, the Bart, and the Loki
## 1899 Enter the Void
## 1900 Nosferatu the Vampyre
## 1901 Jeanne Dielman, 23, quai du Commerce, 1080 Bruxelles
## 1902 Santa Claus Is a Stinker
## 1903 Rudy
## 1904 Mutiny on the Bounty
## 1905 Oscar
## 1906 Close Encounters of the Third Kind
## 1907 The In Between
## 1908 Love and Monsters
## 1909 Drunken Master
## 1910 Eastern Promises
## 1911 Loveless
## 1912 Battle for Sevastopol
## 1913 Boy
## 1914 Blow
## 1915 Asterix & Obelix: Mission Cleopatra
## 1916 A Time to Kill
## 1917 Dead Man Walking
## 1918 Harriet
## 1919 Sonic the Hedgehog
## 1920 The Eighth Day
## 1921 Black Hawk Down
## 1922 American Satan
## 1923 Fruitvale Station
## 1924 The Impossible
## 1925 An American Werewolf in London
## 1926 Sissi
## 1927 Spirit Untamed
## 1928 Black Widow
## 1929 Bianco, rosso e Verdone
## 1930 Scooby-Doo! and the Witch's Ghost
## 1931 Romeo and Juliet
## 1932 Once Were Warriors
## 1933 Now Is Good
## 1934 Rise of the Guardians
## 1935 Precious
## 1936 Only Yesterday
## 1937 Cyrano de Bergerac
## 1938 Play
## 1939 Run
## 1940 Mr. Church
## 1941 Berserk: The Golden Age Arc I - The Egg of the King
## 1942 Sorcerer
## 1943 The Wicker Man
## 1944 The Girl with the Dragon Tattoo
## 1945 Scooby-Doo! and the Cyber Chase
## 1946 Road to Perdition
## 1947 My Girl
## 1948 Batman: Assault on Arkham
## 1949 French Fried Vacation 2: The Bronzés go Skiing
## 1950 The Muppet Christmas Carol
## 1951 Duck Soup
## 1952 Adventures in Babysitting
## 1953 Southpaw
## 1954 Justice League vs. Teen Titans
## 1955 Operation Condor
## 1956 Falling Down
## 1957 Johnny Stecchino
## 1958 Remember
## 1959 My Sister's Keeper
## 1960 Jackie Brown
## 1961 Darkest Hour
## 1962 Spider-Man: Homecoming
## 1963 Little Lord Fauntleroy
## 1964 Possession
## 1965 Train of Life
## 1966 A Man for All Seasons
## 1967 The Immigrant
## 1968 Scooby-Doo! and the Monster of Mexico
## 1969 Dazed and Confused
## 1970 Match Point
## 1971 Butterfly
## 1972 Jodhaa Akbar
## 1973 25th Hour
## 1974 Float
## 1975 Patema Inverted
## 1976 Tucker and Dale vs. Evil
## 1977 Walkabout
## 1978 Interstate 60
## 1979 Crossroads
## 1980 The African Queen
## 1981 To Catch a Thief
## 1982 The Brain
## 1983 Blood and Bone
## 1984 Naruto Shippuden the Movie
## 1985 Father Stu
## 1986 Maleficent: Mistress of Evil
## 1987 Perfume: The Story of a Murderer
## 1988 21 Grams
## 1989 20th Century Women
## 1990 The Butler
## 1991 Ghost in the Shell: Stand Alone Complex – Solid State Society
## 1992 The Little Mermaid
## 1993 Goldfinger
## 1994 Saving Mr. Banks
## 1995 The Social Network
## 1996 Extraction
## 1997 Les Misérables
## 1998 Seconds
## 1999 From Here to Eternity
## 2000 Ghost Dog: The Way of the Samurai
## 2001 Dirty Dancing
## 2002 Full Out
## 2003 Stand by Me Doraemon
## 2004 Horse Fever
## 2005 Lean On Me
## 2006 One Piece Film Red
## 2007 Dear Basketball
## 2008 Now You See Me
## 2009 Jeremiah Johnson
## 2010 Journey to Italy
## 2011 Rocketman
## 2012 Ghostland
## 2013 The Big Sick
## 2014 Fantastic Beasts and Where to Find Them
## 2015 The Mafia Kills Only in Summer
## 2016 Dragon Ball: The Path to Power
## 2017 Ice Age
## 2018 Law Abiding Citizen
## 2019 Juliet of the Spirits
## 2020 Europa
## 2021 Freaks Out
## 2022 Rudolph the Red-Nosed Reindeer
## 2023 Martyrs
## 2024 Christopher Robin
## 2025 Pirates of the Caribbean: Dead Man's Chest
## 2026 The Quiet Man
## 2027 Good Morning, Vietnam
## 2028 In China They Eat Dogs
## 2029 Elisa & Marcela
## 2030 Nashville
## 2031 Dark City
## 2032 The Big Short
## 2033 I Am a Hero
## 2034 The Physician
## 2035 His Secret Life
## 2036 Wait Until Dark
## 2037 Delicatessen
## 2038 Phineas and Ferb: The Movie: Candace Against the Universe
## 2039 Z-O-M-B-I-E-S
## 2040 Funny Games
## 2041 Deconstructing Harry
## 2042 Twin Peaks: Fire Walk with Me
## 2043 Woman in Gold
## 2044 The Yellow Sea
## 2045 The Batman Superman Movie: World's Finest
## 2046 Law of Desire
## 2047 The Guardians of the Galaxy Holiday Special
## 2048 Papillon
## 2049 Star Trek Into Darkness
## 2050 Mesrine: Public Enemy #1
## 2051 Christiane F.
## 2052 Split
## 2053 Loose Cannons
## 2054 Suddenly, Last Summer
## 2055 Masculin Féminin
## 2056 Monty Python's The Meaning of Life
## 2057 Claire's Knee
## 2058 Minority Report
## 2059 Mia and the White Lion
## 2060 Triangle of Sadness
## 2061 The Wailing
## 2062 The Names of Love
## 2063 What's Up, Doc?
## 2064 The Piano Teacher
## 2065 Jab We Met
## 2066 Blow Out
## 2067 Top Hat
## 2068 The Abyss
## 2069 The Blue Angel
## 2070 The Collini Case
## 2071 Naruto Shippuden the Movie: Blood Prison
## 2072 Chocolate
## 2073 Winchester '73
## 2074 The Party
## 2075 Meet John Doe
## 2076 Watchmen
## 2077 The Terminal
## 2078 Run Lola Run
## 2079 G.O.R.A.
## 2080 Hello World
## 2081 Testament of Youth
## 2082 Steamboat Willie
## 2083 Sexmission
## 2084 O Brother, Where Art Thou?
## 2085 Anima
## 2086 The Hobbit: An Unexpected Journey
## 2087 The Passenger
## 2088 A Very Long Engagement
## 2089 The Hours
## 2090 Enola Holmes
## 2091 The Guilty
## 2092 Wreck-It Ralph
## 2093 The Magnificent Ambersons
## 2094 Palm Springs
## 2095 The Fundamentals of Caring
## 2096 A Man and a Woman
## 2097 5 Centimeters per Second
## 2098 An American Crime
## 2099 Merry Christmas, Mr. Lawrence
## 2100 Becoming Jane
## 2101 Heathers
## 2102 Lovers of the Arctic Circle
## 2103 The City of Lost Children
## 2104 Pickpocket
## 2105 Red Cliff Part II
## 2106 The Guns of Navarone
## 2107 Finding Neverland
## 2108 End of Watch
## 2109 The First Beautiful Thing
## 2110 The Message
## 2111 Deliverance
## 2112 A Nightmare on Elm Street
## 2113 Detroit
## 2114 Swades
## 2115 Gentlemen Prefer Blondes
## 2116 A Dog's Way Home
## 2117 100 Meters
## 2118 Suite Française
## 2119 The Lunchbox
## 2120 When the Wind Blows
## 2121 The Front Page
## 2122 Weekend
## 2123 Gangs of New York
## 2124 Fall
## 2125 Tristana
## 2126 Wake in Fright
## 2127 Three Days of the Condor
## 2128 On Golden Pond
## 2129 Tunnel
## 2130 Lights Out
## 2131 3 Women
## 2132 Justice League: Crisis on Two Earths
## 2133 Jack-Jack Attack
## 2134 Vampyr
## 2135 Team Thor
## 2136 Brooklyn
## 2137 Pitch Perfect
## 2138 What's in a Name
## 2139 Tomboy
## 2140 Twice Born
## 2141 The Hangover
## 2142 Patch Adams
## 2143 Death in Venice
## 2144 Tini: The New Life of Violetta
## 2145 Now Where Did the Seventh Company Get to?
## 2146 Summer with Monika
## 2147 Batman Beyond: Return of the Joker
## 2148 The Kite Runner
## 2149 The Miracle Season
## 2150 Lava
## 2151 The Judge
## 2152 Dracula
## 2153 Lucky
## 2154 At War for Love
## 2155 Coal Miner's Daughter
## 2156 The 12th Man
## 2157 Hell or High Water
## 2158 The Hundred-Foot Journey
## 2159 The Counterfeiters
## 2160 The Bourne Supremacy
## 2161 The Evil Dead
## 2162 The Texas Chain Saw Massacre
## 2163 Brother 2
## 2164 Gantz:O
## 2165 Mune: Guardian of the Moon
## 2166 Star Wars: The Force Awakens
## 2167 The Hobbit: The Battle of the Five Armies
## 2168 The Hawks and the Sparrows
## 2169 Kirikou and the Sorceress
## 2170 Balto
## 2171 Bad Day at Black Rock
## 2172 A Charlie Brown Thanksgiving
## 2173 Dawn of the Planet of the Apes
## 2174 True Grit
## 2175 Frost/Nixon
## 2176 Battle Royale
## 2177 Two Distant Strangers
## 2178 Warriors of Future
## 2179 Suburra
## 2180 A Single Man
## 2181 The Duellists
## 2182 Knife in the Water
## 2183 Gone Baby Gone
## 2184 Kiss and Cry
## 2185 The Secret Scripture
## 2186 Undisputed II: Last Man Standing
## 2187 Venus in Fur
## 2188 To Wong Foo, Thanks for Everything! Julie Newmar
## 2189 They Live
## 2190 A Christmas Story
## 2191 #Alive
## 2192 Birds of Passage
## 2193 Justice League Dark
## 2194 War Horse
## 2195 Phantom Thread
## 2196 In the House
## 2197 Sarah's Key
## 2198 Bob le Flambeur
## 2199 A Matter of Loaf and Death
## 2200 Fist of Fury
## 2201 Hair
## 2202 Little Women
## 2203 West Side Story
## 2204 Star Trek: First Contact
## 2205 High Strung Free Dance
## 2206 Pay It Forward
## 2207 Stolen Kisses
## 2208 John Wick: Chapter 2
## 2209 Freeheld
## 2210 Blazing Saddles
## 2211 Manhattan Murder Mystery
## 2212 Videodrome
## 2213 C'mon C'mon
## 2214 The Secret: Dare to Dream
## 2215 Colonia
## 2216 X-Men: First Class
## 2217 Snake in the Eagle's Shadow
## 2218 Blood Simple
## 2219 Colorful
## 2220 Lenny
## 2221 Beautiful Thing
## 2222 The Fortune Cookie
## 2223 Source Code
## 2224 Indiana Jones and the Temple of Doom
## 2225 Evangelion: 3.0 You Can (Not) Redo
## 2226 13 Assassins
## 2227 Days of Being Wild
## 2228 Bye Bye Morons
## 2229 The Man from the Future
## 2230 Citizen X
## 2231 Stalingrad
## 2232 Brothers
## 2233 The Aristocats
## 2234 The Illusionist
## 2235 The Hidden Face
## 2236 Lagaan: Once Upon a Time in India
## 2237 House of Flying Daggers
## 2238 Giant Little Ones
## 2239 Chak De! India
## 2240 The Distinguished Citizen
## 2241 Mystery Train
## 2242 The Professional
## 2243 A Shot in the Dark
## 2244 Swan Song
## 2245 Lady and the Tramp
## 2246 Gonjiam: Haunted Asylum
## 2247 The Conjuring 2
## 2248 The Devil's Backbone
## 2249 Batman: Year One
## 2250 One Man Band
## 2251 Clueless
## 2252 Resort to Love
## 2253 Ghost in the Shell 2: Innocence
## 2254 Robin Hood
## 2255 RoboCop
## 2256 Avengers: Age of Ultron
## 2257 Rise of the Planet of the Apes
## 2258 Dog Pound
## 2259 Assault on Precinct 13
## 2260 Frozen II
## 2261 Scooby-Doo! Meets the Boo Brothers
## 2262 Missing
## 2263 The Jungle Book
## 2264 Bridge to Terabithia
## 2265 Dead Man
## 2266 Life Itself
## 2267 Toxic Love
## 2268 The Family Friend
## 2269 Of Mice and Men
## 2270 Bread and Tulips
## 2271 Hud
## 2272 Carrie
## 2273 Fracture
## 2274 Total Recall
## 2275 The Stranger
## 2276 The Day of the Beast
## 2277 Forbidden Planet
## 2278 Megan Leavey
## 2279 Airplane!
## 2280 Old Henry
## 2281 The Phantom of the Opera
## 2282 My Name Is Nobody
## 2283 The Fisher King
## 2284 Riders of Justice
## 2285 Over the Moon
## 2286 Inception: The Cobol Job
## 2287 Center of My World
## 2288 The Awful Truth
## 2289 The Commitments
## 2290 Evil
## 2291 The Rider
## 2292 Marvel One-Shot: Agent Carter
## 2293 Blancanieves
## 2294 Fear Over the City
## 2295 Lethal Weapon
## 2296 She Said
## 2297 Family Resemblances
## 2298 In the Heights
## 2299 Lady Bird
## 2300 The Past
## 2301 Labyrinth
## 2302 Milk
## 2303 Like Water for Chocolate
## 2304 Marshall
## 2305 Argo
## 2306 Dragon Ball Z: Broly – The Legendary Super Saiyan
## 2307 A Chinese Ghost Story
## 2308 Hunger
## 2309 Love Me If You Dare
## 2310 Army of Darkness
## 2311 13 Hours: The Secret Soldiers of Benghazi
## 2312 The Salesman
## 2313 (500) Days of Summer
## 2314 Man on the Moon
## 2315 Lord of War
## 2316 Escape from Pretoria
## 2317 Conspiracy
## 2318 Smoke
## 2319 Man Bites Dog
## 2320 La Ceremonie
## 2321 Leaving Las Vegas
## 2322 Henry V
## 2323 The Gods Must Be Crazy
## 2324 South Park: Post COVID
## 2325 Barbie & Her Sisters in the Great Puppy Adventure
## 2326 Zombieland
## 2327 Juice
## 2328 Dr. Jekyll and Mr. Hyde
## 2329 In the Name of the Land
## 2330 The Public Enemy
## 2331 Notting Hill
## 2332 Meet Joe Black
## 2333 Fala Sério, Mãe!
## 2334 A Monster Calls
## 2335 War of the Buttons
## 2336 Spider-Man
## 2337 Nomadland
## 2338 Only Lovers Left Alive
## 2339 The Adventures of Priscilla, Queen of the Desert
## 2340 Fear Street: 1978
## 2341 Clifford the Big Red Dog
## 2342 OSS 117: Cairo, Nest of Spies
## 2343 Dangerous Liaisons
## 2344 Hereditary
## 2345 Louis C.K. 2017
## 2346 Suffragette
## 2347 Eddie Murphy Raw
## 2348 Red Dog
## 2349 Crazy, Stupid, Love.
## 2350 Dolores Claiborne
## 2351 Tell No One
## 2352 Donkey Skin
## 2353 Yeh Jawaani Hai Deewani
## 2354 Naruto Shippuden the Movie: Bonds
## 2355 The Illusionist
## 2356 Victor/Victoria
## 2357 Lamp Life
## 2358 Funny Girl
## 2359 Race
## 2360 Brother Bear
## 2361 Pleasantville
## 2362 Shéhérazade
## 2363 Ida
## 2364 The Hurt Locker
## 2365 The Ladykillers
## 2366 Bagdad Cafe
## 2367 Cape Fear
## 2368 Crazy About Her
## 2369 Utøya: July 22
## 2370 Bajirao Mastani
## 2371 The Boat That Rocked
## 2372 Hush... Hush, Sweet Charlotte
## 2373 Stranger Than Fiction
## 2374 Queen of Katwe
## 2375 Begin Again
## 2376 How Green Was My Valley
## 2377 Quiz Show
## 2378 Everything, Everything
## 2379 Frozen
## 2380 Shutter
## 2381 Dark Passage
## 2382 Green Street Hooligans
## 2383 The Kissing Booth
## 2384 The Shape of Water
## 2385 Fast Five
## 2386 The Boondock Saints
## 2387 The Outsiders
## 2388 Blade Runner: Black Out 2022
## 2389 Coherence
## 2390 Zatoichi
## 2391 5 to 7
## 2392 The Many Adventures of Winnie the Pooh
## 2393 Moneyball
## 2394 The Lady Eve
## 2395 Safe Haven
## 2396 Naruto Shippuden the Movie: The Will of Fire
## 2397 The Sword in the Stone
## 2398 Shoot the Piano Player
## 2399 The Devil All the Time
## 2400 The Damned United
## 2401 Monster
## 2402 One Piece Film: GOLD
## 2403 Fullmetal Alchemist the Movie: Conqueror of Shamballa
## 2404 Seven Brides for Seven Brothers
## 2405 CJ7
## 2406 Stardust
## 2407 Rocky II
## 2408 Collateral Beauty
## 2409 The Last Song
## 2410 Naruto the Movie: Ninja Clash in the Land of Snow
## 2411 Queen Margot
## 2412 Die Hard: With a Vengeance
## 2413 Antoine and Colette
## 2414 Ip Man 4: The Finale
## 2415 Ophelia
## 2416 Ferdinand
## 2417 The House with Laughing Windows
## 2418 The Hedgehog
## 2419 Babette's Feast
## 2420 The Road to El Dorado
## 2421 Bicentennial Man
## 2422 Wonder Woman
## 2423 Jane Eyre
## 2424 The Naked City
## 2425 Irreversible
## 2426 The Enforcer
## 2427 Batman: Hush
## 2428 Professor Marston and the Wonder Women
## 2429 Biutiful
## 2430 Planes, Trains and Automobiles
## 2431 Everything Is Illuminated
## 2432 Our Friend
## 2433 Time to Hunt
## 2434 Jumanji
## 2435 The Menu
## 2436 Official Secrets
## 2437 Barbie in A Mermaid Tale
## 2438 Crash
## 2439 Pirates of the Caribbean: At World's End
## 2440 Last Christmas
## 2441 It
## 2442 Standing Tall
## 2443 The Sunset Limited
## 2444 Destino
## 2445 The Concert
## 2446 The Painted Veil
## 2447 Marathon Man
## 2448 Angela's Ashes
## 2449 The Wing or the Thigh?
## 2450 Every Day
## 2451 Wadjda
## 2452 McCabe & Mrs. Miller
## 2453 Wonder Woman
## 2454 And Now for Something Completely Different
## 2455 Spider-Man 2
## 2456 Shadows in Paradise
## 2457 Dragons: Dawn Of The Dragon Racers
## 2458 Clue
## 2459 A Bridge Too Far
## 2460 In the Mouth of Madness
## 2461 It's Only the End of the World
## 2462 Furious 7
## 2463 The Goldfinch
## 2464 The Equalizer
## 2465 The White Sheik
## 2466 The Battleship Island
## 2467 The Gruffalo
## 2468 Betty Blue
## 2469 Maria Full of Grace
## 2470 Prey for the Devil
## 2471 The Ten Commandments: The Movie
## 2472 Tinker Bell and the Legend of the NeverBeast
## 2473 As the Gods Will
## 2474 Tyrannosaur
## 2475 The Greatest Game Ever Played
## 2476 The Dreamers
## 2477 Superman: Red Son
## 2478 To the Bone
## 2479 Great Expectations
## 2480 Wuthering Heights
## 2481 The Age of Shadows
## 2482 Children Who Chase Lost Voices
## 2483 The Orphanage
## 2484 Fear and Loathing in Las Vegas
## 2485 Mirai
## 2486 Confession of Murder
## 2487 The Vow
## 2488 Headhunters
## 2489 The Last Metro
## 2490 Don't Worry, I'm Fine
## 2491 Bed and Board
## 2492 Bridge of Spies
## 2493 Baaria
## 2494 Despicable Me
## 2495 Peter Pan
## 2496 Medieval
## 2497 The Naked Gun: From the Files of Police Squad!
## 2498 Shrek 2
## 2499 On Body and Soul
## 2500 Arizona Dream
## 2501 North Country
## 2502 The Aviator
## 2503 After We Collided
## 2504 Rudderless
## 2505 Vagabond
## 2506 Kung Fu Panda
## 2507 Driving Miss Daisy
## 2508 Project A
## 2509 Django
## 2510 Peter Rabbit 2: The Runaway
## 2511 The Trip Across Paris
## 2512 Picnic at Hanging Rock
## 2513 The Prince of Egypt
## 2514 2046
## 2515 Skyfall
## 2516 The Broken Hearts Gallery
## 2517 Fear Street: 1666
## 2518 The King's Daughter
## 2519 Dragon Ball Z: Wrath of the Dragon
## 2520 The Young Victoria
## 2521 The Exorcism of God
## 2522 A Cinderella Story: If the Shoe Fits
## 2523 Detour
## 2524 Infernal Affairs II
## 2525 Ralph Breaks the Internet
## 2526 National Lampoon's Christmas Vacation
## 2527 Good Time
## 2528 Vanishing Point
## 2529 The Alamo
## 2530 TÁR
## 2531 The Last Temptation of Christ
## 2532 Roma
## 2533 Woman at War
## 2534 A Touch of Sin
## 2535 Barbie and the Three Musketeers
## 2536 The Player
## 2537 Batman: Bad Blood
## 2538 A Fish Called Wanda
## 2539 Batman
## 2540 Girl
## 2541 Don't Breathe 2
## 2542 The Purity of Vengeance
## 2543 South Park: Bigger, Longer & Uncut
## 2544 Superbad
## 2545 Intolerance: Love's Struggle Throughout the Ages
## 2546 Never Rarely Sometimes Always
## 2547 Alita: Battle Angel
## 2548 The Lego Batman Movie
## 2549 An American in Rome
## 2550 Violent Cop
## 2551 Labyrinth of Lies
## 2552 The Bird with the Crystal Plumage
## 2553 The Unknown Woman
## 2554 Murder by Death
## 2555 Toy Story of Terror!
## 2556 My Life as a Dog
## 2557 Loro 2
## 2558 Cleveland Abduction
## 2559 No
## 2560 Robot Chicken: Star Wars
## 2561 3:10 to Yuma
## 2562 Stargate: The Ark of Truth
## 2563 Village of the Damned
## 2564 Chinese Take-Away
## 2565 La Bamba
## 2566 Marley & Me
## 2567 Barbie as the Island Princess
## 2568 A Walk in the Clouds
## 2569 The Bride Wore Black
## 2570 Sweeney Todd: The Demon Barber of Fleet Street
## 2571 Dead of Night
## 2572 Broadway Danny Rose
## 2573 Dracula
## 2574 Upside-Down Magic
## 2575 Nappily Ever After
## 2576 Inside Llewyn Davis
## 2577 Jo
## 2578 Steel Magnolias
## 2579 The Flight of the Phoenix
## 2580 Ghost
## 2581 Tenet
## 2582 Virgin Mountain
## 2583 Frequency
## 2584 The Diary of Anne Frank
## 2585 Batman: Death in the Family
## 2586 9
## 2587 The Embalmer
## 2588 Tootsie
## 2589 Collateral
## 2590 Short Cuts
## 2591 Jack and the Cuckoo-Clock Heart
## 2592 The Great Debaters
## 2593 My Mother's Castle
## 2594 28 Days Later
## 2595 F9
## 2596 My King
## 2597 Bedevilled
## 2598 Scooby-Doo! and the Legend of the Vampire
## 2599 Munna Bhai M.B.B.S.
## 2600 American Splendor
## 2601 Love Tactics
## 2602 Superman: Man of Tomorrow
## 2603 Barbara
## 2604 Wings
## 2605 Sherlock Holmes
## 2606 3:10 to Yuma
## 2607 Breakfast on Pluto
## 2608 Downton Abbey: A New Era
## 2609 My Little Pony: The Movie
## 2610 The Intern
## 2611 Melancholia
## 2612 Songs from the Second Floor
## 2613 Black Sabbath
## 2614 Set It Off
## 2615 Open Range
## 2616 The NeverEnding Story
## 2617 Aloha Scooby-Doo!
## 2618 Vera Drake
## 2619 Big Trouble in Little China
## 2620 I Am Legend
## 2621 Minnal Murali
## 2622 Brigsby Bear
## 2623 Ballerina
## 2624 Barbie and the Secret Door
## 2625 Little Boy
## 2626 The School for Good and Evil
## 2627 Belzebuth
## 2628 Compagni di scuola
## 2629 The Cat Returns
## 2630 Doubt
## 2631 The Big Boss
## 2632 Stranger Than Paradise
## 2633 Sissi: The Fateful Years of an Empress
## 2634 Eighth Grade
## 2635 Ovosodo
## 2636 Invasion of the Body Snatchers
## 2637 Midnight Run
## 2638 Trading Places
## 2639 The Town
## 2640 The Caine Mutiny
## 2641 Belle
## 2642 Superman/Batman: Apocalypse
## 2643 The Edge of Heaven
## 2644 Whale Rider
## 2645 Star Trek IV: The Voyage Home
## 2646 Batman vs. Teenage Mutant Ninja Turtles
## 2647 Batman vs. Robin
## 2648 Barbie: A Fashion Fairytale
## 2649 Fluke
## 2650 The Hunger Games
## 2651 Thank You for Smoking
## 2652 After the Storm
## 2653 Reality
## 2654 Rust and Bone
## 2655 Invictus
## 2656 K-PAX
## 2657 The Professor and the Madman
## 2658 Burlesque
## 2659 Five Easy Pieces
## 2660 Beverly Hills Cop
## 2661 The Map of Tiny Perfect Things
## 2662 Marrowbone
## 2663 Nowhere Boy
## 2664 Welcome
## 2665 Cadillac Records
## 2666 Weekend
## 2667 P.S. I Love You
## 2668 The Old Guard
## 2669 The Choice
## 2670 Polytechnique
## 2671 Alice in Wonderland
## 2672 Kiss Kiss Bang Bang
## 2673 Pillow Talk
## 2674 Les Misérables
## 2675 The Man Who Knew Infinity
## 2676 The Animatrix
## 2677 Secondhand Lions
## 2678 North Face
## 2679 Tai-Chi Master
## 2680 Wall Street
## 2681 Out of Africa
## 2682 The Healer
## 2683 Quadrophenia
## 2684 Murder in the First
## 2685 Eddie the Eagle
## 2686 Carnage
## 2687 Limitless
## 2688 Pat Garrett & Billy the Kid
## 2689 Identity
## 2690 The Lodger: A Story of the London Fog
## 2691 Gangs of Wasseypur - Part 1
## 2692 Hugo
## 2693 A Simple Plan
## 2694 Mrs. Doubtfire
## 2695 Shiva Baby
## 2696 Partysaurus Rex
## 2697 Piazza Fontana: The Italian Conspiracy
## 2698 Diaz - Don't Clean Up This Blood
## 2699 Rosetta
## 2700 Pusher 3
## 2701 Mean Girls
## 2702 Mission: Impossible - Rogue Nation
## 2703 A Coffee in Berlin
## 2704 Reality
## 2705 Men in Black
## 2706 A History of Violence
## 2707 The Edge of Seventeen
## 2708 War of the Arrows
## 2709 Watership Down
## 2710 Rang De Basanti
## 2711 After the Wedding
## 2712 I Am Dragon
## 2713 White Christmas
## 2714 The Great Race
## 2715 Mask
## 2716 Once Upon a Time in China
## 2717 The Princess and the Frog
## 2718 The Talented Mr. Ripley
## 2719 Kahaani
## 2720 Felon
## 2721 What Happened to Monday
## 2722 The Lincoln Lawyer
## 2723 The Cutting Edge
## 2724 Romanzo Criminale
## 2725 Peter Pan
## 2726 [REC]
## 2727 Kiss of the Spider Woman
## 2728 The Karate Kid
## 2729 The English Patient
## 2730 A Girl Like Her
## 2731 The King and I
## 2732 Lust, Caution
## 2733 Elizabeth
## 2734 Reign Over Me
## 2735 Babel
## 2736 Marnie
## 2737 The Maze Runner
## 2738 Pusher II
## 2739 In America
## 2740 Operation Petticoat
## 2741 Living in Oblivion
## 2742 The Christmas Chronicles
## 2743 Pooh's Grand Adventure: The Search for Christopher Robin
## 2744 A League of Their Own
## 2745 House of Sand and Fog
## 2746 The House That Jack Built
## 2747 Heartbeats
## 2748 Adam's Rib
## 2749 The Express
## 2750 The Bucket List
## 2751 300
## 2752 English Vinglish
## 2753 Pale Rider
## 2754 Deadpool: No Good Deed
## 2755 What Dreams May Come
## 2756 Bound
## 2757 The Transformers: The Movie
## 2758 Don't Look Up
## 2759 Jab Tak Hai Jaan
## 2760 Secret of the Wings
## 2761 One Hundred and One Dalmatians
## 2762 Vicky and Her Mystery
## 2763 Black Adam
## 2764 Baby Boy
## 2765 The Darjeeling Limited
## 2766 Candy
## 2767 Sully
## 2768 The Glass Castle
## 2769 Kiss Me Deadly
## 2770 The King
## 2771 The Captain
## 2772 Red Nose Day Actually
## 2773 The American Friend
## 2774 The Last Unicorn
## 2775 The Driver
## 2776 The Secret Life of Walter Mitty
## 2777 The Haunting
## 2778 Sleepy Hollow
## 2779 Seven Years in Tibet
## 2780 After
## 2781 Banana
## 2782 The Patriot
## 2783 The French Dispatch
## 2784 Gravity
## 2785 Welcome to the Dollhouse
## 2786 Broken Embraces
## 2787 The Edukators
## 2788 The Man Without Gravity
## 2789 The Master
## 2790 Breaking Away
## 2791 By the Grace of God
## 2792 Pom Poko
## 2793 Take the Money and Run
## 2794 Unpregnant
## 2795 A Hidden Life
## 2796 The Siege of Jadotville
## 2797 Black Dynamite
## 2798 Radio
## 2799 Hustle & Flow
## 2800 Casualties of War
## 2801 Murder on the Orient Express
## 2802 The Nightingale
## 2803 La Chèvre
## 2804 Red Cliff
## 2805 Crimson Tide
## 2806 Bullitt
## 2807 Once Upon a Deadpool
## 2808 Bad Boys for Life
## 2809 Sissi: The Young Empress
## 2810 Queen & Slim
## 2811 Downton Abbey
## 2812 Midsommar
## 2813 Riley's First Date?
## 2814 Ciao, Professore!
## 2815 The Good, the Bad, the Weird
## 2816 Keith
## 2817 Following
## 2818 The Ballad of Buster Scruggs
## 2819 Sons of the Desert
## 2820 50/50
## 2821 The Producers
## 2822 Searching for Bobby Fischer
## 2823 Lars and the Real Girl
## 2824 Final Cut
## 2825 Trumbo
## 2826 War for the Planet of the Apes
## 2827 Barbie: The Princess & The Popstar
## 2828 Dragons Forever
## 2829 Little Manhattan
## 2830 Dead Ringers
## 2831 The Night of the 12th
## 2832 Fathers and Daughters
## 2833 The Chase
## 2834 Stepmom
## 2835 Sophie Scholl: The Final Days
## 2836 The Goddess of Fortune
## 2837 Son of Saul
## 2838 Sapphire Blue
## 2839 Big
## 2840 In Your Eyes
## 2841 Quills
## 2842 Friday
## 2843 I'm a Cyborg, but That's OK
## 2844 Poltergeist
## 2845 Lightyear
## 2846 Midway
## 2847 Doctor Sleep
## 2848 Pietà
## 2849 Matilda
## 2850 Waking Ned
## 2851 Across the Universe
## 2852 Belfast
## 2853 Molly's Game
## 2854 Tangled Ever After
## 2855 La Grande Bouffe
## 2856 The Parent Trap
## 2857 Scoob!
## 2858 Thief
## 2859 Bullets Over Broadway
## 2860 Death on the Nile
## 2861 Suicide Squad: Hell to Pay
## 2862 Mamma Mia! Here We Go Again
## 2863 Justice League: Gods and Monsters
## 2864 The Wrong Man
## 2865 My Name Ain't Johnny
## 2866 The Taming of the Scoundrel
## 2867 The Phantom of the Opera
## 2868 Contempt
## 2869 SLC Punk
## 2870 Straw Dogs
## 2871 The China Syndrome
## 2872 Final Fantasy VII: Advent Children
## 2873 Drugstore Cowboy
## 2874 Salyut-7
## 2875 Bullhead
## 2876 Fahrenheit 451
## 2877 42
## 2878 The Visitor
## 2879 The Fox and the Hound
## 2880 Death and the Maiden
## 2881 The Invisible Man
## 2882 The Killing of a Chinese Bookie
## 2883 Brother
## 2884 Macbeth
## 2885 Munich
## 2886 The Return of the Living Dead
## 2887 Magnum Force
## 2888 High Fidelity
## 2889 Secret Magic Control Agency
## 2890 Barbie: Princess Adventure
## 2891 The Forgotten Battle
## 2892 Uncut Gems
## 2893 Tora! Tora! Tora!
## 2894 Unbreakable
## 2895 Troy
## 2896 The Life Aquatic with Steve Zissou
## 2897 The Willoughbys
## 2898 The Angry Birds Movie 2
## 2899 Dragon Ball Z: Plan to Eradicate the Super Saiyans
## 2900 Lola
## 2901 Groot's First Steps
## 2902 T-34
## 2903 Little White Lies
## 2904 Dead Man's Shoes
## 2905 High Heels
## 2906 After We Fell
## 2907 The First King
## 2908 Happening
## 2909 Greenland
## 2910 Mary and The Witch's Flower
## 2911 The Lion King
## 2912 Battlestar Galactica: Razor
## 2913 In a Better World
## 2914 Fun Is Beautiful
## 2915 The Muppet Movie
## 2916 Once Upon a Time in China II
## 2917 Two Brothers
## 2918 Matthias & Maxime
## 2919 Scooby-Doo and the Alien Invaders
## 2920 Barefoot in the Park
## 2921 The Monkey King: Reborn
## 2922 Remember Sunday
## 2923 Barbie and the Magic of Pegasus
## 2924 The Realm
## 2925 Brimstone
## 2926 The Thief of Bagdad
## 2927 Dangerous Beauty
## 2928 Punch-Drunk Love
## 2929 Frenzy
## 2930 Petite Maman
## 2931 Bomb City
## 2932 Whatever Works
## 2933 Groot Takes a Bath
## 2934 22 July
## 2935 Pi
## 2936 The Outfit
## 2937 The Half of It
## 2938 The Upside
## 2939 Aladdin
## 2940 Silver Linings Playbook
## 2941 Ace of Aces
## 2942 Sherlock Holmes: A Game of Shadows
## 2943 The Shootist
## 2944 New Police Story
## 2945 Where the Heart Is
## 2946 My Boyfriend's Meds
## 2947 This Beautiful Fantastic
## 2948 The Way Way Back
## 2949 The Magnificent One
## 2950 The Dark Crystal
## 2951 United 93
## 2952 Dogtooth
## 2953 OSS 117: Lost in Rio
## 2954 The Child
## 2955 Love & Mercy
## 2956 Trash
## 2957 The Way
## 2958 The Guardian
## 2959 The Tale
## 2960 The Long Good Friday
## 2961 We Were Soldiers
## 2962 Salvador
## 2963 Space Sweepers
## 2964 Anomalisa
## 2965 Silence
## 2966 The Kid with a Bike
## 2967 I Confess
## 2968 A Star Is Born
## 2969 Chicago
## 2970 The Chronicles of Narnia: The Lion, the Witch and the Wardrobe
## 2971 8 Mile
## 2972 In the Loop
## 2973 The Wolf Man
## 2974 El Topo
## 2975 Dirty Rotten Scoundrels
## 2976 Point Break
## 2977 Mrs. Miniver
## 2978 Jason and the Argonauts
## 2979 Read My Lips
## 2980 The Disaster Artist
## 2981 Calvary
## 2982 Gia
## 2983 Heidi
## 2984 Kick-Ass
## 2985 Stargate: Continuum
## 2986 La Femme Nikita
## 2987 Field of Dreams
## 2988 Superman
## 2989 The Mad Women's Ball
## 2990 Vacation Friends
## 2991 The Forever Purge
## 2992 Sing
## 2993 I'm Not Scared
## 2994 Maze Runner: The Death Cure
## 2995 The Miracle of Marcelino
## 2996 Pokémon: Arceus and the Jewel of Life
## 2997 Suspicion
## 2998 Lolita
## 2999 The Last Castle
## 3000 Mean Streets
## 3001 The Sons of Katie Elder
## 3002 Yellow Submarine
## 3003 The Professionals
## 3004 The Parent Trap
## 3005 To Live and Die in L.A.
## 3006 Rab Ne Bana Di Jodi
## 3007 The Visitors
## 3008 Zabriskie Point
## 3009 The Poseidon Adventure
## 3010 Snow White and the Seven Dwarfs
## 3011 7 Prisoners
## 3012 The Northman
## 3013 Penguin Bloom
## 3014 Dope
## 3015 Chef
## 3016 Control
## 3017 Angel Heart
## 3018 Mortal Kombat
## 3019 Project A: Part II
## 3020 The Lucky One
## 3021 The Proposal
## 3022 Beanpole
## 3023 Climax
## 3024 The Place
## 3025 The Leisure Seeker
## 3026 Closet Monster
## 3027 Descendants
## 3028 Malicious
## 3029 Ruby Sparks
## 3030 Who Am I?
## 3031 MFKZ
## 3032 The Land Before Time
## 3033 The Wife
## 3034 The Connection
## 3035 Kill Your Darlings
## 3036 Buffet Froid
## 3037 if....
## 3038 Lady and the Tramp
## 3039 Speed
## 3040 The Founder
## 3041 With Every Heartbeat
## 3042 Remember Me
## 3043 The Doors
## 3044 Master and Commander: The Far Side of the World
## 3045 A Tale of Two Sisters
## 3046 The Spanish Apartment
## 3047 A Ghost Story
## 3048 Pinocchio
## 3049 The Protector
## 3050 Ghost World
## 3051 Love Actually
## 3052 The Bad Seed
## 3053 National Lampoon's Vacation
## 3054 The Wild Child
## 3055 Notes on a Scandal
## 3056 Snowden
## 3057 The Keeper of Lost Causes
## 3058 Buffalo '66
## 3059 John Q
## 3060 Bud Abbott and Lou Costello Meet Frankenstein
## 3061 Elephant
## 3062 I Hate Summer
## 3063 The Nice Guys
## 3064 You Don't Know Jack
## 3065 Boy A
## 3066 This Boy's Life
## 3067 Before the Devil Knows You're Dead
## 3068 Glass Onion: A Knives Out Mystery
## 3069 While at War
## 3070 Honey Boy
## 3071 Amanda
## 3072 The Black Stallion
## 3073 St. Vincent
## 3074 Show Me Love
## 3075 Life as a House
## 3076 Garden State
## 3077 Naruto the Movie: Guardians of the Crescent Moon Kingdom
## 3078 Quo Vadis
## 3079 The Hunchback of Notre Dame
## 3080 The Getaway
## 3081 The Virgin Suicides
## 3082 Paterson
## 3083 Max
## 3084 Werewolf by Night
## 3085 The Addams Family 2
## 3086 Children of the Sea
## 3087 Starred Up
## 3088 Monsieur Lazhar
## 3089 Barney's Version
## 3090 Birdy
## 3091 The Rock
## 3092 Metropolis
## 3093 The World to Come
## 3094 Angst
## 3095 Audition
## 3096 The Last Black Man in San Francisco
## 3097 Reign of the Supermen
## 3098 Maleficent
## 3099 Gallipoli
## 3100 Hoosiers
## 3101 A Fantastic Woman
## 3102 The Light Between Oceans
## 3103 The Man from U.N.C.L.E.
## 3104 Mickey's Once Upon a Christmas
## 3105 The Woman Next Door
## 3106 Rakka
## 3107 Anthropoid
## 3108 Concussion
## 3109 Miss Violence
## 3110 The Vikings
## 3111 Immortal Beloved
## 3112 The Green Butchers
## 3113 Finding Forrester
## 3114 The Inner Cage
## 3115 Walk. Ride. Rodeo.
## 3116 The Bad Seed
## 3117 An Officer and a Spy
## 3118 The Dark Valley
## 3119 Knick Knack
## 3120 White Oleander
## 3121 Brain on Fire
## 3122 A Hard Day
## 3123 Live Flesh
## 3124 The Good Boss
## 3125 Fear of Rain
## 3126 The Starling
## 3127 What Maisie Knew
## 3128 Last Holiday
## 3129 The Barbarian Invasions
## 3130 Lords of Dogtown
## 3131 Gremlins
## 3132 Toc Toc
## 3133 The Punisher: Dirty Laundry
## 3134 A Princess for Christmas
## 3135 Love Don't Co$t a Thing
## 3136 Good Night, and Good Luck.
## 3137 Little Children
## 3138 Easy Rider
## 3139 Ant-Man
## 3140 Le Gendarme de Saint-Tropez
## 3141 The Andromeda Strain
## 3142 The Three Burials of Melquiades Estrada
## 3143 The Space Between Us
## 3144 Barbie in 'A Christmas Carol'
## 3145 Ong Bak: Muay Thai Warrior
## 3146 The Duke
## 3147 An Interview with God
## 3148 Terms of Endearment
## 3149 365 Days
## 3150 The Admiral: Roaring Currents
## 3151 The End of the Tour
## 3152 Blue Is the Warmest Color
## 3153 The Hudsucker Proxy
## 3154 Operation Red Sea
## 3155 Love in the Afternoon
## 3156 You, the Living
## 3157 Mothra vs. Godzilla
## 3158 At the End of the Tunnel
## 3159 Miracle
## 3160 Top Secret!
## 3161 Pirates of Silicon Valley
## 3162 Hotel Transylvania: Transformania
## 3163 Natural Born Killers
## 3164 Ammonite
## 3165 Crazy Rich Asians
## 3166 Superman/Shazam!: The Return of Black Adam
## 3167 How the West Was Won
## 3168 Shooter
## 3169 Inland Empire
## 3170 My Brother Chases Dinosaurs
## 3171 West Side Story
## 3172 Conviction
## 3173 The Postman Always Rings Twice
## 3174 Hulk vs. Wolverine
## 3175 One Night in Miami...
## 3176 Benny & Joon
## 3177 Bros
## 3178 The Spacewalker
## 3179 Scarecrow
## 3180 Shaolin Soccer
## 3181 Sideways
## 3182 From Russia with Love
## 3183 Malcolm & Marie
## 3184 The Proposition
## 3185 City of Men
## 3186 The Holiday
## 3187 WarGames
## 3188 Handsome Devil
## 3189 The Legend of Al, John and Jack
## 3190 The Emperor's Club
## 3191 Say Anything...
## 3192 The House
## 3193 High Strung
## 3194 Jappeloup
## 3195 Cazuza: Time Doesn't Stop
## 3196 The Next Three Days
## 3197 Witness
## 3198 Caché
## 3199 Gentleman's Agreement
## 3200 Waiting for Guffman
## 3201 The Seven Year Itch
## 3202 Before the Fall
## 3203 Rocky IV
## 3204 My Own Private Idaho
## 3205 Shin Godzilla
## 3206 Paddington
## 3207 Traffic
## 3208 Escape from New York
## 3209 The Cincinnati Kid
## 3210 20,000 Leagues Under the Sea
## 3211 Dragons: Gift of the Night Fury
## 3212 The Assassination of Jesse James by the Coward Robert Ford
## 3213 The Medium
## 3214 Paddleton
## 3215 Raw
## 3216 Sleep Tight
## 3217 Rosencrantz & Guildenstern Are Dead
## 3218 Luxo Jr.
## 3219 The Adam Project
## 3220 Parasyte: Part 1
## 3221 Santa Sangre
## 3222 Hocus Pocus
## 3223 The Spirit of Christmas
## 3224 Bad Lieutenant
## 3225 Feed
## 3226 Boyka: Undisputed IV
## 3227 127 Hours
## 3228 Hearts Beat Loud
## 3229 Bitter Moon
## 3230 The Negotiator
## 3231 Holidate
## 3232 The Innocents
## 3233 The Last Detail
## 3234 Pieces of a Woman
## 3235 Shut In
## 3236 The Courier
## 3237 Nerve
## 3238 Strange Magic
## 3239 The Girl Who Kicked the Hornet's Nest
## 3240 The Fearless Vampire Killers
## 3241 An American in Paris
## 3242 School of Rock
## 3243 Transamerica
## 3244 The Science of Sleep
## 3245 22 vs. Earth
## 3246 A Fall from Grace
## 3247 The High Note
## 3248 Invisibles
## 3249 Goodbye Christopher Robin
## 3250 Breathe
## 3251 Thirst
## 3252 The Lost Boys
## 3253 Ready or Not
## 3254 Far from the Madding Crowd
## 3255 The Picture of Dorian Gray
## 3256 Sholay
## 3257 Cleopatra
## 3258 Brubaker
## 3259 Body Heat
## 3260 The Lovely Bones
## 3261 Galaxy Quest
## 3262 Love at Second Sight
## 3263 Grease Live
## 3264 Power Rangers
## 3265 The Absent One
## 3266 Holy Motors
## 3267 City of Women
## 3268 Ariel
## 3269 Rose Island
## 3270 Emma.
## 3271 Take Shelter
## 3272 ...And Justice for All
## 3273 The Bob's Burgers Movie
## 3274 Vice
## 3275 Mission: Impossible - Ghost Protocol
## 3276 Radio Days
## 3277 The Fly
## 3278 Ring
## 3279 Mud
## 3280 Comment c'est loin
## 3281 The Kissing Booth 3
## 3282 Theorem
## 3283 Lorenzo's Oil
## 3284 Soul Surfer
## 3285 The Great Mouse Detective
## 3286 April and the Extraordinary World
## 3287 The Accountant
## 3288 Pump Up the Volume
## 3289 Disconnect
## 3290 Finding Dory
## 3291 Crows Zero
## 3292 American Graffiti
## 3293 Om Shanti Om
## 3294 I Thought It Was Love
## 3295 Paprika
## 3296 Lone Star
## 3297 Jesus Christ Superstar
## 3298 Howards End
## 3299 The Great Train Robbery
## 3300 Booksmart
## 3301 Uncharted
## 3302 True Lies
## 3303 AINBO: Spirit of the Amazon
## 3304 I See You
## 3305 Columbus
## 3306 First Man
## 3307 The Changeling
## 3308 Juno
## 3309 Tom Clancy's Without Remorse
## 3310 Dragon Ball Z: Bojack Unbound
## 3311 Two for the Road
## 3312 A River Runs Through It
## 3313 Shazam!
## 3314 The Spy Who Came in from the Cold
## 3315 A.I. Artificial Intelligence
## 3316 Justice League: Throne of Atlantis
## 3317 Son of Batman
## 3318 Lawless
## 3319 Love & Other Drugs
## 3320 Fort Apache
## 3321 Fright Night
## 3322 The Princess Switch
## 3323 Willow
## 3324 Wild at Heart
## 3325 Charlie and the Chocolate Factory
## 3326 Naruto Shippuden the Movie: The Lost Tower
## 3327 The Beguiled
## 3328 The Accused
## 3329 Cinderella
## 3330 The Swimming Pool
## 3331 Spirited
## 3332 Chip 'n Dale: Rescue Rangers
## 3333 Scooby-Doo! Return to Zombie Island
## 3334 The King of Staten Island
## 3335 The Darkest Minds
## 3336 Patriots Day
## 3337 Eye in the Sky
## 3338 Mary Shelley
## 3339 Naked Lunch
## 3340 Compartment No. 6
## 3341 On the Town
## 3342 Futurama: Into the Wild Green Yonder
## 3343 Constantine
## 3344 Ladyhawke
## 3345 Licorice Pizza
## 3346 Ashes of Time
## 3347 High Sierra
## 3348 Dawn of the Dead
## 3349 Raising Arizona
## 3350 Team Thor: Part 2
## 3351 24: Redemption
## 3352 Mickey's Twice Upon a Christmas
## 3353 Me and You and Everyone We Know
## 3354 Boy Erased
## 3355 Husbands and Wives
## 3356 Last Tango in Paris
## 3357 The Matrix Reloaded
## 3358 Three Thousand Years of Longing
## 3359 Marshland
## 3360 The Kings of Summer
## 3361 Monsters University
## 3362 Bad Boy Bubby
## 3363 A Room with a View
## 3364 The Trouble with Harry
## 3365 The Addams Family
## 3366 The Report
## 3367 The Little Girl Who Lives Down the Lane
## 3368 Mutiny on the Bounty
## 3369 Re-Animator
## 3370 Night of the Demon
## 3371 A Better Tomorrow II
## 3372 The Unbearable Lightness of Being
## 3373 Equilibrium
## 3374 Top Gun
## 3375 Wallace & Gromit: The Curse of the Were-Rabbit
## 3376 Extreme Job
## 3377 Mi Prima La Sexóloga
## 3378 Legend
## 3379 The Towering Inferno
## 3380 Gods and Monsters
## 3381 Love Hard
## 3382 Toy Story That Time Forgot
## 3383 Quest for Fire
## 3384 Superman/Batman: Public Enemies
## 3385 Runaway Train
## 3386 Day of the Dead
## 3387 The Thirteenth Floor
## 3388 Street Flow
## 3389 Wonder Woman: Bloodlines
## 3390 God Bless America
## 3391 Bedknobs and Broomsticks
## 3392 The Birdcage
## 3393 The Lobster
## 3394 Radiofreccia
## 3395 X2
## 3396 Dug's Special Mission
## 3397 Gunfight at the O.K. Corral
## 3398 Star Trek VI: The Undiscovered Country
## 3399 First Reformed
## 3400 Blue Jay
## 3401 The Big Shave
## 3402 A Wednesday!
## 3403 The Rainmaker
## 3404 Dolemite Is My Name
## 3405 Armour of God
## 3406 This Must Be the Place
## 3407 Journey to the Center of the Earth
## 3408 The Son's Room
## 3409 The Legendary Giulia and Other Miracles
## 3410 SlugTerra: Return of the Elementals
## 3411 Fantasia 2000
## 3412 Facing Windows
## 3413 As Tears Go By
## 3414 Extremely Wicked, Shockingly Evil and Vile
## 3415 Suck Me Shakespeer
## 3416 The First Time
## 3417 Chasing Mavericks
## 3418 What's Love Got to Do with It
## 3419 Moby Dick
## 3420 Animal House
## 3421 Nightmare Alley
## 3422 First Cow
## 3423 The Death of Stalin
## 3424 Get Carter
## 3425 Memory
## 3426 The Innocents
## 3427 Pokémon the Movie: I Choose You!
## 3428 Starstruck
## 3429 Bring Me the Head of Alfredo Garcia
## 3430 The Italian Job
## 3431 Meet Me in St. Louis
## 3432 Operation Mekong
## 3433 Never Back Down: No Surrender
## 3434 Wild
## 3435 Planet Hulk
## 3436 Don
## 3437 Love Songs
## 3438 Stardust Memories
## 3439 Boys Cry
## 3440 Five
## 3441 Castello Cavalcanti
## 3442 Silverado
## 3443 Manhunter
## 3444 The Gray Man
## 3445 Disenchanted
## 3446 Tess
## 3447 Promare
## 3448 The Killing of a Sacred Deer
## 3449 Bloodsport
## 3450 Coffee and Cigarettes
## 3451 Face/Off
## 3452 News of the World
## 3453 Amistad
## 3454 Brassed Off
## 3455 Starship Troopers
## 3456 Hello, Dolly!
## 3457 The Dead Zone
## 3458 Martin Eden
## 3459 A Beautiful Day in the Neighborhood
## 3460 Don't Breathe
## 3461 Oliver!
## 3462 Akeelah and the Bee
## 3463 From Dusk Till Dawn
## 3464 Plus One
## 3465 Brave
## 3466 The Tall Blond Man with One Black Shoe
## 3467 Red Dragon
## 3468 The Full Monty
## 3469 Hawaiian Vacation
## 3470 Bronson
## 3471 Benny's Video
## 3472 Strange Days
## 3473 Barbie as Rapunzel
## 3474 Rounders
## 3475 Bambi
## 3476 The Electrical Life of Louis Wain
## 3477 The Invisible Witness
## 3478 Funny Face
## 3479 The Cider House Rules
## 3480 My Neighbors the Yamadas
## 3481 Cashback
## 3482 Julieta
## 3483 Grand Hotel
## 3484 One Piece: Clockwork Island Adventure
## 3485 An Officer and a Gentleman
## 3486 Capote
## 3487 Disobedience
## 3488 Blue Jasmine
## 3489 Shallow Grave
## 3490 Seabiscuit
## 3491 The Most Beautiful Day
## 3492 A Conspiracy of Faith
## 3493 Beyond Outrage
## 3494 Don't Move
## 3495 Gridiron Gang
## 3496 Truman
## 3497 The Angels' Share
## 3498 Point Blank
## 3499 Dumbo
## 3500 The Age of Innocence
## 3501 Dr. No
## 3502 Next Gen
## 3503 Tolkien
## 3504 Missing Link
## 3505 Le Brio
## 3506 Big Eyes
## 3507 Another Year
## 3508 Orphan
## 3509 If Only
## 3510 Rush Hour
## 3511 Cool Runnings
## 3512 Sightless
## 3513 Emerald Green
## 3514 The Magic of Belle Isle
## 3515 Thirteen Days
## 3516 Police Story 2
## 3517 The Simpsons Movie
## 3518 The Platform
## 3519 The Sun Is Also a Star
## 3520 The Post
## 3521 Shaun the Sheep Movie
## 3522 Ichi the Killer
## 3523 The Constant Gardener
## 3524 Arlington Road
## 3525 Heavenly Creatures
## 3526 Lethal Weapon 2
## 3527 It's Kind of a Funny Story
## 3528 Resistance
## 3529 Tokyo Ghoul
## 3530 The Secret Life of Pets 2
## 3531 The Dressmaker
## 3532 Timecrimes
## 3533 Matchstick Men
## 3534 And Then There Were None
## 3535 Born on the Fourth of July
## 3536 Mr. Holland's Opus
## 3537 State of Grace
## 3538 Eternals
## 3539 Ocean's Eight
## 3540 Fish Tank
## 3541 M*A*S*H
## 3542 Out of My League
## 3543 Barbie of Swan Lake
## 3544 Origin: Spirits of the Past
## 3545 It's a Mad, Mad, Mad, Mad World
## 3546 Captain America: The First Avenger
## 3547 Let It Shine
## 3548 X-Men
## 3549 Dante's Inferno: An Animated Epic
## 3550 Foreign Correspondent
## 3551 The Road
## 3552 Silkwood
## 3553 The Way We Were
## 3554 Enemy of the State
## 3555 Alphaville
## 3556 Amen.
## 3557 Monsieur Hulot's Holiday
## 3558 The Tower
## 3559 Le Havre
## 3560 The Three Brothers
## 3561 Godzilla: Final Wars
## 3562 The Other Side of Hope
## 3563 Robin-B-Hood
## 3564 The Gods Must Be Crazy II
## 3565 Two Mules for Sister Sara
## 3566 The Lover
## 3567 Fresh
## 3568 The Toy
## 3569 Excalibur
## 3570 The Isle
## 3571 Saw
## 3572 The Monster
## 3573 Eight Below
## 3574 8 Women
## 3575 School Life
## 3576 Birds of Prey (and the Fantabulous Emancipation of One Harley Quinn)
## 3577 The Guard
## 3578 Bernie
## 3579 The SpongeBob SquarePants Movie
## 3580 The Most Dangerous Game
## 3581 Creed II
## 3582 mother!
## 3583 ACAB : All Cops Are Bastards
## 3584 The Pale Blue Eye
## 3585 Irreplaceable You
## 3586 The Batman vs. Dracula
## 3587 Dreamer: Inspired By a True Story
## 3588 Thursday
## 3589 Stan & Ollie
## 3590 Extremely Loud & Incredibly Close
## 3591 Cross of Iron
## 3592 The Bear
## 3593 Good Luck to You, Leo Grande
## 3594 Kingsman: The Golden Circle
## 3595 Rams
## 3596 Zero Dark Thirty
## 3597 Agora
## 3598 The Girl Who Played with Fire
## 3599 Rumble Fish
## 3600 Stronger
## 3601 Toni Erdmann
## 3602 Trick 'r Treat
## 3603 Can't Buy Me Love
## 3604 Sexy Beast
## 3605 Running Scared
## 3606 The Lake House
## 3607 Anplagghed al cinema
## 3608 The Decameron
## 3609 Frailty
## 3610 Children of a Lesser God
## 3611 The Old Ways
## 3612 Before I Fall
## 3613 Heart and Souls
## 3614 Blinded by the Light
## 3615 Troop Zero
## 3616 Us
## 3617 Zombieland: Double Tap
## 3618 10 Cloverfield Lane
## 3619 Pixie Hollow Games
## 3620 Frosty the Snowman
## 3621 Bad Boys
## 3622 Together
## 3623 The Photographer of Mauthausen
## 3624 If Beale Street Could Talk
## 3625 Ruby Red
## 3626 Four Lions
## 3627 The Exchange Student
## 3628 Ip Man 3
## 3629 Swindle
## 3630 Letters to Juliet
## 3631 Futurama: The Beast with a Billion Backs
## 3632 The Duchess
## 3633 Brawl in Cell Block 99
## 3634 Shock Corridor
## 3635 Ghajini
## 3636 The Hitcher
## 3637 Pusher
## 3638 The Queen
## 3639 Labor Day
## 3640 Barbie in A Mermaid Tale 2
## 3641 Dragon
## 3642 Carnival of Souls
## 3643 Don't Be a Menace to South Central While Drinking Your Juice in the Hood
## 3644 Atlantis: The Lost Empire
## 3645 The Baader Meinhof Complex
## 3646 Revolutionary Road
## 3647 Don't Look Now
## 3648 Beauty and the Beast
## 3649 Alice Doesn't Live Here Anymore
## 3650 Hotel Chevalier
## 3651 Stargate
## 3652 A Perfect Man
## 3653 Batman & Mr. Freeze: SubZero
## 3654 Wag the Dog
## 3655 Pokémon Detective Pikachu
## 3656 Dolphin Tale 2
## 3657 The Odd Life of Timothy Green
## 3658 Little Caesar
## 3659 The Host
## 3660 Photocopier
## 3661 No Exit
## 3662 Gainsbourg: A Heroic Life
## 3663 A Bug's Life
## 3664 Terrifier 2
## 3665 Death Note
## 3666 Ant-Man and the Wasp
## 3667 Kung Fu Panda Holiday
## 3668 The Way Back
## 3669 In the Line of Fire
## 3670 The Extraordinary Journey of the Fakir
## 3671 Journey to the West: Conquering the Demons
## 3672 The Squid and the Whale
## 3673 Gorillas in the Mist
## 3674 The Tragedy of Macbeth
## 3675 But I'm a Cheerleader
## 3676 Mamma Mia!
## 3677 Rabbit-Proof Fence
## 3678 Orlando
## 3679 The White Tiger
## 3680 C'est la vie!
## 3681 The Walk
## 3682 Battle of the Year
## 3683 Conviction
## 3684 Chocolat
## 3685 Blood Red Sky
## 3686 A Week Away
## 3687 Dangerous Minds
## 3688 The Class
## 3689 The Ice Road
## 3690 Shattered Glass
## 3691 Deathstroke: Knights & Dragons - The Movie
## 3692 One Piece: The Movie
## 3693 Death Note: The Last Name
## 3694 Smokey and the Bandit
## 3695 Sunshine
## 3696 UFO
## 3697 How to Be a Latin Lover
## 3698 Supernova
## 3699 The Golden Glove
## 3700 The Exception
## 3701 Hotel Transylvania
## 3702 Tetsuo: The Iron Man
## 3703 Real Steel
## 3704 Charlie St. Cloud
## 3705 Old Yeller
## 3706 Mickey's Magical Christmas: Snowed in at the House of Mouse
## 3707 A Goofy Movie
## 3708 Best in Show
## 3709 The Descent
## 3710 Love and Leashes
## 3711 Mission: Impossible
## 3712 The Place Beyond the Pines
## 3713 Dolphin Tale
## 3714 The Abominable Dr. Phibes
## 3715 RocknRolla
## 3716 Wristcutters: A Love Story
## 3717 The Hidden
## 3718 Much Ado About Nothing
## 3719 The People vs. Larry Flynt
## 3720 The Beat That My Heart Skipped
## 3721 Set It Up
## 3722 T2 Trainspotting
## 3723 ParaNorman
## 3724 Shame
## 3725 Certified Copy
## 3726 Flash Point
## 3727 She Wore a Yellow Ribbon
## 3728 Addams Family Values
## 3729 Colette
## 3730 In Time
## 3731 Coco Before Chanel
## 3732 Tangerine
## 3733 Beyond the Lights
## 3734 Water for Elephants
## 3735 Frankenweenie
## 3736 Invincible
## 3737 Shadowlands
## 3738 Homeward Bound: The Incredible Journey
## 3739 Grosse Pointe Blank
## 3740 While You Were Sleeping
## 3741 Look Both Ways
## 3742 The Good Nurse
## 3743 Same Kind of Different as Me
## 3744 Timbuktu
## 3745 Phineas and Ferb: The Movie: Across the 2nd Dimension
## 3746 Asterix and Cleopatra
## 3747 Jerry Maguire
## 3748 The Mustang
## 3749 Private Life
## 3750 The Miseducation of Cameron Post
## 3751 The Sweet Hereafter
## 3752 Isi & Ossi
## 3753 Benji
## 3754 Homefront
## 3755 Megamind
## 3756 The Lion King II: Simba's Pride
## 3757 4th Man Out
## 3758 The Best Exotic Marigold Hotel
## 3759 Saturn in Opposition
## 3760 Amazing Grace
## 3761 Angel-A
## 3762 Jumanji: The Next Level
## 3763 The Promise
## 3764 Those People
## 3765 Insidious
## 3766 Little Big Soldier
## 3767 Nixon
## 3768 Blue Valentine
## 3769 Animal Farm
## 3770 The Fountain
## 3771 The Corpse of Anna Fritz
## 3772 The Road Within
## 3773 Tom and Jerry: The Fast and the Furry
## 3774 House of Wax
## 3775 Defending Your Life
## 3776 The Princess Diaries
## 3777 Nightwatch
## 3778 Manderlay
## 3779 Pearl Harbor
## 3780 My Awkward Sexual Adventure
## 3781 Kung Fu Panda 2
## 3782 Il ciclone
## 3783 Black Christmas
## 3784 The Misfits
## 3785 Victoria & Abdul
## 3786 Suspiria
## 3787 Frankenweenie
## 3788 The Time Traveler's Wife
## 3789 The Adventures of Baron Munchausen
## 3790 Center Stage
## 3791 Velvet Goldmine
## 3792 Batman: Soul of the Dragon
## 3793 El Camino: A Breaking Bad Movie
## 3794 Borg vs McEnroe
## 3795 The Death & Life of John F. Donovan
## 3796 Sleeping Beauty
## 3797 The Foreigner
## 3798 Barbie: The Pearl Princess
## 3799 Trouble with the Curve
## 3800 Enemy Mine
## 3801 The Fast and the Furious
## 3802 The Woodsman
## 3803 Maggie Simpson in The Longest Daycare
## 3804 Insomnia
## 3805 Bruised
## 3806 Swiss Army Man
## 3807 City Island
## 3808 Dressed to Kill
## 3809 Pocahontas
## 3810 Nope
## 3811 Dragonheart: Vengeance
## 3812 The Marksman
## 3813 Belle and Sebastian
## 3814 An Education
## 3815 At Close Range
## 3816 Ronin
## 3817 SPL: Kill Zone
## 3818 Dragon: The Bruce Lee Story
## 3819 The Jerk
## 3820 Stewie Griffin: The Untold Story
## 3821 Battle of the Bulge
## 3822 Friday Night Lights
## 3823 Godzilla 2000: Millennium
## 3824 Layer Cake
## 3825 Cold Mountain
## 3826 The Pink Panther
## 3827 Paradise Now
## 3828 Spontaneous
## 3829 Sleeper
## 3830 Rescue Dawn
## 3831 Minuscule: Valley of the Lost Ants
## 3832 The Sprinkler Sprinkled
## 3833 Kon-Tiki
## 3834 I, Robot
## 3835 Creepshow
## 3836 Notorious
## 3837 Hard Eight
## 3838 Broken Flowers
## 3839 Minamata
## 3840 Carrie Pilby
## 3841 Iron Man 3
## 3842 Nine to Five
## 3843 Triangle
## 3844 sex, lies, and videotape
## 3845 At Eternity's Gate
## 3846 Space Jam: A New Legacy
## 3847 Serial Killer 1
## 3848 Crazy Heart
## 3849 A Shaun the Sheep Movie: Farmageddon
## 3850 Robot & Frank
## 3851 Pokémon: Lucario and the Mystery of Mew
## 3852 24 Hour Party People
## 3853 The Tin Drum
## 3854 Belle and Sebastian: The Adventure Continues
## 3855 The Crimson Rivers
## 3856 The Brave Little Toaster
## 3857 The Beyond
## 3858 Just Like Heaven
## 3859 Incantation
## 3860 15 Minutes of War
## 3861 Passengers
## 3862 Spy Game
## 3863 Safe
## 3864 Soylent Green
## 3865 Ben X
## 3866 The Mask
## 3867 Sink or Swim
## 3868 2036: Nexus Dawn
## 3869 Mulan
## 3870 Odd Thomas
## 3871 Divergent
## 3872 Superman vs. The Elite
## 3873 Even the Rain
## 3874 The Spanish Prisoner
## 3875 Pretty Baby
## 3876 The Witches
## 3877 Double Trouble
## 3878 Roald Dahl's Matilda the Musical
## 3879 Middle School: The Worst Years of My Life
## 3880 Cloud 9
## 3881 Small Fry
## 3882 Boris - Il film
## 3883 Mona Lisa Smile
## 3884 Step Up Revolution
## 3885 Cat People
## 3886 White Chicks
## 3887 Go for It
## 3888 We Die Young
## 3889 Padmaavat
## 3890 Shot Caller
## 3891 The Wizards Return: Alex vs. Alex
## 3892 Tidal Wave
## 3893 Fearless
## 3894 No Way Out
## 3895 The Believer
## 3896 Die Hard 2
## 3897 Invasion
## 3898 Diner
## 3899 Crime Busters
## 3900 Wheels on Meals
## 3901 Flight of the Navigator
## 3902 Hostiles
## 3903 The Bélier Family
## 3904 The Sessions
## 3905 Cold Fish
## 3906 My Babysitter's a Vampire
## 3907 Outrage
## 3908 The Natural
## 3909 The One I Love
## 3910 Despicable Me 2
## 3911 The Croods
## 3912 Frequently Asked Questions About Time Travel
## 3913 Anything for Her
## 3914 Now and Then
## 3915 The Princess
## 3916 Shrew's Nest
## 3917 Nothing But the Truth
## 3918 Death Wish
## 3919 Day Shift
## 3920 Tom & Jerry
## 3921 The Dig
## 3922 Barbie: Spy Squad
## 3923 The Tribe
## 3924 No Escape
## 3925 Lore
## 3926 Green Lantern: First Flight
## 3927 Definitely, Maybe
## 3928 In the Bedroom
## 3929 Dragon Ball: Episode of Bardock
## 3930 Gramps Is in the Resistance
## 3931 Life As We Know It
## 3932 The 7th Voyage of Sinbad
## 3933 Sinbad: Legend of the Seven Seas
## 3934 Near Dark
## 3935 Runaway Jury
## 3936 The Princess Switch: Switched Again
## 3937 Back to Burgundy
## 3938 Reds
## 3939 Barbarian
## 3940 Asterix: The Secret of the Magic Potion
## 3941 Hotel Transylvania 3: Summer Vacation
## 3942 Odds and Evens
## 3943 Cars
## 3944 The Endless Trench
## 3945 Muriel's Wedding
## 3946 Much Ado About Nothing
## 3947 Atlantic City
## 3948 Swiss Family Robinson
## 3949 Dogma
## 3950 The Princess Switch 3: Romancing the Star
## 3951 The Witch
## 3952 Endless Love
## 3953 Tracks
## 3954 Game Change
## 3955 You Can Count on Me
## 3956 Once Upon a Snowman
## 3957 Jurassic World Dominion
## 3958 Monkey King: Hero Is Back
## 3959 Barbie Mariposa & the Fairy Princess
## 3960 Dil Chahta Hai
## 3961 Barfly
## 3962 In the Fade
## 3963 All Star Superman
## 3964 Spencer
## 3965 The Hater
## 3966 Two Days, One Night
## 3967 Kundun
## 3968 Hellraiser
## 3969 Stomp the Yard
## 3970 The Thomas Crown Affair
## 3971 My Spy
## 3972 Skin
## 3973 Youth
## 3974 Transformers: Beginnings
## 3975 Futurama: Bender's Game
## 3976 Babyteeth
## 3977 Winnie the Pooh
## 3978 Southern Comfort
## 3979 Aquaman
## 3980 Lost and Delirious
## 3981 Rio Grande
## 3982 Starman
## 3983 Clerks II
## 3984 Munich: The Edge of War
## 3985 Being 17
## 3986 Main Hoon Na
## 3987 Unleashed
## 3988 Plane
## 3989 Tales from the Crypt
## 3990 Major League
## 3991 Highlander
## 3992 Snowpiercer
## 3993 Valkyrie
## 3994 My Name Is Vendetta
## 3995 Resident Evil: Vendetta
## 3996 Infernal Affairs III
## 3997 Little Shop of Horrors
## 3998 Batman Returns
## 3999 Let Him Go
## 4000 Don't Let Go
## 4001 Dragon Ball Z: Cooler's Revenge
## 4002 Pokémon: The First Movie
## 4003 Warsaw 44
## 4004 Mike's New Car
## 4005 Venom: Let There Be Carnage
## 4006 Lean on Pete
## 4007 Sicario: Day of the Soldado
## 4008 The Big Chill
## 4009 Tinker Bell and the Pirate Fairy
## 4010 Another Woman
## 4011 Cemetery Man
## 4012 Desperado
## 4013 The Vault
## 4014 The Fate of the Furious
## 4015 Nymphomaniac: Vol. I
## 4016 Locke
## 4017 My Afternoons with Margueritte
## 4018 Halloweentown II: Kalabar's Revenge
## 4019 The Bad News Bears
## 4020 Sneakers
## 4021 War Dogs
## 4022 Mr. Brooks
## 4023 Thunder Road
## 4024 Summer of 84
## 4025 Barbie in Rock 'N Royals
## 4026 Frank
## 4027 The Jacket
## 4028 Michael Collins
## 4029 Tom and Jerry Cowboy Up!
## 4030 To All the Boys: P.S. I Still Love You
## 4031 Next Avengers: Heroes of Tomorrow
## 4032 The Horse Whisperer
## 4033 The Outpost
## 4034 Powder
## 4035 9
## 4036 Dirty Pretty Things
## 4037 Little
## 4038 Fantastic Beasts: The Crimes of Grindelwald
## 4039 The Hunger Games: Mockingjay - Part 2
## 4040 Fullmetal Alchemist the Movie: The Sacred Star of Milos
## 4041 Into the White
## 4042 Tie Me Up! Tie Me Down!
## 4043 Danger Close: The Battle of Long Tan
## 4044 Shaolin
## 4045 Common Wealth
## 4046 Focus
## 4047 Every Blessed Day
## 4048 A Passage to India
## 4049 The Crying Game
## 4050 Serendipity
## 4051 That Thing You Do!
## 4052 Goliath
## 4053 Starbuck
## 4054 The Night Porter
## 4055 Wicker Park
## 4056 We Are Marshall
## 4057 The Mummy
## 4058 Godmothered
## 4059 The Hitman's Bodyguard
## 4060 Swingers
## 4061 The Mist
## 4062 Madagascar
## 4063 The War of the Roses
## 4064 The Railway Man
## 4065 Soul Kitchen
## 4066 Leap Year
## 4067 Counter Investigation
## 4068 Escape to Victory
## 4069 Pope Joan
## 4070 Death at a Funeral
## 4071 Basic Instinct
## 4072 How to Grow Up Despite Your Parents
## 4073 The Private Life of Sherlock Holmes
## 4074 After Ever Happy
## 4075 The Thinning
## 4076 Drumline
## 4077 Take the Lead
## 4078 The Importance of Being Earnest
## 4079 A Perfect Pairing
## 4080 Pitch Perfect 2
## 4081 A Hijacking
## 4082 Broken
## 4083 Evil Under the Sun
## 4084 Jexi
## 4085 Rumble
## 4086 The Best Is Yet to Come
## 4087 The Stanford Prison Experiment
## 4088 Think Like a Man
## 4089 Northanger Abbey
## 4090 Step Up
## 4091 Flight Crew
## 4092 Fly Away Home
## 4093 Hairspray
## 4094 Poetic Justice
## 4095 Meet the Robinsons
## 4096 Army of Thieves
## 4097 Metal Lords
## 4098 Saboteur
## 4099 Gettysburg
## 4100 Kingdom of Heaven
## 4101 Chocolat
## 4102 Noroi: The Curse
## 4103 Kids
## 4104 Shakespeare in Love
## 4105 Boss Level
## 4106 The Case for Christ
## 4107 The Pit and the Pendulum
## 4108 The Adventures of Tintin
## 4109 Gomorrah
## 4110 Beast
## 4111 Don't Worry Darling
## 4112 Adú
## 4113 Captain Marvel
## 4114 Help!
## 4115 The Wild Geese
## 4116 The Young Karl Marx
## 4117 Speak
## 4118 The Hound of the Baskervilles
## 4119 Alive
## 4120 Azumi
## 4121 The Red Sea Diving Resort
## 4122 Teen Beach Movie
## 4123 Adventures in Babysitting
## 4124 Black Snake Moan
## 4125 The Garden of the Finzi-Continis
## 4126 Hidden
## 4127 Enemy
## 4128 Filth
## 4129 Marvel One-Shot: A Funny Thing Happened on the Way to Thor's Hammer
## 4130 21 Jump Street
## 4131 The Frighteners
## 4132 13 Minutes
## 4133 Cloud Atlas
## 4134 Looper
## 4135 Three O'Clock High
## 4136 Corro da te
## 4137 Marry Me
## 4138 Magic
## 4139 Them!
## 4140 GoldenEye
## 4141 It Chapter Two
## 4142 Slap Shot
## 4143 Creature from the Black Lagoon
## 4144 Gosford Park
## 4145 Moonstruck
## 4146 Sweet November
## 4147 Tsotsi
## 4148 Fast & Furious Presents: Hobbs & Shaw
## 4149 Reign of Assassins
## 4150 Halloweentown
## 4151 La Cage aux Folles
## 4152 Please Stand By
## 4153 Pokémon: The Rise of Darkrai
## 4154 Time After Time
## 4155 Malignant
## 4156 The Man Who Invented Christmas
## 4157 Bird Box
## 4158 Stromberg – The Movie
## 4159 Lincoln
## 4160 Perfect Sense
## 4161 Pacific Rim
## 4162 Beginners
## 4163 Bird
## 4164 Flicka
## 4165 A Knight's Tale
## 4166 Fences
## 4167 Kung Fu Panda 3
## 4168 Cul-de-sac
## 4169 Rocky III
## 4170 The Peanuts Movie
## 4171 House of Games
## 4172 A Christmas Carol
## 4173 Good Boys
## 4174 The Ice Storm
## 4175 Some Kind of Wonderful
## 4176 The Hand that Rocks the Cradle
## 4177 Coming to America
## 4178 Force Majeure
## 4179 Sinister
## 4180 Independence Day
## 4181 Fighting with My Family
## 4182 Adrift
## 4183 The Jungle Book
## 4184 In Order of Disappearance
## 4185 King Kong
## 4186 Mandela: Long Walk to Freedom
## 4187 Tremors
## 4188 The Substitute
## 4189 How to Marry a Millionaire
## 4190 Siberian Education
## 4191 Streets of Fire
## 4192 Mean Creek
## 4193 Clash of the Titans
## 4194 Hang 'em High
## 4195 The House of the Spirits
## 4196 Parallel Mothers
## 4197 The Club
## 4198 Blended
## 4199 Go
## 4200 Piranhas
## 4201 Sorry to Bother You
## 4202 August: Osage County
## 4203 Never Let Me Go
## 4204 Bill & Ted's Excellent Adventure
## 4205 The Professor
## 4206 Nobody's Fool
## 4207 Afterlife of the Party
## 4208 The Villainess
## 4209 Black or White
## 4210 Resident Evil: Damnation
## 4211 The Mummy
## 4212 Steamboy
## 4213 Manitou's Shoe
## 4214 Hunter Killer
## 4215 Loft
## 4216 Latter Days
## 4217 Barbie Fairytopia: Mermaidia
## 4218 The Boss Baby: Christmas Bonus
## 4219 A Pigeon Sat on a Branch Reflecting on Existence
## 4220 Dragon Ball: Curse of the Blood Rubies
## 4221 Three Little Pigs
## 4222 Martin
## 4223 Year of the Dragon
## 4224 Cars 3
## 4225 Career Opportunities
## 4226 Interiors
## 4227 Under the Tuscan Sun
## 4228 Chariots of Fire
## 4229 Emily the Criminal
## 4230 Flavors of Youth
## 4231 Game Night
## 4232 The Taste of Others
## 4233 The Three Musketeers
## 4234 Girls Trip
## 4235 American Made
## 4236 Frozen Fever
## 4237 Hesher
## 4238 Thelma
## 4239 Star Wars: The Last Jedi
## 4240 American Hustle
## 4241 eXistenZ
## 4242 Doctor Strange
## 4243 Sweet and Lowdown
## 4244 Respect
## 4245 Quest for Camelot
## 4246 A Mighty Wind
## 4247 What About Bob?
## 4248 Nineteen Eighty-Four
## 4249 Robin Hood: Prince of Thieves
## 4250 22 Jump Street
## 4251 Tom at the Farm
## 4252 Heartbreak Ridge
## 4253 Maverick
## 4254 Christine
## 4255 L'Âge d'Or
## 4256 Rent
## 4257 Deepwater Horizon
## 4258 Viaggi di nozze
## 4259 Dear John
## 4260 Election
## 4261 The War of the Worlds
## 4262 Two Lovers
## 4263 Space Jam
## 4264 Cross the Line
## 4265 Wild Rose
## 4266 Drug War
## 4267 Clockers
## 4268 Stonehearst Asylum
## 4269 Metallica: Through the Never
## 4270 Up in the Air
## 4271 Who Finds a Friend Finds a Treasure
## 4272 Trade
## 4273 Night of the Living Dead
## 4274 The Pink Panther Strikes Again
## 4275 XXY
## 4276 Fatal Attraction
## 4277 36th Precinct
## 4278 Phone Booth
## 4279 Hook
## 4280 The X Files
## 4281 Dumplin'
## 4282 Bad Times at the El Royale
## 4283 El Cid
## 4284 Tinker Bell
## 4285 Innerspace
## 4286 Closer
## 4287 Venom
## 4288 Pitch Black
## 4289 Denial
## 4290 A Girl Walks Home Alone at Night
## 4291 The Old Dark House
## 4292 Berlin Calling
## 4293 Justice League: The New Frontier
## 4294 Iron Man 2
## 4295 Only You
## 4296 The Savages
## 4297 Dheepan
## 4298 I Am Love
## 4299 Riding in Cars with Boys
## 4300 Déjà Vu
## 4301 SuperFly
## 4302 The King's Man
## 4303 The Grinch
## 4304 Tales from the Crypt: Demon Knight
## 4305 Holes
## 4306 50 First Dates
## 4307 Rocky Balboa
## 4308 The Best Years
## 4309 Bombshell
## 4310 Aline
## 4311 2048: Nowhere to Run
## 4312 Barbie in the Pink Shoes
## 4313 Hard Candy
## 4314 Spaceballs
## 4315 Step Up All In
## 4316 Overboard
## 4317 Che: Part One
## 4318 Holy Camp!
## 4319 House on Haunted Hill
## 4320 Brick
## 4321 Sister Act
## 4322 Samaritan
## 4323 How to Get Over a Breakup
## 4324 Antiporno
## 4325 Where Am I Going?
## 4326 Now You See Me 2
## 4327 Marvel One-Shot: All Hail the King
## 4328 Spy
## 4329 The Color of Money
## 4330 Secret Headquarters
## 4331 The Sisters Brothers
## 4332 Beasts of the Southern Wild
## 4333 Step Up 3D
## 4334 Barbie Fairytopia: Magic of the Rainbow
## 4335 About Schmidt
## 4336 Payback
## 4337 Justice League vs. the Fatal Five
## 4338 Below Her Mouth
## 4339 Paws of Fury: The Legend of Hank
## 4340 Lemony Snicket's A Series of Unfortunate Events
## 4341 The Mule
## 4342 The African Doctor
## 4343 Jumanji: Welcome to the Jungle
## 4344 Borotalco
## 4345 Flags of Our Fathers
## 4346 Blood: The Last Vampire
## 4347 Armageddon
## 4348 Defiance
## 4349 The Ghost Writer
## 4350 Tommy Boy
## 4351 Presumed Innocent
## 4352 Any Given Sunday
## 4353 Ash Is Purest White
## 4354 The Lady
## 4355 The Descendants
## 4356 Wonder Boys
## 4357 Death Proof
## 4358 Outlaw King
## 4359 Bone Tomahawk
## 4360 Asterix: The Mansions of the Gods
## 4361 We Have a Pope
## 4362 Barbie in the Nutcracker
## 4363 Along for the Ride
## 4364 Margin Call
## 4365 Easy A
## 4366 One Shot
## 4367 Avengement
## 4368 Can You Ever Forgive Me?
## 4369 The Boys in the Band
## 4370 Babysitting
## 4371 Dracula: Prince of Darkness
## 4372 Wendy and Lucy
## 4373 Fantomas
## 4374 Non-Stop
## 4375 Ginger Snaps
## 4376 The Bank Job
## 4377 Chronicle
## 4378 I Walked with a Zombie
## 4379 Another Cinderella Story
## 4380 Kingsglaive: Final Fantasy XV
## 4381 A Monster in Paris
## 4382 The Mechanic
## 4383 Prince of Darkness
## 4384 Kiss of the Dragon
## 4385 Annette
## 4386 Son of God
## 4387 Fast & Furious 6
## 4388 Project X
## 4389 Angel of Evil
## 4390 Antwone Fisher
## 4391 Moonwalker
## 4392 Bravetown
## 4393 Jersey Boys
## 4394 Dredd
## 4395 Secretary
## 4396 LEGO Star Wars Terrifying Tales
## 4397 The Aeronauts
## 4398 Hidalgo
## 4399 Smile
## 4400 Tangled: Before Ever After
## 4401 Winter's Bone
## 4402 The Night Comes for Us
## 4403 Everest
## 4404 The Call
## 4405 A Gang Story
## 4406 Shadows and Fog
## 4407 The Merchant of Venice
## 4408 11:14
## 4409 Vanilla Sky
## 4410 Breaking Surface
## 4411 Return
## 4412 Rango
## 4413 Adam
## 4414 The Ipcress File
## 4415 The Great Muppet Caper
## 4416 French Connection II
## 4417 Hibernatus
## 4418 Leopardi
## 4419 Miss Peregrine's Home for Peculiar Children
## 4420 Flight
## 4421 Mannequin
## 4422 The Wedding Date
## 4423 Super Crazy
## 4424 Smallfoot
## 4425 Pooh's Heffalump Movie
## 4426 The Edge
## 4427 American Honey
## 4428 Cinderella
## 4429 Scrooged
## 4430 A Scanner Darkly
## 4431 The Power of the Dog
## 4432 Shadow
## 4433 The Quake
## 4434 We're the Millers
## 4435 World War Z
## 4436 Bad Moon
## 4437 Three… Extremes
## 4438 Taps
## 4439 Tears of the Sun
## 4440 Napoleon Dynamite
## 4441 Enchanted
## 4442 Cube
## 4443 Against the Ice
## 4444 Ticket to Paradise
## 4445 Official Competition
## 4446 Look Who's Back
## 4447 Safety Not Guaranteed
## 4448 The Women on the 6th Floor
## 4449 Everybody's Fine
## 4450 The Return of the Pink Panther
## 4451 They Called Him Bulldozer
## 4452 The Curse of Frankenstein
## 4453 Lady Chatterley's Lover
## 4454 Peninsula
## 4455 Bad Sister
## 4456 Seven Psychopaths
## 4457 Tinker Bell and the Lost Treasure
## 4458 Miss Pettigrew Lives for a Day
## 4459 Chitty Chitty Bang Bang
## 4460 Breakdown
## 4461 Romeo + Juliet
## 4462 Dragon Ball Z: Resurrection 'F'
## 4463 The DUFF
## 4464 The Hunger Games: Mockingjay - Part 1
## 4465 The Little Vampire
## 4466 Fast Times at Ridgemont High
## 4467 Vicky Cristina Barcelona
## 4468 Dreamgirls
## 4469 Klute
## 4470 Bleed for This
## 4471 Battlestar Galactica: The Plan
## 4472 People Like Us
## 4473 Harry Brown
## 4474 The Black Cat
## 4475 Stick It
## 4476 Underworld
## 4477 Nati stanchi
## 4478 Primer
## 4479 Red Notice
## 4480 The Sense of Wonder
## 4481 Dragon Ball Z: Battle of Gods
## 4482 Stage Fright
## 4483 Animal Kingdom
## 4484 The Legend Is Born: Ip Man
## 4485 Orphan: First Kill
## 4486 A Private War
## 4487 Mazinger Z: Infinity
## 4488 History of the World: Part I
## 4489 The Mortuary Collection
## 4490 Blue Ruin
## 4491 Hotel Transylvania 2
## 4492 Dragon Ball: Mystical Adventure
## 4493 Eden Lake
## 4494 Going Places
## 4495 The Dry
## 4496 Loro 1
## 4497 The World's End
## 4498 Initial D
## 4499 Battle of Britain
## 4500 Heaven's Gate
## 4501 Bad Tales
## 4502 Bad Education
## 4503 Sixteen Candles
## 4504 Sid and Nancy
## 4505 I Am Jonas
## 4506 The Water Diviner
## 4507 Rumble in the Bronx
## 4508 Tenebre
## 4509 Cruel Intentions
## 4510 Win Win
## 4511 The Last Seduction
## 4512 The Longest Yard
## 4513 Hillbilly Elegy
## 4514 200 Pounds Beauty
## 4515 State of Play
## 4516 The Enforcer
## 4517 Acrimony
## 4518 Lords of Chaos
## 4519 Rabbits
## 4520 Kickboxer
## 4521 Ravenous
## 4522 Leave No Trace
## 4523 Tully
## 4524 One Man and his Cow
## 4525 Party Central
## 4526 Scrooge: A Christmas Carol
## 4527 Speak No Evil
## 4528 Bloodshot
## 4529 Boychoir
## 4530 Bring It On: Fight to the Finish
## 4531 The Man Who Killed Don Quixote
## 4532 The Gilded Cage
## 4533 The Restaurant
## 4534 Secret Society of Second Born Royals
## 4535 Black Mirror: Bandersnatch
## 4536 Battle of the Sexes
## 4537 Home
## 4538 Oedipus Rex
## 4539 The Beautician and the Beast
## 4540 Serial Mom
## 4541 Pretty in Pink
## 4542 Human Traffic
## 4543 The Majestic
## 4544 The Wedding Singer
## 4545 Uncle Buck
## 4546 Cop Land
## 4547 Witch Hunt
## 4548 Freaks
## 4549 Get on Up
## 4550 Coma
## 4551 Fellini Satyricon
## 4552 Bad Boys
## 4553 Conan the Barbarian
## 4554 Alaska
## 4555 The House at the End of Time
## 4556 Brain Damage
## 4557 Black Beauty
## 4558 Police Story 3: Super Cop
## 4559 Yes Day
## 4560 Chappie
## 4561 Metro
## 4562 Legend of the Guardians: The Owls of Ga'Hoole
## 4563 My Dog Skip
## 4564 Home Team
## 4565 Ambulance
## 4566 Christine
## 4567 Star Trek Beyond
## 4568 Two Sons of Francisco
## 4569 The Messenger
## 4570 The Madagascar Penguins in a Christmas Caper
## 4571 Till Death
## 4572 Black and Blue
## 4573 Allied
## 4574 The Book of Eli
## 4575 Ali
## 4576 The Unbearable Weight of Massive Talent
## 4577 The Big Kahuna
## 4578 Chasing Amy
## 4579 Playing with Fire
## 4580 Carbone
## 4581 Family Guy Presents: It's a Trap!
## 4582 Danny Collins
## 4583 '71
## 4584 Bodyguards and Assassins
## 4585 Resident Evil: Degeneration
## 4586 Croupier
## 4587 She's the Man
## 4588 Marilyn's Eyes
## 4589 Beats
## 4590 The Clan
## 4591 The Young and Prodigious T.S. Spivet
## 4592 Pokémon: Giratina and the Sky Warrior
## 4593 The Naked Gun 2½: The Smell of Fear
## 4594 Niagara
## 4595 Capricorn One
## 4596 The Last Boy Scout
## 4597 X
## 4598 The Parallax View
## 4599 Wyatt Earp
## 4600 The Thing from Another World
## 4601 The Good Son
## 4602 Kodachrome
## 4603 The Smurfs: A Christmas Carol
## 4604 Hearts in Atlantis
## 4605 The Bone Collector
## 4606 A Lot Like Love
## 4607 Romeo & Juliet
## 4608 Waitress
## 4609 An Unfinished Life
## 4610 Level 16
## 4611 Wendell & Wild
## 4612 The World Is Yours
## 4613 The Square
## 4614 Ultimate Avengers: The Movie
## 4615 Get Rich or Die Tryin'
## 4616 Lock Up
## 4617 The 100 Year-Old Man Who Climbed Out the Window and Disappeared
## 4618 Phenomena
## 4619 All the Way Boys
## 4620 Fantastic Beasts: The Secrets of Dumbledore
## 4621 9th Company
## 4622 Thor
## 4623 Paris Je T'aime
## 4624 The Girl in the Fog
## 4625 The Club of the Misunderstood
## 4626 Nymphomaniac: Vol. II
## 4627 Let Me In
## 4628 My Beautiful Laundrette
## 4629 A Love Song for Bobby Long
## 4630 Worth
## 4631 Ashfall
## 4632 Mektoub, My Love: Canto Uno
## 4633 Arthur Christmas
## 4634 Monster's Ball
## 4635 Mank
## 4636 The Odyssey
## 4637 The Drop
## 4638 A Serious Man
## 4639 21 Bridges
## 4640 Retribution
## 4641 Opera
## 4642 Mallrats
## 4643 The Panic in Needle Park
## 4644 The Devil's Rejects
## 4645 Curse of the Golden Flower
## 4646 Four Weddings and a Funeral
## 4647 Red Rocket
## 4648 Bad Samaritan
## 4649 Steve Jobs
## 4650 Million Dollar Arm
## 4651 Il ragazzo di campagna
## 4652 Hannibal
## 4653 The Spy Who Loved Me
## 4654 Pokémon the Movie: Hoopa and the Clash of Ages
## 4655 Mighty Aphrodite
## 4656 Death Becomes Her
## 4657 Family Plot
## 4658 Fantomas Unleashed
## 4659 City of Angels
## 4660 Little Italy
## 4661 Den of Thieves
## 4662 Appleseed
## 4663 He Got Game
## 4664 Love Story
## 4665 In the Valley of Elah
## 4666 99 Homes
## 4667 Fasten Your Seatbelts
## 4668 The Rescuers
## 4669 High Tension
## 4670 The Family Man
## 4671 Michael Clayton
## 4672 Transformers
## 4673 Invisible Sister
## 4674 Young Sherlock Holmes
## 4675 Fantomas vs. Scotland Yard
## 4676 Demolition
## 4677 The Ghost and the Darkness
## 4678 Satan's Slaves
## 4679 Chained
## 4680 7 and 8
## 4681 The Rookie
## 4682 The Little Rascals
## 4683 Catch-22
## 4684 The Divine Fury
## 4685 A Prayer Before Dawn
## 4686 Super 8
## 4687 Bridget Jones's Diary
## 4688 Deadwood: The Movie
## 4689 Sun in Buckets
## 4690 UHF
## 4691 The Italian Job
## 4692 Anna and the King
## 4693 The Sadness
## 4694 Judy
## 4695 Last Flag Flying
## 4696 Camp X-Ray
## 4697 We Bought a Zoo
## 4698 Simon Birch
## 4699 Hellboy II: The Golden Army
## 4700 My Brother Is an Only Child
## 4701 Romancing the Stone
## 4702 Never Back Down
## 4703 Uncle Drew
## 4704 Teen Beach 2
## 4705 Dark Water
## 4706 District B13
## 4707 King Kong vs. Godzilla
## 4708 Tallulah
## 4709 In the Heart of the Sea
## 4710 The Whistleblower
## 4711 Slacker
## 4712 DuckTales: The Movie - Treasure of the Lost Lamp
## 4713 Fallen
## 4714 Blade
## 4715 Mickey and the Beanstalk
## 4716 The Big Red One
## 4717 The Tiger and the Snow
## 4718 Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 4719 Whip It
## 4720 I'm for the Hippopotamus
## 4721 How the Grinch Stole Christmas
## 4722 Westworld
## 4723 The Trip
## 4724 Dragon Ball GT: A Hero's Legacy
## 4725 Panic Room
## 4726 More the Merrier
## 4727 Dog Days
## 4728 In Her Name
## 4729 Graduation
## 4730 Kill the Irishman
## 4731 Cat's Eye
## 4732 Oliver Twist
## 4733 Twitches Too
## 4734 Charlotte's Web
## 4735 Hush
## 4736 The 'Burbs
## 4737 Henry: Portrait of a Serial Killer
## 4738 What We Did on Our Holiday
## 4739 The Good Dinosaur
## 4740 The Little Bather
## 4741 Acqua e sapone
## 4742 Paulie
## 4743 The Craft
## 4744 The Little Devil
## 4745 Rob Roy
## 4746 The First Wives Club
## 4747 Fantastic Voyage
## 4748 The Curse of Bridge Hollow
## 4749 Coven
## 4750 Those Who Wish Me Dead
## 4751 The Highwaymen
## 4752 Twitches
## 4753 Wild Child
## 4754 Body Double
## 4755 Four Brothers
## 4756 Chicken Run
## 4757 Mermaids
## 4758 Fear Street: 1994
## 4759 Appleseed Alpha
## 4760 Hector and the Search for Happiness
## 4761 Anna Karenina
## 4762 Valmont
## 4763 Bottle Rocket
## 4764 Broadcast News
## 4765 Emma
## 4766 Blue My Mind
## 4767 The Climb
## 4768 A Royal Christmas
## 4769 Night of the Creeps
## 4770 The Monster Squad
## 4771 Son of Rambow
## 4772 How to Lose a Guy in 10 Days
## 4773 Thunderbolt and Lightfoot
## 4774 Penelope
## 4775 Burn Out
## 4776 The Boxer
## 4777 Superman II
## 4778 The Firm
## 4779 All Dogs Go to Heaven
## 4780 Scanners
## 4781 Troll
## 4782 Long Shot
## 4783 The Legend of Hell House
## 4784 See No Evil, Hear No Evil
## 4785 Reminiscence
## 4786 The Ash Lad: In the Hall of the Mountain King
## 4787 Real Genius
## 4788 Barbie: Dolphin Magic
## 4789 Tu la conosci Claudia?
## 4790 The Year of Living Dangerously
## 4791 Legally Blonde
## 4792 Guava Island
## 4793 Patrick
## 4794 Don't Worry, He Won't Get Far on Foot
## 4795 Pawn Sacrifice
## 4796 Machine Gun Preacher
## 4797 Barbie Mariposa
## 4798 The World According to Garp
## 4799 River of No Return
## 4800 Hitman's Wife's Bodyguard
## 4801 The Autopsy of Jane Doe
## 4802 Exam
## 4803 Boiler Room
## 4804 Far and Away
## 4805 No Man of God
## 4806 Multiverse
## 4807 Mr. Peabody & Sherman
## 4808 Barbie: A Fairy Secret
## 4809 Sabrina the Teenage Witch
## 4810 Phoenix
## 4811 Inside
## 4812 Fletch
## 4813 The 10 Year Plan
## 4814 Batman: Mystery of the Batwoman
## 4815 The Warlords
## 4816 The Little Mermaid: Ariel's Beginning
## 4817 Local Hero
## 4818 The Tree of Life
## 4819 The Royal Treatment
## 4820 Logan Lucky
## 4821 Maze Runner: The Scorch Trials
## 4822 Unthinkable
## 4823 Ice Age: Dawn of the Dinosaurs
## 4824 An American Tail
## 4825 Marvin's Room
## 4826 Kung Fu Panda: Secrets of the Furious Five
## 4827 Stealing Beauty
## 4828 Mongol: The Rise of Genghis Khan
## 4829 I Am All Girls
## 4830 Free State of Jones
## 4831 Escape Plan
## 4832 Dog Soldiers
## 4833 Altered States
## 4834 Parenthood
## 4835 Sweet Girl
## 4836 The Banana Splits Movie
## 4837 Dragon Ball Z: Super Android 13!
## 4838 The Freshmen
## 4839 The Adjustment Bureau
## 4840 The Boys from Brazil
## 4841 Saturday Night Fever
## 4842 The Life Ahead
## 4843 Before We Go
## 4844 Get Low
## 4845 The Brood
## 4846 Kinky Boots
## 4847 Superman: Doomsday
## 4848 Asterix in Britain
## 4849 One Kiss
## 4850 Fugitives
## 4851 13 Going on 30
## 4852 El Mariachi
## 4853 The Da Vinci Code
## 4854 Goodbye Berlin
## 4855 The Little Death
## 4856 Death Sentence
## 4857 The Girl Next Door
## 4858 Practical Magic
## 4859 The Unholy
## 4860 First Love
## 4861 Fractured
## 4862 A United Kingdom
## 4863 Rio
## 4864 Elizabeth: The Golden Age
## 4865 Motherless Brooklyn
## 4866 Peter Rabbit
## 4867 Hot Summer Nights
## 4868 Return to Oz
## 4869 Mansfield Park
## 4870 Confessions of a Dangerous Mind
## 4871 Con Air
## 4872 The Thomas Crown Affair
## 4873 Haunt
## 4874 Yesterday
## 4875 What If
## 4876 Welcome to the South
## 4877 Piglet's Big Movie
## 4878 Katyn
## 4879 Rock Star
## 4880 Narc
## 4881 Miracle on 34th Street
## 4882 Sleepless in Seattle
## 4883 Stillwater
## 4884 The Good Liar
## 4885 Trolls Holiday
## 4886 Riki-Oh: The Story of Ricky
## 4887 Oliver & Company
## 4888 Bumblebee
## 4889 All Eyez on Me
## 4890 X+Y
## 4891 Sisters
## 4892 The Soloist
## 4893 Ultimate Avengers 2: Rise of the Panther
## 4894 Up in Smoke
## 4895 Ocean's Thirteen
## 4896 Special Forces
## 4897 Three Fugitives
## 4898 Sabotage
## 4899 The Bounty
## 4900 Tenacious D in The Pick of Destiny
## 4901 Don Juan DeMarco
## 4902 Scream
## 4903 Peppermint
## 4904 Murder on the Orient Express
## 4905 Heaven & Earth
## 4906 The Polar Express
## 4907 Benedetta
## 4908 Fifty Shades Freed
## 4909 We Are Your Friends
## 4910 Moebius
## 4911 Enough Said
## 4912 Quick Change
## 4913 Lord of the Flies
## 4914 Anchorman: The Legend of Ron Burgundy
## 4915 Mission: Impossible III
## 4916 Sex Appeal
## 4917 Little White Lies 2
## 4918 Draft Day
## 4919 A Late Quartet
## 4920 Troll Hunter
## 4921 Ruby & Quentin
## 4922 The Day After
## 4923 Life Is a Long Quiet River
## 4924 The Harder They Fall
## 4925 Cado dalle nubi
## 4926 The Cooler
## 4927 The Blob
## 4928 Dora and the Lost City of Gold
## 4929 Atlantics
## 4930 Alone in Berlin
## 4931 Barbie: A Perfect Christmas
## 4932 Tucker: The Man and His Dream
## 4933 Rabbit Hole
## 4934 Bananas
## 4935 Brotherhood of the Wolf
## 4936 Frankie and Johnny
## 4937 Operation Finale
## 4938 The Vanishing of Sidney Hall
## 4939 Germinal
## 4940 Chopper
## 4941 Days of Glory
## 4942 Border
## 4943 La matassa
## 4944 Dikkenek
## 4945 The Matrix Revolutions
## 4946 The Ice Age Adventures of Buck Wild
## 4947 Mosul
## 4948 Purl
## 4949 Mr. Morgan's Last Love
## 4950 RED
## 4951 Paul
## 4952 Joseph: King of Dreams
## 4953 Purple Rain
## 4954 Better Off Dead...
## 4955 Rising High
## 4956 Puncture
## 4957 Ju-on: The Grudge
## 4958 The Immortal
## 4959 Overlord
## 4960 The Wave
## 4961 The Client
## 4962 King of New York
## 4963 Batman: Gotham by Gaslight
## 4964 Tag
## 4965 The Devil's Double
## 4966 Goal!
## 4967 Home Alone 2: Lost in New York
## 4968 Bruce Almighty
## 4969 Kate
## 4970 Mr. Jones
## 4971 Loving
## 4972 Zulu
## 4973 Angels & Demons
## 4974 Rush Hour 2
## 4975 Their Finest
## 4976 Made in Dagenham
## 4977 Memphis Belle
## 4978 Wayne's World
## 4979 Team America: World Police
## 4980 The Lion Guard: Return of the Roar
## 4981 Mad Max
## 4982 Chances Are
## 4983 The Trip
## 4984 Major Grom: Plague Doctor
## 4985 Monster Hunter
## 4986 Perfect Strangers
## 4987 Viceroy's House
## 4988 Tinker Bell and the Great Fairy Rescue
## 4989 White Fang
## 4990 Young Guns
## 4991 Tristan & Isolde
## 4992 The Gift
## 4993 Red Riding: The Year of Our Lord 1974
## 4994 Silver Streak
## 4995 Step Up 2: The Streets
## 4996 21
## 4997 Ma Rainey's Black Bottom
## 4998 Another Earth
## 4999 From Hell
## 5000 Pokemon the Movie: Mewtwo Strikes Back - Evolution
## 5001 Tag
## 5002 Goodnight Mommy
## 5003 The Cat o' Nine Tails
## 5004 We Own the Night
## 5005 Lethal Weapon 3
## 5006 Tron
## 5007 UglyDolls
## 5008 She's Gotta Have It
## 5009 Frantic
## 5010 Causeway
## 5011 Kaamelott: The First Chapter
## 5012 Repo Man
## 5013 Your Friend the Rat
## 5014 Che: Part Two
## 5015 One Chance
## 5016 Dragon Ball Z: Broly – Second Coming
## 5017 Blast from the Past
## 5018 The Score
## 5019 Green Room
## 5020 Serial (Bad) Weddings
## 5021 Me, Myself and Mum
## 5022 Shadow of the Vampire
## 5023 The Transporter
## 5024 Sex and Lucía
## 5025 Jolt
## 5026 Alan Partridge: Alpha Papa
## 5027 Balto III: Wings of Change
## 5028 Julie & Julia
## 5029 Pollock
## 5030 Veronica Guerin
## 5031 Detroit Rock City
## 5032 A Good Year
## 5033 A Bay of Blood
## 5034 Stuber
## 5035 The Resistance Banker
## 5036 Red Joan
## 5037 Return to Halloweentown
## 5038 Frozen River
## 5039 Around the World in Eighty Days
## 5040 The Amazing Spider-Man
## 5041 Glass
## 5042 Rebel in the Rye
## 5043 Summertime
## 5044 Trolls
## 5045 The Sheltering Sky
## 5046 Batman: Gotham Knight
## 5047 Narco Sub
## 5048 Kursk
## 5049 Kung Fu Jungle
## 5050 The Skeleton Twins
## 5051 Hysteria
## 5052 The Stepford Wives
## 5053 Ice Age: The Meltdown
## 5054 Basquiat
## 5055 Anna
## 5056 Woody Woodpecker
## 5057 Corrina, Corrina
## 5058 Project Almanac
## 5059 Jurassic World
## 5060 The Fog
## 5061 Eye for an Eye
## 5062 My Week with Marilyn
## 5063 Legend of the Fist: The Return of Chen Zhen
## 5064 Inferno
## 5065 Going in Style
## 5066 My Sassy Girl
## 5067 Naked Weapon
## 5068 Disturbia
## 5069 Monos
## 5070 May God Save Us
## 5071 A Family Man
## 5072 Florence Foster Jenkins
## 5073 The Loved Ones
## 5074 God Forgives... I Don't!
## 5075 Sergio
## 5076 Escape Room: Tournament of Champions
## 5077 Dolittle
## 5078 Chaos Walking
## 5079 Tutta colpa di Freud
## 5080 Populaire
## 5081 I Am Mother
## 5082 Green Lantern: Emerald Knights
## 5083 Antichrist
## 5084 48 Hrs.
## 5085 Better Watch Out
## 5086 Close Range
## 5087 Heaven Is for Real
## 5088 Hamlet
## 5089 Welcome to the Sticks
## 5090 Mr. & Mrs. Smith
## 5091 The Cellar
## 5092 The Voyeurs
## 5093 The Lego Movie 2: The Second Part
## 5094 The Thieves
## 5095 White Dog
## 5096 Public Enemies
## 5097 The Princess Diaries 2: Royal Engagement
## 5098 Patriot Games
## 5099 The Angel
## 5100 Ti ricordi di me?
## 5101 Just Go with It
## 5102 The Girl Next Door
## 5103 Husband & Wife
## 5104 Insidious: Chapter 2
## 5105 Banana Joe
## 5106 Charlie Bartlett
## 5107 Meet the Parents
## 5108 Godzilla: King of the Monsters
## 5109 *batteries not included
## 5110 A Nightmare on Elm Street 3: Dream Warriors
## 5111 The Kingdom
## 5112 Marie Antoinette
## 5113 Slow West
## 5114 Behind the Candelabra
## 5115 Fast & Furious
## 5116 Cypher
## 5117 Brother Bear 2
## 5118 Good Luck Charlie, It's Christmas!
## 5119 Newsies
## 5120 Help! I'm a Fish
## 5121 Child's Play
## 5122 Demolition Man
## 5123 1408
## 5124 Signs
## 5125 Footloose
## 5126 Out of Sight
## 5127 The Bodyguard
## 5128 Go!
## 5129 Ben Is Back
## 5130 Dalida
## 5131 Miss Stevens
## 5132 Comet
## 5133 Spanish Affair
## 5134 Deseo
## 5135 Megamind: The Button of Doom
## 5136 The First Great Train Robbery
## 5137 The Red Baron
## 5138 Jingle Jangle: A Christmas Journey
## 5139 Overboard
## 5140 Dead Presidents
## 5141 The Ides of March
## 5142 Dying Young
## 5143 Bull Durham
## 5144 Keep an Eye Out
## 5145 Where'd You Go, Bernadette
## 5146 Spring
## 5147 Fracchia The Human Beast
## 5148 Reversal of Fortune
## 5149 Cracks
## 5150 The Mirror Has Two Faces
## 5151 Hairspray
## 5152 Elle
## 5153 Dumbo
## 5154 Gimme Shelter
## 5155 Fantozzi Against the Wind
## 5156 Dave
## 5157 Kinsey
## 5158 The Hitchhiker's Guide to the Galaxy
## 5159 Cloverfield
## 5160 The Hunt
## 5161 Godard Mon Amour
## 5162 The Purge: Anarchy
## 5163 Julia's Eyes
## 5164 Beaches
## 5165 Saint Maud
## 5166 Wuthering Heights
## 5167 The Holiday Calendar
## 5168 The Current War
## 5169 Unknown
## 5170 The Night House
## 5171 Stir of Echoes
## 5172 You've Got Mail
## 5173 Monster House
## 5174 Hellboy
## 5175 Pig
## 5176 The Last Circus
## 5177 Falling in Love
## 5178 Friends with Benefits
## 5179 Dragon Ball Z: Dead Zone
## 5180 The Wonder
## 5181 Loro
## 5182 Black '47
## 5183 The Equalizer 2
## 5184 A Perfect Day
## 5185 Damage
## 5186 The Island
## 5187 The Champion
## 5188 The Boxtrolls
## 5189 Iron Will
## 5190 Bully
## 5191 Life
## 5192 The 13th Warrior
## 5193 Infinite
## 5194 The Wizard of Lies
## 5195 The Grand Seduction
## 5196 Foxcatcher
## 5197 The Muppets
## 5198 About a Boy
## 5199 Big Miracle
## 5200 Ransom
## 5201 Athena
## 5202 Clouds of Sils Maria
## 5203 Superman: Unbound
## 5204 Stoker
## 5205 Pokémon: The Movie 2000
## 5206 The Last Supper
## 5207 Elf
## 5208 Quigley Down Under
## 5209 The Lost City
## 5210 Infinitely Polar Bear
## 5211 The Poughkeepsie Tapes
## 5212 Yes Man
## 5213 Martian Child
## 5214 Backdraft
## 5215 Piggy
## 5216 Our Souls at Night
## 5217 Wildlife
## 5218 The Last Will Be the Last
## 5219 He's All That
## 5220 Flowers in the Attic
## 5221 Princess Protection Program
## 5222 Great Expectations
## 5223 Half Nelson
## 5224 Before Night Falls
## 5225 Enough
## 5226 Noelle
## 5227 The Last Days of American Crime
## 5228 Big Bad Wolves
## 5229 Geek Charming
## 5230 One Hour Photo
## 5231 The Student and Mister Henri
## 5232 Kill the Messenger
## 5233 Underdogs
## 5234 Blackthorn
## 5235 Heartbreaker
## 5236 Beautiful Girls
## 5237 Mermaid Down
## 5238 Pirates of the Caribbean: Dead Men Tell No Tales
## 5239 Martha Marcy May Marlene
## 5240 99 francs
## 5241 The Lookout
## 5242 2010
## 5243 The Ring
## 5244 Bad Hair Day
## 5245 As Above, So Below
## 5246 The Wild One
## 5247 Honey 3: Dare to Dance
## 5248 The Seventh Company Outdoors
## 5249 Police Academy
## 5250 Liar Liar
## 5251 Attraction
## 5252 How I Live Now
## 5253 The Words
## 5254 A Cat in Paris
## 5255 22 Bullets
## 5256 Igby Goes Down
## 5257 Swallow
## 5258 Always Be My Maybe
## 5259 I Still See You
## 5260 When the Game Stands Tall
## 5261 The Spectacular Now
## 5262 Mickey, Donald, Goofy: The Three Musketeers
## 5263 Bring It On: All or Nothing
## 5264 Lou
## 5265 Hours
## 5266 Maledetto il giorno che t'ho incontrato
## 5267 Empire Records
## 5268 Happy Death Day
## 5269 Bleach
## 5270 Of Gods and Men
## 5271 Exotica
## 5272 The Other Boleyn Girl
## 5273 Crimson Peak
## 5274 Dragon Ball Z: The Return of Cooler
## 5275 Three Kings
## 5276 The Boss of It All
## 5277 The Rescuers Down Under
## 5278 Commando
## 5279 One Eight Seven
## 5280 Planet Terror
## 5281 A Simple Favor
## 5282 Storks
## 5283 Nanny McPhee
## 5284 The Quiet Earth
## 5285 Zombie Flesh Eaters
## 5286 Thunderball
## 5287 The Infiltrator
## 5288 Mr. Mom
## 5289 Cronos
## 5290 Taxi
## 5291 The Tender Bar
## 5292 Matinee
## 5293 Society
## 5294 JCVD
## 5295 The Limey
## 5296 Alpha Dog
## 5297 LEGO Star Wars Holiday Special
## 5298 100 Things
## 5299 The Addams Family
## 5300 Hardcore
## 5301 The Hunger
## 5302 Rambo
## 5303 The Third Murder
## 5304 The Brand New Testament
## 5305 The Mountain Between Us
## 5306 Contagion
## 5307 A Christmas Prince
## 5308 Uncle Boonmee Who Can Recall His Past Lives
## 5309 Caddyshack
## 5310 House of Gucci
## 5311 The Powerpuff Girls Movie
## 5312 Midway
## 5313 The Replacements
## 5314 Valerian and the City of a Thousand Planets
## 5315 Revenge of the Bridesmaids
## 5316 Taxidermia
## 5317 White Men Can't Jump
## 5318 NiNoKuni
## 5319 Only the Animals
## 5320 Veronica Mars
## 5321 My First Time
## 5322 The Hunter
## 5323 The Crucible
## 5324 Street Kings
## 5325 Absolute Power
## 5326 Thor: Love and Thunder
## 5327 Time Bandits
## 5328 House of Usher
## 5329 Unfaithful
## 5330 Space Pirate Captain Harlock
## 5331 Gummo
## 5332 Rugrats in Paris: The Movie
## 5333 Burn After Reading
## 5334 Time Freak
## 5335 Crank
## 5336 Swimming with Sharks
## 5337 Dead Men Don't Wear Plaid
## 5338 Calendar Girls
## 5339 Torn Curtain
## 5340 Russian Dolls
## 5341 The Protégé
## 5342 The Shiny Shrimps
## 5343 The Guest
## 5344 The Brothers Bloom
## 5345 The Eagle Has Landed
## 5346 Sea of Love
## 5347 Brittany Runs a Marathon
## 5348 Pineapple Express
## 5349 Not Without My Daughter
## 5350 I Care a Lot
## 5351 Tad the Lost Explorer and the Secret of King Midas
## 5352 Trance
## 5353 Pokémon: Mewtwo Returns
## 5354 Ms .45
## 5355 Twin Dragons
## 5356 Lost Bullet
## 5357 Something's Gotta Give
## 5358 Yves Saint Laurent
## 5359 All Is Lost
## 5360 Buried
## 5361 Bringing Out the Dead
## 5362 Dilwale
## 5363 Popstar: Never Stop Never Stopping
## 5364 Wizards of Waverly Place: The Movie
## 5365 Shinjuku Incident
## 5366 Tropic Thunder
## 5367 The Grandmaster
## 5368 Tigerland
## 5369 Cocoon
## 5370 Star Trek III: The Search for Spock
## 5371 White God
## 5372 Lilo & Stitch 2: Stitch Has a Glitch
## 5373 Alice in Wonderland
## 5374 Body of Lies
## 5375 The Man in the Iron Mask
## 5376 The Chronicles of Narnia: Prince Caspian
## 5377 Wasabi
## 5378 Inside Man: Most Wanted
## 5379 The Warriors Gate
## 5380 The Salton Sea
## 5381 The Perfect Secret
## 5382 Tinker Tailor Soldier Spy
## 5383 Postcards from the Edge
## 5384 Ruthless People
## 5385 Happy Gilmore
## 5386 Clear and Present Danger
## 5387 Girl with a Pearl Earring
## 5388 Fire and Ice
## 5389 Traitor
## 5390 Phantasm
## 5391 Bright Star
## 5392 Away We Go
## 5393 French Fried Vacation
## 5394 Keeping Mum
## 5395 Fermat's Room
## 5396 Beavis and Butt-Head Do America
## 5397 Teenage Mutant Ninja Turtles
## 5398 Rambo: First Blood Part II
## 5399 Oxygen
## 5400 All the Way
## 5401 The Right of Youth
## 5402 Barbie Presents: Thumbelina
## 5403 Play Misty for Me
## 5404 Demons
## 5405 Tuck Everlasting
## 5406 The Prince of Tides
## 5407 The Great Gilly Hopkins
## 5408 You're Next
## 5409 Batman: The Killing Joke
## 5410 Oblivion
## 5411 The Last Starfighter
## 5412 Suicide Kings
## 5413 Breach
## 5414 R.I.P.D. 2: Rise of the Damned
## 5415 The Kindergarten Teacher
## 5416 Detective Dee and the Mystery of the Phantom Flame
## 5417 Hannah Montana: The Movie
## 5418 The Diary of a Teenage Girl
## 5419 Welcome to the Rileys
## 5420 Grumpy Old Men
## 5421 Red Rock West
## 5422 Vampire Hunter D
## 5423 The Final Countdown
## 5424 Point Blank
## 5425 Goya's Ghosts
## 5426 The Fabulous Baker Boys
## 5427 The Spiderwick Chronicles
## 5428 Luckiest Girl Alive
## 5429 The Legacy of the Bones
## 5430 Freaky
## 5431 Night Moves
## 5432 The Gauntlet
## 5433 U Turn
## 5434 Kika
## 5435 Working Girl
## 5436 Jarhead
## 5437 A Most Violent Year
## 5438 Love in the Time of Cholera
## 5439 Terrified
## 5440 Pinocchio
## 5441 Mia madre
## 5442 Footloose
## 5443 The Last Man on Earth
## 5444 Titan A.E.
## 5445 The Wild Goose Lake
## 5446 The United States vs. Billie Holiday
## 5447 Radius
## 5448 Gold
## 5449 Cloudy with a Chance of Meatballs
## 5450 World's Greatest Dad
## 5451 Fire in the Sky
## 5452 Resident Evil
## 5453 Mine
## 5454 Kumiko, the Treasure Hunter
## 5455 Man of Steel
## 5456 Muppet Treasure Island
## 5457 Pet Sematary
## 5458 The Eyes of Tammy Faye
## 5459 Crazy/Beautiful
## 5460 Hunting and Gathering
## 5461 Return to Me
## 5462 The Forbidden Kingdom
## 5463 The Masque of the Red Death
## 5464 [REC]²
## 5465 Little Monsters
## 5466 Blade of the Immortal
## 5467 Mistress America
## 5468 The Heat
## 5469 Super Troopers
## 5470 Bad Guy
## 5471 The Cabin in the Woods
## 5472 The Long Kiss Goodnight
## 5473 Logan's Run
## 5474 Sliding Doors
## 5475 The Skeleton Key
## 5476 Female Agents
## 5477 Annabelle: Creation
## 5478 Turbo Kid
## 5479 Just Like Brothers
## 5480 The Pelican Brief
## 5481 In the Game
## 5482 The Son of Bigfoot
## 5483 Colombiana
## 5484 Return of the Living Dead III
## 5485 My Best Friend's Wedding
## 5486 Reality Bites
## 5487 Last Seen Alive
## 5488 Skyfire
## 5489 When We First Met
## 5490 Bubba Ho-tep
## 5491 The Longest Yard
## 5492 Dumb and Dumber
## 5493 National Treasure
## 5494 The Kid Detective
## 5495 I'm Thinking of Ending Things
## 5496 Beast
## 5497 Wolf Warrior 2
## 5498 Madagascar 3: Europe's Most Wanted
## 5499 The Sure Thing
## 5500 Conspiracy Theory
## 5501 The Party
## 5502 Radioactive
## 5503 Micmacs
## 5504 Boundin'
## 5505 Live Free or Die Hard
## 5506 The Crime of Padre Amaro
## 5507 The Way Back
## 5508 Greta
## 5509 Lady Macbeth
## 5510 Housebound
## 5511 Gantz
## 5512 Uptown Girls
## 5513 Happy-Go-Lucky
## 5514 Strictly Ballroom
## 5515 The American President
## 5516 Mary Queen of Scots
## 5517 Man Up
## 5518 Diary of a Wimpy Kid: Rodrick Rules
## 5519 The End of the Affair
## 5520 The People Under the Stairs
## 5521 New Jack City
## 5522 Waist Deep
## 5523 Bad Boys II
## 5524 Road House
## 5525 The Four Feathers
## 5526 Scoop
## 5527 Caught by a Wave
## 5528 Snake Eyes: G.I. Joe Origins
## 5529 The Lost Daughter
## 5530 Alex Strangelove
## 5531 To Die For
## 5532 Candyman
## 5533 Wilde
## 5534 Cocoon: The Return
## 5535 28 Weeks Later
## 5536 Some Like It Rare
## 5537 The White Crow
## 5538 Ender's Game
## 5539 Romper Stomper
## 5540 The Last Word
## 5541 Stay
## 5542 Me, Myself & Irene
## 5543 Terrifier
## 5544 Chennai Express
## 5545 Jack Reacher
## 5546 The Kids Are All Right
## 5547 The Swan Princess
## 5548 New York, New York
## 5549 Robin Hood: Men in Tights
## 5550 Cut Off
## 5551 Experimenter
## 5552 The Finest Hours
## 5553 Leroy & Stitch
## 5554 Everything You Always Wanted to Know About Sex *But Were Afraid to Ask
## 5555 I'm Not There
## 5556 The Homesman
## 5557 The Entity
## 5558 Naruto the Movie: Legend of the Stone of Gelel
## 5559 Sex and the City
## 5560 A Whole Life Ahead
## 5561 Pokémon Heroes
## 5562 Sunshine Cleaning
## 5563 Suicide Club
## 5564 Black Rain
## 5565 The Last Mercenary
## 5566 The Curse of the Jade Scorpion
## 5567 Watcher
## 5568 The Ferpect Crime
## 5569 The Jane Austen Book Club
## 5570 Lethal Weapon 4
## 5571 There's Something About Mary
## 5572 Side Effects
## 5573 The Art of Getting By
## 5574 The Conspirator
## 5575 Sex with Love
## 5576 Caterina in the Big City
## 5577 The Great Raid
## 5578 Madly in Love
## 5579 Spider
## 5580 Australia
## 5581 Truth
## 5582 Chinese Puzzle
## 5583 Risky Business
## 5584 Super
## 5585 Old School
## 5586 Welcome to Marwen
## 5587 Hanna
## 5588 Annapolis
## 5589 Appaloosa
## 5590 The Burning Plain
## 5591 The Howling
## 5592 Thirteen
## 5593 High School Musical
## 5594 The Lord of the Rings
## 5595 The Nile Hilton Incident
## 5596 Miss Potter
## 5597 Secret Window
## 5598 The Vast of Night
## 5599 Jungle
## 5600 Nell
## 5601 In Her Hands
## 5602 Out of the Furnace
## 5603 Bugsy Malone
## 5604 Volare
## 5605 Puss in Boots: The Three Diablos
## 5606 Blind Fury
## 5607 The Nutty Professor
## 5608 High School Musical 3: Senior Year
## 5609 Final Destination
## 5610 45 Years
## 5611 On Her Majesty's Secret Service
## 5612 Dragged Across Concrete
## 5613 Inherent Vice
## 5614 Bernie
## 5615 Grandma's Boy
## 5616 Cry-Baby
## 5617 In the Realm of the Senses
## 5618 A Good Doctor
## 5619 New Order
## 5620 The Green Knight
## 5621 The Mighty Ducks
## 5622 Night at the Museum
## 5623 Solo: A Star Wars Story
## 5624 Borgman
## 5625 Monte Carlo
## 5626 Flawless
## 5627 The Lion King 1½
## 5628 Halloween II
## 5629 The Cotton Club
## 5630 Judgment Night
## 5631 Avalon
## 5632 The Grey
## 5633 Silver Bullet
## 5634 Short Circuit
## 5635 Vesper
## 5636 Horrible Bosses
## 5637 Regarding Henry
## 5638 Sudden Impact
## 5639 Pitch Perfect 3
## 5640 A Royal Night Out
## 5641 Wish I Was Here
## 5642 The Collector
## 5643 Hollywood Ending
## 5644 The Sugarland Express
## 5645 Underworld: Evolution
## 5646 Halloween Kills
## 5647 This Is Where I Leave You
## 5648 Return to Nim's Island
## 5649 License to Drive
## 5650 Fever Pitch
## 5651 Mortal
## 5652 The Man with the Iron Heart
## 5653 It Follows
## 5654 Save the Last Dance
## 5655 The Translators
## 5656 The Children Act
## 5657 The Fury of a Patient Man
## 5658 Ideal Home
## 5659 Cold in July
## 5660 Tales from Earthsea
## 5661 The Place Promised in Our Early Days
## 5662 The Art of Self-Defense
## 5663 Dead Snow 2: Red vs. Dead
## 5664 Night Train to Lisbon
## 5665 Doodlebug
## 5666 Apt Pupil
## 5667 Funny Games
## 5668 Ocean's Twelve
## 5669 My Friend Dahmer
## 5670 Things to Come
## 5671 Ninja: Shadow of a Tear
## 5672 A Night at the Roxbury
## 5673 Da 5 Bloods
## 5674 You Were Never Really Here
## 5675 The Best Man Holiday
## 5676 The Grifters
## 5677 Step Brothers
## 5678 Walk Hard: The Dewey Cox Story
## 5679 Love and Bullets
## 5680 Tulip Fever
## 5681 Barefoot
## 5682 The Debt
## 5683 Drive Me Crazy
## 5684 Something Wild
## 5685 Brewster's Millions
## 5686 The Pledge
## 5687 Saw II
## 5688 Brexit: The Uncivil War
## 5689 Kajaki
## 5690 Thor: The Dark World
## 5691 Trust
## 5692 American Pie
## 5693 Megaboa
## 5694 Don't Listen
## 5695 From the Land of the Moon
## 5696 Weird Science
## 5697 Charlie Wilson's War
## 5698 The Next 365 Days
## 5699 Jurassic World: Fallen Kingdom
## 5700 Hippocrates
## 5701 Alice Through the Looking Glass
## 5702 Digimon: The Movie
## 5703 James and the Giant Peach
## 5704 Dead Calm
## 5705 Hitch
## 5706 Spree
## 5707 Page Eight
## 5708 Pokémon: Destiny Deoxys
## 5709 Undisputed
## 5710 From Beyond
## 5711 Nirvana
## 5712 Eagle vs Shark
## 5713 A Man in a Hurry
## 5714 Seeking a Friend for the End of the World
## 5715 Cemetery Junction
## 5716 Titus
## 5717 Mr. Harrigan's Phone
## 5718 Nothing to Hide
## 5719 Shaft
## 5720 No Reservations
## 5721 You Only Live Twice
## 5722 The Simpsons in Plusaversary
## 5723 The Matrix Resurrections
## 5724 Rolling to You
## 5725 The Giver
## 5726 Halloweentown High
## 5727 The Man Without a Face
## 5728 Renaissance
## 5729 Pulse
## 5730 Recess: School's Out
## 5731 The Two Missionaries
## 5732 City Hunter
## 5733 Hot Shots!
## 5734 The Wandering Earth
## 5735 Being the Ricardos
## 5736 It’s the Law
## 5737 Madly Madagascar
## 5738 Unstoppable
## 5739 True Crime
## 5740 Halloween
## 5741 Angel Has Fallen
## 5742 The Girl with All the Gifts
## 5743 The Postman Always Rings Twice
## 5744 The Mask of Zorro
## 5745 Dan in Real Life
## 5746 Star Wars: Episode II - Attack of the Clones
## 5747 Falling Inn Love
## 5748 The Warrior's Way
## 5749 Strange World
## 5750 Pandorum
## 5751 I Love You, Man
## 5752 Hot Shots! Part Deux
## 5753 Lost Bullet 2
## 5754 Jarhead: Law of Return
## 5755 The Measure of a Man
## 5756 The Company Men
## 5757 Dragon Ball: Sleeping Princess in Devil's Castle
## 5758 EuroTrip
## 5759 Escape Room
## 5760 Charming
## 5761 Heaven Can Wait
## 5762 Spun
## 5763 Kalifornia
## 5764 The Quiet American
## 5765 Things We Lost in the Fire
## 5766 Ace Ventura: Pet Detective
## 5767 Jakob the Liar
## 5768 Silent Hill
## 5769 Whisper
## 5770 Dragon Hunters
## 5771 The Exorcism of Emily Rose
## 5772 Austin Powers: International Man of Mystery
## 5773 Irrational Man
## 5774 Slayers Return
## 5775 House of Pleasures
## 5776 Get the Gringo
## 5777 Ghost Town
## 5778 The ComDads
## 5779 Books of Blood
## 5780 Spenser Confidential
## 5781 Dismissed
## 5782 The Neon Demon
## 5783 Voices of a Distant Star
## 5784 DragonHeart
## 5785 Obsession
## 5786 Death to 2020
## 5787 The Postcard Killings
## 5788 El Niño
## 5789 River's Edge
## 5790 Fairy Tail: Dragon Cry
## 5791 Little Man Tate
## 5792 Into the Night
## 5793 Hell House LLC
## 5794 Kevin Hart: What Now?
## 5795 Revenge
## 5796 Lionheart
## 5797 Who You Think I Am
## 5798 Coming 2 America
## 5799 King Arthur: Legend of the Sword
## 5800 Outbreak
## 5801 Holiday in the Wild
## 5802 Bridesmaids
## 5803 The Stepfather
## 5804 Raise Your Voice
## 5805 The Hunting Party
## 5806 Ninja Assassin
## 5807 Cinderella III: A Twist in Time
## 5808 High School Musical 2
## 5809 The Christmas Chronicles: Part Two
## 5810 Fireworks
## 5811 Be Somebody
## 5812 Happythankyoumoreplease
## 5813 Ramona and Beezus
## 5814 The New World
## 5815 Nicky Larson and the Cupid's Perfume
## 5816 Sobibor
## 5817 Homeward Bound II: Lost in San Francisco
## 5818 The Prophecy
## 5819 Skins
## 5820 Everybody Knows
## 5821 The East
## 5822 Double Jeopardy
## 5823 Find Me Guilty
## 5824 Pirates of the Caribbean: On Stranger Tides
## 5825 Can You Keep a Secret?
## 5826 Pinocchio
## 5827 The Love Bug
## 5828 The Gendarme Gets Married
## 5829 I Don't Feel at Home in This World Anymore
## 5830 Best of the Best
## 5831 Frequencies
## 5832 Hitchcock
## 5833 Meek's Cutoff
## 5834 Ghostbusters II
## 5835 Flora & Ulysses
## 5836 Red Sparrow
## 5837 2 Guns
## 5838 The Eye
## 5839 Bad Santa
## 5840 Paranoid Park
## 5841 Flashdance
## 5842 Sniper: Ultimate Kill
## 5843 Mother's Day
## 5844 The Crush
## 5845 Dragonfly
## 5846 The Lost World: Jurassic Park
## 5847 Star Trek: Generations
## 5848 L'allenatore nel pallone
## 5849 Behind the Mask: The Rise of Leslie Vernon
## 5850 Stripes
## 5851 Subway
## 5852 Blindness
## 5853 Star Wars: Episode I - The Phantom Menace
## 5854 Batman: Return of the Caped Crusaders
## 5855 Mary Poppins Returns
## 5856 Spectre
## 5857 RED 2
## 5858 What a Beautiful Day
## 5859 Bride of Re-Animator
## 5860 Honest Thief
## 5861 Charlie's Angels
## 5862 Just Before I Go
## 5863 Obvious Child
## 5864 Mr. Turner
## 5865 Joe
## 5866 The Karate Kid
## 5867 A Cinderella Story
## 5868 Hamburger Hill
## 5869 You Can't Save Yourself Alone
## 5870 Middle Men
## 5871 Bring It On: In It to Win It
## 5872 Kingpin
## 5873 The Running Man
## 5874 Rambo: Last Blood
## 5875 Sanjay's Super Team
## 5876 The Birth of a Nation
## 5877 Time Lapse
## 5878 Annie
## 5879 For Love of the Game
## 5880 Stalingrad
## 5881 Flesh + Blood
## 5882 Flyboys
## 5883 The Legend of Bagger Vance
## 5884 Killer Joe
## 5885 Prometheus
## 5886 It's Complicated
## 5887 Silent Movie
## 5888 Basic
## 5889 Dinosaur
## 5890 Colors
## 5891 Over the Hedge
## 5892 The Fox and the Child
## 5893 X-Men: Apocalypse
## 5894 The Babadook
## 5895 The Rebound
## 5896 LOL (Laughing Out Loud)
## 5897 The Brave One
## 5898 Joy
## 5899 Penguins of Madagascar
## 5900 Scared Shrekless
## 5901 Hey Arnold! The Movie
## 5902 Arthur
## 5903 Big Stan
## 5904 Harold & Kumar Go to White Castle
## 5905 Event Horizon
## 5906 A Guide to Recognizing Your Saints
## 5907 The Informer
## 5908 The Personal History of David Copperfield
## 5909 Joe Kidd
## 5910 The Quick and the Dead
## 5911 Small Soldiers
## 5912 Miss Congeniality
## 5913 Host
## 5914 Wonder Woman 1984
## 5915 Black Gold
## 5916 Pokémon: Jirachi - Wish Maker
## 5917 Song of the South
## 5918 Offering to the Storm
## 5919 Kong: Skull Island
## 5920 Anna
## 5921 The Double
## 5922 X
## 5923 Blade II
## 5924 Shaft
## 5925 Let's Dance
## 5926 The Kill Team
## 5927 Puss in Boots
## 5928 I Spit on Your Grave
## 5929 Something New
## 5930 Osmosis Jones
## 5931 Project Power
## 5932 Wolf Totem
## 5933 Looking for Eric
## 5934 The Tigger Movie
## 5935 Lone Wolf McQuade
## 5936 Drop Dead Gorgeous
## 5937 Saving Grace
## 5938 Ant-Man and the Wasp: Quantumania
## 5939 After Yang
## 5940 The Ref
## 5941 MouseHunt
## 5942 Seoul Station
## 5943 Genius
## 5944 A Magnificent Haunting
## 5945 Everyone Says I Love You
## 5946 Private Parts
## 5947 The Witches of Eastwick
## 5948 Elvira, Mistress of the Dark
## 5949 Sydney White
## 5950 The Principal
## 5951 A Midsummer Night's Sex Comedy
## 5952 Operation Christmas Drop
## 5953 Operation Mincemeat
## 5954 Cinderela Pop
## 5955 The Perfection
## 5956 The Invisible Guardian
## 5957 Saint Seiya: Legend of Sanctuary
## 5958 Wanted
## 5959 Knock at the Cabin
## 5960 When Mom Is Away
## 5961 A Rainy Day in New York
## 5962 Mowgli: Legend of the Jungle
## 5963 Miles Ahead
## 5964 The Lego Ninjago Movie
## 5965 My Fake Fiance
## 5966 The Money Pit
## 5967 He's Just Not That Into You
## 5968 The Idiots
## 5969 Swimming Pool
## 5970 Look Away
## 5971 Xtreme
## 5972 Bad Moms
## 5973 The Wild Thornberrys Movie
## 5974 Mr. Nice Guy
## 5975 The Chronicles of Riddick
## 5976 Scary Stories to Tell in the Dark
## 5977 Fifty Shades Darker
## 5978 Bambi II
## 5979 Summer of Sam
## 5980 Thank You for Your Service
## 5981 What's Your Number?
## 5982 Bride & Prejudice
## 5983 The Muppets Take Manhattan
## 5984 Slither
## 5985 Sand Castle
## 5986 Afflicted
## 5987 Men in Black 3
## 5988 Night Teeth
## 5989 MirrorMask
## 5990 The Day After Tomorrow
## 5991 Oh Mercy
## 5992 Mayhem
## 5993 Dragon Ball Z: The Tree of Might
## 5994 The Faculty
## 5995 Young Guns II
## 5996 Reservation Road
## 5997 Things to Do in Denver When You're Dead
## 5998 Red Tails
## 5999 The Iceman
## 6000 The Assassination of Richard Nixon
## 6001 Black Box
## 6002 Them Who?
## 6003 For Your Eyes Only
## 6004 Sweetheart
## 6005 Alibi.com
## 6006 Magic in the Moonlight
## 6007 The Ugly Truth
## 6008 A Perfect Murder
## 6009 Monsters of Man
## 6010 Spell
## 6011 Before I Go to Sleep
## 6012 Your Sister's Sister
## 6013 Elysium
## 6014 Cruising
## 6015 Underworld: Rise of the Lycans
## 6016 Hustlers
## 6017 Burnt
## 6018 My Bloody Valentine
## 6019 Yao
## 6020 The Bookshop
## 6021 Lego Batman: The Movie - DC Super Heroes Unite
## 6022 Four Flies on Grey Velvet
## 6023 Return to Never Land
## 6024 The United States of Leland
## 6025 Joy Ride
## 6026 War of the Worlds
## 6027 The Amazing Spider-Man 2
## 6028 It's a Boy Girl Thing
## 6029 In & Out
## 6030 See How They Run
## 6031 All the Money in the World
## 6032 Epic
## 6033 Mulan II
## 6034 Copycat
## 6035 Widows
## 6036 The Under-Gifted
## 6037 Beyond Borders
## 6038 7 Days in Hell
## 6039 Return of the Tooth Fairy
## 6040 The Invitation
## 6041 The Disappearance of Alice Creed
## 6042 Like a Cat on a Highway
## 6043 Men, Women & Children
## 6044 Horton Hears a Who!
## 6045 Scouts Guide to the Zombie Apocalypse
## 6046 Loving Annabelle
## 6047 Stitch! The Movie
## 6048 Bolt
## 6049 Smokin' Aces
## 6050 Flatliners
## 6051 Bodies Bodies Bodies
## 6052 The Whole Truth
## 6053 Altered Carbon: Resleeved
## 6054 Night Hunter
## 6055 Rio 2
## 6056 Evil Dead
## 6057 Revenge of the Nerds
## 6058 Heavy Metal
## 6059 Dobermann
## 6060 The Many Saints of Newark
## 6061 Flower
## 6062 May
## 6063 Forgetting Sarah Marshall
## 6064 King of California
## 6065 Borat Subsequent Moviefilm
## 6066 My Donkey, My Lover & I
## 6067 His House
## 6068 God Willing
## 6069 These Final Hours
## 6070 Nothing to Lose
## 6071 Tideland
## 6072 Star Trek: The Motion Picture
## 6073 Lamb
## 6074 Death on the Nile
## 6075 W.E.
## 6076 Act of Valor
## 6077 Stir Crazy
## 6078 U.S. Marshals
## 6079 Kiss the Girls
## 6080 Asterix vs. Caesar
## 6081 My Big Fat Greek Wedding
## 6082 Sleeping with the Enemy
## 6083 A Most Wanted Man
## 6084 Romantics Anonymous
## 6085 The Boy Who Cried Werewolf
## 6086 Mad Money
## 6087 The Kid
## 6088 The Mystery of Henri Pick
## 6089 Quartet
## 6090 Last Knights
## 6091 Marvel One-Shot: Item 47
## 6092 Thumbelina
## 6093 Role Models
## 6094 The Living Daylights
## 6095 The Wedding Ringer
## 6096 Smashed
## 6097 Small Time Crooks
## 6098 The Perfect Date
## 6099 Alpha
## 6100 Under the Shadow
## 6101 Macbeth
## 6102 The Twilight Saga: Breaking Dawn - Part 2
## 6103 The Black Cauldron
## 6104 Madagascar: Escape 2 Africa
## 6105 Police Story 4: First Strike
## 6106 Class of 1984
## 6107 Just One of the Guys
## 6108 Where the Wild Things Are
## 6109 Fragile
## 6110 Salò, or the 120 Days of Sodom
## 6111 The Knight Before Christmas
## 6112 Calibre
## 6113 Mr. Holmes
## 6114 Pokémon 3: The Movie
## 6115 Return to Paradise
## 6116 Sweetheart
## 6117 Light of My Life
## 6118 Revenge of the Pink Panther
## 6119 Fame
## 6120 Ghost Stories
## 6121 Fair Game
## 6122 The Mechanic
## 6123 Mindhunters
## 6124 The Adventures of Ichabod and Mr. Toad
## 6125 THX 1138
## 6126 32 Malasana Street
## 6127 Love at First Fight
## 6128 Louder Than Bombs
## 6129 The Lorax
## 6130 The Secret of Moonacre
## 6131 A Midsummer Night's Dream
## 6132 Assassins
## 6133 Analyze This
## 6134 Wedding Crashers
## 6135 K-19: The Widowmaker
## 6136 Live and Let Die
## 6137 A Futile and Stupid Gesture
## 6138 Heaven
## 6139 Thunderbolt
## 6140 Paris
## 6141 Beverly Hills Cop II
## 6142 Single All the Way
## 6143 Cyrano
## 6144 Girlhood
## 6145 Restless
## 6146 So Happy Together
## 6147 Water Lilies
## 6148 Rendition
## 6149 Hellraiser
## 6150 The Duke of Burgundy
## 6151 Merry Madagascar
## 6152 Super Fuzz
## 6153 It Could Happen to You
## 6154 The Sisterhood of the Traveling Pants
## 6155 2 Fast 2 Furious
## 6156 The Contractor
## 6157 The Silencing
## 6158 Godzilla: City on the Edge of Battle
## 6159 Happy Family
## 6160 Next Friday
## 6161 Fido
## 6162 Safe
## 6163 Dragon Ball Z: The World's Strongest
## 6164 Courage Under Fire
## 6165 Casanova
## 6166 L.A. Story
## 6167 Sputnik
## 6168 The Meyerowitz Stories (New and Selected)
## 6169 Café Society
## 6170 Before I Wake
## 6171 The Hangover Part II
## 6172 The Night Before the Exams
## 6173 Grumpier Old Men
## 6174 The Great Outdoors
## 6175 The Man Who Fell to Earth
## 6176 The Assassin
## 6177 Never Back Down 2: The Beatdown
## 6178 The Beach
## 6179 Crash
## 6180 Ocean's Eleven
## 6181 Boy Missing
## 6182 Total Eclipse
## 6183 It Takes Two
## 6184 The Runaways
## 6185 All of Me
## 6186 Arctic
## 6187 Blind Date
## 6188 Terminator: Dark Fate
## 6189 Get Shorty
## 6190 Amateur
## 6191 Mr. Right
## 6192 The Addiction
## 6193 Blue Streak
## 6194 The Secret of My Success
## 6195 Bean
## 6196 Old
## 6197 Paulette
## 6198 Liberal Arts
## 6199 Naked Gun 33⅓: The Final Insult
## 6200 Pontypool
## 6201 Paint Your Wagon
## 6202 Dead Again
## 6203 Cliffhanger
## 6204 Titane
## 6205 Late Night
## 6206 The Aftermath
## 6207 Grandma
## 6208 Let's Be Cops
## 6209 Twilight Zone: The Movie
## 6210 Dragonslayer
## 6211 Twister
## 6212 I Love You, Stupid
## 6213 The Boss Baby
## 6214 Black Mass
## 6215 The Water Horse
## 6216 Dragon Ball Z: Lord Slug
## 6217 Big Daddy
## 6218 The Ninth Gate
## 6219 Hunter Hunter
## 6220 Queenpins
## 6221 The War with Grandpa
## 6222 Wonder Park
## 6223 Love
## 6224 The Uninvited
## 6225 Freeway
## 6226 When a Man Loves a Woman
## 6227 Air Force One
## 6228 U-571
## 6229 Guns Akimbo
## 6230 Blue Lagoon: The Awakening
## 6231 Urban Cowboy
## 6232 Rogue
## 6233 Stakeout
## 6234 The Rocketeer
## 6235 Scream 2
## 6236 Hello, My Name Is Doris
## 6237 Green Zone
## 6238 The Manchurian Candidate
## 6239 The Game Plan
## 6240 The Santa Clause
## 6241 Cinderella
## 6242 Almost Friends
## 6243 Smoke & Mirrors
## 6244 Attack the Block
## 6245 Nick and Norah's Infinite Playlist
## 6246 Encounter
## 6247 Think Like a Man Too
## 6248 The Whole Nine Yards
## 6249 Nocturama
## 6250 Money Monster
## 6251 Easy Virtue
## 6252 The Party 2
## 6253 Dear Evan Hansen
## 6254 Awake
## 6255 Ginger Snaps 2: Unleashed
## 6256 Jackie
## 6257 The Lady in the Van
## 6258 Despicable Me 3
## 6259 Fantozzi Still Suffers
## 6260 Bomber
## 6261 Alice
## 6262 Oculus
## 6263 Big Nothing
## 6264 BLAME!
## 6265 My Way
## 6266 Curly Sue
## 6267 Father of the Bride
## 6268 La Llorona
## 6269 Rampage
## 6270 Young & Beautiful
## 6271 Cloudy with a Chance of Meatballs 2
## 6272 The Last House on the Left
## 6273 The Last Kiss
## 6274 Forever Young
## 6275 Jeepers Creepers
## 6276 Ingrid Goes West
## 6277 The Rundown
## 6278 The Man Who Knew Too Much
## 6279 Kingdoms
## 6280 Olaf's Frozen Adventure
## 6281 Buzz Lightyear of Star Command: The Adventure Begins
## 6282 New Nightmare
## 6283 The Village
## 6284 A California Christmas
## 6285 StreetDance 3D
## 6286 Psycho II
## 6287 He Was a Quiet Man
## 6288 G.I. Jane
## 6289 Shoot 'Em Up
## 6290 Not Okay
## 6291 8-Bit Christmas
## 6292 Celeste & Jesse Forever
## 6293 TRON: Legacy
## 6294 Confessions of a Shopaholic
## 6295 School Ties
## 6296 White House Down
## 6297 Angus, Thongs and Perfect Snogging
## 6298 The Man with the Golden Gun
## 6299 The Clovehitch Killer
## 6300 3 Generations
## 6301 Freaky Friday
## 6302 Super Dark Times
## 6303 Warm Bodies
## 6304 Goon
## 6305 The Little Mermaid II: Return to the Sea
## 6306 Annabelle Comes Home
## 6307 A New Girl In Paris!
## 6308 Flightplan
## 6309 Pee-wee's Big Adventure
## 6310 Faster, Pussycat! Kill! Kill!
## 6311 The Sleepover
## 6312 The Room
## 6313 The Girl on the Train
## 6314 Walt Before Mickey
## 6315 Love Is Strange
## 6316 Scooby-Doo! The Mystery Begins
## 6317 Suck Me Shakespeer 2
## 6318 The Mortal Instruments: City of Bones
## 6319 A Little Bit of Heaven
## 6320 Camp Rock
## 6321 Eagle Eye
## 6322 Made of Honor
## 6323 A Civil Action
## 6324 Love, Guaranteed
## 6325 Assimilate
## 6326 Till Luck Do Us Part
## 6327 Safe House
## 6328 The Ramen Girl
## 6329 Unhinged
## 6330 Black Coal, Thin Ice
## 6331 Tarantula
## 6332 Crush in Jaipur
## 6333 Baby Boom
## 6334 Syriana
## 6335 Eurovision Song Contest: The Story of Fire Saga
## 6336 Imperium
## 6337 Spectral
## 6338 Lucy
## 6339 Amiche da morire
## 6340 Anonymous
## 6341 Charlie Countryman
## 6342 Ballet Shoes
## 6343 Harsh Times
## 6344 Deerskin
## 6345 Luce
## 6346 High Anxiety
## 6347 Torrente, the Dumb Arm of the Law
## 6348 Clean
## 6349 The Salvation
## 6350 Ice Age: A Mammoth Christmas
## 6351 The Jack in the Box: Awakening
## 6352 Ella Enchanted
## 6353 Toy Soldiers
## 6354 Rabid
## 6355 Dead Silence
## 6356 16 Blocks
## 6357 Time Is Up
## 6358 The Loft
## 6359 Dead & Buried
## 6360 Roxanne
## 6361 The Chronicles of Narnia: The Voyage of the Dawn Treader
## 6362 Rush Hour 3
## 6363 What Women Want
## 6364 Headshot
## 6365 Life
## 6366 Two Night Stand
## 6367 Austenland
## 6368 Saved!
## 6369 Bobby
## 6370 Tango & Cash
## 6371 Step Sisters
## 6372 9 Month Stretch
## 6373 The Other Woman
## 6374 The Pirates! In an Adventure with Scientists!
## 6375 Chalet Girl
## 6376 She's Out of My League
## 6377 Instinct
## 6378 Bugsy
## 6379 Superwho?
## 6380 Dangerous Lies
## 6381 Crooked House
## 6382 Cyberbully
## 6383 Man on a Ledge
## 6384 Robots
## 6385 The Fast and the Furious: Tokyo Drift
## 6386 The River Wild
## 6387 Star Trek: Insurrection
## 6388 Revenge
## 6389 City of Lies
## 6390 Maniac
## 6391 F/X
## 6392 I Love You Phillip Morris
## 6393 The Perfect Storm
## 6394 The Gift
## 6395 City Slickers
## 6396 Bridget Jones's Baby
## 6397 In Hell
## 6398 D.A.R.Y.L.
## 6399 The Serpent and the Rainbow
## 6400 One Fine Day
## 6401 The Number 23
## 6402 A Mighty Heart
## 6403 The Babysitter: Killer Queen
## 6404 Killer Klowns from Outer Space
## 6405 Dirty Dancing: Havana Nights
## 6406 Airport
## 6407 Porky's
## 6408 Jay and Silent Bob Strike Back
## 6409 Leap Year
## 6410 Defendor
## 6411 Dolls
## 6412 Tommy
## 6413 Misbehaviour
## 6414 Miss Bala
## 6415 The Closet
## 6416 The Indian in the Cupboard
## 6417 The Spy Who Dumped Me
## 6418 The Old Man & the Gun
## 6419 Monster Hunt
## 6420 The Trip to Italy
## 6421 Do Revenge
## 6422 Finding ʻOhana
## 6423 The Guilty
## 6424 Upstream Color
## 6425 Scream 4
## 6426 Jarhead 2: Field of Fire
## 6427 Great Expectations
## 6428 The Taking of Deborah Logan
## 6429 De Pernas pro Ar
## 6430 French Kiss
## 6431 A Christmas Prince: The Royal Wedding
## 6432 The Congress
## 6433 Six Degrees of Separation
## 6434 Nightbreed
## 6435 Jungle Fever
## 6436 Below Zero
## 6437 Godzilla: The Planet Eater
## 6438 Lady J
## 6439 Starter for 10
## 6440 The Hills Have Eyes
## 6441 Last Action Hero
## 6442 Luther
## 6443 Baggio: The Divine Ponytail
## 6444 Rust Creek
## 6445 I Feel Pretty
## 6446 Ice Age: The Great Egg-Scapade
## 6447 Cheap Thrills
## 6448 Delicacy
## 6449 Miami Supercops
## 6450 Shanghai Noon
## 6451 What Lies Beneath
## 6452 WHAT DID JACK DO?
## 6453 Wonder Wheel
## 6454 The Seasoning House
## 6455 Legends of Oz: Dorothy's Return
## 6456 The Pagemaster
## 6457 Seraphim Falls
## 6458 The Girl Who Killed Her Parents
## 6459 Thoroughbreds
## 6460 The Purge: Election Year
## 6461 The 9th Life of Louis Drax
## 6462 X-Men: The Last Stand
## 6463 Hardball
## 6464 Prozac Nation
## 6465 Pokémon 4Ever
## 6466 Intimacy
## 6467 A Cinderella Story: Christmas Wish
## 6468 Roald Dahl's The Witches
## 6469 Second Act
## 6470 Do You See Me?
## 6471 The Final Girls
## 6472 Self/less
## 6473 Cat Ballou
## 6474 Mary Shelley's Frankenstein
## 6475 Silent Running
## 6476 Crisis
## 6477 Marguerite
## 6478 Meu Passado Me Condena: O Filme
## 6479 Music and Lyrics
## 6480 Weekend at Bernie's
## 6481 Someone, Somewhere
## 6482 Triple Threat
## 6483 The Invisible Boy: Second Generation
## 6484 The Mermaid
## 6485 The Magnificent Seven
## 6486 Run All Night
## 6487 EVA
## 6488 Cargo
## 6489 Welcome to the Hartmanns
## 6490 Don't Think Twice
## 6491 Wild Target
## 6492 The Last Dragon
## 6493 27 Dresses
## 6494 Central Intelligence
## 6495 Last Vegas
## 6496 Kung Fu Panda: Secrets of the Masters
## 6497 Ong Bak 2
## 6498 Shotgun Wedding
## 6499 Atomic Blonde
## 6500 In a World...
## 6501 Kick-Ass 2
## 6502 Fright Night Part 2
## 6503 Kronk's New Groove
## 6504 Gremlins 2: The New Batch
## 6505 Flypaper
## 6506 Basket Case
## 6507 Asterix the Gaul
## 6508 Tall Girl
## 6509 Star Wars: The Rise of Skywalker
## 6510 American Assassin
## 6511 The Second Best Exotic Marigold Hotel
## 6512 Like Crazy
## 6513 Dracula
## 6514 Salt
## 6515 Brokedown Palace
## 6516 Outlander
## 6517 Salmon Fishing in the Yemen
## 6518 Ted
## 6519 Outland
## 6520 Darkman
## 6521 My Blueberry Nights
## 6522 Fools Rush In
## 6523 Outside the Wire
## 6524 The Party
## 6525 Minions
## 6526 Critters
## 6527 Mars Attacks!
## 6528 The Wolverine
## 6529 Nighthawks
## 6530 Big Business
## 6531 Curious George
## 6532 Gone in Sixty Seconds
## 6533 The Talent of the Hornet
## 6534 Tamara
## 6535 Indignation
## 6536 The A-Team
## 6537 Ice Princess
## 6538 The Three Musketeers
## 6539 8MM
## 6540 Visitor Q
## 6541 No Sudden Move
## 6542 Gerald's Game
## 6543 Walking on Sunshine
## 6544 Lady and the Tramp II: Scamp's Adventure
## 6545 Sweet Home Alabama
## 6546 Hero
## 6547 Friday the 13th
## 6548 The Speech
## 6549 Errementari: The Blacksmith and the Devil
## 6550 Moonfall
## 6551 Marvel One-Shot: The Consultant
## 6552 Showdown in Little Tokyo
## 6553 Damien: Omen II
## 6554 Follow Me
## 6555 Becky
## 6556 The Iron Lady
## 6557 Dracula Untold
## 6558 Soldier
## 6559 Meet the Feebles
## 6560 Sister Act 2: Back in the Habit
## 6561 30 Days of Night
## 6562 You Got Served
## 6563 Crocodile Dundee
## 6564 Annihilation
## 6565 Cecil B. Demented
## 6566 Ladder 49
## 6567 Killer's Kiss
## 6568 The Secret Garden
## 6569 Solace
## 6570 Mac & Devin Go to High School
## 6571 The Beastmaster
## 6572 Butterfly on a Wheel
## 6573 Saints and Soldiers
## 6574 Hot Rod
## 6575 I Love You to Death
## 6576 Battle
## 6577 Take This Waltz
## 6578 The Beaver
## 6579 The Experiment
## 6580 Summer School
## 6581 Secret in Their Eyes
## 6582 Arthur and the Invisibles
## 6583 The Invitation
## 6584 Passing
## 6585 Adventureland
## 6586 Looney Tunes: Back in Action
## 6587 Shall We Dance?
## 6588 Saw III
## 6589 The Assistant
## 6590 OtherLife
## 6591 The Housemaid
## 6592 An Extremely Goofy Movie
## 6593 Spider-Man 3
## 6594 The Chalk Line
## 6595 Come Play
## 6596 The Suicide Shop
## 6597 Fun and Fancy Free
## 6598 Robin Hood
## 6599 Drag Me to Hell
## 6600 Sugar & Spice
## 6601 The Mosquito Coast
## 6602 TransSiberian
## 6603 Under the Silver Lake
## 6604 Bad Words
## 6605 Olympus Has Fallen
## 6606 The Discord
## 6607 Diamonds Are Forever
## 6608 Gunpowder Milkshake
## 6609 Tale of Tales
## 6610 Revolver
## 6611 Cellular
## 6612 Zathura: A Space Adventure
## 6613 The Princess of Montpensier
## 6614 All That Glitters
## 6615 District 13: Ultimatum
## 6616 Accepted
## 6617 The Imaginarium of Doctor Parnassus
## 6618 Yes, God, Yes
## 6619 The Lost City of Z
## 6620 Little Giants
## 6621 I Do
## 6622 Taking Lives
## 6623 Ocean Waves
## 6624 The Blackout
## 6625 How to Build a Better Boy
## 6626 Compliance
## 6627 Milk Money
## 6628 Vantage Point
## 6629 Priceless
## 6630 Shortbus
## 6631 Pete's Dragon
## 6632 Confessions of a Brazilian Call Girl
## 6633 Pride and Glory
## 6634 Dead End
## 6635 Bad Taste
## 6636 Hardcore Henry
## 6637 Creep
## 6638 Prizzi's Honor
## 6639 Why Him?
## 6640 The Trials of Cate McCall
## 6641 The Wraith
## 6642 Room in Rome
## 6643 Alice, Sweet Alice
## 6644 La Tour Montparnasse Infernale
## 6645 Fear
## 6646 Hellbound: Hellraiser II
## 6647 Arachnophobia
## 6648 The General's Daughter
## 6649 Halloween Ends
## 6650 Dragon Blade
## 6651 The Gendarme Takes Off
## 6652 Game of Death
## 6653 Space Cowboys
## 6654 Someone Great
## 6655 Insurgent
## 6656 Shivers
## 6657 Aquamarine
## 6658 The 40 Year Old Virgin
## 6659 Your Place or Mine
## 6660 Vanguard
## 6661 Pete's Dragon
## 6662 Knock
## 6663 Two Weeks Notice
## 6664 After the Ball
## 6665 Son of a Gun
## 6666 Need for Speed
## 6667 Affliction
## 6668 The Invisible
## 6669 A Christmas Prince: The Royal Baby
## 6670 The Lie
## 6671 The Awakening
## 6672 Redbelt
## 6673 The Messenger: The Story of Joan of Arc
## 6674 Hide and Seek
## 6675 A Cinderella Story: Once Upon a Song
## 6676 Just Wright
## 6677 Battle in Seattle
## 6678 D.E.B.S.
## 6679 Don't Stop Me Now
## 6680 The Marine 4: Moving Target
## 6681 Less Than Zero
## 6682 Greystoke: The Legend of Tarzan, Lord of the Apes
## 6683 Hart's War
## 6684 Sin City: A Dame to Kill For
## 6685 Everybody Wants Some!!
## 6686 Warcraft
## 6687 We Are Family
## 6688 Good Kids
## 6689 Resolution
## 6690 Turner & Hooch
## 6691 The Last Rite
## 6692 The Shallows
## 6693 Carne
## 6694 Stitches
## 6695 The Ages of Lulu
## 6696 Major Payne
## 6697 Max & Leon
## 6698 An Italian Name
## 6699 The Family
## 6700 The Deep End of the Ocean
## 6701 Days of Thunder
## 6702 Sommersby
## 6703 The Noel Diary
## 6704 Easy!
## 6705 Kung Pow: Enter the Fist
## 6706 Men in Black II
## 6707 Correspondence
## 6708 Ice Age: Continental Drift
## 6709 Our Summer in Provence
## 6710 Cold Prey II
## 6711 Asterix and the Big Fight
## 6712 The Man Who Knew Too Little
## 6713 The Cabbage Soup
## 6714 ¡Three Amigos!
## 6715 Tomb Raider
## 6716 The 33
## 6717 Vampire Academy
## 6718 Witching & Bitching
## 6719 Due Date
## 6720 Grown Ups
## 6721 Singles
## 6722 An American Tail: Fievel Goes West
## 6723 Crying Freeman
## 6724 The House of Magic
## 6725 The Only Living Boy in New York
## 6726 The Nanny Diaries
## 6727 Ripley's Game
## 6728 Wrong Turn
## 6729 Alien³
## 6730 Over the Top
## 6731 Savages
## 6732 The Perfect Host
## 6733 Ink
## 6734 The Program
## 6735 Samba
## 6736 The Sorcerer and the White Snake
## 6737 A Dangerous Method
## 6738 Intruder
## 6739 The Miser
## 6740 Enigma
## 6741 The Gendarme in New York
## 6742 The Love Witch
## 6743 Gangster Squad
## 6744 The Land Before Time X: The Great Longneck Migration
## 6745 The Three Caballeros
## 6746 Bronco Billy
## 6747 The Hot Chick
## 6748 Surf's Up
## 6749 Nacho Libre
## 6750 Dead in a Week (Or Your Money Back)
## 6751 Fan
## 6752 John Dies at the End
## 6753 Hancock
## 6754 Hatching
## 6755 Midnight in the Garden of Good and Evil
## 6756 Phenomenon
## 6757 Atlantis: Milo's Return
## 6758 Girl vs. Monster
## 6759 The Myth
## 6760 Red Eye
## 6761 Proof
## 6762 Hope Floats
## 6763 Resident Evil: Apocalypse
## 6764 Mr. Bean's Holiday
## 6765 Feather
## 6766 Edge of Darkness
## 6767 Gorky Park
## 6768 Hostage
## 6769 Like a Boss
## 6770 6 Underground
## 6771 The Car
## 6772 The Blair Witch Project
## 6773 The Little Things
## 6774 The Endless
## 6775 The Commuter
## 6776 Morning Glory
## 6777 Doc Hollywood
## 6778 Along Came a Spider
## 6779 Wild Things
## 6780 On a Magical Night
## 6781 Flashback
## 6782 White Boy Rick
## 6783 The Wackness
## 6784 Talladega Nights: The Ballad of Ricky Bobby
## 6785 Bordertown
## 6786 Into the Labyrinth
## 6787 The Emperor of Paris
## 6788 Babysitting 2
## 6789 I Spit on Your Grave 2
## 6790 Machete
## 6791 Private Valentine: Blonde & Dangerous
## 6792 Lord of the Flies
## 6793 The Sheriff and the Satellite Kid
## 6794 The Occupant
## 6795 Sierra Burgess Is a Loser
## 6796 #realityhigh
## 6797 Wer
## 6798 Santa Claus: The Movie
## 6799 Shrek Forever After
## 6800 DodgeBall: A True Underdog Story
## 6801 Megan Is Missing
## 6802 White Hunter, Black Heart
## 6803 Sex Drive
## 6804 Juliet, Naked
## 6805 New York Stories
## 6806 The Recruit
## 6807 I Want You Back
## 6808 Camp Rock 2: The Final Jam
## 6809 Paper Man
## 6810 Would I Lie to You?
## 6811 Dead Like Me: Life After Death
## 6812 Tom and Jerry: The Magic Ring
## 6813 High Crimes
## 6814 Barbershop
## 6815 The Shipping News
## 6816 Falling for Christmas
## 6817 Crimes of the Future
## 6818 A-X-L
## 6819 Taken 2
## 6820 Alice in Wonderland
## 6821 The Mummy Returns
## 6822 Lucky
## 6823 Lights Out
## 6824 The Taking of Pelham 1 2 3
## 6825 Walking Tall
## 6826 Public Friends
## 6827 Hands of Stone
## 6828 Sightseers
## 6829 If I Were You
## 6830 Kate & Leopold
## 6831 Tomorrow Never Dies
## 6832 Countdown
## 6833 Summertime
## 6834 Wolf Creek 2
## 6835 Millions
## 6836 Jagged Edge
## 6837 Licence to Kill
## 6838 Kajillionaire
## 6839 Skyscraper
## 6840 Van Helsing
## 6841 Mary Magdalene
## 6842 Los Bandoleros
## 6843 Horror Express
## 6844 Heist
## 6845 Loving Adults
## 6846 Creep 2
## 6847 Ooops! Noah Is Gone...
## 6848 Back to School
## 6849 The Great Gatsby
## 6850 She's All That
## 6851 Vampires
## 6852 Buffalo Soldiers
## 6853 Cannibal Holocaust
## 6854 The Way of the Gun
## 6855 The Good Shepherd
## 6856 RRRrrrr!!!
## 6857 Indecent Proposal
## 6858 Scary Movie
## 6859 The Tunnel
## 6860 Happy Death Day 2U
## 6861 A Bad Moms Christmas
## 6862 Kirikou and the Wild Beasts
## 6863 Lifeforce
## 6864 Firestarter
## 6865 Convoy
## 6866 A Prairie Home Companion
## 6867 Jack
## 6868 Harley Davidson and the Marlboro Man
## 6869 Ghosts of War
## 6870 Sound of My Voice
## 6871 Beastly
## 6872 Pumpkinhead
## 6873 Shrek the Halls
## 6874 Warlock
## 6875 Escape from the Planet of the Apes
## 6876 Christmas Inheritance
## 6877 Possessor Uncut
## 6878 A Little Chaos
## 6879 The Immigrant
## 6880 Contraband
## 6881 Margaret
## 6882 Gemini Man
## 6883 Death Race: Beyond Anarchy
## 6884 Goosebumps
## 6885 Burning Bright
## 6886 The Lizzie McGuire Movie
## 6887 The Company of Wolves
## 6888 Half Baked
## 6889 Devil in a Blue Dress
## 6890 JUNG_E
## 6891 Smurfs: The Lost Village
## 6892 Albert Nobbs
## 6893 The Bet
## 6894 Aftermath
## 6895 Faster
## 6896 Chaos
## 6897 Barbershop: The Next Cut
## 6898 Muppets Most Wanted
## 6899 City of the Living Dead
## 6900 Proxima
## 6901 Marry Me, Dude
## 6902 Jason Bourne
## 6903 The Toxic Avenger
## 6904 Ju-on: The Grudge 2
## 6905 Stranger by the Lake
## 6906 A Walk Among the Tombstones
## 6907 Beckett
## 6908 Repo Men
## 6909 Jump In!
## 6910 Chaos Theory
## 6911 The Family Stone
## 6912 I Came By
## 6913 The Expendables 2
## 6914 Phantasm II
## 6915 Great Balls of Fire!
## 6916 You Again
## 6917 Premium Rush
## 6918 Transporter 2
## 6919 The Sum of All Fears
## 6920 A Cure for Wellness
## 6921 The Hollars
## 6922 Honey 2
## 6923 Sleepaway Camp
## 6924 Bachelor Party
## 6925 Quantum of Solace
## 6926 Ace Ventura: When Nature Calls
## 6927 National Treasure: Book of Secrets
## 6928 Eiffel
## 6929 The Amityville Horror
## 6930 Crawl
## 6931 Alone
## 6932 The Discovery
## 6933 Unfriended: Dark Web
## 6934 The Jackal
## 6935 Bend It Like Beckham
## 6936 Yummy
## 6937 Daphne & Velma
## 6938 Illang: The Wolf Brigade
## 6939 I Am Not a Serial Killer
## 6940 Brooklyn's Finest
## 6941 Brad's Status
## 6942 The Visit
## 6943 Coogan's Bluff
## 6944 The Big White
## 6945 Casper
## 6946 Alice and the Mayor
## 6947 The Plagues of Breslau
## 6948 Rebecca
## 6949 The Wall
## 6950 Batman
## 6951 FernGully: The Last Rainforest
## 6952 A Perfect Getaway
## 6953 Red Dawn
## 6954 The Interpreter
## 6955 American Pie Presents: Girls' Rules
## 6956 The Bar
## 6957 Cake
## 6958 Wrong
## 6959 The Missing
## 6960 Elegy
## 6961 Idiocracy
## 6962 The Punisher
## 6963 Coma
## 6964 Jarhead 3: The Siege
## 6965 The Caller
## 6966 Very Bad Things
## 6967 Derailed
## 6968 Off Course
## 6969 It Boy
## 6970 Underworld: Awakening
## 6971 16 Wishes
## 6972 The Fourth Kind
## 6973 Octopussy
## 6974 Yara
## 6975 Porno
## 6976 Astro Boy
## 6977 Wet Hot American Summer
## 6978 Hard Target
## 6979 2 Days in Paris
## 6980 Colossal
## 6981 Dark Skies
## 6982 Superfantozzi
## 6983 Always
## 6984 Baby's Day Out
## 6985 Inheritance
## 6986 Underwater
## 6987 Roman J. Israel, Esq.
## 6988 Anche se è amore non si vede
## 6989 Rachel Getting Married
## 6990 White Squall
## 6991 How High
## 6992 Hacker
## 6993 City of Ember
## 6994 Twilight
## 6995 Behind Enemy Lines
## 6996 Antlers
## 6997 Vacation
## 6998 Last Man Standing
## 6999 Johnny Handsome
## 7000 Bastille Day
## 7001 The Last Mimzy
## 7002 Horns
## 7003 Jawbreaker
## 7004 Honey
## 7005 Inkheart
## 7006 Welcome to Sudden Death
## 7007 Sleeping with Other People
## 7008 No Strings Attached
## 7009 Serial (Bad) Weddings 3
## 7010 Assassination Nation
## 7011 Triple Frontier
## 7012 The Host
## 7013 Project X
## 7014 Jamon Jamon
## 7015 Omicidio all'italiana
## 7016 Diary of a Wimpy Kid: Dog Days
## 7017 Nowhere to Run
## 7018 Out of Time
## 7019 Star Trek: Nemesis
## 7020 The Wannabes
## 7021 Nightbooks
## 7022 Like Father
## 7023 Just a Breath Away
## 7024 Insidious: Chapter 3
## 7025 War
## 7026 The Hobbit
## 7027 Christmas & Co.
## 7028 Che vuoi che sia
## 7029 F/X2
## 7030 Can't Hardly Wait
## 7031 The Witch in the Window
## 7032 Internal Affairs
## 7033 Bill & Ted's Bogus Journey
## 7034 Midnight at the Magnolia
## 7035 Three Floors
## 7036 The Devil's Candy
## 7037 Promised Land
## 7038 Riddick
## 7039 The Raven
## 7040 Rare Exports: A Christmas Tale
## 7041 Ondine
## 7042 Case 39
## 7043 Daybreakers
## 7044 Airplane Mode
## 7045 Gundala
## 7046 The Collection
## 7047 The Losers
## 7048 Gorgeous
## 7049 No Escape
## 7050 Shrek the Third
## 7051 Blacklight
## 7052 Mandibles
## 7053 The Catcher Was a Spy
## 7054 Blockers
## 7055 Look Who's Talking
## 7056 Diary of a Wimpy Kid
## 7057 Antebellum
## 7058 Valley of the Dead
## 7059 Synchronic
## 7060 Neruda
## 7061 The Huntsman: Winter's War
## 7062 American Reunion
## 7063 Arbitrage
## 7064 Something Borrowed
## 7065 Godzilla: Planet of the Monsters
## 7066 The Rover
## 7067 Melody Time
## 7068 Sea Fever
## 7069 Roommates Wanted
## 7070 Ted 2
## 7071 Nanny McPhee and the Big Bang
## 7072 The Other Guys
## 7073 Thunderheart
## 7074 Single White Female
## 7075 Haute Cuisine
## 7076 The Air I Breathe
## 7077 The Englishman Who Went Up a Hill But Came Down a Mountain
## 7078 Hackers
## 7079 The Siege
## 7080 Primary Colors
## 7081 Pleasure
## 7082 Journey's End
## 7083 Free Fire
## 7084 Geronimo: An American Legend
## 7085 Zack and Miri Make a Porno
## 7086 Be Kind Rewind
## 7087 The Bouncer
## 7088 17 Again
## 7089 Bandits
## 7090 Once Upon a Time in Mexico
## 7091 The House of the Devil
## 7092 Echelon Conspiracy
## 7093 The Matador
## 7094 Resident Evil: Extinction
## 7095 5 Is the Perfect Number
## 7096 Stephanie
## 7097 Deathgasm
## 7098 Winter's Tale
## 7099 Hope Springs
## 7100 Waiting...
## 7101 13 Sins
## 7102 Free Willy 3: The Rescue
## 7103 Harold & Kumar Escape from Guantanamo Bay
## 7104 Honey, I Shrunk the Kids
## 7105 The Blob
## 7106 I ♥ Huckabees
## 7107 Struck by Lightning
## 7108 Snowtown
## 7109 The Land Before Time: The Great Valley Adventure
## 7110 Sukiyaki Western Django
## 7111 Cheaper by the Dozen
## 7112 Men
## 7113 I Am Not an Easy Man
## 7114 True Story
## 7115 Godzilla
## 7116 Killer Elite
## 7117 Rock-A-Doodle
## 7118 Woman on Top
## 7119 Oscar
## 7120 Angel of Mine
## 7121 John Carter
## 7122 The New York Ripper
## 7123 Night of the Comet
## 7124 The Dead Pool
## 7125 Daddy's Home 2
## 7126 Power Rangers
## 7127 Child 44
## 7128 Feast of Love
## 7129 A Boy and His Dog
## 7130 The Nest
## 7131 Escobar: Paradise Lost
## 7132 Tom and Jerry: The Movie
## 7133 Nights in Rodanthe
## 7134 Return to the Blue Lagoon
## 7135 Black Crab
## 7136 The Frozen Ground
## 7137 Byzantium
## 7138 Kokowääh
## 7139 Dagon
## 7140 Europa Report
## 7141 The Internship
## 7142 Aladdin and the King of Thieves
## 7143 Mystic Pizza
## 7144 Hoffa
## 7145 The Karate Kid Part II
## 7146 The Secret Life of Pets
## 7147 The Barbie Diaries
## 7148 The Good Girl
## 7149 Killing Zoe
## 7150 The Craft: Legacy
## 7151 The Sea of Trees
## 7152 Premonition
## 7153 I laureati
## 7154 Remo Williams: The Adventure Begins
## 7155 King Arthur
## 7156 Sleuth
## 7157 Blow the Man Down
## 7158 Grave Encounters
## 7159 The Fury
## 7160 Austin Powers: The Spy Who Shagged Me
## 7161 Daddy's Home
## 7162 White as Milk, Red as Blood
## 7163 Rollerball
## 7164 Black Mask
## 7165 Army of the Dead
## 7166 Viva l'Italia
## 7167 Universal Soldier
## 7168 Little Buddha
## 7169 Gold
## 7170 Beirut
## 7171 The Lure
## 7172 Alps
## 7173 Balto II: Wolf Quest
## 7174 Creepshow 2
## 7175 Prince of Persia: The Sands of Time
## 7176 Click
## 7177 Under Siege
## 7178 Pacific Heights
## 7179 Johnny English Strikes Again
## 7180 The Invisible Boy
## 7181 Whiskey Tango Foxtrot
## 7182 The Purge
## 7183 The Cheetah Girls 2
## 7184 Friday After Next
## 7185 Three Men and a Cradle
## 7186 Night Watch
## 7187 Loving Pablo
## 7188 The BFG
## 7189 The Pretty One
## 7190 The World Is Not Enough
## 7191 Stigmata
## 7192 Bridget Jones: The Edge of Reason
## 7193 Paranormal Activity: Next of Kin
## 7194 Polar
## 7195 Love Potion No. 9
## 7196 No Retreat, No Surrender
## 7197 Legend
## 7198 Melinda and Melinda
## 7199 Knocked Up
## 7200 Saw VI
## 7201 The Librarian: The Curse of the Judas Chalice
## 7202 The Cell
## 7203 Mercury Rising
## 7204 Splash
## 7205 V/H/S/2
## 7206 Upside Down
## 7207 X-Men Origins: Wolverine
## 7208 Perdida
## 7209 Country Strong
## 7210 The Freshman
## 7211 Severance
## 7212 Sextuplets
## 7213 Mad City
## 7214 Johnny English
## 7215 Down Periscope
## 7216 The Beast
## 7217 Delivery Man
## 7218 Black Dog
## 7219 Dear White People
## 7220 Gigi
## 7221 Kimi
## 7222 Live by Night
## 7223 The Voices
## 7224 My Son
## 7225 Unsane
## 7226 Master Z: Ip Man Legacy
## 7227 Falcon Rising
## 7228 New Kids Turbo
## 7229 From Paris with Love
## 7230 Arn: The Knight Templar
## 7231 Body Cam
## 7232 A Field in England
## 7233 Tomorrowland
## 7234 Death Wish 3
## 7235 The Return of Jafar
## 7236 The Man with Two Brains
## 7237 Sky High
## 7238 Point of No Return
## 7239 Executive Decision
## 7240 Murder Mystery
## 7241 The House with a Clock in Its Walls
## 7242 Insidious: The Last Key
## 7243 The Survivalist
## 7244 The Librarian: Quest for the Spear
## 7245 Mirrors
## 7246 Bride Wars
## 7247 Ride Along 2
## 7248 Turning Tide
## 7249 Mama
## 7250 The Switch
## 7251 Predators
## 7252 Beauty Shop
## 7253 Confidence
## 7254 Mean Machine
## 7255 Dangerous
## 7256 Diary of a Wimpy Kid
## 7257 The Burning
## 7258 Predator 2
## 7259 Goodnight Mommy
## 7260 Man Down
## 7261 Vendetta
## 7262 The Good Neighbor
## 7263 Young Detective Dee: Rise of the Sea Dragon
## 7264 Basilicata Coast to Coast
## 7265 Deadly Friend
## 7266 Death Race
## 7267 Disclosure
## 7268 Cassandra's Dream
## 7269 Changing Lanes
## 7270 Street Trash
## 7271 Death Wish II
## 7272 Flushed Away
## 7273 Where the Truth Lies
## 7274 Book Club
## 7275 Let's Go to the Country
## 7276 Lake Mungo
## 7277 Flash Gordon
## 7278 Unlocked
## 7279 Black Sea
## 7280 The Good Doctor
## 7281 Night of the Demons
## 7282 Force 10 from Navarone
## 7283 Rat Race
## 7284 Villains
## 7285 Annie
## 7286 A Long Way Down
## 7287 Tremors 2: Aftershocks
## 7288 Coyote Ugly
## 7289 Return of the Living Dead Part II
## 7290 Child's Play 2
## 7291 The Woman in Red
## 7292 Carter
## 7293 Cold Skin
## 7294 Scooby-Doo! Curse of the Lake Monster
## 7295 On the Line
## 7296 Captain Underpants: The First Epic Movie
## 7297 Monsters
## 7298 Mater and the Ghostlight
## 7299 Mr. Magorium's Wonder Emporium
## 7300 There's No Place Like Home
## 7301 Peacock
## 7302 Taken 3
## 7303 Ride Along
## 7304 Extraordinary Measures
## 7305 Father of the Bride Part II
## 7306 What a Girl Wants
## 7307 2 Days in the Valley
## 7308 Bring It On
## 7309 Hannibal Rising
## 7310 Isn't It Romantic
## 7311 To Steal from a Thief
## 7312 The Sisterhood of the Traveling Pants 2
## 7313 The Postman
## 7314 The Hustle
## 7315 Parkland
## 7316 Assassination Games
## 7317 Eat Pray Love
## 7318 The Librarian: Return to King Solomon's Mines
## 7319 Kiki, Love to Love
## 7320 Explorers
## 7321 Taxi 2
## 7322 The Star
## 7323 Pain & Gain
## 7324 This Is the End
## 7325 The Coldest Game
## 7326 Braven
## 7327 How to Be Single
## 7328 The Paradine Case
## 7329 Ben 10 Alien Swarm
## 7330 Unknown
## 7331 Meet the Fockers
## 7332 Under the Riccione Sun
## 7333 The Night Clerk
## 7334 Soapdish
## 7335 Turkish for Beginners
## 7336 The Crazies
## 7337 Pirates
## 7338 Hoodwinked!
## 7339 For Love or Money
## 7340 Radio Rebel
## 7341 The Twilight Saga: Eclipse
## 7342 Belle's Magical World
## 7343 The Hard Way
## 7344 Halloween 4: The Return of Michael Myers
## 7345 Malice
## 7346 Archive
## 7347 Black Butterfly
## 7348 Windtalkers
## 7349 Vacancy
## 7350 (T)Raumschiff Surprise - Periode 1
## 7351 Entourage
## 7352 Trapped
## 7353 Dune
## 7354 Rifkin's Festival
## 7355 Midnight Special
## 7356 The Expendables 3
## 7357 Repo! The Genetic Opera
## 7358 Takers
## 7359 Last Chance Harvey
## 7360 The Kentucky Fried Movie
## 7361 Friday the 13th Part VI: Jason Lives
## 7362 The Decline
## 7363 The Hangover Part III
## 7364 Johnny English Reborn
## 7365 Monkey Shines
## 7366 Don't Say a Word
## 7367 Rules of Engagement
## 7368 Copshop
## 7369 The Mermaid: Lake of the Dead
## 7370 What Men Want
## 7371 Elizabeth Harvest
## 7372 The Ritual
## 7373 The Revenant
## 7374 Thir13en Ghosts
## 7375 The Texas Chainsaw Massacre
## 7376 Morbius
## 7377 Security
## 7378 Fright Night
## 7379 After.Life
## 7380 Romy and Michele's High School Reunion
## 7381 V/H/S/94
## 7382 Rugrats Go Wild
## 7383 In The Mix
## 7384 New York Minute
## 7385 The Jewel of the Nile
## 7386 The Hole
## 7387 The Ruthless
## 7388 The Meg
## 7389 The Expendables
## 7390 Bullit & Riper
## 7391 Swordfish
## 7392 Message from the King
## 7393 Jigsaw
## 7394 Beverly Hills Chihuahua 3: Viva la Fiesta!
## 7395 The Twilight Saga: Breaking Dawn - Part 1
## 7396 Flawless
## 7397 Fever Pitch
## 7398 American Pie 2
## 7399 The Deep House
## 7400 The Card Counter
## 7401 The Eagle
## 7402 The Replacement Killers
## 7403 Spoiled Brats
## 7404 The Motive
## 7405 12 Strong
## 7406 Ashby
## 7407 My Old Lady
## 7408 Mystery, Alaska
## 7409 The Beverly Hillbillies
## 7410 Wolf Creek
## 7411 Speed Racer
## 7412 San Andreas
## 7413 Deliver Us from Evil
## 7414 The Land Before Time III: The Time of the Great Giving
## 7415 Charlotte's Web
## 7416 Mandy
## 7417 Kidnap
## 7418 D2: The Mighty Ducks
## 7419 King Kong
## 7420 W.
## 7421 The Limehouse Golem
## 7422 Skin Trade
## 7423 The Immature
## 7424 Asterix Conquers America
## 7425 Final Destination 2
## 7426 A Dark Song
## 7427 The Outcasts
## 7428 Alexander and the Terrible, Horrible, No Good, Very Bad Day
## 7429 The Bourne Legacy
## 7430 Needful Things
## 7431 The Incredible Hulk
## 7432 Four to Dinner
## 7433 Lizzie
## 7434 Stake Land
## 7435 Mad Max Beyond Thunderdome
## 7436 Romeo Must Die
## 7437 Halloween
## 7438 1492: Conquest of Paradise
## 7439 Surf's Up 2: WaveMania
## 7440 The Upside of Anger
## 7441 Pink Flamingos
## 7442 The Battery
## 7443 The Angry Birds Movie
## 7444 J. Edgar
## 7445 Mighty Joe Young
## 7446 Screamers
## 7447 Chasing Liberty
## 7448 Billy Madison
## 7449 Percy Jackson & the Olympians: The Lightning Thief
## 7450 Spartan
## 7451 American Wedding
## 7452 We're No Angels
## 7453 The Astronaut Farmer
## 7454 House of 1000 Corpses
## 7455 Unknown Origins
## 7456 Taking Woodstock
## 7457 Dark Blue
## 7458 Beneath the Planet of the Apes
## 7459 The Catholic School
## 7460 A Babysitter's Guide to Monster Hunting
## 7461 The Crew
## 7462 The Prom
## 7463 Life of the Party
## 7464 The Eyes of My Mother
## 7465 The Water Man
## 7466 Rock Dog
## 7467 Night at the Museum: Secret of the Tomb
## 7468 Me and You
## 7469 The International
## 7470 The Time Machine
## 7471 Veronica
## 7472 Mile 22
## 7473 Monsters vs Aliens
## 7474 Beauty and the Beast: The Enchanted Christmas
## 7475 Spies Like Us
## 7476 Here Comes the Boom
## 7477 Guardian Angels
## 7478 Avalon High
## 7479 Tomorrow, When the War Began
## 7480 Anything Else
## 7481 End of the Road
## 7482 Red Corner
## 7483 Monster-in-Law
## 7484 Flirting with Disaster
## 7485 Addicted to Love
## 7486 Gone
## 7487 The Thing
## 7488 The Little Shop of Horrors
## 7489 Zoolander
## 7490 Fun with Dick and Jane
## 7491 Free Willy
## 7492 A View to a Kill
## 7493 Kin
## 7494 Being Flynn
## 7495 Wendy Wu: Homecoming Warrior
## 7496 The Yards
## 7497 Just Friends
## 7498 Code 8
## 7499 Blonde
## 7500 Redemption Day
## 7501 The Wolf of Snow Hollow
## 7502 Return of the Hero
## 7503 Every Which Way but Loose
## 7504 Feast
## 7505 The Quiet
## 7506 Elizabethtown
## 7507 The Haunting in Connecticut
## 7508 Death Warrant
## 7509 Tin Toy
## 7510 Orca
## 7511 Return of the Seven
## 7512 Deep Impact
## 7513 Rock of Ages
## 7514 3 Men and a Baby
## 7515 Throw Momma from the Train
## 7516 The Mothman Prophecies
## 7517 The Kitchen
## 7518 Naples in Veils
## 7519 Traffik
## 7520 Centurion
## 7521 Message in a Bottle
## 7522 Candy Jar
## 7523 Fuochi d'artificio
## 7524 Barely Legal
## 7525 Big Trouble
## 7526 Final Fantasy: The Spirits Within
## 7527 Tad, the Lost Explorer
## 7528 The Other Woman
## 7529 Knight and Day
## 7530 Would I Lie to You? 2
## 7531 The Invention of Lying
## 7532 The Hills Have Eyes
## 7533 Interceptor
## 7534 The Unknown Girl
## 7535 Top Five
## 7536 Moonwalkers
## 7537 Kill List
## 7538 P2
## 7539 Excision
## 7540 The Land Before Time V: The Mysterious Island
## 7541 Bird on a Wire
## 7542 Mood Indigo
## 7543 Land of the Dead
## 7544 The Prince & Me
## 7545 Paycheck
## 7546 Otherhood
## 7547 Crazy Me
## 7548 The Tourist
## 7549 Maniac Cop
## 7550 Biker Boyz
## 7551 Never Been Kissed
## 7552 Babe
## 7553 Christmas Made to Order
## 7554 Put Grandma in the Freezer
## 7555 The Exorcist III
## 7556 Neighbors
## 7557 Prince Avalanche
## 7558 Life-Size
## 7559 Cold Prey
## 7560 Funny Farm
## 7561 Buster's Mal Heart
## 7562 The Interview
## 7563 The Suite Life Movie
## 7564 The Land Before Time IV: Journey Through the Mists
## 7565 Red's Dream
## 7566 St. Elmo's Fire
## 7567 Code 46
## 7568 Entrapment
## 7569 Dumped
## 7570 The New Mutants
## 7571 The Outsider
## 7572 Hummingbird
## 7573 Jeff, Who Lives at Home
## 7574 Ilsa: She Wolf of the SS
## 7575 The Hunted
## 7576 My Summer of Love
## 7577 Songbird
## 7578 Endings, Beginnings
## 7579 The Ottoman Lieutenant
## 7580 White Bird in a Blizzard
## 7581 Youth in Revolt
## 7582 Tales from the Darkside: The Movie
## 7583 Early Man
## 7584 Horrible Bosses 2
## 7585 Red Lights
## 7586 A Bigger Splash
## 7587 Welcome Mr. President!
## 7588 Escort in Love
## 7589 I Am Number Four
## 7590 Teen Wolf
## 7591 National Lampoon's European Vacation
## 7592 Red Heat
## 7593 Untraceable
## 7594 The Edge of Love
## 7595 Blitz
## 7596 Sucker Punch
## 7597 Sabrina
## 7598 Turbo
## 7599 Magic Mike XXL
## 7600 Cadet Kelly
## 7601 Fanboys
## 7602 Get Smart
## 7603 Femme Fatale
## 7604 Chernobyl: Abyss
## 7605 Night School
## 7606 Ironclad
## 7607 In Her Shoes
## 7608 The Empty Man
## 7609 Extortion
## 7610 The Disappearance of Eleanor Rigby: Them
## 7611 A Lonely Place to Die
## 7612 Body Bags
## 7613 The Escapist
## 7614 Bright
## 7615 Blood Father
## 7616 London Has Fallen
## 7617 Transformers: Dark of the Moon
## 7618 Wimbledon
## 7619 The Death and Life of Bobby Z
## 7620 A Very Bad Friend
## 7621 Extinction
## 7622 Ain't Them Bodies Saints
## 7623 The Rules of Attraction
## 7624 I Kill Giants
## 7625 Freaks of Nature
## 7626 Waterworld
## 7627 Daddy or Mommy
## 7628 Deep Rising
## 7629 Evita
## 7630 The Wrong Missy
## 7631 The Dictator
## 7632 Passport to Paris
## 7633 The House by the Cemetery
## 7634 Bowfinger
## 7635 Nobody's Fool
## 7636 Mortal Engines
## 7637 Christmas with the Kranks
## 7638 The Omega Man
## 7639 We Can Be Heroes
## 7640 The Domestics
## 7641 Stretch
## 7642 Frankenstein's Army
## 7643 So Undercover
## 7644 Le Chef
## 7645 Greedy
## 7646 Happy Feet
## 7647 Ultras
## 7648 Time Trap
## 7649 The Art of the Steal
## 7650 Chinese Zodiac
## 7651 Tau
## 7652 God's Not Dead 2
## 7653 Maps to the Stars
## 7654 The Inbetweeners Movie
## 7655 L'amore è eterno finché dura
## 7656 Fired Up!
## 7657 Orgazmo
## 7658 Run, Fatboy, Run
## 7659 Nick of Time
## 7660 Earth and Blood
## 7661 How I Became a Superhero
## 7662 Wrong Cops
## 7663 The Return
## 7664 After the Sunset
## 7665 Rambo III
## 7666 Churchill
## 7667 The Belko Experiment
## 7668 Heavyweights
## 7669 Yours, Mine & Ours
## 7670 Dead Space: Downfall
## 7671 Return to Sender
## 7672 StreetDance 2
## 7673 Pride and Prejudice and Zombies
## 7674 Saw V
## 7675 The Brady Bunch Movie
## 7676 Just Cause
## 7677 In the Shadow of the Moon
## 7678 The Joneses
## 7679 Unlawful Entry
## 7680 The Cannonball Run
## 7681 Housesitter
## 7682 John Tucker Must Die
## 7683 Impostor
## 7684 The Prodigy
## 7685 Show Dogs
## 7686 Pee-wee's Big Holiday
## 7687 Cyberbully
## 7688 The Rugrats Movie
## 7689 Road Trip
## 7690 Rabbit Without Ears
## 7691 The Blue Lagoon
## 7692 The 355
## 7693 Gnome Alone
## 7694 On Chesil Beach
## 7695 Prospect
## 7696 Tramps
## 7697 Knowing
## 7698 One Missed Call
## 7699 The Armadillo's Prophecy
## 7700 The Inbetweeners 2
## 7701 That Awkward Moment
## 7702 Prom
## 7703 The Extraordinary Adventures of Adèle Blanc-Sec
## 7704 Shallow Hal
## 7705 Dante's Peak
## 7706 Transformers: Revenge of the Fallen
## 7707 Conquest of the Planet of the Apes
## 7708 Divorce French Style
## 7709 Krampus
## 7710 Zapped
## 7711 47 Ronin
## 7712 Palo Alto
## 7713 The Company You Keep
## 7714 Christmas Holidays
## 7715 Criminal
## 7716 Freaky Friday
## 7717 Ginger Snaps Back: The Beginning
## 7718 Ring 0
## 7719 Assault on Precinct 13
## 7720 Saw IV
## 7721 Rip Tide
## 7722 Planes: Fire & Rescue
## 7723 Magic Mike
## 7724 Blood Work
## 7725 Ip Man: The Final Fight
## 7726 The Worst Week of My Life
## 7727 This Means War
## 7728 First Daughter
## 7729 Iron Mask
## 7730 Dream House
## 7731 Blue Thunder
## 7732 The Lovebirds
## 7733 Saint Laurent
## 7734 Devil's Knot
## 7735 Varsity Blues
## 7736 Push
## 7737 28 Days
## 7738 The Producers
## 7739 Reign of Fire
## 7740 Moonraker
## 7741 Silent Night
## 7742 The Nest
## 7743 Jumpin' Jack Flash
## 7744 Wasp Network
## 7745 Teen Spirit
## 7746 Mark Felt: The Man Who Brought Down the White House
## 7747 Police Story: Lockdown
## 7748 The Back-Up Plan
## 7749 Open Season
## 7750 American Pastoral
## 7751 He Never Died
## 7752 Transporter 3
## 7753 Senseless
## 7754 Miracle at St. Anna
## 7755 Fierce Creatures
## 7756 House
## 7757 Friday the 13th Part 2
## 7758 On the Rocks
## 7759 Psychokinesis
## 7760 Emperor
## 7761 Dead Man Down
## 7762 Antz
## 7763 Anchorman 2: The Legend Continues
## 7764 Waxwork
## 7765 Meet Bill
## 7766 Rising Sun
## 7767 Blown Away
## 7768 Amsterdam
## 7769 10 Days Without Mum
## 7770 LOL
## 7771 Our Idiot Brother
## 7772 Fur: An Imaginary Portrait of Diane Arbus
## 7773 Jumper
## 7774 Terra Formars
## 7775 Laggies
## 7776 Sex and Death 101
## 7777 The Philadelphia Experiment
## 7778 S.W.A.T.
## 7779 7500
## 7780 Sniper
## 7781 The Devil's Own
## 7782 CHiPS
## 7783 The Children
## 7784 Earthquake
## 7785 Harlem Nights
## 7786 World Trade Center
## 7787 Ordinary Happiness
## 7788 xXx: Return of Xander Cage
## 7789 Dirty Work
## 7790 The Distinguished Gentleman
## 7791 The Russia House
## 7792 Cheaper by the Dozen 2
## 7793 Raising Helen
## 7794 Mindhorn
## 7795 The Brass Teapot
## 7796 Journey 2: The Mysterious Island
## 7797 Trophy Wife
## 7798 The Ladykillers
## 7799 Happily Mixed Up
## 7800 Paper Towns
## 7801 Choke
## 7802 Session 9
## 7803 Snake Eyes
## 7804 Dick Tracy
## 7805 Terminator 3: Rise of the Machines
## 7806 You Kill Me
## 7807 No Limit
## 7808 Clear History
## 7809 Grabbers
## 7810 12 Dates of Christmas
## 7811 Don't Tell Mom the Babysitter's Dead
## 7812 Shanghai Knights
## 7813 Uncorked
## 7814 Asterix and the Vikings
## 7815 Alien Resurrection
## 7816 Violet & Daisy
## 7817 Murder by Numbers
## 7818 Carrie
## 7819 The Weather Man
## 7820 Last Shift
## 7821 Fritz the Cat
## 7822 Green Card
## 7823 Day Watch
## 7824 Batman and Harley Quinn
## 7825 Death Wish
## 7826 Equals
## 7827 Jobs
## 7828 Night at the Museum: Battle of the Smithsonian
## 7829 The One
## 7830 Tolo Tolo
## 7831 Wedding Unplanned
## 7832 Sex and the City 2
## 7833 Frankenhooker
## 7834 Body Snatchers
## 7835 The End?
## 7836 David Brent: Life on the Road
## 7837 The Change-Up
## 7838 My Life in Ruins
## 7839 Dorothy Mills
## 7840 Home Again
## 7841 Dreamscape
## 7842 Last Night
## 7843 Rookie of the Year
## 7844 The Dark and the Wicked
## 7845 Adore
## 7846 Happy New Year
## 7847 Pacific Rim: Uprising
## 7848 Beauty and the Beast
## 7849 Resident Evil: The Final Chapter
## 7850 Return of the Fly
## 7851 Jurassic Park III
## 7852 Ouija: Origin of Evil
## 7853 Love & Friendship
## 7854 Under the Skin
## 7855 Herbie Rides Again
## 7856 Happiness Never Comes Alone
## 7857 Everything Must Go
## 7858 BASEketball
## 7859 No Filter
## 7860 Fatale
## 7861 Wheelman
## 7862 Anywhere but Here
## 7863 Bad Lieutenant: Port of Call - New Orleans
## 7864 Jeepers Creepers 2
## 7865 The Informant!
## 7866 The Pool
## 7867 The Lodge
## 7868 The Girl in the Spider's Web
## 7869 Blood Ties
## 7870 The Woman in Black
## 7871 Out for Justice
## 7872 Bedtime Stories
## 7873 Anger Management
## 7874 Demons 2
## 7875 The Midnight Meat Train
## 7876 Stop-Loss
## 7877 Idle Hands
## 7878 Apostle
## 7879 Happy Feet Two
## 7880 My Best Enemy
## 7881 Mission: Impossible II
## 7882 The Hummingbird Project
## 7883 Goosebumps 2: Haunted Halloween
## 7884 The Babysitter
## 7885 Happy End
## 7886 Crouching Tiger, Hidden Dragon: Sword of Destiny
## 7887 The Eiger Sanction
## 7888 Frontier(s)
## 7889 Star Wars: The Clone Wars
## 7890 The Amityville Horror
## 7891 American Gigolo
## 7892 Rebels
## 7893 Wakefield
## 7894 Fist Fight
## 7895 Fallen
## 7896 Jack Ryan: Shadow Recruit
## 7897 American Mary
## 7898 V/H/S
## 7899 A Thousand Words
## 7900 Above the Law
## 7901 Justice League
## 7902 Under Suspicion
## 7903 Brightburn
## 7904 Double Lover
## 7905 The Ledge
## 7906 The 51st State
## 7907 The F**k-It List
## 7908 Ares
## 7909 Monster Trucks
## 7910 The Zero Theorem
## 7911 Airheads
## 7912 The Texas Chainsaw Massacre: The Beginning
## 7913 The Legend of Zorro
## 7914 The Souvenir
## 7915 Eccezzziunale... veramente
## 7916 Splinter
## 7917 Jersey Girl
## 7918 Harry and the Hendersons
## 7919 Grown Ups 2
## 7920 Tightrope
## 7921 Friday the 13th: The Final Chapter
## 7922 TMNT
## 7923 Risen
## 7924 Jackass Presents: Bad Grandpa
## 7925 Like Mike
## 7926 The Quest
## 7927 Fast Food Nation
## 7928 Duplex
## 7929 Forgive Us Our Debts
## 7930 After the Dark
## 7931 A Return to Salem's Lot
## 7932 The Strangers
## 7933 Just My Luck
## 7934 Allegiant
## 7935 Keeping Up with the Joneses
## 7936 Inferno
## 7937 Nine 1/2 Weeks
## 7938 Peggy Sue Got Married
## 7939 Wayne's World 2
## 7940 Like a Cat on a Highway 2
## 7941 Rememory
## 7942 Baywatch
## 7943 Gemma Bovery
## 7944 Love and Honor
## 7945 Crossing Over
## 7946 Fortress
## 7947 Cinderella II: Dreams Come True
## 7948 Cujo
## 7949 Blades of Glory
## 7950 De Gaulle
## 7951 1BR
## 7952 Lost Girls
## 7953 Heist
## 7954 Burke & Hare
## 7955 Desierto
## 7956 Womb
## 7957 Fantozzi Retires
## 7958 Short Circuit 2
## 7959 Diabolik
## 7960 Hard Target 2
## 7961 He Even Has Your Eyes
## 7962 Una
## 7963 The Cheetah Girls: One World
## 7964 The Land Before Time VII: The Stone of Cold Fire
## 7965 In the Electric Mist
## 7966 Angel Eyes
## 7967 American Son
## 7968 Once Upon a Time in Bethlehem
## 7969 Meander
## 7970 Newness
## 7971 Mister Happiness
## 7972 The Night Before
## 7973 The November Man
## 7974 Juan of the Dead
## 7975 Battle for Terra
## 7976 The Gendarme and the Creatures from Outer Space
## 7977 Maid in Manhattan
## 7978 Spiral: From the Book of Saw
## 7979 Ad Astra
## 7980 Galveston
## 7981 Surrogates
## 7982 Renaissance Man
## 7983 Resident Evil: Welcome to Raccoon City
## 7984 Final Score
## 7985 Walking with Dinosaurs
## 7986 The Rite
## 7987 Eye for an Eye
## 7988 Willy's Wonderland
## 7989 Passengers
## 7990 Down with Love
## 7991 Primeval
## 7992 All the Old Knives
## 7993 Faces in the Crowd
## 7994 300: Rise of an Empire
## 7995 Valhalla Rising
## 7996 Wall Street: Money Never Sleeps
## 7997 Muppets from Space
## 7998 Hollywoodland
## 7999 Adult World
## 8000 The Lone Ranger
## 8001 The Sorcerer's Apprentice
## 8002 Irresistible
## 8003 Chappaquiddick
## 8004 Kill Your Friends
## 8005 Let It Snow
## 8006 And So It Goes
## 8007 Resurrection
## 8008 K-9
## 8009 Sphere
## 8010 ARQ
## 8011 In a Valley of Violence
## 8012 Wyrmwood: Road of the Dead
## 8013 Bug
## 8014 Yu-Gi-Oh! The Movie
## 8015 The Corruptor
## 8016 A Man Apart
## 8017 The Lazarus Project
## 8018 The Truth
## 8019 Accident Man
## 8020 Suck Me Shakespeer 3
## 8021 Death Race 2000
## 8022 Daylight
## 8023 Airplane II: The Sequel
## 8024 The French Minister
## 8025 So I Married an Axe Murderer
## 8026 Nightwatch
## 8027 Just Believe
## 8028 Hounds of Love
## 8029 Tourist Trap
## 8030 Gerry
## 8031 Blessed Madness
## 8032 The New Girlfriend
## 8033 The Brats
## 8034 Desperados
## 8035 The Kid Who Would Be King
## 8036 High Lane
## 8037 Nancy Drew
## 8038 Autumn in New York
## 8039 What Happens in Vegas
## 8040 The Vanishing
## 8041 Bring It On: Worldwide #Cheersmack
## 8042 Overdrive
## 8043 The Unlikely Prince
## 8044 Haunter
## 8045 Don't Hang Up
## 8046 Final Destination 5
## 8047 Carriers
## 8048 Hitman
## 8049 Forsaken
## 8050 Wolf
## 8051 The Nutcracker and the Four Realms
## 8052 Careful What You Wish For
## 8053 3 Days to Kill
## 8054 A Haunted House 2
## 8055 Them
## 8056 Keeping the Faith
## 8057 The Land Before Time VI: The Secret of Saurus Rock
## 8058 A Life Less Ordinary
## 8059 6 Bullets
## 8060 Crimson Rivers II: Angels of the Apocalypse
## 8061 The Invisible Woman
## 8062 Two Evil Eyes
## 8063 Trouble at Timpetill
## 8064 The Perfect Man
## 8065 Queen of the Damned
## 8066 The Saint
## 8067 Squared Love
## 8068 The Paramedic
## 8069 The Trouble with You
## 8070 Vivarium
## 8071 Mike and Dave Need Wedding Dates
## 8072 American Ultra
## 8073 Geostorm
## 8074 Every Secret Thing
## 8075 Proof of Life
## 8076 Vegas Vacation
## 8077 Conan the Destroyer
## 8078 The Tailor of Panama
## 8079 The Birth of a Nation
## 8080 Grudge Match
## 8081 Welcome Home Roscoe Jenkins
## 8082 Restless
## 8083 Midnight in the Switchgrass
## 8084 Keanu
## 8085 Date Night
## 8086 The Seventh Sign
## 8087 Willard
## 8088 Alien Nation
## 8089 Kindergarten Cop
## 8090 Alien: Covenant
## 8091 Fortress
## 8092 Original Sin
## 8093 Candyman
## 8094 Tarzan II
## 8095 Final Destination 3
## 8096 Gothika
## 8097 Anatomy
## 8098 Cocktail
## 8099 The Intruder
## 8100 Below
## 8101 Tequila Sunrise
## 8102 Murder at 1600
## 8103 If I Were You 2
## 8104 Runaway Bride
## 8105 Made in Italy
## 8106 The Crossing Guard
## 8107 Son
## 8108 The Desperate Hour
## 8109 Ghost in the Shell
## 8110 Snitch
## 8111 Hotel for Dogs
## 8112 Krull
## 8113 The Takedown
## 8114 Tower Heist
## 8115 Somewhere
## 8116 Jabberwocky
## 8117 Wonderland
## 8118 American Outlaws
## 8119 Desperately Seeking Susan
## 8120 Hypnotic
## 8121 Cuban Fury
## 8122 We Are the Night
## 8123 Going the Distance
## 8124 Never Say Never Again
## 8125 Snow Buddies
## 8126 Double Impact
## 8127 Ali G Indahouse
## 8128 Teenage Mutant Ninja Turtles II: The Secret of the Ooze
## 8129 The Secrets We Keep
## 8130 How to Talk to Girls at Parties
## 8131 Ice Age: Collision Course
## 8132 Smart Ass
## 8133 Excess Baggage
## 8134 Cradle 2 the Grave
## 8135 The Courier
## 8136 In Darkness
## 8137 Mars Needs Moms
## 8138 First Knight
## 8139 Werewolves Within
## 8140 Anna and the Apocalypse
## 8141 Hurricane Bianca
## 8142 Parallels
## 8143 Chloe
## 8144 The Bronze
## 8145 Transformers: The Last Knight
## 8146 Unique Brothers
## 8147 The Pacifier
## 8148 Kristy
## 8149 Journey to the Center of the Earth
## 8150 Mimic
## 8151 Whatsoeverly
## 8152 Make It Happen
## 8153 Scooby-Doo
## 8154 Lonely Hearts
## 8155 Point Blank
## 8156 Let Me Introduce You To Sofia
## 8157 The Night Eats the World
## 8158 Replicas
## 8159 The SpongeBob Movie: Sponge Out of Water
## 8160 Money Talks
## 8161 The Virtuoso
## 8162 Voyagers
## 8163 Relic
## 8164 Life
## 8165 The Woman
## 8166 Devil
## 8167 Circle
## 8168 Inferno
## 8169 I'm Still Here
## 8170 Heartbreakers
## 8171 Maniac
## 8172 Cars 2
## 8173 Our Lips Are Sealed
## 8174 Village of the Damned
## 8175 The Woman in the Window
## 8176 The Gate
## 8177 The Chronicles of Riddick: Dark Fury
## 8178 Tremors: A Cold Day in Hell
## 8179 Capture the Flag
## 8180 Number One Fan
## 8181 Paranormal Activity: Tokyo Night
## 8182 6 Souls
## 8183 April Fool's Day
## 8184 Dracula: Dead and Loving It
## 8185 The Tale of Despereaux
## 8186 Aniara
## 8187 Spooks: The Greater Good
## 8188 The Fox and the Hound 2
## 8189 The Swan Princess: Escape from Castle Mountain
## 8190 Resident Evil: Afterlife
## 8191 Evolution
## 8192 A Walk in the Woods
## 8193 Police Academy 2: Their First Assignment
## 8194 Two for the Money
## 8195 Standoff
## 8196 The Love Punch
## 8197 Zambezia
## 8198 Red State
## 8199 The Waterboy
## 8200 Thunderstruck
## 8201 Hereafter
## 8202 The Golden Compass
## 8203 Wonderstruck
## 8204 Killing Them Softly
## 8205 Sharpay's Fabulous Adventure
## 8206 The Crazies
## 8207 Poor but Rich
## 8208 Mississippi Grind
## 8209 Erased
## 8210 The Land Before Time VIII: The Big Freeze
## 8211 The Scarlet Letter
## 8212 Cobra
## 8213 Color Out of Space
## 8214 Attack on Titan II: End of the World
## 8215 Man of Tai Chi
## 8216 The Ghost of Lord Farquaad
## 8217 Il signor Diavolo
## 8218 The Queen's Corgi
## 8219 Crank: High Voltage
## 8220 Wrong Turn 2: Dead End
## 8221 Burn
## 8222 God's Not Dead
## 8223 Orange County
## 8224 French Twist
## 8225 Up for Love
## 8226 The Possession of Michael King
## 8227 Into the Storm
## 8228 Didier
## 8229 Cat People
## 8230 Lila & Eve
## 8231 Our Kind of Traitor
## 8232 The Condemned
## 8233 Sleepwalkers
## 8234 Scooby-Doo 2: Monsters Unleashed
## 8235 The Rocker
## 8236 A Wish for Christmas
## 8237 The Fifth Estate
## 8238 When in Rome
## 8239 Factory Girl
## 8240 Next
## 8241 The Monuments Men
## 8242 Dark Shadows
## 8243 All Good Things
## 8244 Fantozzi to the Rescue
## 8245 Halloween H20: 20 Years Later
## 8246 Stuart Little
## 8247 Freddy vs. Jason
## 8248 The Vanished
## 8249 Black Sheep
## 8250 Poltergeist II: The Other Side
## 8251 Terminator Salvation
## 8252 Home on the Range
## 8253 Smiley Face
## 8254 Franklyn
## 8255 The Limits of Control
## 8256 Tracers
## 8257 Lovelace
## 8258 What to Expect When You're Expecting
## 8259 Shark Tale
## 8260 A Score to Settle
## 8261 The Gendarme and the Gendarmettes
## 8262 Broken Arrow
## 8263 Cry Macho
## 8264 School's Out
## 8265 The Rewrite
## 8266 The Hit List
## 8267 Dhoom 3
## 8268 Lord of Illusions
## 8269 Bedazzled
## 8270 The Silence
## 8271 Alvin and the Chipmunks: The Road Chip
## 8272 Neuilly Yo Mama!
## 8273 Sleepover
## 8274 Snow White: A Tale of Terror
## 8275 Hotel Artemis
## 8276 Hot Tub Time Machine
## 8277 The Peacemaker
## 8278 Mother's Day
## 8279 Attack on Titan
## 8280 The Den
## 8281 Carrie
## 8282 Ronal the Barbarian
## 8283 The Final
## 8284 Jennifer Eight
## 8285 Six Days Seven Nights
## 8286 A Castle for Christmas
## 8287 XOXO
## 8288 A Very Harold & Kumar Christmas
## 8289 The Heir Apparent: Largo Winch
## 8290 Leaves of Grass
## 8291 The Ewok Adventure
## 8292 Starry Eyes
## 8293 6 Days
## 8294 Percy Jackson: Sea of Monsters
## 8295 The Cheetah Girls
## 8296 Dark Angel
## 8297 The Visitors II: The Corridors of Time
## 8298 I Now Pronounce You Chuck & Larry
## 8299 Wrong Turn
## 8300 6 Balloons
## 8301 Zoe
## 8302 Kidnapping Mr. Heineken
## 8303 The Final Cut
## 8304 Tin Cup
## 8305 The Last Summer
## 8306 The Last Kiss
## 8307 Lions for Lambs
## 8308 Despite Everything
## 8309 Love Is in the Air
## 8310 Firefox
## 8311 End of Days
## 8312 Ricochet
## 8313 Stuck Together
## 8314 That's Life
## 8315 The Escort
## 8316 Transcendence
## 8317 Cleaner
## 8318 The Arrival
## 8319 The Laundromat
## 8320 GirlHouse
## 8321 Term Life
## 8322 Hansel & Gretel: Witch Hunters
## 8323 Little Nicholas
## 8324 The I Inside
## 8325 Yamakasi
## 8326 The Chamber
## 8327 Child's Play
## 8328 The Possession
## 8329 I Love You in Every Language in the World
## 8330 Gabriel
## 8331 National Lampoon's Van Wilder
## 8332 The Adventures of Buckaroo Banzai Across the 8th Dimension
## 8333 Three Perfect Daughters
## 8334 Berlin Syndrome
## 8335 About Last Night
## 8336 Blue Crush
## 8337 The Truth About Cats & Dogs
## 8338 The Baytown Outlaws
## 8339 The Twilight Saga: New Moon
## 8340 Bandidas
## 8341 Human Nature
## 8342 5 Flights Up
## 8343 Berberian Sound Studio
## 8344 Friends with Kids
## 8345 The Tuche Family
## 8346 Death Defying Acts
## 8347 The Life Before Her Eyes
## 8348 Problem Child
## 8349 Private Benjamin
## 8350 Vertical Limit
## 8351 Beyond Re-Animator
## 8352 Celebrity
## 8353 The Wizard
## 8354 The Jack in the Box
## 8355 Billy Lynn's Long Halftime Walk
## 8356 The Decoy Bride
## 8357 Intrusion
## 8358 Love the Coopers
## 8359 We're Back! A Dinosaur's Story
## 8360 Son in Law
## 8361 Extinction
## 8362 The Shadow
## 8363 Tragedy Girls
## 8364 War of the Buttons
## 8365 Teen Spirit
## 8366 La banda dei Babbi Natale
## 8367 Jingle All the Way
## 8368 Bee Movie
## 8369 Eli
## 8370 Parker
## 8371 Antitrust
## 8372 Friendzone
## 8373 Bad Trip
## 8374 Khumba
## 8375 Unaccompanied Minors
## 8376 Raising Cain
## 8377 Ned Kelly
## 8378 Topaz
## 8379 Dark Star
## 8380 The Warning
## 8381 Good Burger
## 8382 Tarzan & Jane
## 8383 D-Railed
## 8384 Casper Meets Wendy
## 8385 Eraser
## 8386 Dark Phoenix
## 8387 101 Dalmatians II: Patch's London Adventure
## 8388 The Accidental Spy
## 8389 The Weekend Away
## 8390 Get Hard
## 8391 A Million Ways to Die in the West
## 8392 Paranormal Activity
## 8393 The Story of Us
## 8394 The Dark Half
## 8395 Bride of Chucky
## 8396 Timecop
## 8397 Grace of Monaco
## 8398 Futureworld
## 8399 Barbarella
## 8400 Blind Date
## 8401 G.B.F.
## 8402 The Wiz
## 8403 Brahms: The Boy II
## 8404 Above Suspicion
## 8405 Wilson
## 8406 Teenage Mutant Ninja Turtles: Out of the Shadows
## 8407 Grand Piano
## 8408 Stand Up Guys
## 8409 Beautiful Creatures
## 8410 Good Sam
## 8411 7 Kilos in 7 Days
## 8412 Hard to Kill
## 8413 Love in the Villa
## 8414 The First Purge
## 8415 The Signal
## 8416 The Swan Princess: The Mystery of the Enchanted Kingdom
## 8417 Igor
## 8418 Austin Powers in Goldmember
## 8419 Gretel & Hansel
## 8420 O
## 8421 National Lampoon's Loaded Weapon 1
## 8422 Ong Bak 3
## 8423 Spanglish
## 8424 The Great Wall
## 8425 A Turtle's Tale: Sammy's Adventures
## 8426 Scary Movie 3
## 8427 Mission to Mars
## 8428 Last Looks
## 8429 The Scorpion King: Book of Souls
## 8430 Red Scorpion
## 8431 The Borrowers
## 8432 Love Addict
## 8433 Desire
## 8434 The Last Stand
## 8435 The Great Buck Howard
## 8436 The Last House on the Left
## 8437 Along Came Polly
## 8438 Zardoz
## 8439 The Wretched
## 8440 Siren
## 8441 Good Kill
## 8442 Would You Rather
## 8443 Medicine Man
## 8444 Baba Yaga: Terror of the Dark Forest
## 8445 Phoenix Forgotten
## 8446 Marked for Death
## 8447 All Hallows' Eve
## 8448 Dead Snow
## 8449 Another 48 Hrs.
## 8450 Half Light
## 8451 The Ice Harvest
## 8452 The Net
## 8453 Madame
## 8454 Late Phases
## 8455 Return to Sleepaway Camp
## 8456 Fletch Lives
## 8457 Asterix & Obelix Take on Caesar
## 8458 Rim of the World
## 8459 Paradise Hills
## 8460 Monster Family
## 8461 Breathe In
## 8462 Love Is All You Need
## 8463 Surveillance
## 8464 Veronika Decides to Die
## 8465 Bringing Down the House
## 8466 The Sentinel
## 8467 Waiting for the Barbarians
## 8468 Saw 3D
## 8469 Guarding Tess
## 8470 100% Wolf
## 8471 Don Jon
## 8472 Case départ
## 8473 Sanctum
## 8474 The Boondock Saints II: All Saints Day
## 8475 Goal! II: Living the Dream
## 8476 An American Werewolf in Paris
## 8477 The Marine
## 8478 Total Recall
## 8479 2:22
## 8480 Killers
## 8481 Miami Vice
## 8482 Psycho Goreman
## 8483 Unicorn Store
## 8484 A Boss in the Living Room
## 8485 The Last Days
## 8486 No Good Deed
## 8487 The Tall Man
## 8488 Dorian Gray
## 8489 How to Lose Friends & Alienate People
## 8490 Caligula
## 8491 Hubie Halloween
## 8492 The Package
## 8493 Truth or Dare
## 8494 Full Speed
## 8495 Un fantastico via vai
## 8496 You Should Have Left
## 8497 Beach Rats
## 8498 Take Me Home Tonight
## 8499 Little Indian, Big City
## 8500 Twins
## 8501 iBoy
## 8502 Red Riding Hood
## 8503 Rubber
## 8504 The Men Who Stare at Goats
## 8505 Me Time
## 8506 Polaroid
## 8507 The Overnight
## 8508 Walk of Shame
## 8509 Crush
## 8510 War of the Buttons
## 8511 Snow White and the Huntsman
## 8512 The Human Stain
## 8513 D3: The Mighty Ducks
## 8514 Boys and Girls
## 8515 The Assent
## 8516 While We're Young
## 8517 Thanks for Sharing
## 8518 City Hall
## 8519 Indiana Jones and the Kingdom of the Crystal Skull
## 8520 Persuasion
## 8521 Manhattan Night
## 8522 Rampage
## 8523 Angels in the Outfield
## 8524 Universal Soldier: The Return
## 8525 Shaft
## 8526 Made in Italy
## 8527 Pan
## 8528 Ninja
## 8529 Come to Daddy
## 8530 The Immature: The Trip
## 8531 Waiting for Forever
## 8532 Doomsday
## 8533 The Relic
## 8534 The Invasion
## 8535 Scream 3
## 8536 Breaking In
## 8537 Open Grave
## 8538 The Big Year
## 8539 Out of the Blue
## 8540 Georgia Rule
## 8541 Edtv
## 8542 Someone Like You...
## 8543 I.Q.
## 8544 Hardware
## 8545 Line of Duty
## 8546 Next Time I'll Aim for the Heart
## 8547 Cedar Rapids
## 8548 At First Sight
## 8549 Mad Dog and Glory
## 8550 Centigrade
## 8551 L: change the WorLd
## 8552 Critters 2
## 8553 In Good Company
## 8554 Table 19
## 8555 The Truth About Emanuel
## 8556 Solomon Kane
## 8557 Guess Who
## 8558 A Guy Thing
## 8559 Awake
## 8560 Flight of the Phoenix
## 8561 Elvis & Nixon
## 8562 Sisters
## 8563 Between Two Ferns: The Movie
## 8564 Men in Black: International
## 8565 Seal Team Six: The Raid on Osama Bin Laden
## 8566 Frozen
## 8567 Tanguy
## 8568 Jaws 2
## 8569 Opposites Attract
## 8570 Get Him to the Greek
## 8571 Better Living Through Chemistry
## 8572 Pieces
## 8573 The Nines
## 8574 The Cable Guy
## 8575 Jack Frost
## 8576 The League of Extraordinary Gentlemen
## 8577 Starship Troopers: Traitor of Mars
## 8578 Die Another Day
## 8579 The Valet
## 8580 The Last Five Years
## 8581 Werewolf: The Beast Among Us
## 8582 Ghosts of Girlfriends Past
## 8583 The Jungle Book
## 8584 Domino
## 8585 Paris or Perish
## 8586 St. Trinian's
## 8587 Larry Crowne
## 8588 Black Death
## 8589 Imagine That
## 8590 Wild Hogs
## 8591 Drop Dead Fred
## 8592 Outpost
## 8593 The 6th Day
## 8594 The Grandmother
## 8595 Dragnet
## 8596 The Last Witch Hunter
## 8597 Triple 9
## 8598 London
## 8599 What a beautiful surprise
## 8600 The Machine
## 8601 Chatroom
## 8602 Deep Blue Sea
## 8603 The Corsican File
## 8604 Split Second
## 8605 Passenger 57
## 8606 Free Willy 2: The Adventure Home
## 8607 The American
## 8608 Wishmaster
## 8609 Vampire's Kiss
## 8610 Lying and Stealing
## 8611 Bring It On Again
## 8612 Criminal Activities
## 8613 Intruders
## 8614 I Love You, Beth Cooper
## 8615 Who's Harry Crumb?
## 8616 Baby Mama
## 8617 Because I Said So
## 8618 Southbound
## 8619 The Boy
## 8620 Batman v Superman: Dawn of Justice
## 8621 Beerfest
## 8622 Bill & Ted Face the Music
## 8623 Immortals
## 8624 Doghouse
## 8625 Antrum
## 8626 The Ones Below
## 8627 Nurse Betty
## 8628 RoboCop 2
## 8629 True History of the Kelly Gang
## 8630 The Forgotten
## 8631 1922
## 8632 Fatal
## 8633 Captain Corelli's Mandolin
## 8634 24 Hours to Live
## 8635 The Mercy
## 8636 Mechanic: Resurrection
## 8637 Drinking Buddies
## 8638 I Know What You Did Last Summer
## 8639 The 5th Wave
## 8640 Wolves
## 8641 Grimsby
## 8642 Oldboy
## 8643 I'll Be Home for Christmas
## 8644 Leviathan
## 8645 Disconnected
## 8646 Gloria Bell
## 8647 Pilgrimage
## 8648 I Spit on Your Grave
## 8649 My Big Fat Greek Wedding 2
## 8650 Noel
## 8651 The Tournament
## 8652 Thick as Thieves
## 8653 Wake of Death
## 8654 National Security
## 8655 Wrongfully Accused
## 8656 The Wedding Planner
## 8657 Lakeview Terrace
## 8658 The Nut Job 2: Nutty by Nature
## 8659 Mr. Popper's Penguins
## 8660 Beauty & the Briefcase
## 8661 American Ninja
## 8662 Extreme Measures
## 8663 Thinner
## 8664 The Babysitters
## 8665 Memoirs of an Invisible Man
## 8666 Sleepless
## 8667 Love Happens
## 8668 The Fan
## 8669 Sudden Death
## 8670 Senior Year
## 8671 Coexister
## 8672 London Boulevard
## 8673 The Stuff
## 8674 The Ruins
## 8675 Knockaround Guys
## 8676 Prime
## 8677 Hostel
## 8678 All You Need is Crime
## 8679 Destroyer
## 8680 Bleeding Steel
## 8681 She's Funny That Way
## 8682 Deadfall
## 8683 The Key
## 8684 The Riot Club
## 8685 Coriolanus
## 8686 The Oxford Murders
## 8687 The New Guy
## 8688 15 Minutes
## 8689 Open Season: Scared Silly
## 8690 Jack Reacher: Never Go Back
## 8691 Naomi and Ely's No Kiss List
## 8692 My Girl 2
## 8693 Hammamet
## 8694 Moschettieri del Re - La penultima missione
## 8695 Piranha
## 8696 Return from Witch Mountain
## 8697 Intolerable Cruelty
## 8698 Ghost Ship
## 8699 Flying Home
## 8700 Justin and the Knights of Valour
## 8701 The Santa Clause 2
## 8702 The Libertine
## 8703 Sono tornato
## 8704 Anon
## 8705 Victor Frankenstein
## 8706 Parental Guidance
## 8707 Righteous Kill
## 8708 Deuce Bigalow: Male Gigolo
## 8709 Battle of the Classes
## 8710 Pyewacket
## 8711 Species
## 8712 Antiviral
## 8713 Alligator
## 8714 Jimmy Neutron: Boy Genius
## 8715 Man of the Year
## 8716 Mirror Mirror
## 8717 Horsemen
## 8718 Begotten
## 8719 No One Gets Out Alive
## 8720 USS Indianapolis: Men of Courage
## 8721 Mama Weed
## 8722 Farewell, My Queen
## 8723 Winchester
## 8724 Third Person
## 8725 Catch and Release
## 8726 Closed Circuit
## 8727 The Descent: Part 2
## 8728 A Madea Family Funeral
## 8729 The Void
## 8730 Suicide Squad
## 8731 Earth to Echo
## 8732 Paranormal Activity 3
## 8733 The Karate Kid Part III
## 8734 xXx
## 8735 The Meddler
## 8736 Cooties
## 8737 Shorts
## 8738 Nim's Island
## 8739 The Golden Child
## 8740 House of Wax
## 8741 I Kissed a Girl
## 8742 The Protector 2
## 8743 Hobo with a Shotgun
## 8744 King Cobra
## 8745 Beyond the Reach
## 8746 Belli di papà
## 8747 Starship Troopers: Invasion
## 8748 The Big Wedding
## 8749 Lockout
## 8750 Deception
## 8751 Hollow Man
## 8752 The Million Dollar Hotel
## 8753 Robin Hood
## 8754 The Gambler
## 8755 The Worst Christmas of My Life
## 8756 Terminator Genisys
## 8757 The Clink of Ice
## 8758 Around the World in 80 Days
## 8759 Desperate Measures
## 8760 Hail, Caesar!
## 8761 Shadow Dancer
## 8762 Alexander
## 8763 You Will Meet a Tall Dark Stranger
## 8764 Wuthering Heights
## 8765 Solaris
## 8766 Brick Mansions
## 8767 The Deep Blue Sea
## 8768 Death to Smoochy
## 8769 Certain Women
## 8770 Josephine
## 8771 Dark Places
## 8772 Casshern
## 8773 Vidocq
## 8774 Bordello of Blood
## 8775 Married to the Mob
## 8776 Nocturne
## 8777 Kidz
## 8778 Cop Car
## 8779 Podium
## 8780 Daddy Day Care
## 8781 Racing Stripes
## 8782 Valentine's Day
## 8783 Good Luck Chuck
## 8784 Dirty Grandpa
## 8785 Point Break
## 8786 101 Dalmatians
## 8787 Birth
## 8788 Broken City
## 8789 Oz the Great and Powerful
## 8790 S1m0ne
## 8791 Acts of Vengeance
## 8792 Transformers: Age of Extinction
## 8793 Creep
## 8794 Personal Shopper
## 8795 When in Rome
## 8796 Grande, grosso e Verdone
## 8797 The Delta Force
## 8798 Leprechaun Returns
## 8799 For a Good Time, Call...
## 8800 My Name Is Bruce
## 8801 Fifty Shades of Grey
## 8802 Teenage Mutant Ninja Turtles
## 8803 Sleepaway Camp II: Unhappy Campers
## 8804 Jennifer's Body
## 8805 Jackass Presents: Bad Grandpa .5
## 8806 Sorry if I Love You
## 8807 Snow White: The Fairest of Them All
## 8808 I Could Never Be Your Woman
## 8809 Birthday Girl
## 8810 Mulholland Falls
## 8811 Lake Placid
## 8812 F*&% the Prom
## 8813 Almost Christmas
## 8814 Leprechaun 3
## 8815 Shark Bait
## 8816 A Classic Horror Story
## 8817 Stockholm
## 8818 Sahara
## 8819 The Beguiled
## 8820 No One Lives
## 8821 A Good Old Fashioned Orgy
## 8822 Cyrus
## 8823 The Divide
## 8824 The Mexican
## 8825 Muse
## 8826 Margot at the Wedding
## 8827 Chicken Little
## 8828 AVP: Alien vs. Predator
## 8829 The Jungle Book 2
## 8830 New Year's Eve
## 8831 12 Rounds
## 8832 Alpha and Omega
## 8833 Fantasy Island
## 8834 Remember Me, My Love
## 8835 Greenberg
## 8836 Bad News Bears
## 8837 The Signal
## 8838 RV
## 8839 365 Days: This Day
## 8840 Playing It Cool
## 8841 Queen of the Desert
## 8842 The Solitude of Prime Numbers
## 8843 Fighting
## 8844 Must Love Dogs
## 8845 The Big Hit
## 8846 The Front Runner
## 8847 The Legend of Tarzan
## 8848 The Rookie
## 8849 Child's Play 3
## 8850 The Bride
## 8851 Tamara Drewe
## 8852 Cargo
## 8853 Chopping Mall
## 8854 Emmanuelle
## 8855 Herbie Goes to Monte Carlo
## 8856 The Hitcher
## 8857 The Grudge
## 8858 Ignorance Is Bliss
## 8859 Seeking Justice
## 8860 Super Troopers 2
## 8861 Serial (Bad) Weddings 2
## 8862 Smart People
## 8863 Welcome Back Mr. President
## 8864 Bunraku
## 8865 The Comics
## 8866 Welcome to Me
## 8867 The Haunting in Connecticut 2: Ghosts of Georgia
## 8868 The Student
## 8869 Mary Reilly
## 8870 In the Blood
## 8871 Forbidden Empire
## 8872 Ca$h
## 8873 Meatballs
## 8874 Dangerous Liaisons
## 8875 Mom or Dad?
## 8876 Expelled
## 8877 Saludos Amigos
## 8878 In the Land of Women
## 8879 New York, I Love You
## 8880 Into the Blue
## 8881 The Kid
## 8882 Free Birds
## 8883 Casino Jack
## 8884 The Horde
## 8885 Beowulf
## 8886 Beverly Hills Cop III
## 8887 Abduction
## 8888 Little Nicky
## 8889 My Life Without Me
## 8890 Red Dot
## 8891 Volcano
## 8892 Lara Croft: Tomb Raider
## 8893 Sentinelle
## 8894 Suburbicon
## 8895 The Family Fang
## 8896 Planes
## 8897 Frenemies
## 8898 She-Devil
## 8899 Little Man
## 8900 Cam
## 8901 All Dogs Go to Heaven 2
## 8902 Largo Winch II
## 8903 The Rum Diary
## 8904 Venice Calling
## 8905 The Clearing
## 8906 Gringo
## 8907 Welcome to the Punch
## 8908 Duplicity
## 8909 Black Water
## 8910 Ri¢hie Ri¢h
## 8911 Clash of the Titans
## 8912 Down and Out in Beverly Hills
## 8913 The Glass House
## 8914 Rogue City
## 8915 Curse of Chucky
## 8916 Only God Forgives
## 8917 White Zombie
## 8918 The Spy Next Door
## 8919 Our Brand Is Crisis
## 8920 All My Friends Are Dead
## 8921 Mother/Android
## 8922 Sinister 2
## 8923 Butter
## 8924 Silent Night, Deadly Night
## 8925 Air Buddies
## 8926 Friday the 13th Part III
## 8927 Si accettano miracoli
## 8928 The Remaining
## 8929 A Perfect Plan
## 8930 Vox Lux
## 8931 Solitary Man
## 8932 Dick
## 8933 The Funhouse
## 8934 Missing in Action 2: The Beginning
## 8935 The Doorman
## 8936 Absolutely Anything
## 8937 Escape from L.A.
## 8938 A Nice Girl Like You
## 8939 Money Train
## 8940 The Dyatlov Pass Incident
## 8941 Blade: Trinity
## 8942 The Specialist
## 8943 Husk
## 8944 Sahara
## 8945 Big Fat Liar
## 8946 The Nun
## 8947 The Boss
## 8948 Gnomeo & Juliet
## 8949 A Nightmare on Elm Street 4: The Dream Master
## 8950 New Biz in the Hood
## 8951 Assault on Wall Street
## 8952 Nothing to Declare
## 8953 Stay Alive
## 8954 The Benchwarmers
## 8955 3 from Hell
## 8956 Terror Train
## 8957 Whatever It Takes
## 8958 Very Good Girls
## 8959 Undercover Brother
## 8960 Stay Away from Me
## 8961 Any Which Way You Can
## 8962 Earthquake Bird
## 8963 My Son
## 8964 Unforgettable
## 8965 Backcountry
## 8966 Funny People
## 8967 You People
## 8968 The Turning
## 8969 Straw Dogs
## 8970 1941
## 8971 The Captive
## 8972 Barnyard
## 8973 SAS: Red Notice
## 8974 Stowaway
## 8975 Shimmer Lake
## 8976 Everyone's Hero
## 8977 He's Out There
## 8978 Perfect Sisters
## 8979 Identity Thief
## 8980 Beverly Hills Chihuahua 2
## 8981 Tokyo Gore Police
## 8982 Breathless
## 8983 Ravenous
## 8984 In the Shadow of Iris
## 8985 RoboCop
## 8986 This Is 40
## 8987 The Bounty Hunter
## 8988 Planet 51
## 8989 Pinocchio
## 8990 Under Siege 2: Dark Territory
## 8991 6 Below: Miracle on the Mountain
## 8992 The Two Faces of January
## 8993 Open Season 2
## 8994 Tesla
## 8995 Into the Forest
## 8996 Addicted
## 8997 Phantom
## 8998 The Five-Year Engagement
## 8999 Sky Captain and the World of Tomorrow
## 9000 It Comes at Night
## 9001 Marauders
## 9002 Date and Switch
## 9003 Race to Witch Mountain
## 9004 S.W.A.T.: Under Siege
## 9005 Bandslam
## 9006 The Object of My Affection
## 9007 The Break-Up
## 9008 Little Joe
## 9009 Like Mother, Like Daughter
## 9010 Josephine, Pregnant & Fabulous
## 9011 Problem Child 2
## 9012 Downrange
## 9013 Fading Gigolo
## 9014 The Wolfman
## 9015 Poseidon
## 9016 Slam
## 9017 I babysitter
## 9018 The Sacrament
## 9019 The Comeback Trail
## 9020 Puppet Master
## 9021 Dead Birds
## 9022 You Choose!
## 9023 Italiano medio
## 9024 A Hologram for the King
## 9025 The Cobbler
## 9026 Ken Park
## 9027 Shopgirl
## 9028 Exodus: Gods and Kings
## 9029 Absentia
## 9030 Censor
## 9031 Pushing Tin
## 9032 The Alamo
## 9033 Divorce Club
## 9034 What Keeps You Alive
## 9035 Underworld: Blood Wars
## 9036 Life Partners
## 9037 Close
## 9038 The Pink Panther
## 9039 Father Figures
## 9040 When the Bough Breaks
## 9041 A Haunted House
## 9042 Family Is Family
## 9043 One Wild Moment
## 9044 Mutant Pumpkins from Outer Space
## 9045 Hatchet
## 9046 Mr. Deeds
## 9047 Paris Can Wait
## 9048 Q
## 9049 Air America
## 9050 Crocodile Dundee II
## 9051 Io sono Tempesta
## 9052 7 Days in Entebbe
## 9053 The Presidio
## 9054 The Dark
## 9055 Charlie's Angels
## 9056 MILF
## 9057 I Think We're Alone Now
## 9058 Pet
## 9059 Neighbors 2: Sorority Rising
## 9060 Barbershop 2: Back in Business
## 9061 Dead Weight
## 9062 Tall Girl 2
## 9063 Spiderhead
## 9064 Reasonable Doubt
## 9065 Legion
## 9066 The Black Hole
## 9067 The Town that Dreaded Sundown
## 9068 Automata
## 9069 21 & Over
## 9070 Encino Man
## 9071 54
## 9072 The Campaign
## 9073 Il paradiso all'improvviso
## 9074 3 Men and a Little Lady
## 9075 Blue Steel
## 9076 Running with Scissors
## 9077 Hostel: Part II
## 9078 Come Away
## 9079 Orbiter 9
## 9080 Wind Chill
## 9081 Hard Rain
## 9082 Mortal Kombat
## 9083 Love and Other Disasters
## 9084 Simply Black
## 9085 S.W.A.T.: Firefight
## 9086 Hitman: Agent 47
## 9087 3000 Miles to Graceland
## 9088 Cult of Chucky
## 9089 Night Moves
## 9090 Fantozzi in Heaven
## 9091 Dennis the Menace
## 9092 A Nightmare on Elm Street Part 2: Freddy's Revenge
## 9093 10 Years
## 9094 R.I.P.D.
## 9095 Department Store
## 9096 The Stepfather
## 9097 Hostile
## 9098 Sweet Virginia
## 9099 Striking Distance
## 9100 Alvin and the Chipmunks
## 9101 Ma
## 9102 2012
## 9103 100 Girls
## 9104 Dom Hemingway
## 9105 Jack the Giant Slayer
## 9106 The Ordeal
## 9107 Barbecue
## 9108 Missing in Action
## 9109 Firewall
## 9110 The Killer Inside Me
## 9111 The Perfect Score
## 9112 Batman Ninja
## 9113 Amore, bugie e calcetto
## 9114 Blank Check
## 9115 Four Christmases
## 9116 The Parisian B*
## 9117 The Forger
## 9118 Cry_Wolf
## 9119 Sgt. Bilko
## 9120 Turbo: A Power Rangers Movie
## 9121 All the King's Men
## 9122 Redirected
## 9123 Last Call for Nowhere
## 9124 Big Momma's House
## 9125 The Three Musketeers
## 9126 The Ward
## 9127 Kiss Me Again
## 9128 Raw Deal
## 9129 Firestarter
## 9130 House at the End of the Street
## 9131 Resident Evil: Retribution
## 9132 New in Town
## 9133 Robinson Crusoe
## 9134 Ricki and the Flash
## 9135 Jane Got a Gun
## 9136 Alfie
## 9137 Modalità aereo
## 9138 Battleship
## 9139 Vanity Fair
## 9140 Kicking & Screaming
## 9141 Leatherheads
## 9142 Baskin
## 9143 Death Race: Inferno
## 9144 Extract
## 9145 Tremors 3: Back to Perfection
## 9146 Omen III: The Final Conflict
## 9147 Maximum Overdrive
## 9148 To the Wonder
## 9149 Death at a Funeral
## 9150 Analyze That
## 9151 Mystery Men
## 9152 Splice
## 9153 Antigang
## 9154 The Three Stooges
## 9155 Kung Fu Yoga
## 9156 Ratchet & Clank
## 9157 Twelve
## 9158 Beethoven
## 9159 One Night at McCool's
## 9160 Bad Ass
## 9161 The Brothers Grimm
## 9162 The Swarm
## 9163 Christmas with a View
## 9164 Trainwreck
## 9165 Trespass Against Us
## 9166 Death Race 2
## 9167 13
## 9168 The Blackcoat's Daughter
## 9169 7th Floor
## 9170 Starsky & Hutch
## 9171 47 Meters Down
## 9172 Not Another Teen Movie
## 9173 Firefighters
## 9174 In the Earth
## 9175 Lost River
## 9176 Come tu mi vuoi
## 9177 A House of Your Dreams
## 9178 Replicant
## 9179 The Eye
## 9180 The Midnight Sky
## 9181 Oh, Ramona!
## 9182 Reno 911!: Miami
## 9183 Henry's Crime
## 9184 Scary Movie 2
## 9185 Population 436
## 9186 In Bed with Victoria
## 9187 Arthur 3: The War of the Two Worlds
## 9188 The First Star
## 9189 Backtrack
## 9190 The Smurfs 2
## 9191 The Hole
## 9192 Vampires vs. the Bronx
## 9193 Joint Custody
## 9194 Mighty Morphin Power Rangers: The Movie
## 9195 Money Plane
## 9196 Once Bitten
## 9197 Are We Done Yet?
## 9198 Jeepers Creepers: Reborn
## 9199 The Smurfs
## 9200 The Man with One Red Shoe
## 9201 Morgan
## 9202 The Full House
## 9203 To Rome with Love
## 9204 Men Vs Women
## 9205 Domestic Disturbance
## 9206 Spy Kids
## 9207 Fantastic Four
## 9208 Rabbit Without Ears 2
## 9209 Barely Lethal
## 9210 Assassination of a High School President
## 9211 Ugly Melanie
## 9212 Quarantine
## 9213 Wicked Little Things
## 9214 Fred Claus
## 9215 Rules Don't Apply
## 9216 The Double
## 9217 Failure to Launch
## 9218 Ava
## 9219 I'm So Excited!
## 9220 Young Adult
## 9221 Cirque du Freak: The Vampire's Assistant
## 9222 Bratz
## 9223 Alatriste
## 9224 Punisher: War Zone
## 9225 Cutthroat Island
## 9226 Welcome to the North
## 9227 Ben 10: Race Against Time
## 9228 Drillbit Taylor
## 9229 Perfect Stranger
## 9230 Birth of the Dragon
## 9231 Sotto una buona stella
## 9232 Le Mac
## 9233 Police Academy 3: Back in Training
## 9234 Bogus
## 9235 The Owners
## 9236 Alien Abduction
## 9237 That's My Boy
## 9238 G.I. Joe: The Rise of Cobra
## 9239 All the Right Moves
## 9240 The Good German
## 9241 Deep Blue Sea 3
## 9242 High Flying Bird
## 9243 Till Luck Do Us Part 2
## 9244 Judge Dredd
## 9245 R.A.I.D. Special Unit
## 9246 Hangman
## 9247 The Little Hours
## 9248 Song One
## 9249 Rocky V
## 9250 Things Heard & Seen
## 9251 Priest
## 9252 Three to Tango
## 9253 Into the Woods
## 9254 A Few Best Men
## 9255 C'era un cinese in coma
## 9256 The Patriot
## 9257 Curve
## 9258 True Memoirs of an International Assassin
## 9259 The Nut Job
## 9260 Hercules
## 9261 High Life
## 9262 C.H.U.D.
## 9263 When a Stranger Calls
## 9264 An American Pickle
## 9265 The Vigil
## 9266 It's All About Karma
## 9267 French Women
## 9268 The To Do List
## 9269 Legally Blondes
## 9270 Big Momma's House 2
## 9271 The Skulls
## 9272 School of Thieves
## 9273 The Tunnel
## 9274 Paranormal Activity 2
## 9275 Obsessed
## 9276 City by the Sea
## 9277 Collateral Damage
## 9278 88 Minutes
## 9279 The Lost Prince
## 9280 Nine Lives
## 9281 Annabelle
## 9282 Johnny Mnemonic
## 9283 Ibiza
## 9284 War on Everyone
## 9285 A Beautiful Wife
## 9286 Multiplicity
## 9287 Braddock: Missing in Action III
## 9288 Just Married
## 9289 Lara Croft: Tomb Raider - The Cradle of Life
## 9290 The Midnight Man
## 9291 Us in the U.S.
## 9292 Fire Down Below
## 9293 Miss Congeniality 2: Armed and Fabulous
## 9294 Read It and Weep
## 9295 Don't Be Afraid of the Dark
## 9296 Bounce
## 9297 The Chase
## 9298 Shadow in the Cloud
## 9299 Cold Pursuit
## 9300 Life of Crime
## 9301 The Manual of Love
## 9302 Staying Alive
## 9303 Blood: The Last Vampire
## 9304 Boo 2! A Madea Halloween
## 9305 Bound to Vengeance
## 9306 Tales of Halloween
## 9307 Hop
## 9308 The Pink Panther 2
## 9309 The Core
## 9310 Black Sheep
## 9311 Star Trek V: The Final Frontier
## 9312 The Happytime Murders
## 9313 I Spit on Your Grave III: Vengeance is Mine
## 9314 A Christmas Horror Story
## 9315 We Are What We Are
## 9316 Plan de table
## 9317 Stuart Little 2
## 9318 Project Gemini
## 9319 Aftermath
## 9320 Loving Only You
## 9321 Delirium
## 9322 The Hunter's Prayer
## 9323 The NeverEnding Story II: The Next Chapter
## 9324 Friday the 13th
## 9325 The Art of War
## 9326 Major League II
## 9327 Timeline
## 9328 Fatal Affair
## 9329 The Gunman
## 9330 Naked
## 9331 Captive
## 9332 Young Ones
## 9333 Cleanskin
## 9334 Killshot
## 9335 The Prince & Me 2: The Royal Wedding
## 9336 The Ringer
## 9337 Michael
## 9338 Color of Night
## 9339 Il vegetale
## 9340 Boo! A Madea Halloween
## 9341 Escape from Planet Earth
## 9342 The Ring Two
## 9343 The Man
## 9344 Wrong Turn 4: Bloody Beginnings
## 9345 The French Kissers
## 9346 Prey
## 9347 The X Files: I Want to Believe
## 9348 Special Correspondents
## 9349 247°F
## 9350 Xanadu
## 9351 The Woods
## 9352 Pet Sematary
## 9353 Il pesce innamorato
## 9354 Minutemen
## 9355 Man of the House
## 9356 Cut Bank
## 9357 Sausage Party
## 9358 Battle: Los Angeles
## 9359 My Stepmother Is an Alien
## 9360 Four Rooms
## 9361 Maggie's Plan
## 9362 Masterminds
## 9363 The Resident
## 9364 Death Wish 4: The Crackdown
## 9365 The Punisher
## 9366 Battle for the Planet of the Apes
## 9367 Staten Island Summer
## 9368 30 Minutes or Less
## 9369 Arthur and the Revenge of Maltazard
## 9370 Planet of the Apes
## 9371 My Big Gay Italian Wedding
## 9372 The Canal
## 9373 Madame Bovary
## 9374 Bad Milo!
## 9375 Life or Something Like It
## 9376 Miss Meadows
## 9377 Three Steps Over Heaven
## 9378 Empire of the Wolves
## 9379 Superman Returns
## 9380 The Little Stranger
## 9381 Family Heist
## 9382 Amityville II: The Possession
## 9383 Ca$h
## 9384 Ever Been to the Moon?
## 9385 The Bay
## 9386 Old People
## 9387 Deep Water
## 9388 Gamer
## 9389 The Order
## 9390 Acts of Violence
## 9391 Black Tide
## 9392 First Kill
## 9393 Paranoia
## 9394 Hush
## 9395 The Flock
## 9396 Your Son
## 9397 Quarantine 2: Terminal
## 9398 3 Ninjas
## 9399 Cosmopolis
## 9400 Win a Date with Tad Hamilton!
## 9401 Laws of Attraction
## 9402 Eight Legged Freaks
## 9403 Texas Killing Fields
## 9404 Second Chance
## 9405 Satan
## 9406 The Whole Ten Yards
## 9407 9 Songs
## 9408 The Reef
## 9409 Fame
## 9410 Fool's Gold
## 9411 Taxi 3
## 9412 Pressure
## 9413 Dragon Ball Z: Bio-Broly
## 9414 The Messengers
## 9415 Wrath of the Titans
## 9416 The Ant Bully
## 9417 Bubble Boy
## 9418 Win It All
## 9419 White Girl
## 9420 The Return of Swamp Thing
## 9421 Our Happy Holiday
## 9422 Ex
## 9423 The Heartbreak Kid
## 9424 The Contract
## 9425 Pixels
## 9426 Nine Months
## 9427 The Curse of La Llorona
## 9428 The Last King
## 9429 Banshee Chapter
## 9430 Hick
## 9431 The Tuxedo
## 9432 Poveri ma ricchissimi
## 9433 The Perfect Guy
## 9434 Clown
## 9435 360
## 9436 Children of the Corn
## 9437 Ring 2
## 9438 Picture Perfect
## 9439 Prom Night
## 9440 Surviving Christmas
## 9441 47 Meters Down: Uncaged
## 9442 Rough Night
## 9443 Il ricco, il povero e il maggiordomo
## 9444 Alvin and the Chipmunks: Chipwrecked
## 9445 Horizon Line
## 9446 Arkansas
## 9447 Ben-Hur
## 9448 The Hunters
## 9449 America's Sweethearts
## 9450 The Do-Over
## 9451 Boulevard
## 9452 My Cousin Rachel
## 9453 Let Us Prey
## 9454 The Sweeney
## 9455 Armored
## 9456 License to Wed
## 9457 Destination Wedding
## 9458 The Atticus Institute
## 9459 Beyond a Reasonable Doubt
## 9460 Hot Pursuit
## 9461 Bait
## 9462 The Pact
## 9463 Beyond the Black Rainbow
## 9464 Final Analysis
## 9465 Doctor Dolittle
## 9466 The Stepford Wives
## 9467 Urban Legend
## 9468 Let's Go to Prison
## 9469 Metro
## 9470 The Maiden Heist
## 9471 Red Planet
## 9472 Herbie Fully Loaded
## 9473 Jenny's Wedding
## 9474 Hatchet III
## 9475 Iron Sky
## 9476 Columbus Circle
## 9477 The Thaw
## 9478 Playmobil: The Movie
## 9479 Blue Mountain State: The Rise of Thadland
## 9480 The Tax Collector
## 9481 Flatliners
## 9482 Synchronicity
## 9483 Head Over Heels
## 9484 Renegades
## 9485 The Three Kings
## 9486 The Reaping
## 9487 The Hurricane Heist
## 9488 Goon: Last of the Enforcers
## 9489 Hit & Run
## 9490 Darkness
## 9491 The Rage: Carrie 2
## 9492 Mara
## 9493 Primal
## 9494 2 Days in New York
## 9495 Fantozzi The Return
## 9496 Dinner for Schmucks
## 9497 The Dark Tower
## 9498 Airport 1975
## 9499 Porky's II: The Next Day
## 9500 In Fabric
## 9501 Tarzan
## 9502 Masters of the Universe
## 9503 Joe Versus the Volcano
## 9504 Victor Crowley
## 9505 Abraham Lincoln: Vampire Hunter
## 9506 Momentum
## 9507 Ra.One
## 9508 The Killing Room
## 9509 Based on a True Story
## 9510 You Don't Mess with the Zohan
## 9511 Fire with Fire
## 9512 Invasion U.S.A.
## 9513 Amusement
## 9514 A Fantastic Fear of Everything
## 9515 American Hero
## 9516 The Factory
## 9517 Cockneys vs Zombies
## 9518 The Texas Chainsaw Massacre 2
## 9519 Chain Reaction
## 9520 High-Rise
## 9521 Haywire
## 9522 Adios Freakin’ Monsters from Venus
## 9523 The Green Inferno
## 9524 First Sunday
## 9525 Boomerang
## 9526 The Angriest Man in Brooklyn
## 9527 Love Lasts Three Years
## 9528 Me, Them and Lara
## 9529 Disturbing Behavior
## 9530 Earth Girls Are Easy
## 9531 Swing Vote
## 9532 The In-Laws
## 9533 Cube Zero
## 9534 Back to Mom's
## 9535 Lavender
## 9536 Jean-Philippe
## 9537 Max Steel
## 9538 Detention
## 9539 The Hills Run Red
## 9540 Ask Me Anything
## 9541 The Vanishing
## 9542 Big Ass Spider!
## 9543 Murder Party
## 9544 Cabin Fever
## 9545 Joshua
## 9546 Legionnaire
## 9547 Love Wedding Repeat
## 9548 The House Bunny
## 9549 Exit Wounds
## 9550 Inconceivable
## 9551 Something New
## 9552 Viral
## 9553 Girl Most Likely
## 9554 Survivor
## 9555 Red Dawn
## 9556 Hudson Hawk
## 9557 Picture This
## 9558 My Best Friend's Girl
## 9559 Hellraiser III: Hell on Earth
## 9560 The Crucifixion
## 9561 Hell Fest
## 9562 The Dentist
## 9563 Garfield
## 9564 Billionaire Boys Club
## 9565 Evidence
## 9566 Mickey Blue Eyes
## 9567 Beverly Hills Ninja
## 9568 Daughter of the Wolf
## 9569 Office Christmas Party
## 9570 Aliens in the Attic
## 9571 Hall Pass
## 9572 Drop Zone
## 9573 Kaboom
## 9574 Snow Dogs
## 9575 Immortal
## 9576 OSS 117: From Africa with Love
## 9577 Z for Zachariah
## 9578 Knights of Badassdom
## 9579 The Last Exorcism
## 9580 Jay and Silent Bob Reboot
## 9581 The English Teacher
## 9582 Pathfinder
## 9583 The Hole in the Ground
## 9584 Bulletproof
## 9585 The Volcano
## 9586 The Slumber Party Massacre
## 9587 Artemis Fowl
## 9588 Black Water
## 9589 Noah
## 9590 Little Fockers
## 9591 Maximum Risk
## 9592 Diana
## 9593 Alvin and the Chipmunks: The Squeakquel
## 9594 Revenge of the Nerds II: Nerds in Paradise
## 9595 Non c'è campo
## 9596 You Get Me
## 9597 The Hallow
## 9598 Open Season 3
## 9599 Runner Runner
## 9600 Trauma Center
## 9601 Sibyl
## 9602 Flubber
## 9603 The House
## 9604 Wild Card
## 9605 Playing for Keeps
## 9606 Reindeer Games
## 9607 Si vive una volta sola
## 9608 Redcon-1
## 9609 Men at Work
## 9610 The Predator
## 9611 Voice from the Stone
## 9612 Indovina chi viene a Natale?
## 9613 Tremors 4: The Legend Begins
## 9614 The Banger Sisters
## 9615 Rumor Has It...
## 9616 Buffy the Vampire Slayer
## 9617 The Getaway
## 9618 Captive State
## 9619 Universal Soldier: Regeneration
## 9620 The Black Dahlia
## 9621 Semi-Pro
## 9622 The Haunted Mansion
## 9623 Lucky You
## 9624 On the Road
## 9625 Get Over It
## 9626 Fistful of Vengeance
## 9627 Skiptrace
## 9628 Something to Talk About
## 9629 Some Kind of Beautiful
## 9630 Sherlock Gnomes
## 9631 Little Evil
## 9632 K-911
## 9633 The Nutty Professor
## 9634 Kill Me Three Times
## 9635 Thunder Force
## 9636 American Pie Presents: Beta House
## 9637 The Wind
## 9638 The Man with the Iron Fists 2
## 9639 Smokey and the Bandit II
## 9640 My Favorite Martian
## 9641 Gods of Egypt
## 9642 Admission
## 9643 Dark Water
## 9644 Good on Paper
## 9645 Legally Blonde 2: Red, White & Blonde
## 9646 El Camino Christmas
## 9647 Dark Was the Night
## 9648 D-Tox
## 9649 Come and Find Me
## 9650 Psycho IV: The Beginning
## 9651 Catch That Kid
## 9652 Kiss of Death
## 9653 Moms' Night Out
## 9654 Serena
## 9655 The Incredible Burt Wonderstone
## 9656 Rogue
## 9657 Skylines
## 9658 Wish Upon
## 9659 Our House
## 9660 Pathology
## 9661 Leprechaun
## 9662 Are We There Yet?
## 9663 Megalodon
## 9664 The Tuche Family: The American Dream
## 9665 Arthur
## 9666 Misconduct
## 9667 Cyborg
## 9668 White Noise
## 9669 Yogi Bear
## 9670 Godzilla
## 9671 The Scary House
## 9672 Captain Ron
## 9673 The Final Destination
## 9674 Confessions of a Teenage Drama Queen
## 9675 The Night Listener
## 9676 The Last Legion
## 9677 Cadaver
## 9678 Fun Size
## 9679 Joe Dirt
## 9680 Brüno
## 9681 Twin Murders: The Silence of the White City
## 9682 House on Haunted Hill
## 9683 See You Yesterday
## 9684 The Strangers: Prey at Night
## 9685 Honeymoon in Vegas
## 9686 Æon Flux
## 9687 Shocker
## 9688 I Feel Good
## 9689 Knight of Cups
## 9690 Wrong Turn 3: Left for Dead
## 9691 Vengeance: A Love Story
## 9692 Sabotage
## 9693 G.I. Joe: Retaliation
## 9694 Animals United
## 9695 When Angels Sleep
## 9696 They Came Together
## 9697 A Case of You
## 9698 Machete Kills
## 9699 Horse Girl
## 9700 Fantastic Four: Rise of the Silver Surfer
## 9701 12 Feet Deep
## 9702 Norbit
## 9703 You, Me and Dupree
## 9704 The Guilt Trip
## 9705 The Box
## 9706 7 Seconds
## 9707 The Dinosaur Project
## 9708 Striptease
## 9709 10
## 9710 Alone
## 9711 Return to House on Haunted Hill
## 9712 The Cloverfield Paradox
## 9713 The Day the Earth Stood Still
## 9714 Chapter 27
## 9715 Grand Isle
## 9716 Penny Pincher!
## 9717 Cowboys & Aliens
## 9718 The Fly II
## 9719 Spy Kids 2: The Island of Lost Dreams
## 9720 George of the Jungle
## 9721 The Paperboy
## 9722 War, Inc.
## 9723 Mute
## 9724 Joe's Apartment
## 9725 Freaks – You're One of Us
## 9726 Diary of the Dead
## 9727 Airport '77
## 9728 By the Sea
## 9729 Bad Teacher
## 9730 An American Haunting
## 9731 Ogni maledetto Natale
## 9732 The Rental
## 9733 Classe Z
## 9734 The Sitter
## 9735 The Medallion
## 9736 The Cured
## 9737 Savages
## 9738 Bullet to the Head
## 9739 Cool World
## 9740 Lady in the Water
## 9741 Last Days
## 9742 War Machine
## 9743 On the Other Side of the Tracks
## 9744 The Beach Bum
## 9745 Legacy of Lies
## 9746 I Am Wrath
## 9747 Truth or Dare
## 9748 College Road Trip
## 9749 Babylon A.D.
## 9750 Budapest
## 9751 [REC]⁴ Apocalypse
## 9752 Mirrors 2
## 9753 The Astronaut's Wife
## 9754 Without a Paddle
## 9755 The Rhythm Section
## 9756 The Bonfire of the Vanities
## 9757 The Stendhal Syndrome
## 9758 Cop Out
## 9759 White Noise
## 9760 Taxi
## 9761 The Omen
## 9762 We Are Still Here
## 9763 Regression
## 9764 Tifosi
## 9765 Dreamcatcher
## 9766 The Damned
## 9767 View from the Top
## 9768 Babe: Pig in the City
## 9769 The Watch
## 9770 The Green Hornet
## 9771 Taxi 4
## 9772 The Scorpion King
## 9773 A.C.O.D.
## 9774 Kill Command
## 9775 The Oranges
## 9776 Flipper
## 9777 Twisted
## 9778 L'abbiamo fatta grossa
## 9779 The Juror
## 9780 The Manor
## 9781 The Possession of Hannah Grace
## 9782 Jeruzalem
## 9783 12 Rounds 2: Reloaded
## 9784 Camping
## 9785 An Easy Girl
## 9786 Kim Possible
## 9787 The Lawnmower Man
## 9788 Suspect Zero
## 9789 Evan Almighty
## 9790 Leatherface
## 9791 Bliss
## 9792 Cub
## 9793 Jem and the Holograms
## 9794 Dumb and Dumber To
## 9795 Hell
## 9796 Miss March
## 9797 Leprechaun 2
## 9798 Rebound
## 9799 Hellboy
## 9800 Soap Opera
## 9801 Nine
## 9802 Collide
## 9803 Universal Soldier: Day of Reckoning
## 9804 My Soul to Take
## 9805 COVID-21: Lethal Virus
## 9806 In the Tall Grass
## 9807 Friend Request
## 9808 Finalmente la felicità
## 9809 Whiteout
## 9810 The Wild
## 9811 Retreat
## 9812 The Abandoned
## 9813 Employee of the Month
## 9814 Psycho III
## 9815 King Solomon's Mines
## 9816 Spinning Man
## 9817 Over Her Dead Body
## 9818 The Crow: City of Angels
## 9819 Garfield: A Tail of Two Kitties
## 9820 Dude
## 9821 One for the Money
## 9822 Down to Earth
## 9823 Ghost Rider
## 9824 Terminal
## 9825 Unfriended
## 9826 Slaughterhouse Rulez
## 9827 Wanderlust
## 9828 Darkness Falls
## 9829 Vanquish
## 9830 Hatchet II
## 9831 Couples Retreat
## 9832 Shutter
## 9833 Saving Silverman
## 9834 Tremors 5: Bloodlines
## 9835 Showgirls
## 9836 Dirty Dancing
## 9837 Hulk
## 9838 Death Wish V: The Face of Death
## 9839 The Grudge
## 9840 Down a Dark Hall
## 9841 Don't Knock Twice
## 9842 I Give It a Year
## 9843 The Brice Man
## 9844 Joy Ride 2: Dead Ahead
## 9845 7 Women and a Murder
## 9846 The Polka King
## 9847 Superchondriac
## 9848 Showtime
## 9849 Big Mommas: Like Father, Like Son
## 9850 Beethoven's 2nd
## 9851 The Numbers Station
## 9852 The Nun
## 9853 Blood and Chocolate
## 9854 Dude, Where's My Car?
## 9855 Fatman
## 9856 All the Boys Love Mandy Lane
## 9857 Women Vs Men
## 9858 The Misfits
## 9859 Pompeii
## 9860 A Serbian Film
## 9861 The Other Side of the Door
## 9862 Air Bud
## 9863 Incognito
## 9864 Random Hearts
## 9865 The Covenant
## 9866 Head of State
## 9867 Wine Country
## 9868 The Transporter Refueled
## 9869 Would I Lie to You? 3
## 9870 A Nightmare on Elm Street
## 9871 Open Water
## 9872 From Prada to Nada
## 9873 Taxi 5
## 9874 The Emoji Movie
## 9875 Deck the Halls
## 9876 Burying the Ex
## 9877 House II: The Second Story
## 9878 Five Children and It
## 9879 100 Feet
## 9880 There's Someone Inside Your House
## 9881 Killing Season
## 9882 Sorority Row
## 9883 White Noise 2: The Light
## 9884 Welcome Aboard
## 9885 Merry Christmas
## 9886 Exists
## 9887 Made in America
## 9888 Agent Cody Banks 2: Destination London
## 9889 My Bloody Valentine
## 9890 Congo
## 9891 Open Water 2: Adrift
## 9892 The Circle
## 9893 Mortdecai
## 9894 Io & Marilyn
## 9895 Save the Last Dance 2
## 9896 The Man with the Iron Fists
## 9897 Royal Palace
## 9898 Grave Encounters 2
## 9899 The Accidental Husband
## 9900 The Mummy
## 9901 Ex 2: Still Friends
## 9902 3 Ninjas Kick Back
## 9903 Trespass
## 9904 Diary of a Nymphomaniac
## 9905 Fathers' Day
## 9906 The Hills Have Eyes 2
## 9907 The Dukes of Hazzard
## 9908 American Pie Presents: The Naked Mile
## 9909 Cube 2: Hypercube
## 9910 Fear and Desire
## 9911 Coffee & Kareem
## 9912 Secret Obsession
## 9913 King of Thieves
## 9914 Torno indietro e cambio vita
## 9915 Old Dogs
## 9916 Sandy Wexler
## 9917 The Grudge 2
## 9918 Aloha
## 9919 Rampart
## 9920 The Rezort
## 9921 Venom
## 9922 Umma
## 9923 The Santa Clause 3: The Escape Clause
## 9924 Slack Bay
## 9925 Superman III
## 9926 Scary Movie 4
## 9927 Howl
## 9928 Seventh Son
## 9929 Look Who's Talking Too
## 9930 Spread
## 9931 Darkman II: The Return of Durant
## 9932 MacGruber
## 9933 Killing Me Softly
## 9934 The Glimmer Man
## 9935 102 Dalmatians
## 9936 Life After Beth
## 9937 One Missed Call
## 9938 Science Fiction Volume One: The Osiris Child
## 9939 Pocahontas II: Journey to a New World
## 9940 We Have Always Lived in the Castle
## 9941 Within
## 9942 Drive Angry
## 9943 Teaching Mrs. Tingle
## 9944 Supergirl
## 9945 Game Over, Man!
## 9946 Police Academy 4: Citizens on Patrol
## 9947 Valiant
## 9948 Tooth Fairy
## 9949 Wildling
## 9950 Spanish Affair 2
## 9951 Good People
## 9952 Premature
## 9953 Bulletproof Monk
## 9954 The Sweetest Thing
## 9955 40 Days and 40 Nights
## 9956 A Faithful Man
## 9957 Silent Hill: Revelation 3D
## 9958 Cow Belles
## 9959 Cannonball Run II
## 9960 The Late Bloomer
## 9961 The Monster
## 9962 Blackhat
## 9963 Serial Teachers
## 9964 Virtuosity
## 9965 Tusk
## 9966 The Under-Gifted In Vacation
## 9967 Cursed
## 9968 Big Game
## 9969 Josie and the Pussycats
## 9970 The Mummy: Tomb of the Dragon Emperor
## 9971 Marie-Francine
## 9972 The Deaths of Ian Stone
## 9973 30 Days Max
## 9974 Extraterrestrial
## 9975 Looking for Teddy
## 9976 Problemos
## 9977 Cold Comes the Night
## 9978 Revolt
## 9979 Iron Eagle
## 9980 Tiger House
## 9981 ABCs of Death 2
## 9982 American Pie Presents: Band Camp
## 9983 Texas Chainsaw 3D
## 9984 Van Wilder: Freshman Year
## 9985 Diabolique
## 9986 Boogeyman 2
## 9987 Jade
## 9988 Action Point
## 9989 The Assignment
## 9990 The Lords of Salem
## 9991 DeepStar Six
## 9992 Charlie's Angels: Full Throttle
## 9993 Wedding Daze
## 9994 Valentine
## 9995 Turistas
## 9996 The Night Before the Exams Today
## 9997 Land of the Lost
## 9998 G-Force
## 9999 Intruders
## 10000 Smokin' Aces 2: Assassins' Ball
## overview
## 1 Spanning the years 1945 to 1955, a chronicle of the fictional Italian-American Corleone crime family. When organized crime family patriarch, Vito Corleone barely survives an attempt on his life, his youngest son, Michael steps in to take care of the would-be killers, launching a campaign of bloody revenge.
## 2 Framed in the 1940s for the double murder of his wife and her lover, upstanding banker Andy Dufresne begins a new life at the Shawshank prison, where he puts his accounting skills to work for an amoral warden. During his long stretch in prison, Dufresne comes to be admired by the other inmates -- including an older prisoner named Red -- for his integrity and unquenchable sense of hope.
## 3 70-year-old Malena gets a second chance at life when she magically turns into her 22-year-old self. Now, posing as "Maria" to hide her true identity, she becomes the lead singer of her grandson's band and tries to recover her dream of singing, which she had to give up at some point.
## 4 The unlikely friendship of a boy, a mole, a fox and a horse traveling together in the boy’s search for home.
## 5 In the continuing saga of the Corleone crime family, a young Vito Corleone grows up in Sicily and in 1910s New York. In the 1950s, Michael Corleone attempts to expand the family business into Las Vegas, Hollywood and Cuba.
## 6 The true story of how businessman Oskar Schindler saved over a thousand Jewish lives from the Nazis while they worked as slaves in his factory during World War II.
## 7 Raj is a rich, carefree, happy-go-lucky second generation NRI. Simran is the daughter of Chaudhary Baldev Singh, who in spite of being an NRI is very strict about adherence to Indian values. Simran has left for India to be married to her childhood fiancé. Raj leaves for India with a mission at his hands, to claim his lady love under the noses of her whole family. Thus begins a saga.
## 8 A young girl, Chihiro, becomes trapped in a strange new world of spirits. When her parents undergo a mysterious transformation, she must call upon the courage she never knew she had to free her family.
## 9 The defense and the prosecution have rested and the jury is filing into the jury room to decide if a young Spanish-American is guilty or innocent of murdering his father. What begins as an open and shut case soon becomes a mini-drama of each of the jurors' prejudices and preconceptions about the trial, the accused, and each other.
## 10 High schoolers Mitsuha and Taki are complete strangers living separate lives. But one night, they suddenly switch places. Mitsuha wakes up in Taki’s body, and he in hers. This bizarre occurrence continues to happen randomly, and the two must adjust their lives around each other.
## 11 All unemployed, Ki-taek's family takes peculiar interest in the wealthy and glamorous Parks for their livelihood until they get entangled in an unexpected incident.
## 12 A supernatural tale set on death row in a Southern prison, where gentle giant John Coffey possesses the mysterious power to heal people's ailments. When the cell block's head guard, Paul Edgecomb, recognizes Coffey's miraculous gift, he tries desperately to help stave off the condemned man's execution.
## 13 Batman raises the stakes in his war on crime. With the help of Lt. Jim Gordon and District Attorney Harvey Dent, Batman sets out to dismantle the remaining criminal organizations that plague the streets. The partnership proves to be effective, but they soon find themselves prey to a reign of chaos unleashed by a rising criminal mastermind known to the terrified citizens of Gotham as the Joker.
## 14 A burger-loving hit man, his philosophical partner, a drug-addled gangster's moll and a washed-up boxer converge in this sprawling, comedic crime caper. Their adventures unfurl in three stories that ingeniously trip back and forth in time.
## 15 While the Civil War rages on between the Union and the Confederacy, three men – a quiet loner, a ruthless hitman, and a Mexican bandit – comb the American Southwest in search of a strongbox containing $200,000 in stolen gold.
## 16 A man with a low IQ has accomplished great things in his life and been present during significant historic events—in each case, far exceeding what anyone imagined he could do. But despite all he has achieved, his one true love eludes him.
## 17 Aragorn is revealed as the heir to the ancient kings as he, Gandalf and the other members of the broken fellowship struggle to save Gondor from Sauron's forces. Meanwhile, Frodo and Sam take the ring closer to the heart of Mordor, the dark lord's realm.
## 18 Rihito Sajo, an honor student with a perfect score on the entrance exam and Hikaru Kusakabe, in a band and popular among girls, would have never crossed paths. Until one day they started talking at the practice for their school’s upcoming chorus festival. After school, the two meet regularly, as Hikaru helps Rihito to improve his singing skills. While they listen to each other’s voice and harmonize, their hearts start to beat together.
## 19 An intriguing and sinful exploration of seduction, forbidden love, and redemption, Gabriel's Inferno is a captivating and wildly passionate tale of one man's escape from his own personal hell as he tries to earn the impossible--forgiveness and love.
## 20 The true story of Henry Hill, a half-Irish, half-Sicilian Brooklyn kid who is adopted by neighbourhood gangsters at an early age and climbs the ranks of a Mafia family under the guidance of Jimmy Conway.
## 21 A filmmaker recalls his childhood, when he fell in love with the movies at his village's theater and formed a deep friendship with the theater's projectionist.
## 22 A samurai answers a village's request for protection after he falls on hard times. The town needs protection from bandits, so the samurai gathers six others to help him teach the people how to defend themselves, and the villagers provide the soldiers with food.
## 23 Puss in Boots discovers that his passion for adventure has taken its toll: He has burned through eight of his nine lives, leaving him with only one life left. Puss sets out on an epic journey to find the mythical Last Wish and restore his nine lives.
## 24 A touching story of an Italian book seller of Jewish ancestry who lives in his own little fairy tale. His creative and happy life would come to an abrupt halt when his entire family is deported to a concentration camp during World War II. While locked up he tries to convince his son that the whole thing is just a game.
## 25 Genndy Tartakovsky's Primal: Tales of Savagery features a caveman and a dinosaur on the brink of extinction. Bonded by tragedy, this unlikely friendship becomes the only hope of survival.
## 26 Professor Gabriel Emerson finally learns the truth about Julia Mitchell's identity, but his realization comes a moment too late. Julia is done waiting for the well-respected Dante specialist to remember her and wants nothing more to do with him. Can Gabriel win back her heart before she finds love in another's arms?
## 27 A former Prohibition-era Jewish gangster returns to the Lower East Side of Manhattan over thirty years later, where he once again must confront the ghosts and regrets of his old life.
## 28 In the final months of World War II, 14-year-old Seita and his sister Setsuko are orphaned when their mother is killed during an air raid in Kobe, Japan. After a falling out with their aunt, they move into an abandoned bomb shelter. With no surviving relatives and their emergency rations depleted, Seita and Setsuko struggle to survive.
## 29 When larcenous real estate clerk Marion Crane goes on the lam with a wad of cash and hopes of starting a new life, she ends up at the notorious Bates Motel, where manager Norman Bates cares for his housebound mother.
## 30 A ticking-time-bomb insomniac and a slippery soap salesman channel primal male aggression into a shocking new form of therapy. Their concept catches on, with underground "fight clubs" forming in every town, until an eccentric gets in the way and ignites an out-of-control spiral toward oblivion.
## 31 Matilde is a woman who, after the death of her husband - a man who constantly abused her - finds her new best friend in Miguel, her young, insecure, disoriented and even dealer neighbor
## 32 A petty criminal fakes insanity to serve his sentence in a mental ward rather than prison. He soon finds himself as a leader to the other patients—and an enemy to the cruel, domineering nurse who runs the ward.
## 33 The final part of the film adaption of the erotic romance novel Gabriel's Inferno written by an anonymous Canadian author under the pen name Sylvain Reynard.
## 34 In the bustling human world, spirits live peacefully with mankind. Luo Xiaohei, a young cat spirit, becomes a nomad after his forest home is destroyed. His natural talent soon attracts spirits and humans alike, but all of them have their own motivations.
## 35 In the slums of Rio, two kids' paths diverge as one struggles to become a photographer and the other a kingpin.
## 36 Miles Morales is juggling his life between being a high school student and being a spider-man. When Wilson "Kingpin" Fisk uses a super collider, others from across the Spider-Verse are transported to this dimension.
## 37 With dreams of diving abroad, Tsuneo gets a job assisting Josee, an artist whose imagination takes her far beyond her wheelchair. But when the tide turns against them, they push each other to places they never thought possible, and inspire a love fit for a storybook.
## 38 When Sophie, a shy young woman, is cursed with an old body by a spiteful witch, her only chance of breaking the spell lies with a self-indulgent yet insecure young wizard and his companions in his legged, walking castle.
## 39 Down-on-his-luck veteran Tsugumo Hanshirō enters the courtyard of the prosperous House of Iyi. Unemployed, and with no family, he hopes to find a place to commit seppuku—and a worthy second to deliver the coup de grâce in his suicide ritual. The senior counselor for the Iyi clan questions the ronin’s resolve and integrity, suspecting Hanshirō of seeking charity rather than an honorable end. What follows is a pair of interlocking stories which lay bare the difference between honor and respect, and promises to examine the legendary foundations of the Samurai code.
## 40 Shouya Ishida starts bullying the new girl in class, Shouko Nishimiya, because she is deaf. But as the teasing continues, the rest of the class starts to turn on Shouya for his lack of compassion. When they leave elementary school, Shouko and Shouya do not speak to each other again... until an older, wiser Shouya, tormented by his past behaviour, decides he must see Shouko once more. He wants to atone for his sins, but is it already too late...?
## 41 Young hobbit Frodo Baggins, after inheriting a mysterious ring from his uncle Bilbo, must leave his home in order to keep it from falling into the hands of its evil creator. Along the way, a fellowship is formed to protect the ringbearer and make sure that the ring arrives at its final destination: Mt. Doom, the only place where it can be destroyed.
## 42 One hot summer day a little girl gets lost in an enchanted forest of the mountain god where spirits reside. A young boy appears before her, but she cannot touch him for fear of making him disappear. And so a wondrous adventure awaits...
## 43 The epic saga continues as Luke Skywalker, in hopes of defeating the evil Galactic Empire, learns the ways of the Jedi from aging master Yoda. But Darth Vader is more determined than ever to capture Luke. Meanwhile, rebel leader Princess Leia, cocky Han Solo, Chewbacca, and droids C-3PO and R2-D2 are thrown into various stages of capture, betrayal and despair.
## 44 The adventures of a group of explorers who make use of a newly discovered wormhole to surpass the limitations on human space travel and conquer the vast distances involved in an interstellar voyage.
## 45 Yeon-du asks her best friend Bora to collect all the information she can about Baek Hyun-jin while she is away in the U.S. for heart surgery. Bora decides to get close to Baek's best friend, Pung Woon-ho first. However, Bora's clumsy plan unfolds in an unexpected direction. In 1999, a year before the new century, Bora, who turns seventeen, falls into the fever of first love.
## 46 The true story of pianist Władysław Szpilman's experiences in Warsaw during the Nazi occupation. When the Jews of the city find themselves forced into a ghetto, Szpilman finds work playing in a café; and when his family is deported in 1942, he stays behind, works for a while as a laborer, and eventually goes into hiding in the ruins of the war-torn city.
## 47 Under the direction of a ruthless instructor, a talented young drummer begins to pursue perfection at any cost, even his humanity.
## 48 Frodo and Sam are trekking to Mordor to destroy the One Ring of Power while Gimli, Legolas and Aragorn search for the orc-captured Merry and Pippin. All along, nefarious wizard Saruman awaits the Fellowship members at the Orthanc Tower in Isengard.
## 49 The lively João Grilo and the sly Chicó are poor guys living in the hinterland who cheat a bunch of people in a small in Northeastern Brazil. When they die, they have to be judged by Christ, the Devil and the Virgin Mary before they are admitted to paradise.
## 50 A hack screenwriter writes a screenplay for a former silent film star who has faded into Hollywood obscurity.
## 51 The second of two theatrically released follow-ups to the Neon Genesis Evangelion series. Comprising of two alternate episodes which were first intended to take the place of episodes 25 and 26, this finale answers many of the questions surrounding the series, while also opening up some new possibilities.
## 52 Two homicide detectives are on a desperate hunt for a serial killer whose crimes are based on the "seven deadly sins" in this dark and haunting film that takes viewers from the tortured remains of one victim to the next. The seasoned Det. Sommerset researches each sin in an effort to get inside the killer's mind, while his novice partner, Mills, scoffs at his efforts to unravel the case.
## 53 A documentary following the worldwide famous music group BTS, as they tour the world and share their experience along with their beloved band friends and fans.
## 54 Cobb, a skilled thief who commits corporate espionage by infiltrating the subconscious of his targets is offered a chance to regain his old life as payment for a task considered to be impossible: "inception", the implantation of another person's idea into a target's subconscious.
## 55 A wheelchair-bound photographer spies on his neighbors from his apartment window and becomes convinced one of them has committed murder.
## 56 Derek Vineyard is paroled after serving 3 years in prison for killing two African-American men. Through his brother, Danny Vineyard's narration, we learn that before going to prison, Derek was a skinhead and the leader of a violent white supremacist gang that committed acts of racial crime throughout L.A. and his actions greatly influenced Danny. Reformed and fresh out of prison, Derek severs contact with the gang and becomes determined to keep Danny from going down the same violent path as he did.
## 57 Kanji Watanabe is a middle-aged man who has worked in the same monotonous bureaucratic position for decades. Learning he has cancer, he starts to look for the meaning of his life.
## 58 Dictator Adenoid Hynkel tries to expand his empire while a poor Jewish barber tries to avoid persecution from Hynkel's regime.
## 59 After 8-year-old So-won narrowly survives a brutal sexual assault, her family labors to help her heal while coping with their own rage and grief.
## 60 Clarice Starling is a top student at the FBI's training academy. Jack Crawford wants Clarice to interview Dr. Hannibal Lecter, a brilliant psychiatrist who is also a violent psychopath, serving life behind bars for various acts of murder and cannibalism. Crawford believes that Lecter may have insight into a case and that Starling, as an attractive young woman, may be just the bait to draw him out.
## 61 Ashitaka, a prince of the disappearing Emishi people, is cursed by a demonized boar god and must journey to the west to find a cure. Along the way, he encounters San, a young human woman fighting to protect the forest, and Lady Eboshi, who is trying to destroy it. Ashitaka must find a way to bring balance to this conflict.
## 62 In this sound-era silent film, a tramp falls in love with a beautiful blind flower seller.
## 63 An executive of a shoe company becomes a victim of extortion when his chauffeur's son is kidnapped and held for ransom.
## 64 Léon, the top hit man in New York, has earned a rep as an effective "cleaner". But when his next-door neighbors are wiped out by a loose-cannon DEA agent, he becomes the unwilling custodian of 12-year-old Mathilda. Before long, Mathilda's thoughts turn to revenge, and she considers following in Léon's footsteps.
## 65 While trying to free her sister from Fahai's clutches, Xiao Qing winds up in a dystopian city and meets a mysterious man who can't recall his past life.
## 66 As the world moves on from the war and technological advances bring changes to her life, Violet still hopes to see her lost commanding officer again.
## 67 At an elite, old-fashioned boarding school in New England, a passionate English teacher inspires his students to rebel against convention and seize the potential of every day, courting the disdain of the stern headmaster.
## 68 The film tells the story of Ariel, a 21-year-old who decides to form a rock band to compete for a prize of ten thousand dollars in a musical band contest, this as a last option when trying to get money to save their relationship and reunite with his ex-girlfriend, which breaks due to the trip she must make to Finland for an internship. Ariel with her friend Ortega, decides to make a casting to find the other members of the band, although they do not know nothing about music, thus forming a band with members that have diverse and opposite personalities.
## 69 Two employees at a gift shop can barely stand one another, without realising that they are falling in love through the post as each other's anonymous pen pal.
## 70 The Tramp struggles to live in modern industrial society with the help of a young homeless woman.
## 71 In a time of superstition and magic, when wolves are seen as demonic and nature an evil to be tamed, a young apprentice hunter comes to Ireland with her father to wipe out the last pack. But when she saves a wild native girl, their friendship leads her to discover the world of the Wolfwalkers and transform her into the very thing her father is tasked to destroy.
## 72 Eighties teenager Marty McFly is accidentally sent back in time to 1955, inadvertently disrupting his parents' first meeting and attracting his mother's romantic interest. Marty must repair the damage to history by rekindling his parents' romance and - with the help of his eccentric inventor friend Doc Brown - return to 1985.
## 73 After more than thirty years of service as one of the Navy’s top aviators, and dodging the advancement in rank that would ground him, Pete “Maverick” Mitchell finds himself training a detachment of TOP GUN graduates for a specialized mission the likes of which no living pilot has ever seen.
## 74 In the aftermath of the Fourth Impact, stranded without their Evangelions, Shinji, Asuka and Rei find refuge in one of the rare pockets of humanity that still exist on the ruined planet Earth. There, each lives a life far different from their days as an Evangelion pilot. However, the danger to the world is far from over. A new impact is looming on the horizon—one that will prove to be the true end of Evangelion.
## 75 Seventeen-year-old Stella spends most of her time in the hospital as a cystic fibrosis patient. Her life is full of routines, boundaries and self-control — all of which get put to the test when she meets Will, an impossibly charming teen who has the same illness. There's an instant flirtation, though restrictions dictate that they must maintain a safe distance between them. As their connection intensifies, so does the temptation to throw the rules out the window and embrace that attraction.
## 76 Young musician Zach Sobiech discovers his cancer has spread, leaving him just a few months to live. With limited time, he follows his dream and makes an album, unaware that it will soon be a viral music phenomenon.
## 77 Shot at the Olympic Stadium in Seoul during the BTS World Tour ‘Love Yourself’ to celebrate the seven members of the global boyband and their unprecedented international phenomenon.
## 78 During the rise of fascism in Mussolini's Italy, a wooden boy brought magically to life struggles to live up to his father's expectations.
## 79 The invasion of a village in Byelorussia by German forces sends young Florya into the forest to join the weary Resistance fighters, against his family's wishes. There he meets a girl, Glasha, who accompanies him back to his village. On returning home, Florya finds his family and fellow peasants massacred. His continued survival amidst the brutal debris of war becomes increasingly nightmarish, a battle between despair and hope.
## 80 As the railroad builders advance unstoppably through the Arizona desert on their way to the sea, Jill arrives in the small town of Flagstone with the intention of starting a new life.
## 81 Tanjirō Kamado, joined with Inosuke Hashibira, a boy raised by boars who wears a boar's head, and Zenitsu Agatsuma, a scared boy who reveals his true power when he sleeps, boards the Infinity Train on a new mission with the Fire Hashira, Kyōjurō Rengoku, to defeat a demon who has been tormenting the people and killing the demon slayers who oppose it!
## 82 Taylor Swift takes the stage in Dallas for the Reputation Stadium Tour and celebrates a monumental night of music, memories and visual magic.
## 83 An entomologist suffers extreme psychological and sexual torture after being taken captive by the residents of a poor seaside village.
## 84 At the height of the Vietnam war, Captain Benjamin Willard is sent on a dangerous mission that, officially, "does not exist, nor will it ever exist." His goal is to locate - and eliminate - a mysterious Green Beret Colonel named Walter Kurtz, who has been leading his personal army on illegal guerrilla missions into enemy territory.
## 85 A 17 year old finds out that his girlfriend is dying, so he sets out to give her an entire life, in the last year she has left.
## 86 A commanding officer defends three scapegoats on trial for a failed offensive that occurred within the French Army in 1916.
## 87 Four prison inmates have been hatching a plan to literally dig out of jail when another prisoner, Claude Gaspard, is moved into their cell. They take a risk and share their plan with the newcomer. Over the course of three days, the prisoners and friends break through the concrete floor using a bed post and begin to make their way through the sewer system -- yet their escape is anything but assured.
## 88 The relationship between a band's bassist, their drummer, and the drummer’s roommate and ex-boyfriend, who is a professional violinist.
## 89 Earth is decimated after intergalactic tyrant Darkseid has devastated the Justice League in a poorly executed war by the DC Super Heroes. Now the remaining bastions of good – the Justice League, Teen Titans, Suicide Squad and assorted others – must regroup, strategize and take the war to Darkseid in order to save the planet and its surviving inhabitants.
## 90 Separated from his daughter, a father with an intellectual disability must prove his innocence when he is jailed for the death of a commander's child.
## 91 A retired pop singer turned actress' sense of reality is shaken when she is stalked by an obsessed fan and seemingly a ghost of her past.
## 92 A true story of two men who should never have met – a quadriplegic aristocrat who was injured in a paragliding accident and a young man from the projects.
## 93 A peculiar neighbor offers hope to a recent widow who is struggling to raise a teenager who is unpredictable and, sometimes, violent.
## 94 The story of a virtuoso piano player who lives his entire life aboard an ocean liner. Born and raised on the ship, 1900 (Tim Roth) learned about the outside world through interactions with passengers, never setting foot on land, even for the love of his life. Years later, the ship may be destroyed, and a former band member fears that 1900 may still be aboard, willing to go down with the ship.
## 95 After the devastating events of Avengers: Infinity War, the universe is in ruins due to the efforts of the Mad Titan, Thanos. With the help of remaining allies, the Avengers must assemble once more in order to undo Thanos' actions and restore order to the universe once and for all, no matter what consequences may be in store.
## 96 With no clue how he came to be imprisoned, drugged and tortured for 15 years, a desperate businessman seeks revenge on his captors.
## 97 A young nurse, Alma, is put in charge of Elisabeth Vogler: an actress who is seemingly healthy in all respects, but will not talk. As they spend time together, Alma speaks to Elisabeth constantly, never receiving any answer. The time they spend together only strengthens the crushing realization that one does not exist.
## 98 A bullied teenage girl forms an unlikely friendship with a mysterious young man who protects her from her assailants, while she copes with the pressures of her final examinations.
## 99 When Jesper distinguishes himself as the Postal Academy's worst student, he is sent to Smeerensburg, a small village located on an icy island above the Arctic Circle, where grumpy inhabitants barely exchange words, let alone letters. Jesper is about to give up and abandon his duty as a postman when he meets local teacher Alva and Klaus, a mysterious carpenter who lives alone in a cabin full of handmade toys.
## 100 A holiday favourite for generations... George Bailey has spent his entire life giving to the people of Bedford Falls. All that prevents rich skinflint Mr. Potter from taking over the entire town is George's modest building and loan company. But on Christmas Eve the business's $8,000 is lost and George's troubles begin.
## 101 As the Avengers and their allies have continued to protect the world from threats too large for any one hero to handle, a new danger has emerged from the cosmic shadows: Thanos. A despot of intergalactic infamy, his goal is to collect all six Infinity Stones, artifacts of unimaginable power, and use them to inflict his twisted will on all of reality. Everything the Avengers have fought for has led up to this moment - the fate of Earth and existence itself has never been more uncertain.
## 102 A young lion prince is cast out of his pride by his cruel uncle, who claims he killed his father. While the uncle rules with an iron paw, the prince grows up beyond the Savannah, living by a philosophy: No worries for the rest of your days. But when his past comes to haunt him, the young prince must decide his fate: Will he remain an outcast or face his demons and become what he needs to be?
## 103 In 1930s Korea, a new girl is hired as a handmaiden to a Japanese heiress who lives a secluded life on a large countryside estate. But the maid has a secret: She is a pickpocket recruited by a swindler, who is posing as a Japanese Count, to help him seduce the Lady and steal her fortune.
## 104 Two years after bringing peace to the galaxy, Steven Universe sees his past come back to haunt him in the form of a deranged Gem who wants to destroy the Earth.
## 105 A boy experiences first love, friendships and injustices growing up in 1960s Taiwan.
## 106 Three partisans bound by a strong friendship return home after the war, but the clash with everyday reality puts a strain on their bond.
## 107 The elderly Shukishi and his wife, Tomi, take the long journey from their small seaside village to visit their adult children in Tokyo. Their elder son, Koichi, a doctor, and their daughter, Shige, a hairdresser, don't have much time to spend with their aged parents, and so it falls to Noriko, the widow of their younger son who was killed in the war, to keep her in-laws company.
## 108 Inhabitants of a small village in Hungary deal with the effects of the fall of Communism. The town's source of revenue, a factory, has closed, and the locals, who include a doctor and three couples, await a cash payment offered in the wake of the shuttering. Irimias, a villager thought to be dead, returns and, unbeknownst to the locals, is a police informant. In a scheme, he persuades the villagers to form a commune with him.
## 109 Tony Lip, a bouncer in 1962, is hired to drive pianist Don Shirley on a tour through the Deep South in the days when African Americans, forced to find alternate accommodations and services due to segregation laws below the Mason-Dixon Line, relied on a guide called The Negro Motorist Green Book.
## 110 In Fujisawa, Sakuta Azusagawa is in his second year of high school. Blissful days with his girlfriend and upperclassman, Mai Sakurajima, are interrupted by the appearance of his first crush, Shoko Makinohara.
## 111 Roberto, a shy law student in Rome, meets Bruno, a forty-year-old exuberant, capricious man, who takes him for a drive through the Roman and Tuscany countries in the summer. When their journey starts to blend into their daily lives though, the pair’s newfound friendship is tested.
## 112 A family dog - with a near-human soul and a philosopher's mind - evaluates his life through the lessons learned by his human owner, a race-car driver.
## 113 Presenting the tale of American founding father Alexander Hamilton, this filmed version of the original Broadway smash hit is the story of America then, told by America now.
## 114 Unemployed Antonio is elated when he finally finds work hanging posters around war-torn Rome. However on his first day, his bicycle—essential to his work—gets stolen. His job is doomed unless he can find the thief. With the help of his son, Antonio combs the city, becoming desperate for justice.
## 115 Teen Parisian superheroes Ladybug and Chat Noir visit New York on a field trip and discover that superheroes exist in the United States too.
## 116 After her werewolf lover unexpectedly dies in an accident, a woman must find a way to raise the son and daughter that she had with him. However, their inheritance of their father's traits prove to be a challenge for her.
## 117 As the deceased soul Ja-hong and his three afterlife guardians prepare for their remaining trials for reincarnation, the guardians soon come face to face with the truth of their tragic time on Earth 1,000 years earlier.
## 118 Yuta Okkotsu is a nervous high school student who is suffering from a serious problem—his childhood friend Rika has turned into a curse and won't leave him alone. Since Rika is no ordinary curse, his plight is noticed by Satoru Gojo, a teacher at Jujutsu High, a school where fledgling exorcists learn how to combat curses. Gojo convinces Yuta to enroll, but can he learn enough in time to confront the curse that haunts him?
## 119 Despite his family’s baffling generations-old ban on music, Miguel dreams of becoming an accomplished musician like his idol, Ernesto de la Cruz. Desperate to prove his talent, Miguel finds himself in the stunning and colorful Land of the Dead following a mysterious chain of events. Along the way, he meets charming trickster Hector, and together, they set off on an extraordinary journey to unlock the real story behind Miguel's family history.
## 120 Bud Baxter is a minor clerk in a huge New York insurance company, until he discovers a quick way to climb the corporate ladder. He lends out his apartment to the executives as a place to take their mistresses. Although he often has to deal with the aftermath of their visits, one night he's left with a major problem to solve.
## 121 An aspiring musician agrees to a marriage of convenience with a soon-to-deploy Marine, but a tragedy soon turns their fake relationship all too real.
## 122 Jack Torrance accepts a caretaker job at the Overlook Hotel, where he, along with his wife Wendy and their son Danny, must live isolated from the rest of the world for the winter. But they aren't prepared for the madness that lurks within.
## 123 When Leonard Vole is arrested for the sensational murder of a rich, middle-aged widow, the famous Sir Wilfrid Robarts agrees to appear on his behalf. Sir Wilfrid, recovering from a near-fatal heart attack, is supposed to be on a diet of bland, civil suits—but the lure of the criminal courts is too much for him, especially when the case is so difficult.
## 124 In a near-future Britain, young Alexander DeLarge and his pals get their kicks beating and raping anyone they please. When not destroying the lives of others, Alex swoons to the music of Beethoven. The state, eager to crack down on juvenile crime, gives an incarcerated Alex the option to undergo an invasive procedure that'll rob him of all personal agency. In a time when conscience is a commodity, can Alex change his tune?
## 125 Determined to ensure Superman's ultimate sacrifice was not in vain, Bruce Wayne aligns forces with Diana Prince with plans to recruit a team of metahumans to protect the world from an approaching threat of catastrophic proportions.
## 126 When disillusioned Swedish knight Antonius Block returns home from the Crusades to find his country in the grips of the Black Death, he challenges Death to a chess match for his life. Tormented by the belief that God does not exist, Block sets off on a journey, meeting up with traveling players Jof and his wife, Mia, and becoming determined to evade Death long enough to commit one redemptive act while he still lives.
## 127 Isabella, the daughter of the noble York family, is enrolled in an all-girls academy to be groomed into a dame worthy of nobility. However, she has given up on her future, seeing the prestigious school as nothing more than a prison from the outside world. Her family notices her struggling in her lessons and decides to hire Violet Evergarden to personally tutor her under the guise of a handmaiden. At first, Isabella treats Violet coldly. Violet seems to be able to do everything perfectly, leading Isabella to assume that she was born with a silver spoon. After some time, Isabella begins to realize that Violet has had her own struggles and starts to open up to her. Isabella soon reveals that she has lost contact with her beloved younger sister, whom she yearns to see again. Having experienced the power of words through her past clientele, Violet asks if Isabella wishes to write a letter to Taylor. Will Violet be able to help Isabella convey her feelings to her long-lost sister?
## 128 Class 1-A visits Nabu Island where they finally get to do some real hero work. The place is so peaceful that it's more like a vacation … until they're attacked by a villain with an unfathomable Quirk! His power is eerily familiar, and it looks like Shigaraki had a hand in the plan. But with All Might retired and citizens' lives on the line, there's no time for questions. Deku and his friends are the next generation of heroes, and they're the island's only hope.
## 129 After his classmate and crush is diagnosed with a pancreatic disease, an average high schooler sets out to make the most of her final days.
## 130 In Nazi-occupied France during World War II, a group of Jewish-American soldiers known as "The Basterds" are chosen specifically to spread fear throughout the Third Reich by scalping and brutally killing Nazis. The Basterds, lead by Lt. Aldo Raine soon cross paths with a French-Jewish teenage girl who runs a movie theater in Paris which is targeted by the soldiers.
## 131 Princess Leia is captured and held hostage by the evil Imperial forces in their effort to take over the galactic Empire. Venturesome Luke Skywalker and dashing captain Han Solo team together with the loveable robot duo R2-D2 and C-3PO to rescue the beautiful princess and restore peace and justice in the Empire.
## 132 A tramp cares for a boy after he's abandoned as a newborn by his mother. Later the mother has a change of heart and aches to be reunited with her son.
## 133 In the year 180, the death of emperor Marcus Aurelius throws the Roman Empire into chaos. Maximus is one of the Roman army's most capable and trusted generals and a key advisor to the emperor. As Marcus' devious son Commodus ascends to the throne, Maximus is set to be executed. He escapes, but is captured by slave traders. Renamed Spaniard and forced to become a gladiator, Maximus must battle to the death with other men for the amusement of paying audiences.
## 134 As U.S. troops storm the beaches of Normandy, three brothers lie dead on the battlefield, with a fourth trapped behind enemy lines. Ranger captain John Miller and seven men are tasked with penetrating German-held territory and bringing the boy home.
## 135 A mysterious story of two magicians whose intense rivalry leads them on a life-long battle for supremacy -- full of obsession, deceit and jealousy with dangerous and deadly consequences.
## 136 Near a gray and unnamed city is the Zone, a place guarded by barbed wire and soldiers, and where the normal laws of physics are victim to frequent anomalies. A stalker guides two men into the Zone, specifically to an area in which deep-seated desires are granted.
## 137 Guido Anselmi, a film director, finds himself creatively barren at the peak of his career. Urged by his doctors to rest, Anselmi heads for a luxurious resort, but a sorry group gathers—his producer, staff, actors, wife, mistress, and relatives—each one begging him to get on with the show. In retreat from their dependency, he fantasizes about past women and dreams of his childhood.
## 138 Held in an L.A. interrogation room, Verbal Kint attempts to convince the feds that a mythic crime lord, Keyser Soze, not only exists, but was also responsible for drawing him and his four partners into a multi-million dollar heist that ended with an explosion in San Pedro harbor – leaving few survivors. Verbal lures his interrogators with an incredible story of the crime lord's almost supernatural prowess.
## 139 Set in the 22nd century, The Matrix tells the story of a computer hacker who joins a group of underground insurgents fighting the vast and powerful computers who now rule the earth.
## 140 Maquia is a member of a special race called the Iorph who can live for hundreds of years. However, Maquia has always felt lonely despite being surrounded by her people, as she was orphaned from a young age. She daydreams about the outside world, but dares not travel from her home due to the warnings of the clan's chief. One day the kingdom of Mezarte invades her homeland. They already have what is left of the giant dragons, the Renato, under their control, and now their king wishes to add the immortality to his bloodline. They ravage the Iorph homeland and kill most of its inhabitants. Caught in the midst of the attack, Maquia is carried off by one of the Renato. It soon dies, and she is left deserted in a forest, now truly alone save for the cries of a single baby off in the distance. Maquia finds the baby in a destroyed village and decides to raise him as her own, naming him Ariel. Although she knows nothing of the human world, how to raise a child that ages much faster than her.
## 141 Aibileen Clark is a middle-aged African-American maid who has spent her life raising white children and has recently lost her only son; Minny Jackson is an African-American maid who has often offended her employers despite her family's struggles with money and her desperate need for jobs; and Eugenia "Skeeter" Phelan is a young white woman who has recently moved back home after graduating college to find out her childhood maid has mysteriously disappeared. These three stories intertwine to explain how life in Jackson, Mississippi revolves around "the help"; yet they are always kept at a certain distance because of racial lines.
## 142 World War II soldier-turned-U.S. Marshal Teddy Daniels investigates the disappearance of a patient from a hospital for the criminally insane, but his efforts are compromised by troubling visions and a mysterious doctor.
## 143 A retired San Francisco detective suffering from acrophobia investigates the strange activities of an old friend's wife, all the while becoming dangerously obsessed with her.
## 144 Stuck in COVID-19 lockdown, US comedian and musician Bo Burnham attempts to stay sane and happy by writing, shooting and performing a one-man comedy special.
## 145 After the vicious slaughter of his family by stone-cold mercenary Sub-Zero, Hanzo Hasashi is exiled to the torturous Netherrealm. There, in exchange for his servitude to the sinister Quan Chi, he’s given a chance to avenge his family – and is resurrected as Scorpion, a lost soul bent on revenge. Back on Earthrealm, Lord Raiden gathers a team of elite warriors – Shaolin monk Liu Kang, Special Forces officer Sonya Blade and action star Johnny Cage – an unlikely band of heroes with one chance to save humanity. To do this, they must defeat Shang Tsung’s horde of Outworld gladiators and reign over the Mortal Kombat tournament.
## 146 Raised in a poverty-stricken slum, a 16-year-old girl named Starr now attends a suburban prep school. After she witnesses a police officer shoot her unarmed best friend, she's torn between her two very different worlds as she tries to speak her truth.
## 147 Leonard Shelby is tracking down the man who raped and murdered his wife. The difficulty of locating his wife's killer, however, is compounded by the fact that he suffers from a rare, untreatable form of short-term memory loss. Although he can recall details of life before his accident, Leonard cannot remember what happened fifteen minutes ago, where he's going, or why.
## 148 WWII American Army Medic Desmond T. Doss, who served during the Battle of Okinawa, refuses to kill people and becomes the first Conscientious Objector in American history to receive the Congressional Medal of Honor.
## 149 In 2013, something terrible is awakening in London's National Gallery; in 1562, a murderous plot is afoot in Elizabethan England; and somewhere in space an ancient battle reaches its devastating conclusion. All of reality is at stake as the Doctor's own dangerous past comes back to haunt him.
## 150 Johan and Marianne are married and seem to have it all. Their happiness, however, is a façade for a troubled relationship, which becomes even rockier when Johan admits that he's having an affair. Before long, the spouses separate and move towards finalizing their divorce, but they make attempts at reconciling. Even as they pursue other relationships, Johan and Marianne realize that they have a significant bond, but also many issues that hinder that connection.
## 151 Rome, Italy. After committing a heinous crime, a senior police officer exposes evidence incriminating him because his moral commitment prevents him from circumventing the law and the social order it protects.
## 152 On an isolated island in Brittany at the end of the eighteenth century, a female painter is obliged to paint a wedding portrait of a young woman.
## 153 A night at the movies turns into a nightmare when Michael and his date are attacked by a horde of bloody-thirsty zombies.
## 154 In 1980s Italy, a relationship begins between seventeen-year-old teenage Elio and the older adult man hired as his father's research assistant.
## 155 A motion comic follow-up to a chapter from Abraham Lincoln Vampire Hunter novel where Abe's friend, Edgar Allan Poe, tells him the tale of historical Hungarian countess Elizabeth Bathory, often tied to vampire legends due to her brutality.
## 156 Nathalie falls for Baptiste Debureau, a mime. But his heart is set on Garance, who is also coveted by Frederick Lemaitre and the Count of Montray.
## 157 During the 1980s, a failed stand-up comedian is driven insane and turns to a life of crime and chaos in Gotham City while becoming an infamous psychopathic crime figure.
## 158 A mother bird tries to teach her little one how to find food by herself. In the process, she encounters a traumatic experience that she must overcome in order to survive.
## 159 It is not strange that the Demon Lord's forces fear the Crimson Demons, the clan from which Megumin and Yunyun originate. Even if the Demon Lord's generals attack their village, the Crimson Demons can just easily brush them off with their supreme mastery of advanced and overpowered magic. When Yunyun receives a seemingly serious letter regarding a potential disaster coming to her hometown, she immediately informs Kazuma Satou and the rest of his party. After a series of wacky misunderstandings, it turns out to be a mere prank by her fellow demon who wants to be an author. Even so, Megumin becomes worried about her family and sets out toward the Crimson Demons' village with the gang. There, Kazuma and the others decide to sightsee the wonders of Megumin's birthplace. However, they soon come to realize that the nonsense threat they received might have been more than just a joke.
## 160 Zain, a 12-year-old boy scrambling to survive on the streets of Beirut, sues his parents for having brought him into such an unjust world, where being a refugee with no documents means that your rights can easily be denied.
## 161 A mentally unstable Vietnam War veteran works as a night-time taxi driver in New York City where the perceived decadence and sleaze feed his urge for violent action.
## 162 In Casablanca, Morocco in December 1941, a cynical American expatriate meets a former lover, with unforeseen complications.
## 163 In a futuristic city sharply divided between the rich and the poor, the son of the city's mastermind meets a prophet who predicts the coming of a savior to mediate their differences.
## 164 To take down South Boston's Irish Mafia, the police send in one of their own to infiltrate the underworld, not realizing the syndicate has done likewise. While an undercover cop curries favor with the mob kingpin, a career criminal rises through the police ranks. But both sides soon discover there's a mole among them.
## 165 After getting a green card in exchange for assassinating a Cuban government official, Tony Montana stakes a claim on the drug trade in Miami. Viciously murdering anyone who stands in his way, Tony eventually becomes the biggest drug lord in the state, controlling nearly all the cocaine that comes through Miami. But increased pressure from the police, wars with Colombian drug cartels and his own drug-fueled paranoia serve to fuel the flames of his eventual downfall.
## 166 The story of August Pullman – a boy with facial differences – who enters fifth grade, attending a mainstream elementary school for the first time.
## 167 The untold true story set in the winter of 1925 that takes you across the treacherous terrain of the Alaskan tundra for an exhilarating and uplifting adventure that will test the strength, courage and determination of one man, Leonhard Seppala, and his lead sled dog, Togo.
## 168 In 1927 Hollywood, a silent film production company and cast make a difficult transition to sound.
## 169 Dona Hermínia will have to rediscover and reinvent herself because her children are forming new families. This supermom will have to deal with a new life scenario: Marcelina is pregnant and Juliano is getting married.
## 170 Joe Gardner is a middle school teacher with a love for jazz music. After a successful audition at the Half Note Club, he suddenly gets into an accident that separates his soul from his body and is transported to the You Seminar, a center in which souls develop and gain passions before being transported to a newborn child. Joe must enlist help from the other souls-in-training, like 22, a soul who has spent eons in the You Seminar, in order to get back to Earth.
## 171 With the help of a German bounty hunter, a freed slave sets out to rescue his wife from a brutal Mississippi plantation owner.
## 172 In medieval Japan, a woman and his children journey to find the family's patriarch, who was exiled years before.
## 173 From the moment she glimpses her idol at the stage door, Eve Harrington is determined to take the reins of power away from the great actress Margo Channing. Eve maneuvers her way into Margo's Broadway role, becomes a sensation and even causes turmoil in the lives of Margo's director boyfriend, her playwright and his wife. Only the cynical drama critic sees through Eve, admiring her audacity and perfect pattern of deceit.
## 174 Four middle-aged friends in Florence organize together idle pranks (called zingarate, "gypsy shenanigans") in a continuous attempt to prolong childhood during their adult life.
## 175 Returning to Earth as an imitator, the legendary Mexican artist Pedro Infante must prove that he is no longer a womanizer to enter paradise.
## 176 On an idyllic beach in the Pacific Northwest, curiosity gets the better of a young raccoon whose frustrated parent attempts to keep them both safe.
## 177 A nameless ronin, or samurai with no master, enters a small village in feudal Japan where two rival businessmen are struggling for control of the local gambling trade. Taking the name Sanjuro Kuwabatake, the ronin convinces both silk merchant Tazaemon and sake merchant Tokuemon to hire him as a personal bodyguard, then artfully sets in motion a full-scale gang war between the two ambitious and unscrupulous men.
## 178 Journalist and man-about-town Marcello struggles to find his place in the world, torn between the allure of Rome's elite social scene and the stifling domesticity offered by his girlfriend, all the while searching for a way to become a serious writer.
## 179 A rich woman and a calculating insurance agent plot to kill her unsuspecting husband after he signs a double indemnity policy. Against a backdrop of distinctly Californian settings, the partners in crime plan the perfect murder to collect the insurance, which pays double if the death is accidental.
## 180 An emotive journey of a former school teacher, who writes letters for illiterate people, and a young boy, whose mother has just died, as they search for the father he never knew.
## 181 A man refuses all assistance from his daughter as he ages and, as he tries to make sense of his changing circumstances, he begins to doubt his loved ones, his own mind and even the fabric of his reality.
## 182 Will Hunting has a genius-level IQ but chooses to work as a janitor at MIT. When he solves a difficult graduate-level math problem, his talents are discovered by Professor Gerald Lambeau, who decides to help the misguided youth reach his potential. When Will is arrested for attacking a police officer, Professor Lambeau makes a deal to get leniency for him if he will get treatment from therapist Sean Maguire.
## 183 Born free in the American West, Black Beauty is a horse rounded up and brought to Birtwick Stables, where she meets spirited teenager Jo Green. The two forge a bond that carries Beauty through the different chapters, challenges and adventures.
## 184 At the turn of the century on Prince Edward Island, Matthew Cuthbert and his sister Marilla decide to take on an orphan boy as help for their farm. But they get an unexpected jolt when they're mistakenly sent a girl instead: Anne Shirley.
## 185 Crotchety retired doctor Isak Borg travels from Stockholm to Lund, Sweden, with his pregnant and unhappy daughter-in-law, Marianne, in order to receive an honorary degree from his alma mater. Along the way, they encounter a series of hitchhikers, each of whom causes the elderly doctor to muse upon the pleasures and failures of his own life. These include the vivacious young Sara, a dead ringer for the doctor's own first love.
## 186 A pragmatic U.S. Marine observes the dehumanizing effects the U.S.-Vietnam War has on his fellow recruits from their brutal boot camp training to the bloody street fighting in Hue.
## 187 A botched robbery indicates a police informant, and the pressure mounts in the aftermath at a warehouse. Crime begets violence as the survivors -- veteran Mr. White, newcomer Mr. Orange, psychopathic parolee Mr. Blonde, bickering weasel Mr. Pink and Nice Guy Eddie -- unravel.
## 188 Brimming with action while incisively examining the nature of truth, "Rashomon" is perhaps the finest film ever to investigate the philosophy of justice. Through an ingenious use of camera and flashbacks, Kurosawa reveals the complexities of human nature as four people recount different versions of the story of a man's murder and the rape of his wife.
## 189 During its return to the earth, commercial spaceship Nostromo intercepts a distress signal from a distant planet. When a three-member team of the crew discovers a chamber containing thousands of eggs on the planet, a creature inside one of the eggs attacks an explorer. The entire crew is unaware of the impending nightmare set to descend upon them when the alien parasite planted inside its unfortunate host is birthed.
## 190 After the insane General Jack D. Ripper initiates a nuclear strike on the Soviet Union, a war room full of politicians, generals and a Russian diplomat all frantically try to stop the nuclear strike.
## 191 A card shark and his unwillingly-enlisted friends need to make a lot of cash quick after losing a sketchy poker match. To do this they decide to pull a heist on a small-time gang who happen to be operating out of the flat next door.
## 192 The Australian comedian Hannah Gadsby is taking an anti-comedy stance in her newest special.
## 193 Italy, 1916. Oreste Jacovacci and Giovanni Busacca are called, as all the Italian youths, to serve the army in the WWI. They both try in every way to avoid serving the army.
## 194 A young couple who makes popular YouTube videos for children sets out to win an award, but an evil mastermind stands in the way of their success.
## 195 Truman Burbank is the star of The Truman Show, a 24-hour-a-day reality TV show that broadcasts every aspect of his life without his knowledge. His entire life has been an unending soap opera for consumption by the rest of the world. And everyone he knows, including his wife and his best friend is really an actor, paid to be part of his life.
## 196 Barcelona, Spain. Adrián Doria, a young and successful businessman accused of murder, meets one night with Virginia Goodman, an expert interrogation lawyer, in order to devise a defense strategy.
## 197 Two musicians witness a mob hit and struggle to find a way out of the city before they are found by the gangsters. Their only opportunity is to join an all-girl band as they leave on a tour. To make their getaway they must first disguise themselves as women, then keep their identities secret and deal with the problems this brings - such as an attractive bandmate and a very determined suitor.
## 198 In 1950, amidst the ravages of the Korean War, Sergeant Süleyman stumbles upon a a half-frozen little girl, with no parents and no help in sight and he risks his own life to save her, smuggling her into his army base and out of harm’s way.
## 199 A film projectionist longs to be a detective, and puts his meagre skills to work when he is framed by a rival for stealing his girlfriend's father's pocketwatch.
## 200 Combining his trademark wit and self-deprecating humor with original music, Bo Burnham offers up his unique twist on life in this stand-up special about life, death, sexuality, hypocrisy, mental illness and Pringles cans.
## 201 Best friends Peppe and Mario are thieves, but they're not very good at it. Still, Peppe thinks that he's finally devised a master heist that will make them rich. With the help of some fellow criminals, he plans to dig a tunnel from a rented apartment to the pawnshop next door, where they can rob the safe. But his plan is far from foolproof, and the fact that no one in the group has any experience digging tunnels proves to be the least of their problems.
## 202 Harry, Ron and Hermione continue their quest to vanquish the evil Voldemort once and for all. Just as things begin to look hopeless for the young wizards, Harry discovers a trio of magical objects that endow him with powers to rival Voldemort's formidable skills.
## 203 Hong Kong, 1962: Chow Mo-Wan and Su Li-Zhen move into neighboring apartments on the same day. Their encounters are formal and polite—until a discovery about their spouses creates an intimate bond between them.
## 204 Having died unexpectedly, firefighter Ja-hong is taken to the afterlife by 3 afterlife guardians. Only when he passes 7 trials over 49 days and proves he was innocent in human life, he’s able to reincarnate, and his 3 afterlife guardians are by his side to defend him in trial.
## 205 A young boy, in an effort to have a normal childhood in 1980s El Salvador, is caught up in a dramatic fight for his life as he desperately tries to avoid the war which is raging all around him
## 206 I corti ("shorts") by Aldo, Giovanni & Giacomo was the first stage show of the comedy trio, with the participation of Marina Massironi. It was recorded live at the Teatro Nuovo in Ferrara on 28 and 29 March 1996. Produced by Agidi, with the theatre direction of Arturo Brachetti.
## 207 Aspiring to an easy job as personal physician to a wealthy family, Noboru Yasumoto is disappointed when his first post after medical school takes him to a small country clinic under the gruff doctor Red Beard. Yasumoto rebels in numerous ways, but Red Beard proves a wise and patient teacher. He gradually introduces his student to the unglamorous side of the profession, ultimately assigning him to care for a prostitute rescued from a local brothel.
## 208 Found inside a shining stalk of bamboo by an old bamboo cutter and his wife, a tiny girl grows rapidly into an exquisite young lady. The mysterious young princess enthrals all who encounter her. But, ultimately, she must confront her fate.
## 209 In this classic German thriller, Hans Beckert, a serial killer who preys on children, becomes the focus of a massive Berlin police manhunt. Beckert's heinous crimes are so repellant and disruptive to city life that he is even targeted by others in the seedy underworld network. With both cops and criminals in pursuit, the murderer soon realizes that people are on his trail, sending him into a tense, panicked attempt to escape justice.
## 210 An expansive Russian drama, this film focuses on the life of revered religious icon painter Andrei Rublev. Drifting from place to place in a tumultuous era, the peace-seeking monk eventually gains a reputation for his art. But after Rublev witnesses a brutal battle and unintentionally becomes involved, he takes a vow of silence and spends time away from his work. As he begins to ease his troubled soul, he takes steps towards becoming a painter once again.
## 211 Joel Barish, heartbroken that his girlfriend underwent a procedure to erase him from her memory, decides to do the same. However, as he watches his memories of her fade away, he realises that he still loves her, and may be too late to correct his mistake.
## 212 A man wanders out of the desert not knowing who he is. His brother finds him, and helps to pull his memory back of the life he led before he walked out on his family and disappeared four years earlier.
## 213 Based on the true life experiences of poet Jimmy Santiago Baca, the film focuses on half-brothers Paco and Cruz, and their bi-racial cousin Miklo. It opens in 1972, as the three are members of an East L.A. gang known as the "Vatos Locos", and the story focuses on how a violent crime and the influence of narcotics alter their lives. Miklo is incarcerated and sent to San Quentin, where he makes a "home" for himself. Cruz becomes an exceptional artist, but a heroin addiction overcomes him with tragic results. Paco becomes a cop and an enemy to his "carnal", Miklo.
## 214 It's been ten years since the dragons moved to the Hidden World, and even though Toothless doesn't live in New Berk anymore, Hiccup continues the holiday traditions he once shared with his best friend. But the Vikings of New Berk were beginning to forget about their friendship with dragons. Hiccup, Astrid, and Gobber know just what to do to keep the dragons in the villagers' hearts. And across the sea, the dragons have a plan of their own...
## 215 A teacher lives a lonely life, all the while struggling over his son’s custody. His life slowly gets better as he finds love and receives good news from his son, but his new luck is about to be brutally shattered by an innocent little lie.
## 216 A mother's last wishes send twins Jeanne and Simon on a journey to Middle East in search of their tangled roots. Adapted from Wajdi Mouawad's acclaimed play, Incendies tells the powerful and moving tale of two young adults' voyage to the core of deep-rooted hatred, never-ending wars and enduring love.
## 217 While living as an ordinary deliveryman and motor racing fan, Nezha encounters old nemeses and must rediscover his powers to protect his loved ones.
## 218 After seven months have passed without a culprit in her daughter's murder case, Mildred Hayes makes a bold move, painting three signs leading into her town with a controversial message directed at Bill Willoughby, the town's revered chief of police. When his second-in-command Officer Jason Dixon, an immature mother's boy with a penchant for violence, gets involved, the battle between Mildred and Ebbing's law enforcement is only exacerbated.
## 219 Ruthless silver miner, turned oil prospector, Daniel Plainview, moves to oil-rich California. Using his son to project a trustworthy, family-man image, Plainview cons local landowners into selling him their valuable properties for a pittance. However, local preacher Eli Sunday suspects Plainview's motives and intentions, starting a slow-burning feud that threatens both their lives.
## 220 Nearly 10 years have passed since Sarah Connor was targeted for termination by a cyborg from the future. Now her son, John, the future leader of the resistance, is the target for a newer, more deadly terminator. Once again, the resistance has managed to send a protector back to attempt to save John and his mother Sarah.
## 221 A story of love and life among the landed English gentry during the Georgian era. Mr. Bennet is a gentleman living in Hertfordshire with his overbearing wife and five daughters, but if he dies their house will be inherited by a distant cousin whom they have never met, so the family's future happiness and security is dependent on the daughters making good marriages.
## 222 Based on actual events that took place at Gwangju Inhwa School for the hearing-impaired, where young deaf students were the victims of repeated sexual assaults by faculty members over a period of five years in the early 2000s.
## 223 In 1970s London amidst the punk rock revolution, a young grifter named Estella is determined to make a name for herself with her designs. She befriends a pair of young thieves who appreciate her appetite for mischief, and together they are able to build a life for themselves on the London streets. One day, Estella’s flair for fashion catches the eye of the Baroness von Hellman, a fashion legend who is devastatingly chic and terrifyingly haute. But their relationship sets in motion a course of events and revelations that will cause Estella to embrace her wicked side and become the raucous, fashionable and revenge-bent Cruella.
## 224 Tai is now a university student, living alone, working hard at school, and working every day, but with his future still undecided. Meanwhile, Matt and others continue to work on Digimon incidents and activities that help people with their partner Digimon. When an unprecedented phenomenon occurs, the DigiDestined discover that when they grow up, their relationship with their partner Digimon will come closer to an end. As a countdown timer activates on the Digivice, they realize that the more they fight with their partner Digimon, the faster their bond breaks. Will they fight for others and lose their partner? The time to choose and decide is approaching fast. There is a short time before “chosen children” will become adults. This is the last adventure of Tai and Agumon.
## 225 A five-year-old Indian boy gets lost on the streets of Calcutta, thousands of kilometers from home. He survives many challenges before being adopted by a couple in Australia; 25 years later, he sets out to find his lost family.
## 226 A German submarine hunts allied ships during the Second World War, but it soon becomes the hunted. The crew tries to survive below the surface, while stretching both the boat and themselves to their limits.
## 227 Humanity finds a mysterious object buried beneath the lunar surface and sets off to find its origins with the help of HAL 9000, the world's most advanced super computer.
## 228 For young Parisian boy Antoine Doinel, life is one difficult situation after another. Surrounded by inconsiderate adults, including his neglectful parents, Antoine spends his days with his best friend, Rene, trying to plan for a better life. When one of their schemes goes awry, Antoine ends up in trouble with the law, leading to even more conflicts with unsympathetic authority figures.
## 229 Hutch Mansell, a suburban dad, overlooked husband, nothing neighbor — a "nobody." When two thieves break into his home one night, Hutch's unknown long-simmering rage is ignited and propels him on a brutal path that will uncover dark secrets he fought to leave behind.
## 230 Get ready to Rock! Scooby-Doo and the Mystery Inc. Gang team up with the one and only KISS in this all-new, out-of-this-world adventure! We join the Gang at KISS World – the all-things-KISS theme park, as they investigate a series of strange hauntings. With help from KISS, they discover that the Crimson Witch has returned to summon The Destroyer from the alternate dimension of Kissteria! The evil duos ghastly plan, to destroy the earth! Can the Gang's cunning and KISS's power of rock save the day?!
## 231 Victor (William Levy) is one of the world’s most handsome men, but he has a deep secret – he is a cold blooded assassin. Smooth talking and seductive, Victor was raised to do one thing only, which is to kill for money. When he is sent to the home of a brutal drug lord to collect payment for his most recent hit, he encounters the beautiful Sarai (Alicia Sanz), who has been forced to spend the last 9 years of her life with the drug lord.
## 232 Keller Dover faces a parent's worst nightmare when his 6-year-old daughter, Anna, and her friend go missing. The only lead is an old motorhome that had been parked on their street. The head of the investigation, Detective Loki, arrests the driver, but a lack of evidence forces Loki to release his only suspect. Dover, knowing that his daughter's life is at stake, decides that he has no choice but to take matters into his own hands.
## 233 In the 1980s, a team of lawyers takes on the heads of Argentina's bloody military dictatorship in a battle against odds and a race against time.
## 234 May, 1980. Man-seob is a taxi driver in Seoul who lives from hand to mouth, raising his young daughter alone. One day, he hears that there is a foreigner who will pay big money for a drive down to Gwangju city. Not knowing that he’s a German journalist with a hidden agenda, Man-seob takes the job.
## 235 Bobby Griffith was his mother's favorite son, the perfect all-American boy growing up under deeply religious influences in Walnut Creek, California. Bobby was also gay. Struggling with a conflict no one knew of, much less understood, Bobby finally came out to his family.
## 236 Impoverished priest Harihar Ray, dreaming of a better life for himself and his family, leaves his rural Bengal village in search of work.
## 237 After a chaotic night of rioting in a marginal suburb of Paris, three young friends, Vinz, Hubert and Saïd, wander around unoccupied waiting for news about the state of health of a mutual friend who has been seriously injured when confronting the police.
## 238 Inspired by the gripping true story of a man who would do anything for his family—and for freedom. When Peter, an enslaved man, risks his life to escape and return to his family, he embarks on a perilous journey of love and endurance.
## 239 WALL·E is the last robot left on an Earth that has been overrun with garbage and all humans have fled to outer space. For 700 years he has continued to try and clean up the mess, but has developed some rather interesting human-like qualities. When a ship arrives with a sleek new type of robot, WALL·E thinks he's finally found a friend and stows away on the ship when it leaves.
## 240 1986 Gyunggi Province. The body of a young woman is found brutally raped and murdered. Two months later, a series of rapes and murders commences under similar circumstances. And in a country that had never known such crimes, the dark whispers about a serial murderer grow louder. A special task force is set up in the area, with two local detectives Park Doo-Man and Jo Young-Goo joined by a detective from Seoul who requested to be assigned to the case.
## 241 Two sisters move to the country with their father in order to be closer to their hospitalized mother, and discover the surrounding trees are inhabited by Totoros, magical spirits of the forest. When the youngest runs away from home, the older sister seeks help from the spirits to find her.
## 242 On the night she plans on taking her own life, 17-year-old 'Lisa McVey' is kidnapped and finds herself fighting to stay alive and manages to be a victim of rape. She manages to talk her attacker into releasing her, but when she returns home, no one believes her story except for one detective, who suspects she was abducted by a serial killer. Based on horrifying true events.
## 243 Antonio, Peppino and Lucia are three brothers who live in the country near Naples. Lucia's son, Gianni, goes to Naples to study medicine, but there he knows a ballet dancer. They fall in love and, when she goes to Milan, Gianni follows her. Informed of this and afraid that their nephew will stop studying, the three Caponi brothers leave for Milan to persuade Gianni to come back and continue studying and abandon the "Malafemmina" (bad girl).
## 244 A classic of the silent age, this film tells the story of the doomed but ultimately canonized 15th-century teenage warrior. On trial for claiming she'd spoken to God, Jeanne d'Arc is subjected to inhumane treatment and scare tactics at the hands of church court officials. Initially bullied into changing her story, Jeanne eventually opts for what she sees as the truth. Her punishment, a famously brutal execution, earns her perpetual martyrdom.
## 245 In Rome, fascist supporter Emanuele attends a parade commemorating Adolf Hitler's historic meeting with Italian leader Benito Mussolini, leaving his apolitical wife, Antonietta, to tend to household duties. Antonietta encounters a man, Gabriele, who appears surprisingly nonplussed by the political event. Over the course of the day, the two forge a close friendship that will forever change their perceptions of life, love and politics.
## 246 In 1997, before the visit of the pope to Rio de Janeiro, Captain Nascimento from BOPE (Special Police Operations Battalion) is assigned to eliminate the risks of the drug dealers in a dangerous slum nearby where the pope intends to be lodged.
## 247 Spanning nearly four decades, this generational epic follows two Italian brothers from a middle-class family through some of the most significant events of postwar Italian history after their life paths diverge thanks to one fateful encounter during the summer of 1966.
## 248 Julia, a teenager from Latin America, has lived in the U.S. most of her life. She is popular, a successful Youtuber and wants to become prom queen. Everything changes abruptly when her family has to return to Ecuador. What will she have to face? Getting used to a new culture and a catholic high school will not be easy. The "gringa" becomes the target of "La Reinas", three popular bullies who rule the school. Julia is now a misfit who will have to earn her new friends' affection in order to survive.
## 249 Regina, our young protagonist, always dreamed of getting married. And she did it - but the dream lasted much less than she thought and now she has to face life in a very funny way as a divorcee.
## 250 Rizwan Khan, a Muslim from the Borivali section of Mumbai, has Asperger's syndrome. He marries a Hindu single mother, Mandira, in San Francisco. After 9/11, Rizwan is detained by authorities at LAX who treat him as a terrorist because of his condition and his race.
## 251 A World War II satire that follows a lonely German boy whose world view is turned upside down when he discovers his single mother is hiding a young Jewish girl in their attic. Aided only by his idiotic imaginary friend, Adolf Hitler, Jojo must confront his blind nationalism.
## 252 Everyone deserves a great love story. But for seventeen-year old Simon Spier it's a little more complicated: he's yet to tell his family or friends he's gay and he doesn't know the identity of the anonymous classmate he's fallen for online.
## 253 When a impoverished widow’s family moves to the big city, two of her five sons become romantic rivals with deadly results.
## 254 A Victorian surgeon rescues a heavily disfigured man being mistreated by his "owner" as a side-show freak. Behind his monstrous façade, there is revealed a person of great intelligence and sensitivity. Based on the true story of Joseph Merrick (called John Merrick in the film), a severely deformed man in 19th century London.
## 255 The Grand Budapest Hotel tells of a legendary concierge at a famous European hotel between the wars and his friendship with a young employee who becomes his trusted protégé. The story involves the theft and recovery of a priceless Renaissance painting, the battle for an enormous family fortune and the slow and then sudden upheavals that transformed Europe during the first half of the 20th century.
## 256 The untold story of Katherine G. Johnson, Dorothy Vaughan and Mary Jackson – brilliant African-American women working at NASA and serving as the brains behind one of the greatest operations in history – the launch of astronaut John Glenn into orbit. The visionary trio crossed all gender and race lines to inspire generations to dream big.
## 257 In the streets of Istanbul, ailing waste warehouse worker Mehmet takes a small boy under his wing and must soon confront his own traumatic childhood.
## 258 A waiter pretends to be an important businessman in order to reach the upper class through his entrepreneurial dreams.
## 259 With Ran, legendary director Akira Kurosawa reimagines Shakespeare's King Lear as a singular historical epic set in sixteenth-century Japan. Majestic in scope, the film is Kurosawa's late-life masterpiece, a profound examination of the folly of war and the crumbling of one family under the weight of betrayal, greed, and the insatiable thirst for power.
## 260 The incredible true story behind the most controversial Italian court cases in recent years. Stefano Cucchi was arrested for a minor crime and mysteriously found dead during his detention. In one week's time, a family is changed forever.
## 261 Adaptation of one of Benelux most famous children's novels. Tough prime school girl Akkie loves soccer and can be a real bully. Love is the only thing she's scared of. When Akkie is diagnosed with Leukemia, she has to fight for her life. On the verge of going to high school, Akkie has to allow love to enter her life, and thus gain courage to accept the inevitable.
## 262 Frank, a single man raising his child prodigy niece Mary, is drawn into a custody battle with his mother.
## 263 A young man arrives at the last hometown of painter Vincent van Gogh to deliver the troubled artist's final letter and ends up investigating his final days there.
## 264 A military explorer meets and befriends a Goldi man in Russia’s unmapped forests. A deep and abiding bond evolves between the two men, one civilized in the usual sense, the other at home in the glacial Siberian woods.
## 265 After leaving her daughter Jessica in a small town in Pernambuco to be raised by relatives, Val spends the next 13 years working as a nanny to Fabinho in São Paulo. She has financial stability but has to live with the guilt of having not raised Jessica herself. As Fabinho’s university entrance exams approach, Jessica reappears in her life and seems to want to give her mother a second chance. However, Jessica has not been raised to be a servant and her very existence will turn Val’s routine on its head. With precision and humour, the subtle and powerful forces that keep rigid class structures in place and how the youth may just be the ones to shake it all up.
## 266 After 12 years in prison, former high school football star Eddie Palmer returns home to put his life back together—and forms an unlikely bond with Sam, an outcast boy from a troubled home. But Eddie's past threatens to ruin his new life and family.
## 267 A tragic love story set in East Berlin with the backdrop of an undercover Stasi controlled culture. Stasi captain Wieler is ordered to follow author Dreyman and plunges deeper and deeper into his life until he reaches the threshold of doubting the system.
## 268 Held captive for 7 years in an enclosed space, a woman and her young son finally gain their freedom, allowing the boy to experience the outside world for the first time.
## 269 Noriko is perfectly happy living at home with her widowed father, Shukichi, and has no plans to marry -- that is, until her aunt Masa convinces Shukichi that unless he marries off his 27-year-old daughter soon, she will likely remain alone for the rest of her life. When Noriko resists Masa's matchmaking, Shukichi is forced to deceive his daughter and sacrifice his own happiness to do what he believes is right.
## 270 Rome, 1957. A woman, Cabiria, is robbed and left to drown by her boyfriend, Giorgio. Rescued, she resumes her life and tries her best to find happiness in a cynical world. Even when she thinks her struggles are over and she has found happiness and contentment, things may not be what they seem.
## 271 In 1947, four German judges who served on the bench during the Nazi regime face a military tribunal to answer charges of crimes against humanity. Chief Justice Haywood hears evidence and testimony not only from lead defendant Ernst Janning and his defense attorney Hans Rolfe, but also from the widow of a Nazi general, an idealistic U.S. Army captain and reluctant witness Irene Wallner.
## 272 Orbiting a quiet backwater planet, the massed forces of the universe's deadliest species gather, drawn to a mysterious message that echoes out to the stars. And amongst them, the Doctor. Rescuing Clara from a family Christmas dinner, the Time Lord and his best friend must learn what this enigmatic signal means for his own fate and that of the universe.
## 273 A team of American scientists investigate the empty, destroyed base of their Norwegian counterparts in Antarctica, only to discover a terrifying life force that can take the form of its prey.
## 274 An unlikely connection sparks between two creatures: a fiercely independent stray kitten and a pit bull. Together, they experience friendship for the first time.
## 275 A dog finds the meaning of his own existence through the lives of the humans he meets.
## 276 A New York stockbroker refuses to cooperate in a large securities fraud case involving corruption on Wall Street, corporate banking world and mob infiltration. Based on Jordan Belfort's autobiography.
## 277 1980s. Brazilian television exploding in color and auditorium programs not so politically correct. In the middle of this fervor, Augusto Mendes, a young rising actor, seeks his place in the sun. From porn studios to soap operas, he finally finds success and fame when he becomes "Bingo", a TV host clown from one of the audience leader TV shows for children. It turns out that behind the rice powder and red nose, nobody knows who he is.
## 278 The hopes and dreams of four ambitious people are shattered when their drug addictions begin spiraling out of control. A look into addiction and how it overcomes the mind and body.
## 279 Wolfgang Amadeus Mozart is a remarkably talented young Viennese composer who unwittingly finds a fierce rival in the disciplined and determined Antonio Salieri. Resenting Mozart for both his hedonistic lifestyle and his undeniable talent, the highly religious Salieri is gradually consumed by his jealousy and becomes obsessed with Mozart's downfall, leading to a devious scheme that has dire consequences for both men.
## 280 In the town of Normal Valley, an eccentric magician named Maestro entertains the local children every day in his spooky mansion. One stormy night, the town's mayor leads a group of angry citizens to the mansion in an attempt to run Maestro out of town.
## 281 Lester Burnham, a depressed suburban father in a mid-life crisis, decides to turn his hectic life around after developing an infatuation with his daughter's attractive friend.
## 282 A closeted boy runs the risk of being outed by his own heart after it pops out of his chest to chase down the boy of his dreams.
## 283 Two bounty hunters are in pursuit of "El Indio," one of the most wanted fugitives in the western territories, and his gang.
## 284 In this classic drama, Vicky Page is an aspiring ballerina torn between her dedication to dance and her desire to love. While her imperious instructor, Boris Lermontov, urges to her to forget anything but ballet, Vicky begins to fall for the charming young composer Julian Craster. Eventually Vicky, under great emotional stress, must choose to pursue either her art or her romance, a decision that carries serious consequences.
## 285 A dying man in his forties recalls his childhood, his mother, the war and personal moments that tell of and juxtapose pivotal moments in Soviet history with daily life.
## 286 A lone prospector ventures into Alaska looking for gold. He soon gets mixed up with some burly characters, falls in love with the beautiful Georgia, and tries to win her heart with his singular charm.
## 287 Charlie, a wandering tramp, becomes a circus handyman - soon the star of the show - and falls in love with the circus owner's stepdaughter.
## 288 A group of juvenile delinquents live a violent, criminal life in the festering slums of Mexico City, among them the young Pedro, whose morality is gradually corrupted and destroyed by the others.
## 289 In a run-down South American town, four men are paid to drive trucks loaded with nitroglycerin into the jungle through to the oil field. Friendships are tested and rivalries develop as they embark upon the perilous journey.
## 290 Newspaper magnate, Charles Foster Kane is taken from his mother as a boy and made the ward of a rich industrialist. As a result, every well-meaning, tyrannical or self-destructive move he makes for the rest of his life appears in some way to be a reaction to that deeply wounding event.
## 291 The story of a teenage boy named Yu, who falls for Yoko, a girl he runs into while working as an "up-skirt" photographer in an offshoot of the porn industry. His attempts to woo her are complicated by a spot of cross-dressing – which convinces Yoko that she is lesbian – dalliances with kung-fu and crime, and a constant struggle with the guilt that's a legacy of his Catholic upbringing.
## 292 Year three at Hogwarts means new fun and challenges as Harry learns the delicate art of approaching a Hippogriff, transforming shape-shifting Boggarts into hilarity and even turning back time. But the term also brings danger: soul-sucking Dementors hover over the school, an ally of the accursed He-Who-Cannot-Be-Named lurks within the castle walls, and fearsome wizard Sirius Black escapes Azkaban. And Harry will confront them all.
## 293 The summer of his high school freshman year, Hodaka runs away from his remote island home to Tokyo, and quickly finds himself pushed to his financial and personal limits. The weather is unusually gloomy and rainy every day, as if taking its cue from his life. After many days of solitude, he finally finds work as a freelance writer for a mysterious occult magazine. Then, one day, Hodaka meets Hina on a busy street corner. This bright and strong-willed girl possesses a strange and wonderful ability: the power to stop the rain and clear the sky.
## 294 A novice con man teams up with an acknowledged master to avenge the murder of a mutual friend by pulling off the ultimate big con and swindling a fortune from a big-time mobster.
## 295 An ex-tennis pro carries out a plot to have his wife murdered after discovering she is having an affair, and assumes she will soon leave him for the other man anyway. When things go wrong, he improvises a new plan—to frame her for murder instead.
## 296 Japan, 1943, during World War II. Young Suzu leaves her village near Hiroshima to marry and live with her in-laws in Kure, a military harbor. Her creativity to overcome deprivation quickly makes her indispensable at home. Inhabited by an ancestral wisdom, Suzu impregnates the simple gestures of everyday life with poetry and beauty. The many hardships, the loss of loved ones, the frequent air raids of the enemy, nothing alters her enthusiasm…
## 297 Yagami Light is an ace student with great prospects, who's bored out of his mind. One day he finds the "Death Note": a notebook from the realm of the Death Gods, with the power to kill people in any way he desires. With the Death Note in hand, Light decides to create his perfect world, without crime or criminals. However, when criminals start dropping dead one by one, the authorites send the legendary detective L to track down the killer, and a battle of wits, deception and logic ensues...this was aired on Japanese tv shortly after the death note anime was completed, this special basically re-cuts the first 26 episodes of the series into a two hour movie with some new scenes and dialogue added and the story is seen from ryuk's viewpoint.
## 298 Two melancholic Hong Kong policemen fall in love: one with a mysterious underworld figure, the other with a beautiful and ethereal server at a late-night restaurant he frequents.
## 299 In early-1970s Las Vegas, Sam "Ace" Rothstein gets tapped by his bosses to head the Tangiers Casino. At first, he's a great success in the job, but over the years, problems with his loose-cannon enforcer Nicky Santoro, his ex-hustler wife Ginger, her con-artist ex Lester Diamond and a handful of corrupt politicians put Sam in ever-increasing danger.
## 300 Peter Parker is unmasked and no longer able to separate his normal life from the high-stakes of being a super-hero. When he asks for help from Doctor Strange the stakes become even more dangerous, forcing him to discover what it truly means to be Spider-Man.
## 301 Kyuta, a boy living in Shibuya, and Kumatetsu, a lonesome beast from Jutengai, an imaginary world. One day, Kyuta forays into the imaginary world and, as he's looking for his way back, meets Kumatetsu who becomes his spirit guide. That encounter leads them to many adventures.
## 302 Scooby and the gang experience outdoor fun as they go back to Fred's old summer camp.
## 303 Scout Finch, 6, and her older brother Jem live in sleepy Maycomb, Alabama, spending much of their time with their friend Dill and spying on their reclusive and mysterious neighbor, Boo Radley. When Atticus, their widowed father and a respected lawyer, defends a black man named Tom Robinson against fabricated rape charges, the trial and tangent events expose the children to evils of racism and stereotyping.
## 304 Based on the real life story of legendary cryptanalyst Alan Turing, the film portrays the nail-biting race against time by Turing and his brilliant team of code-breakers at Britain's top-secret Government Code and Cypher School at Bletchley Park, during the darkest days of World War II.
## 305 A group of working-class friends decide to enlist in the Army during the Vietnam War and finds it to be hellish chaos -- not the noble venture they imagined. Before they left, Steven married his pregnant girlfriend -- and Michael and Nick were in love with the same woman. But all three are different men upon their return.
## 306 The story of the last Seal Child’s journey home. After their mother’s disappearance, Ben and Saoirse are sent to live with Granny in the city. When they resolve to return to their home by the sea, their journey becomes a race against time as they are drawn into a world Ben knows only from his mother’s folktales. But this is no bedtime story; these fairy folk have been in our world far too long. It soon becomes clear to Ben that Saoirse is the key to their survival.
## 307 As a CODA (Child of Deaf Adults), Ruby is the only hearing person in her deaf family. When the family's fishing business is threatened, Ruby finds herself torn between pursuing her love of music and her fear of abandoning her parents.
## 308 Singer Freddie Mercury, guitarist Brian May, drummer Roger Taylor and bass guitarist John Deacon take the music world by storm when they form the rock 'n' roll band Queen in 1970. Hit songs become instant classics. When Mercury's increasingly wild lifestyle starts to spiral out of control, Queen soon faces its greatest challenge yet – finding a way to keep the band together amid the success and excess.
## 309 During America’s Civil War, Union spies steal engineer Johnnie Gray's beloved locomotive, 'The General'—with Johnnie's lady love aboard an attached boxcar—and he single-handedly must do all in his power to both get The General back and to rescue Annabelle.
## 310 In a world where walking, talking, digitally connected bots have become children's best friends, an 11-year-old finds that his robot buddy doesn't quite work the same as the others do.
## 311 Seoul, South Korea, 1997. When the young but extremely anxious student Jin-seok, his parents and his successful older brother Yoo-seok move to a new home, mysterious and frightening events begin to happen around them, unexplained events that threaten to ruin their seemingly happy lives. Unable to understand what is happening, Jin-seok wonders if he is losing his mind.
## 312 Eugene, a young nobleman, asks two penniless idlers to impersonate his noble relatives to help him marry Gemma, the daughter of an enriched cook.
## 313 An Irish rogue uses his cunning and wit to work his way up the social classes of 18th century England, transforming himself from the humble Redmond Barry into the noble Barry Lyndon.
## 314 Germany, 1944. Leyna, the 15-year old daughter of a white German mother and a black African father, meets Lutz, a compassionate member of the Hitler Youth whose father is a prominent Nazi soldier, and they form an unlikely connection in this quickly changing world.
## 315 American car designer Carroll Shelby and the British-born driver Ken Miles work together to battle corporate interference, the laws of physics, and their own personal demons to build a revolutionary race car for Ford Motor Company and take on the dominating race cars of Enzo Ferrari at the 24 Hours of Le Mans in France in 1966.
## 316 A drama based on the true story of a college professor's bond with the abandoned dog he takes into his home.
## 317 Follow the adventures of Toto and his family, who will have to travel to the South Pole to fulfill their promise to return a polar bear and some Spanish penguins to their home. In order to fulfill the promise, they will have to overcome some obstacles that will teach them how important teamwork is.
## 318 An urban office worker finds that paper airplanes are instrumental in meeting a girl in ways he never expected.
## 319 Fred C. Dobbs and Bob Curtin, both down on their luck in Tampico, Mexico in 1925, meet up with a grizzled prospector named Howard and decide to join with him in search of gold in the wilds of central Mexico. Through enormous difficulties, they eventually succeed in finding gold, but bandits, the elements, and most especially greed threaten to turn their success into disaster.
## 320 Disgruntled Korean War veteran Walt Kowalski sets out to reform his neighbor, Thao Lor, a Hmong teenager who tried to steal Kowalski's prized possession: a 1972 Gran Torino.
## 321 During the Nazi occupation of Rome in 1944, the leader of the Resistance is chased by the Nazis as he seeks refuge and a way to escape.
## 322 The Fool is a movie about a simple plumber. An honest man, he is up against an entire system of corrupted bureaucrats. At stake are the lives of 800 inhabitants of an old dorm that is at risk of collapsing within the span of the night.
## 323 After a seven-year absence, Charlotte Andergast travels to Sweden to reunite with her daughter Eva. The pair have a troubled relationship: Charlotte sacrificed the responsibilities of motherhood for a career as a classical pianist. Over an emotional night, the pair reopen the wounds of the past. Charlotte gets another shock when she finds out that her mentally impaired daughter, Helena, is out of the asylum and living with Eva.
## 324 Determined teen Din is longing to reconnect with his childhood best friend when he meets a wish-granting dragon who shows him the magic of possibilities.
## 325 Ex-con Zequi and company come back for a new adventure.
## 326 A retired legal counselor writes a novel hoping to find closure for one of his past unresolved homicide cases and for his unreciprocated love with his superior - both of which still haunt him decades later.
## 327 An aging Chinese immigrant is swept up in an insane adventure, where she alone can save what's important to her by connecting with the lives she could have led in other universes.
## 328 Mr. Kim is jobless, lost in debt and has been dumped by his girlfriend. He decides to end it all by jumping into the Han River - only to find himself washed up on a small, mid-river island. He soon abandons thoughts of suicide or rescue and begins a new life as a castaway. His antics catch the attention of a young woman whose apartment overlooks the river. Her discovery changes both their lives.
## 329 In 16th century Japan, peasants Genjuro and Tobei sell their earthenware pots to a group of soldiers in a nearby village, in defiance of a local sage's warning against seeking to profit from warfare. Genjuro's pursuit of both riches and the mysterious Lady Wakasa, as well as Tobei's desire to become a samurai, run the risk of destroying both themselves and their wives, Miyagi and Ohama.
## 330 A troubled rock star descends into madness in the midst of his physical and social isolation from everyone.
## 331 On a post-apocalyptic Earth, a robot, built to protect the life of his dying creator's beloved dog, learns about life, love, friendship, and what it means to be human.
## 332 Japanese peasants Matashichi and Tahei try and fail to make a profit from a tribal war. They find a man and woman whom they believe are simple tribe members hiding in a fortress. Although the peasants don't know that Rokurota is a general and Yuki is a princess, the peasants agree to accompany the pair to safety in return for gold. Along the way, the general must prove his expertise in battle while also hiding his identity.
## 333 Advertising man Roger Thornhill is mistaken for a spy, triggering a deadly cross-country chase.
## 334 The story involves two newlyweds, Keaton and Seely, who receive a build-it-yourself house as a wedding gift. The house can be built, supposedly, in "one week." A rejected suitor secretly re-numbers packing crates. The movie recounts Keaton's struggle to assemble the house according to this new "arrangement."
## 335 Ishaan Awasthi is an eight-year-old whose world is filled with wonders that no one else seems to appreciate. Colours, fish, dogs, and kites don't seem important to the adults, who are much more interested in things like homework, marks, and neatness. Ishaan cannot seem to get anything right in class; he is then sent to boarding school, where his life changes forever.
## 336 In a small Tokyo apartment, twelve-year-old Akira must care for his younger siblings after their mother leaves them and shows no sign of returning.
## 337 When retired hitman’s wife goes on vacation with her friend, she asks him to look after the friend's teenage daughter. Things go awry when he is forced to use a little violence to protect the girl from juvenile delinquents, but then they are found dead and the girl is kidnapped.
## 338 Leonardo is a blind teenager dealing with an overprotective mother while trying to live a more independent life. To the disappointment of his best friend, Giovana, he plans to go on an exchange program abroad. When Gabriel, a new student in town, arrives at their classroom, new feelings blossom in Leonardo making him question his plans.
## 339 At the height of the First World War, two young British soldiers must cross enemy territory and deliver a message that will stop a deadly attack on hundreds of soldiers.
## 340 A captured French Resistance fighter during World War II engineers a daunting escape from prison.
## 341 During the invasion of Normandy the photograph of a slim Korean man in German uniform was found. It transpired that the man had served as a soldier in the Japanese, Russian and German armies. His incredible story inspired director Kang Je-Gyu to create this epic war drama.
## 342 The spoiled daughter of a Georgia plantation owner conducts a tumultuous romance with a cynical profiteer during the American Civil War and Reconstruction Era.
## 343 Upon being sent to live with relatives in the countryside due to an illness, an emotionally distant adolescent girl becomes obsessed with an abandoned mansion and infatuated with a girl who lives there - a girl who may or may not be real.
## 344 Rascal. Joker. Dreamer. Genius... You've never met a college student quite like "Rancho." From the moment he arrives at India's most prestigious university, Rancho's outlandish schemes turn the campus upside down—along with the lives of his two newfound best friends. Together, they make life miserable for "Virus," the school’s uptight and heartless dean. But when Rancho catches the eye of the dean's sexy daughter, Virus sets his sights on flunking out the "3 idiots" once and for all.
## 345 Fugui and Jiazhen endure tumultuous events in China as their personal fortunes move from wealthy landownership to peasantry. Addicted to gambling, Fugui loses everything. In the years that follow he is pressed into both the nationalist and communist armies, while Jiazhen is forced into menial work.
## 346 When two brothers are forced to fight in the Korean War, the elder decides to take the riskiest missions if it will help shield the younger from battle.
## 347 The story of British officer T.E. Lawrence's mission to aid the Arab tribes in their revolt against the Ottoman Empire during the First World War. Lawrence becomes a flamboyant, messianic figure in the cause of Arab unity but his psychological instability threatens to undermine his achievements.
## 348 When Juli meets Bryce in the second grade, she knows it's true love. After spending six years trying to convince Bryce the same, she's ready to give up - until he starts to reconsider.
## 349 Terry Malloy dreams about being a prize fighter, while tending his pigeons and running errands at the docks for Johnny Friendly, the corrupt boss of the dockers union. Terry witnesses a murder by two of Johnny's thugs, and later meets the dead man's sister and feels responsible for his death. She introduces him to Father Barry, who tries to force him to provide information for the courts that will smash the dock racketeers.
## 350 Batman has stopped the reign of terror that The Mutants had cast upon his city. Now an old foe wants a reunion and the government wants The Man of Steel to put a stop to Batman.
## 351 Veronika and Boris come together in Moscow shortly before World War II. Walking along the river, they watch cranes fly overhead, and promise to rendezvous before Boris leaves to fight. Boris misses the meeting and is off to the front lines, while Veronika waits patiently, sending letters faithfully. After her house is bombed, Veronika moves in with Boris' family, into the company of a cousin with his own intentions.
## 352 After a lavish dinner party, the guests find themselves mysteriously unable to leave the room.
## 353 The life of boxer Jake LaMotta, whose violence and temper that led him to the top in the ring destroyed his life outside of it.
## 354 In postwar Vienna, Austria, Holly Martins, a writer of pulp Westerns, arrives penniless as a guest of his childhood chum Harry Lime, only to learn he has died. Martins develops a conspiracy theory after learning of a "third man" present at the time of Harry's death, running into interference from British officer Major Calloway, and falling head-over-heels for Harry's grief-stricken lover, Anna.
## 355 Heroin addict Mark Renton stumbles through bad ideas and sobriety attempts with his unreliable friends -- Sick Boy, Begbie, Spud and Tommy. He also has an underage girlfriend, Diane, along for the ride. After cleaning up and moving from Edinburgh to London, Mark finds he can't escape the life he left behind when Begbie shows up at his front door on the lam, and a scheming Sick Boy follows.
## 356 A quirky, dysfunctional family's road trip is upended when they find themselves in the middle of the robot apocalypse and suddenly become humanity's unlikeliest last hope.
## 357 Buster and his new cast now have their sights set on debuting a new show at the Crystal Tower Theater in glamorous Redshore City. But with no connections, he and his singers must sneak into the Crystal Entertainment offices, run by the ruthless wolf mogul Jimmy Crystal, where the gang pitches the ridiculous idea of casting the lion rock legend Clay Calloway in their show. Buster must embark on a quest to find the now-isolated Clay and persuade him to return to the stage.
## 358 An assassin is shot by her ruthless employer, Bill, and other members of their assassination circle – but she lives to plot her vengeance.
## 359 At the age of 10 years, young Rémi is snatched from his adoptive mother and entrusted to the signor Vitalis, a mysterious itinerant musician. Has its hard sides - he will learn the harsh life of acrobat and sing to win his bread. Accompanied by the faithful dog capi and of the small monkey Joli-Coeur, his long trip through France, made for meetings, friendships and mutual assistance, leads him to the secret of its origins.
## 360 Two men attempt to prove they committed the perfect crime by hosting a dinner party after strangling their former classmate to death.
## 361 Mystery Inc. withdraws from solving crimes after botching a case. When Vincent Van Ghoul contacts the gang about an unfinished investigation from Daphne, Shaggy and Scooby's past, the gang springs into action to finish the job that involves catching the 13th Ghost that escaped from the Chest of Demons and is still at large.
## 362 A scientist builds a time machine and accidentally sends his apartment complex manager and a petty burglar to 16th century Moscow, while Tsar Ivan the Terrible travels to 1973.
## 363 Friends Aldo, Giovanni, and Giacomo travel from north to south for Giacomo's wedding, carrying a precious item: the father of the bride, a tyrannical rich man who is both their boss and father-in-law (also Aldo and Giovanni married his daughters), has entrusted them with a wooden leg, the work of a famous artist.
## 364 Zohre's shoes are gone; her older brother Ali lost them. They are poor, there are no shoes for Zohre until they come up with an idea: they will share one pair of shoes, Ali's. School awaits.
## 365 China in the 1920s. After her father's death, 19 year old Songlian is forced to marry the much older lord of a powerful family. With three wives already, each living in a separate house within the great castle, there is fierce competition for his attention and the privileges that are gained. This competition gets out of hand.
## 366 Led by Woody, Andy's toys live happily in his room until Andy's birthday brings Buzz Lightyear onto the scene. Afraid of losing his place in Andy's heart, Woody plots against Buzz. But when circumstances separate Buzz and Woody from their owner, the duo eventually learns to put aside their differences.
## 367 When Gelsomina, a naïve young woman, is purchased from her impoverished mother by brutish circus strongman Zampanò to be his wife and partner, she loyally endures her husband's coldness and abuse as they travel the Italian countryside performing together. Soon Zampanò must deal with his jealousy and conflicted feelings about Gelsomina when she finds a kindred spirit in Il Matto, the carefree circus fool, and contemplates leaving Zampanò.
## 368 An assassin is shot and almost killed by her ruthless employer, Bill, and other members of their assassination circle – but she lives to plot her vengeance. Kill Bill: The Whole Bloody Affair is a complete edit of the two-part martial arts action films Kill Bill: Vol. 1 and Kill Bill: Vol. 2. The film was originally scheduled to be released as one part. However, due to the film's over 4 hour running time, it was split into two parts.
## 369 As Agnes slowly dies of cancer, her sisters are so deeply immersed in their own psychic pains that they can't offer her the support she needs. Maria is wracked with guilt at her husband's attempted suicide, caused by his discovery of her extramarital affair. The self-loathing, suicidal Karin seems to regard her sister with revulsion. Only Anna, the deeply religious maid who lost her young child, seems able to offer Agnes solace and empathy.
## 370 A young man and woman meet on a train in Europe, and wind up spending one evening together in Vienna. Unfortunately, both know that this will probably be their only night together.
## 371 Toshiro Mifune swaggers and snarls to brilliant comic effect in Kurosawa's tightly paced, beautifully composed "Sanjuro." In this companion piece and sequel to "Yojimbo," jaded samurai Sanjuro helps an idealistic group of young warriors weed out their clan's evil influences, and in the process turns their image of a proper samurai on its ear.
## 372 A reclusive English teacher suffering from severe obesity attempts to reconnect with his estranged teenage daughter for one last chance at redemption.
## 373 Dangal is an extraordinary true story based on the life of Mahavir Singh and his two daughters, Geeta and Babita Phogat. The film traces the inspirational journey of a father who trains his daughters to become world class wrestlers.
## 374 A young boy and a girl with a magic crystal must race against pirates and foreign agents in a search for a legendary floating castle.
## 375 Despondent over a painful estrangement from his daughter, trainer Frankie Dunn isn't prepared for boxer Maggie Fitzgerald to enter his life. But Maggie's determined to go pro and to convince Dunn and his cohort to help her.
## 376 Based on the true nail-biting mission that captivated the world. Twelve boys and the coach of a Thai soccer team explore the Tham Luang cave when an unexpected rainstorm traps them in a chamber inside the mountain. Entombed behind a maze of flooded cave tunnels, they face impossible odds. A team of world-class divers navigate through miles of dangerous cave networks to discover that finding the boys is only the beginning.
## 377 A retelling of the biblical book of Hosea set against the backdrop of the California Gold Rush of 1850.
## 378 A true story about Frank Abagnale Jr. who, before his 19th birthday, successfully conned millions of dollars worth of checks as a Pan Am pilot, doctor, and legal prosecutor. An FBI agent makes it his mission to put him behind bars. But Frank not only eludes capture, he revels in the pursuit.
## 379 A fading music hall comedian tries to help a despondent ballet dancer learn to walk and to again feel confident about life.
## 380 Miyo "Muge" Sasaki is a peculiar second-year junior high student who has fallen in love with her classmate Kento Hinode. Muge resolutely pursues Kento every day, but he takes no notice of her. Nevertheless, while carrying a secret she can tell no one, Muge continues to pursue Kento. Muge discovers a magic mask that allows her to transform into a cat named Tarō. The magic lets Muge get close to Kento, but eventually it may also make her unable to transform back to a human.
## 381 Valentine, a student model in Geneva, struggles with a possessive boyfriend and a troubled family. When she runs over a dog, she discovers that its owner, a retired judge, is illegally wiretapping and eavesdropping on his neighbors' phone calls. Although Valentine is outraged, she develops a strange bond with the judge – and as the two become closer, she finds herself caught in the middle of events that could change her life.
## 382 Returning to their lord's castle, samurai warriors Washizu and Miki are waylaid by a spirit who predicts their futures. When the first part of the spirit's prophecy comes true, Washizu's scheming wife, Asaji, presses him to speed up the rest of the spirit's prophecy by murdering his lord and usurping his place. Director Akira Kurosawa's resetting of William Shakespeare's "Macbeth" in feudal Japan is one of his most acclaimed films.
## 383 Professor Barbenfouillis and five of his colleagues from the Academy of Astronomy travel to the Moon aboard a rocket propelled by a giant cannon. Once on the lunar surface, the bold explorers face the many perils hidden in the caves of the mysterious planet.
## 384 Francis, a young man, recalls in his memory the horrible experiences he and his fiancée Jane recently went through. Francis and his friend Alan visit The Cabinet of Dr. Caligari, an exhibit where the mysterious doctor shows the somnambulist Cesare, and awakens him for some moments from his death-like sleep.
## 385 Amy Pond and Rory Williams are trapped on a crashing space liner, and the only way the Eleventh Doctor can rescue them is to save the soul of a lonely old miser. But is Kazran Sardick, the richest man in Sardicktown, beyond redemption? And what is lurking in the fogs of Christmas Eve?
## 386 With Mystery, Inc. on the tail of a strange object in Nowhere, Kansas, the strange hometown of Eustice, Muriel, and Courage, the gang soon find themselves contending with a giant cicada monster and her winged warriors.
## 387 It was a chance meeting started by one of Sol’s friends trying to chat up Jennifer. However, in the end, it was those two who hit it off. Sol enjoyed Jen’s smile, her effort, and how silly she could be. Jen enjoyed Sol’s cooking, his athleticism, and that he would join her in fun moments. As you can imagine, love bloomed, and things got serious. Jen’s investment in Sol led to her pushing him to follow his dreams and even move in to save money. Sol’s investment in Jen well, it led to him proposing. But what started as a liver tumor grew into full-on cancer, so with a diagnosis of 6 months to live, Sol and Jennifer try to make the best of it.
## 388 The Red Ribbon Army, an evil organization that was once destroyed by Goku in the past, has been reformed by a group of people who have created new and mightier Androids, Gamma 1 and Gamma 2, and seek vengeance against Goku and his family.
## 389 In the pre-Civil War United States, Solomon Northup, a free black man from upstate New York, is abducted and sold into slavery. Facing cruelty as well as unexpected kindnesses Solomon struggles not only to stay alive, but to retain his dignity. In the twelfth year of his unforgettable odyssey, Solomon’s chance meeting with a Canadian abolitionist will forever alter his life.
## 390 La Maison en Petits Cubes tells the story of a grandfather's memories as he adds more blocks to his house to stem the flooding waters.
## 391 A comedy show.
## 392 A secret military project endangers Neo-Tokyo when it turns a biker gang member into a rampaging psychic psychopath that only two teenagers and a group of psychics can stop.
## 393 A day in the life of an unfaithful married couple and their steadily deteriorating relationship in Milan.
## 394 Simple Italian postman learns to love poetry while delivering mail to a famous poet; he uses this to woo local beauty Beatrice.
## 395 Betrayed by an informant, Philippe Gerbier finds himself trapped in a torturous Nazi prison camp. Though Gerbier escapes to rejoin the Resistance in occupied Marseilles, France, and exacts his revenge on the informant, he must continue a quiet, seemingly endless battle against the Nazis in an atmosphere of tension, paranoia and distrust.
## 396 The film consists of three independent parts: "Workmate", "Déjà vu" and "Operation Y". The plot follows the adventures of Shurik (alternative spelling — Shourick), the naive and nerdy Soviet student who often gets into ludicrous situations but always finds a way out very neatly. "Operation Y and Shurik's Other Adventures" was a hit movie and became the leader of Soviet film distribution in 1965.
## 397 Carl Fredricksen spent his entire life dreaming of exploring the globe and experiencing life to its fullest. But at age 78, life seems to have passed him by, until a twist of fate (and a persistent 8-year old Wilderness Explorer named Russell) gives him a new lease on life.
## 398 Bill struggles to put together his shattered psyche, in this feature film version of Don Hertzfeldt's animated short film trilogy.
## 399 A story about a mentally ill man wrongfully imprisoned for murder and his relationship with his 6 year old daughter.
## 400 The Nazis, exasperated at the number of escapes from their prison camps by a relatively small number of Allied prisoners, relocate them to a high-security 'escape-proof' camp to sit out the remainder of the war. Undaunted, the prisoners plan one of the most ambitious escape attempts of World War II. Based on a true story.
## 401 Growing up in post-World War II era Arizona, young Sammy Fabelman aspires to become a filmmaker as he reaches adolescence, but soon discovers a shattering family secret and explores how the power of films can help him see the truth.
## 402 Against all the odds, a thirteen year old boy in Malawi invents an unconventional way to save his family and village from famine.
## 403 A former child star torments her paraplegic sister in their decaying Hollywood mansion.
## 404 In the year 2029, the barriers of our world have been broken down by the net and by cybernetics, but this brings new vulnerability to humans in the form of brain-hacking. When a highly-wanted hacker known as 'The Puppetmaster' begins involving them in politics, Section 9, a group of cybernetically enhanced cops, are called in to investigate and stop the Puppetmaster.
## 405 The wolves are howling once again, as a terrifying ancient evil emerges in Beacon Hills. Scott McCall, no longer a teenager yet still an Alpha, must gather new allies and reunite trusted friends to fight back against this powerful and deadly enemy.
## 406 Pietro is a boy from the city. Bruno is the last child of a forgotten mountain village. Over the years Bruno remains faithful to his mountain, while Pietro is the one who comes and goes. Their encounters introduce them to love and loss, reminding them of their origins, letting their destinies unfold, as Pietro and Bruno discover what it means to be true friends for life.
## 407 Following an unexpected tragedy, a child psychologist named Malcolm Crowe meets an nine year old boy named Cole Sear, who is hiding a dark secret.
## 408 Lynn, a brilliant student, after helping her friends to get the grades they need, develops the idea of starting a much bigger exam-cheating business.
## 409 Long ago, in the fantasy world of Kumandra, humans and dragons lived together in harmony. But when an evil force threatened the land, the dragons sacrificed themselves to save humanity. Now, 500 years later, that same evil has returned and it’s up to a lone warrior, Raya, to track down the legendary last dragon to restore the fractured land and its divided people.
## 410 Diagnosed with a mental illness halfway through his senior year of high school, a witty, introspective teen struggles to keep it a secret while falling in love with a brilliant classmate who inspires him to open his heart and not be defined by his condition.
## 411 Sara is a teen girl who is looking forward to her 18th birthday to move away from her controlling father Don. But before she could even blow out the candles, Don imprisons her in the basement of their home.
## 412 Suddenly finding herself in the never-before-seen Land of Luck, the unluckiest person in the world must unite with the magical creatures there to turn her luck around.
## 413 Loosely based on the true-life tale of Ron Woodroof, a drug-taking, women-loving, homophobic man who in 1986 was diagnosed with HIV/AIDS and given thirty days to live.
## 414 God and Satan war over earth; to settle things, they wager on the soul of Faust, a learned and prayerful alchemist.
## 415 Llewelyn Moss stumbles upon dead bodies, $2 million and a hoard of heroin in a Texas desert, but methodical killer Anton Chigurh comes looking for it, with local sheriff Ed Tom Bell hot on his trail. The roles of prey and predator blur as the violent pursuit of money and justice collide.
## 416 In the smog-choked dystopian Los Angeles of 2019, blade runner Rick Deckard is called out of retirement to terminate a quartet of replicants who have escaped to Earth seeking their creator for a way to extend their short life spans.
## 417 A wealthy entrepreneur secretly creates a theme park featuring living dinosaurs drawn from prehistoric DNA. Before opening day, he invites a team of experts and his two eager grandchildren to experience the park and help calm anxious investors. However, the park is anything but amusing as the security systems go off-line and the dinosaurs escape.
## 418 While waiting for a kidney transplant, a young pianist finds an unexpected connection with her doctor — and the courage to fulfill her musical dreams.
## 419 Enraged at the slaughter of Murron, his new bride and childhood love, Scottish warrior William Wallace slays a platoon of the local English lord's soldiers. This leads the village to revolt and, eventually, the entire country to rise up against English rule.
## 420 An ad creative and a successful exec have a great marriage — until he wants to be a dad just as her star is rising. Then he brings someone new home.
## 421 During World War II, two French civilians and a downed British Bomber Crew set out from Paris to cross the demarcation line between Nazi-occupied Northern France and the South. From there they will be able to escape to England. First, they must avoid German troops - and the consequences of their own blunders.
## 422 Through their shared grief and connection to music, an orphaned girl bonds with her emotionally aloof, successful violinist uncle.
## 423 A man is sent back and forth and in and out of time in an experiment that attempts to unravel the fate and the solution to the problems of a post-apocalyptic world during the aftermath of WW3. The experiment results in him getting caught up in a perpetual reminiscence of past events that are recreated on an airport’s viewing pier.
## 424 After a global war, the seaside kingdom known as the Valley of the Wind remains one of the last strongholds on Earth untouched by a poisonous jungle and the powerful insects that guard it. Led by the courageous Princess Nausicaä, the people of the Valley engage in an epic struggle to restore the bond between humanity and Earth.
## 425 Growing up can be a bumpy road, and it's no exception for Riley, who is uprooted from her Midwest life when her father starts a new job in San Francisco. Riley's guiding emotions— Joy, Fear, Anger, Disgust and Sadness—live in Headquarters, the control centre inside Riley's mind, where they help advise her through everyday life and tries to keep things positive, but the emotions conflict on how best to navigate a new city, house and school.
## 426 Ferdinando Cefalù is desperate to marry his cousin, Angela, but he is married to Rosalia and divorce is illegal in Italy. To get around the law, he tries to trick his wife into having an affair so he can catch her and murder her, as he knows he would be given a light sentence for killing an adulterous woman. He persuades a painter to lure his wife into an affair, but Rosalia proves to be more faithful than he expected.
## 427 In an Italian seaside town, young Titta gets into trouble with his friends and watches various local eccentrics as they engage in often absurd behavior. Frequently clashing with his stern father and defended by his doting mother, Titta witnesses the actions of a wide range of characters, from his extended family to Fascist loyalists to sensual women, with certain moments shifting into fantastical scenarios.
## 428 The Primus extracts a Mixed Yuan Bead into a Spirit Seed and a Demon Pill. The Spirit Seed can be reincarnated as a human to help King Zhou establish a new dynasty, whereas the Demon Pill will create a devil threatening humanity. Ne Zha is the one who is destined to be the hero, but instead he becomes a devil incarnate, because the Spirit Seed and a Demon Pill are switched.
## 429 Shizuku lives a simple life, dominated by her love for stories and writing. One day she notices that all the library books she has have been previously checked out by the same person: 'Seiji Amasawa'.
## 430 A young teacher inspires her class of at-risk students to learn tolerance, apply themselves, and pursue education beyond high school.
## 431 William Munny is a retired, once-ruthless killer turned gentle widower and hog farmer. To help support his two motherless children, he accepts one last bounty-hunter mission to find the men who brutalized a prostitute. Joined by his former partner and a cocky greenhorn, he takes on a corrupt sheriff.
## 432 After years spent working as a prostitute in her Italian village, middle-aged Mamma Roma has saved enough money to buy herself a fruit stand so that she can have a respectable middle-class life and reestablish contact with the 16-year-old son she abandoned when he was an infant. But her former pimp threatens to expose her sordid past, and her troubled son seems destined to fall into a life of crime and violence.
## 433 When Dr. Indiana Jones – the tweed-suited professor who just happens to be a celebrated archaeologist – is hired by the government to locate the legendary Ark of the Covenant, he finds himself up against the entire Nazi regime.
## 434 Erik, a loner, finds a friend in Dexter, an eleven-year-old boy with AIDS. They vow to find a cure for AIDS together and save Dexter's life in an eventful summer.
## 435 A young neurosurgeon inherits the castle of his grandfather, the famous Dr. Victor von Frankenstein. In the castle he finds a funny hunchback, a pretty lab assistant and the elderly housekeeper. Young Frankenstein believes that the work of his grandfather was delusional, but when he discovers the book where the mad doctor described his reanimation experiment, he suddenly changes his mind.
## 436 Private eye Jake Gittes lives off of the murky moral climate of sunbaked, pre-World War II Southern California. Hired by a beautiful socialite to investigate her husband's extra-marital affair, Gittes is swept into a maelstrom of double dealings and deadly deceits, uncovering a web of personal and political scandals that come crashing together.
## 437 Lucas is a young man who lives with his religious aunt Lourdes in a quiet country town. He helps his aunt by holding religious meetings with the ladies of the area, in the living room, playing biblical songs on the keyboard. This quiet life will end as soon as the charitable aunt communicates the arrival of another nephew, Mario, just out of jail. The clash of reality between the cousins ends up causing unusual situations, and an unexpected attraction among the boys.
## 438 Jessica knows exactly what her life is supposed to look like and where it takes her. But then she meets Danny. He has a complicated past and could confuse all their plans. Jessica has to decide.
## 439 Honor is an ambitious high school senior whose sole focus is getting into Harvard, assuming she can first score the coveted recommendation from her guidance counselor, Mr. Calvin. Willing to do whatever it takes, Honor concocts a Machiavellian-like plan to take down her top three student competitors, until things take a turn when she unexpectedly falls for her biggest competition, Michael.
## 440 A father living in the forests of the Pacific Northwest with his six young kids tries to assimilate back into society.
## 441 In the small town of Rockwell, Maine in October 1957, a giant metal machine befriends a nine-year-old boy and ultimately finds its humanity by unselfishly saving people from their own fears and prejudices.
## 442 All Might and Deku accept an invitation to go abroad to a floating and mobile manmade city, called 'I-Island', where they research quirks as well as hero supplemental items at the special 'I-Expo' convention that is currently being held on the island. During that time, suddenly, despite an iron wall of security surrounding the island, the system is breached by a villain, and the only ones able to stop him are the students of Class 1-A.
## 443 Mouse desperately wants to join The Midnight Clique, the infamous Baltimore dirt bike riders who rule the summertime streets. When Midnight’s leader, Blax, takes 14-year-old Mouse under his wing, Mouse soon finds himself torn between the straight-and-narrow and a road filled with fast money and violence.
## 444 The powerful true story of Harvard-educated lawyer Bryan Stevenson, who goes to Alabama to defend the disenfranchised and wrongly condemned — including Walter McMillian, a man sentenced to death despite evidence proving his innocence. Bryan fights tirelessly for Walter with the system stacked against them.
## 445 The story of American showman P.T. Barnum, founder of the circus that became the famous traveling Ringling Bros. and Barnum & Bailey Circus.
## 446 To save her father from certain death in the army, a young woman secretly enlists in his place and becomes one of China's greatest heroines in the process.
## 447 Naive and idealistic Jefferson Smith, leader of the Boy Rangers, is appointed to the United States Senate by the puppet governor of his state. He soon discovers, upon going to Washington, many shortcomings of the political process as his earnest goal of a national boys' camp leads to a conflict with the state political boss.
## 448 An unemployed man learns that his ex-girlfriend was murdered. He suddenly finds himself travelling through time to his middle school years and has chance to change the future and save the girl. He aims to rise to the top of the most brutal delinquent gang.
## 449 Young Vincent Malloy dreams of being just like Vincent Price and loses himself in macabre daydreams that annoy his mother.
## 450 In the late 1990s, the arrival of elderly invalid Patrick into Marion and Tom’s home triggers the exploration of seismic events from 40 years previous: the passionate relationship between Tom and Patrick at a time when homosexuality was illegal.
## 451 When Ripley's lifepod is found by a salvage crew over 50 years later, she finds that terra-formers are on the very planet they found the alien species. When the company sends a family of colonists out to investigate her story—all contact is lost with the planet and colonists. They enlist Ripley and the colonial marines to return and search for answers.
## 452 A photographer takes up newsreel shooting to impress a secretary.
## 453 Harry Potter has lived under the stairs at his aunt and uncle's house his whole life. But on his 11th birthday, he learns he's a powerful wizard—with a place waiting for him at the Hogwarts School of Witchcraft and Wizardry. As he learns to harness his newfound powers with the help of the school's kindly headmaster, Harry uncovers the truth about his parents' deaths—and about the villain who's to blame.
## 454 The Flash finds himself in a war-torn alternate timeline and teams up with alternate versions of his fellow heroes to restore the timeline.
## 455 Story of a young woman who marries a fascinating widower only to find out that she must live in the shadow of his former wife, Rebecca, who died mysteriously several years earlier. The young wife must come to grips with the terrible secret of her handsome, cold husband, Max De Winter. She must also deal with the jealous, obsessed Mrs. Danvers, the housekeeper, who will not accept her as the mistress of the house.
## 456 In 1970s Iran, Marjane 'Marji' Statrapi watches events through her young eyes and her idealistic family of a long dream being fulfilled of the hated Shah's defeat in the Iranian Revolution of 1979. However as Marji grows up, she witnesses first hand how the new Iran, now ruled by Islamic fundamentalists, has become a repressive tyranny on its own.
## 457 Scooby-Doo and the gang team up with their pals, Bill Nye The Science Guy and Elvira Mistress of the Dark, to solve this mystery of gigantic proportions and save Crystal Cove!
## 458 In a dog-eat-dog world, Raimundo Nonato has found an alternative way to move ahead: he cooks. No matter what social strata this deceptively innocent young man inhabits, he hones his skills and sharpens his knives—and then he falls in love. Jorge's nimble comic fable provides a smartly constructed gastronomic allegory for ambition and survival.
## 459 A small time thief from Belfast, Gerry Conlon, is falsely implicated in the IRA bombing of a pub that kills several people while he is in London. He and his four friends are coerced by British police into confessing their guilt. Gerry's father and other relatives in London are also implicated in the crime. He spends fifteen years in prison with his father trying to prove his innocence.
## 460 Toto and his friends must rescue his egg children after they're taken away for a gourmet food event in Africa.
## 461 Tracing the struggle of the Algerian Front de Liberation Nationale to gain freedom from French colonial rule as seen through the eyes of Ali from his start as a petty thief to his rise to prominence in the organisation and capture by the French in 1957. The film traces the rebels' struggle and the increasingly extreme measures taken by the French government to quell the revolt.
## 462 A small town girl is caught between dead-end jobs. A high-profile, successful man becomes wheelchair bound following an accident. The man decides his life is not worth living until the girl is hired for six months to be his new caretaker. Worlds apart and trapped together by circumstance, the two get off to a rocky start. But the girl becomes determined to prove to the man that life is worth living and as they embark on a series of adventures together, each finds their world changing in ways neither of them could begin to imagine.
## 463 The night after another unsatisfactory New Year's party, Tim's father tells his son that the men in his family have always had the ability to travel through time. They can't change history, but they can change what happens and has happened in their own lives. Thus begins the start of a lesson in learning to appreciate life itself as it is, as it comes, and most importantly, the people living alongside us.
## 464 The comedic modern-day quintet takes on their 2003 counterparts when villains from each of their worlds join forces to pit the two Titan teams against each other. They'll need to set aside their differences and work together to combat Trigon, Hexagon, Santa Claus (that's right, Santa!) and time itself in order to save the multiverse.
## 465 Four sisters come of age in America in the aftermath of the Civil War.
## 466 A married couple are faced with a difficult decision - to improve the life of their child by moving to another country or to stay in Iran and look after a deteriorating parent who has Alzheimer's disease.
## 467 At a tiny Parisian café, the adorable yet painfully shy Amélie accidentally discovers a gift for helping others. Soon Amelie is spending her days as a matchmaker, guardian angel, and all-around do-gooder. But when she bumps into a handsome stranger, will she find the courage to become the star of her very own love story?
## 468 When Cindy decides that she doesn't want to marry her boyfriend, she runs to Mexico City, where new friendships and unexpected paths teach her that there are so much more possibilities on her life and her talent than she imagines.
## 469 A headstrong young girl in Afghanistan, ruled by the Taliban, disguises herself as a boy in order to provide for her family.
## 470 Light years from Earth, 26 years after being abducted, Peter Quill finds himself the prime target of a manhunt after discovering an orb wanted by Ronan the Accuser.
## 471 A struggling salesman takes custody of his son as he's poised to begin a life-changing professional career.
## 472 The world is stunned when a group of time travelers arrive from the year 2051 to deliver an urgent message: Thirty years in the future, mankind is losing a global war against a deadly alien species. The only hope for survival is for soldiers and civilians from the present to be transported to the future and join the fight. Among those recruited is high school teacher and family man Dan Forester. Determined to save the world for his young daughter, Dan teams up with a brilliant scientist and his estranged father in a desperate quest to rewrite the fate of the planet.
## 473 Widowed shopkeeper Cesira and her 13-year-old daughter Rosetta flee from the allied bombs in Rome during the second World War; they travel to the remote village where Cesira was born. During their journey and in the village and onward, the mother does everything she can to protect Rosetta. Meanwhile, a sensitive young intellectual, Michele, falls in love with Cesira.
## 474 In a world in which Great Britain has become a fascist state, a masked vigilante known only as “V” conducts guerrilla warfare against the oppressive British government. When V rescues a young woman from the secret police, he finds in her an ally with whom he can continue his fight to free the people of Britain.
## 475 During the Nazi occupation of Poland, an acting troupe becomes embroiled in a Polish soldier's efforts to track down a German spy.
## 476 In 1994, on the first day that Yoo Yeul went on air as the new DJ of the popular radio show Music Album, a college girl Mi-su meets Hyun-woo who happens to drop by the bakery she works at. Like the music streaming from the radio, their frequencies slowly come in sync; even when they're apart, the show brings them together through ebbs and flows of events arising from both pure coincidence and inevitability, until the bitter reality sets in and drives them apart.
## 477 In WW2, twelve year old Soviet orphan Ivan Bondarev works for the Soviet army as a scout behind the German lines and strikes a friendship with three sympathetic Soviet officers.
## 478 When a store clerk organizes a contest to climb the outside of a tall building, circumstances force him to make the perilous climb himself.
## 479 Obsessive master thief Neil McCauley leads a top-notch crew on various daring heists throughout Los Angeles while determined detective Vincent Hanna pursues him without rest. Each man recognizes and respects the ability and the dedication of the other even though they are aware their cat-and-mouse game may end in violence.
## 480 Selma, a Czech immigrant on the verge of blindness, struggles to make ends meet for herself and her son, who has inherited the same genetic disorder and will suffer the same fate without an expensive operation. When life gets too difficult, Selma learns to cope through her love of musicals, escaping life's troubles - even if just for a moment - by dreaming up little numbers to the rhythmic beats of her surroundings.
## 481 Rio de Janeiro, Brazil, 1950. In the conservative home of the Gusmão family, Eurídice and Guida are two inseparable sisters who support each other. While Guida can share with her younger sister the details of her romantic adventures, Eurídice finds in her older sister the encouragement she needs to pursue her dream of becoming a professional pianist.
## 482 Suzu is a 17-year-old high-school student living in a rural town with her father. Wounded by the loss of her mother at a young age, Suzu one day discovers the massive online world "U" and dives into this alternate reality as her avatar, Belle. Before long, all of U's eyes are fixed on Belle, when, suddenly, a mysterious, dragon-like figure appears before her.
## 483 Luca and his best friend Alberto experience an unforgettable summer on the Italian Riviera. But all the fun is threatened by a deeply-held secret: they are sea monsters from another world just below the water’s surface.
## 484 An arrogant reporter exploits a story about a man trapped in a cave to revitalize his career.
## 485 The epic tale of a class struggle in twentieth century Italy, as seen through the eyes of two childhood friends on opposing sides.
## 486 A boy growing up in Dublin during the 1980s escapes his strained family life by starting a band to impress the mysterious girl he likes.
## 487 With his wife's disappearance having become the focus of an intense media circus, a man sees the spotlight turned on him when it's suspected that he may not be innocent.
## 488 Luke Skywalker leads a mission to rescue his friend Han Solo from the clutches of Jabba the Hutt, while the Emperor seeks to destroy the Rebellion once and for all with a second dreaded Death Star.
## 489 This is the story of the internal struggle between a man's Brain—a pragmatic protector who calculates his every move, and his Heart—a free-spirited adventurer who wants to let loose.
## 490 101-year-old Rose DeWitt Bukater tells the story of her life aboard the Titanic, 84 years later. A young Rose boards the ship with her mother and fiancé. Meanwhile, Jack Dawson and Fabrizio De Rossi win third-class tickets aboard the ship. Rose tells the whole story from Titanic's departure through to its death—on its first and last voyage—on April 15, 1912.
## 491 Mia, an aspiring actress, serves lattes to movie stars in between auditions and Sebastian, a jazz musician, scrapes by playing cocktail party gigs in dingy bars, but as success mounts they are faced with decisions that begin to fray the fragile fabric of their love affair, and the dreams they worked so hard to maintain in each other threaten to rip them apart.
## 492 A photojournalist’s obsessive quest for the truth about the first expedition to Mt. Everest leads him to search for an esteemed climber who went missing.
## 493 A renegade reporter and a young heiress meet on a bus heading for New York, and end up stuck with each other when the bus leaves them behind at one of the stops.
## 494 Overwhelmed by her suffocating schedule, touring European princess Ann takes off for a night while in Rome. When a sedative she took from her doctor kicks in, however, she falls asleep on a park bench and is found by an American reporter, Joe Bradley, who takes her back to his apartment for safety. At work the next morning, Joe finds out Ann's regal identity and bets his editor he can get exclusive interview with her, but romance soon gets in the way.
## 495 A married farmer falls under the spell of a slatternly woman from the city, who tries to convince him to drown his wife.
## 496 For twenty years, Bruno and Malik have lived in a different world—the world of autistic children and teens. In charge of two separate nonprofit organizations (The Hatch & The Shelter), they train young people from underprivileged areas to be caregivers for extreme cases that have been refused by all other institutions. It’s an exceptional partnership, outside of traditional settings, for some quite extraordinary characters.
## 497 A ferocious, bullying music teacher teaches a dedicated student. This is the 18 minute short film that the feature film was based on.
## 498 In the Deep South, a serial-killing preacher hunts two young children who know the whereabouts of a stash of money.
## 499 When elderly pensioner Umberto Domenico Ferrari returns to his boarding house from a protest calling for a hike in old-age pensions, his landlady demands her 15,000-lire rent by the end of the month or he and his small dog will be turned out onto the street. Unable to get the money in time, Umberto fakes illness to get sent to a hospital, giving his beloved dog to the landlady's pregnant and abandoned maid for temporary safekeeping.
## 500 On school break, Marinette heads to Shanghai to meet Adrien. But after arriving, Marinette loses all her stuff, including the Miraculous that allows her to turn into Ladybug!
## 501 Tells the "riches to rags" story of the Nobles, three upper-class twenty-somethings that appear to have no limits to their checkbooks, and no direction in their lives. Until one day, their father tries to teach them a lesson by staging a financial scandal that forces the whole family to escape to an old house in the poor side of town, and leads the "kids" to do what they haven't done before: get jobs.
## 502 On Christmas Eve, three homeless people living on the streets of Tokyo discover a newborn baby among the trash and set out to find its parents.
## 503 The sheriff of a small town in southwest Texas must keep custody of a murderer whose brother, a powerful rancher, is trying to help him escape. After a friend is killed trying to muster support for him, he and his deputies must find a way to hold out against the rancher's hired guns until the marshal arrives. In the meantime, matters are complicated by the presence of a young gunslinger - and a mysterious beauty who just came in on the last stagecoach.
## 504 Cheol-Min, a man with a dark, picks up a part-time night job as a parking lot attendant. He sits in the tiny pay booth in the parking lot and stares at the small television. A woman named Jung-Hwa walks into the booth. Cheol-Min realizes the woman is blind and she is confusing him for the parking attendant who worked there previously. Nevertheless, the woman comes back on another night to watch the same television drama series. Cheol-Min starts becoming attached to Jung-Hwa and they find out they are connected by the same incident in the past.
## 505 A conscientious factory worker gets his finger cut off by a machine. The accident causes him to become more involved in political and revolutionary groups.
## 506 An epic love story centered around an older man who reads aloud to a woman with Alzheimer's. From a faded notebook, the old man's words bring to life the story about a couple who is separated by World War II, and is then passionately reunited, seven years later, after they have taken different paths.
## 507 The Mystery Inc. gang takes a trip to Japan and finds themselves circling Asia and the Pacific in a treasure hunt, racing against the vengeful Black Samurai and his Ninja warriors to find the legendary Sword of Fate, an ancient blade fabled to possess extraordinary supernatural powers.
## 508 The Bride unwaveringly continues on her roaring rampage of revenge against the band of assassins who had tried to kill her and her unborn child. She visits each of her former associates one-by-one, checking off the victims on her Death List Five until there's nothing left to do … but kill Bill.
## 509 A Russian poet and his interpreter travel to Italy to research the life of an 18th-century composer.
## 510 The true story of the frightening, lonely world of silence and darkness of 7-year-old Helen Keller who, since infancy, has never seen the sky, heard her mother's voice or expressed her innermost feelings. Then Annie Sullivan, a 20-year-old teacher from Boston, arrives. Having just recently regained her own sight, the no-nonsense Annie reaches out to Helen through the power of touch, the only tool they have in common, and leads her bold pupil on a miraculous journey from fear and isolation to happiness and light.
## 511 The cruel and abusive headmaster of a boarding school, Michel Delassalle, is murdered by an unlikely duo -- his meek wife and the mistress he brazenly flaunts. The women become increasingly unhinged by a series of odd occurrences after Delassalle's corpse mysteriously disappears.
## 512 Jerry, a small-town Minnesota car salesman is bursting at the seams with debt... but he's got a plan. He's going to hire two thugs to kidnap his wife in a scheme to collect a hefty ransom from his wealthy father-in-law. It's going to be a snap and nobody's going to get hurt... until people start dying. Enter Police Chief Marge, a coffee-drinking, parka-wearing - and extremely pregnant - investigator who'll stop at nothing to get her man. And if you think her small-time investigative skills will give the crooks a run for their ransom... you betcha!
## 513 Sherlock Holmes and Dr. Watson find themselves in 1890s London in this holiday special.
## 514 Out of prison after a five-year stretch, jewel thief Tony turns down a quick job his friend Jo offers him, until he discovers that his old girlfriend Mado has become the lover of local gangster Pierre Grutter during Tony's absence. Expanding a minor smash-and-grab into a full-scale jewel heist, Tony and his crew appear to get away clean, but their actions after the job is completed threaten the lives of everyone involved.
## 515 In ancient Disboard, Riku is an angry, young warrior intent on saving humanity from the warring Exceed, the sixteen sentient species, fighting to establish the "One True God" amongst the Old Deus. In a lawless land, humanity's lack of magic and weak bodies have made them easy targets, leaving them on the brink of extinction. One day, hope returns to humanity when Riku finds a powerful female Ex-machina, whom he names Schwi. Exiled from her Cluster because of her research into human emotions, Schwi is convinced that humanity has only survived due to the power of these feelings. Forming an unlikely partnership in the midst of the overwhelming chaos, Riku and Schwi must now find the answers to their individual shortcomings in each other, and discover for themselves what it truly means to be human as they fight for their lives against all odds. Each with a powerful new ally in tow, it is now up to them to prevent the extinction of the human race and establish peace throughout Disboard!
## 516 In November 1918, a few days before the Armistice, when Lieutenant Pradelle orders a senseless attack, he causes a useless disaster; but his outrageous act also binds the lives of two soldiers who have nothing more in common than the battlefield: Édouard saves Albert, although at a high cost. They become companions in misfortune who will attempt to survive in a changing world. Pradelle, in his own way, does the same.
## 517 James Bowen, a homeless busker and recovering drug addict, has his life transformed when he meets a stray ginger cat.
## 518 During a dinner, a group of friends decide to share whatever message or phone call they will receive during the evening, with unforeseen consequences.
## 519 The three sons of devout Danish farmer Morten have widely disparate religious beliefs. Youngest son Anders shares his father's religion, but eldest son Mikkel has lost his faith, while middle child Johannes has become delusional and proclaims that he is Jesus Christ himself. When Mikkel's wife, Inger goes into a difficult childbirth, everyone's beliefs are put to the test.
## 520 A Swedish pastor fails a loving woman, a suicidal fisherman and God.
## 521 This story takes place in a small town on the Hungarian Plain. In a provincial town, which is surrounded with nothing else but frost. It is bitterly cold weather — without snow. Even in this bewildered cold hundreds of people are standing around the circus tent, which is put up in the main square, to see — as the outcome of their wait — the chief attraction, the stuffed carcass of a real whale. The people are coming from everywhere. From the neighboring settlings, even from quite far away parts of the country. They are following this clumsy monster as a dumb, faceless, rag-wearing crowd. This strange state of affairs — the appearance of the foreigners, the extreme frost — disturbs the order of the small town. Ambitious personages of the story feel they can take advantage of this situation. The tension growing to the unbearable is brought to explosion by the figure of the Prince, who is pretending facelessness. Even his mere appearance is enough to break loose destructive emotions...
## 522 Abandoned by his prostitute mother in 1920, Douzi was raised by a theater troupe. There he meets Shitou and over the following years the two develop an act entitled "Farewell My Concubine" that brings them fame and fortune. When Shitou marries Juxian, Douzi becomes jealous, the beginnings of the acting duo's explosive breakup and tragic fall take root.
## 523 With the help of her best friend, Fernanda now has to deal with the perks of being married, or perhaps unmarried.
## 524 At a track near Rome, shoeshine boys are watching horses run. Two of the boys Pasquale, an orphan, and Giuseppe, his younger friend are riding. The pair have been saving to buy a horse of their own to ride...
## 525 Gordie, Chris, Teddy and Vern are four friends who decide to hike to find the corpse of Ray Brower, a local teenager, who was hit by a train while plucking blueberries in the wild.
## 526 A young boy comes of age in the most peculiar of circumstances. Tonight is the very first time his Papa and Grandpa are taking him to work. In an old wooden boat they row far out to sea, and with no land in sight, they stop and wait. A big surprise awaits the boy as he discovers his family's most unusual line of work. Should he follow the example of his Papa, or his Grandpa? Will he be able to find his own way in the midst of their conflicting opinions and timeworn traditions?
## 527 In a vibrant city pulsating with rhythm and movement, an elderly man and his young-at-heart wife rekindle their youthful passion for life and each other on one magical night.
## 528 The Theory of Everything is the extraordinary story of one of the world’s greatest living minds, the renowned astrophysicist Stephen Hawking, who falls deeply in love with fellow Cambridge student Jane Wilde.
## 529 The Man With No Name enters the Mexican village of San Miguel in the midst of a power struggle among the three Rojo brothers and sheriff John Baxter. When a regiment of Mexican soldiers bearing gold intended to pay for new weapons is waylaid by the Rojo brothers, the stranger inserts himself into the middle of the long-simmering battle, selling false information to both sides for his own benefit.
## 530 After one of their shoplifting sessions, Osamu and his son come across a little girl in the freezing cold. At first reluctant to shelter the girl, Osamu’s wife agrees to take care of her after learning of the hardships she faces. Although the family is poor, barely making enough money to survive through petty crime, they seem to live happily together until an unforeseen incident reveals hidden secrets, testing the bonds that unite them.
## 531 Each member of a family in Taipei asks hard questions about life's meaning as they live through everyday quandaries. NJ is morose: his brother owes him money, his mother is in a coma, his wife suffers a spiritual crisis when she finds her life a blank and his business partners make bad decisions.
## 532 In this humorous paean to the joys of food, a pair of truck drivers happen onto a decrepit roadside shop selling ramen noodles. The widowed owner, Tampopo, begs them to help her turn her establishment into a paragon of the "art of noodle-soup making". Interspersed are satirical vignettes about the importance of food to different aspects of human life.
## 533 During the Great Depression, a con man finds himself saddled with a young girl—who may or may not be his daughter—and the two forge an unlikely partnership.
## 534 Earth is peaceful following the Tournament of Power. Realizing that the universes still hold many more strong people yet to see, Goku spends all his days training to reach even greater heights. Then one day, Goku and Vegeta are faced by a Saiyan called 'Broly' who they've never seen before. The Saiyans were supposed to have been almost completely wiped out in the destruction of Planet Vegeta, so what's this one doing on Earth? This encounter between the three Saiyans who have followed completely different destinies turns into a stupendous battle, with even Frieza (back from Hell) getting caught up in the mix.
## 535 In the not so distant future, Theodore, a lonely writer, purchases a newly developed operating system designed to meet the user's every need. To Theodore's surprise, a romantic relationship develops between him and his operating system. This unconventional love story blends science fiction and romance in a sweet tale that explores the nature of love and the ways that technology isolates and connects us all.
## 536 Scooby-Doo and Shaggy must go into the underworld ruled by The Goblin King in order to stop a mortal named The Amazing Krudsky who wants power and is a threat to their pals: Fred, Velma, and Daphne.
## 537 In the future, an outbreak of canine flu leads the mayor of a Japanese city to banish all dogs to an island that's a garbage dump. The outcasts must soon embark on an epic journey when a 12-year-old boy arrives on the island to find his beloved pet.
## 538 Wounded Civil War soldier, John Dunbar tries to commit suicide—and becomes a hero instead. As a reward, he's assigned to his dream post, a remote junction on the Western frontier, and soon makes unlikely friends with the local Sioux tribe.
## 539 A young mute girl from Pakistan loses herself in India with no way to head back. A devoted man with a magnanimous spirit undertakes the task to get her back to her motherland and unite her with her family.
## 540 Six deadly stories that explore the extremities of human behaviour involving distressed people seeking revenge.
## 541 An 8 year old boy must return his friend's notebook he took by mistake, lest his friend be punished by expulsion from school.
## 542 In this unique and dynamic live concert experience, Louis C.K.'s exploration of life after 40 destroys politically correct images of modern life with thoughts we have all had...but would rarely admit to.
## 543 A tale of friendship between two unlikely pen pals: Mary, a lonely, eight-year-old girl living in the suburbs of Melbourne, and Max, a forty-four-year old, severely obese man living in New York.
## 544 A psychologist is sent to a space station orbiting a planet called Solaris to investigate the death of a doctor and the mental problems of cosmonauts on the station. He soon discovers that the water on the planet is a type of brain which brings out repressed memories and obsessions.
## 545 Two thirteen year-olds have always been incredibly close but they drift apart after the intimacy of their relationship is questioned by schoolmates. An emotionally transformative and unforgettable portrait of the intersection of friendship and love, identity and independence, and heartbreak and healing.
## 546 Daigo, a cellist, is laid off from his orchestra and moves with his wife back to his small hometown where the living is cheaper. Thinking he’s applying for a job at a travel agency he finds he’s being interviewed for work with departures of a more permanent nature – as an undertaker’s assistant.
## 547 Two North Korean soldiers are killed in the border area between North and South Korea, prompting an investigation by a neutral body. The sergeant is the shooter, but the lead investigator, a Swiss-Korean woman, receives differing accounts from the two sides.
## 548 Four talented alien musicians are kidnapped by a record producer who disguises them as humans. Shep, a space pilot in love with bass player Stella, follows them to Earth. Reprogrammed to forget their real identities and renamed The Crescendolls, the group quickly becomes a huge success playing soulless corporate pop. At a concert, Shep manages to free all the musicians except Stella, and the band sets out to rediscover who they really are -- and to rescue Stella.
## 549 When renowned crime novelist Harlan Thrombey is found dead at his estate just after his 85th birthday, the inquisitive and debonair Detective Benoit Blanc is mysteriously enlisted to investigate. From Harlan's dysfunctional family to his devoted staff, Blanc sifts through a web of red herrings and self-serving lies to uncover the truth behind Harlan's untimely death.
## 550 A man befriends a fellow criminal as the two of them begin serving their sentence on a dreadful prison island, which inspires the man to plot his escape.
## 551 Amidst a heated political climate, the opposition leader is killed in what appears to be a traffic accident. When a magistrate finds evidence of a government cover-up, witnesses start to get targeted. A thinly-fictionalized account of the events surrounding the assassination of Greek politician Grigoris Lambrakis in 1963, Z captures the outrage about the military junta that ruled Greece at the time.
## 552 John Nash is a brilliant but asocial mathematician fighting schizophrenia. After he accepts secret work in cryptography, his life takes a turn for the nightmarish.
## 553 Benjamin Garcia, Benny is deported from the United States. Back home and against a bleak picture, Benny gets involved in the drug business, in which he has for the first time in his life, a spectacular rise surrounded by money, women, violence and fun. But very soon he will discover that criminal life does not always keep its promises.
## 554 When veteran anchorman Howard Beale is forced to retire his 25-year post because of his age, he announces to viewers that he will kill himself during his farewell broadcast. Network executives rethink their decision when his fanatical tirade results in a spike in ratings.
## 555 A story set in the 90s and in the outskirts of Rome to Ostia. A world where money, luxury cars, night clubs, cocaine and synthetic drugs are easy to run. A world in which Vittorio and Cesare, in their early twenties, act in search of their success.
## 556 The film is about an unemployed banker, Henri Verdoux, and his sociopathic methods of attaining income. While being both loyal and competent in his work, Verdoux has been laid-off. To make money for his wife and child, he marries wealthy widows and then murders them. His crime spree eventually works against him when two particular widows break his normal routine.
## 557 Under constant attack by monstrous creatures called Angels that seek to eradicate humankind, U.N. Special Agency NERV introduces two new EVA pilots to help defend the city of Tokyo-3: the mysterious Makinami Mari Illustrous and the intense Asuka Langley Shikinami. Meanwhile, Gendo Ikari and SEELE proceed with a secret project that involves both Rei and Shinji.
## 558 This Oscar-winning animated short film tells the story of one man's love life as seen through the eyes of his best friend and dog, Winston, and revealed bite by bite through the meals they share.
## 559 The marquess of Grillo is a good-natured, clever and women-loving man who is always inventing stories and cracking all types of jokes. The film tells the story of his life.
## 560 After carrying out a flawlessly planned hit, Jef Costello, a contract killer with samurai instincts, finds himself caught between a persistent police investigator and a ruthless employer, and not even his armor of fedora and trench coat can protect him.
## 561 Semi-retired Michigan lawyer Paul Biegler takes the case of Army Lt. Manion, who murdered a local innkeeper after his wife claimed that he raped her. Over the course of an extensive trial, Biegler parries with District Attorney Lodwick and out-of-town prosecutor Claude Dancer to set his client free, but his case rests on the victim's mysterious business partner, who's hiding a dark secret.
## 562 Initially, "Mulholland Dr." was to mark David Lynch's return to television. It is a retooling of a script originally shot as a 94-minute pilot for a TV series (co-written with TV screenwriter Joyce Eliason) for the channel ABC, which had approved the script, but chose not even to air the pilot once it was done in 1999, despite Lynch's labours to cut the project to their liking. It was left in limbo until 18 month later French company Studio Canal Plus (also producer of 'The Straight Story') agreed to pay ABC $7 million for the pilot, and budget a few million more to turn the pilot into a two-hour, 27-minute movie. The cost of the film doubled to $14 million as sets had to be reconstructed and actors recalled.
## 563 A young witch, on her mandatory year of independent life, finds fitting into a new community difficult while she supports herself by running an air courier service.
## 564 A committed film director struggles to complete his movie while coping with a myriad of crises, personal and professional, among the cast and crew.
## 565 In occupied France, Maurice and Joseph, two young Jewish brothers left to their own devices demonstrate an incredible amount of cleverness, courage, and ingenuity to escape the enemy invasion and to try to reunite their family once again.
## 566 When his family moves from their home in Berlin to a strange new house in Poland, young Bruno befriends Shmuel, a boy who lives on the other side of the fence where everyone seems to be wearing striped pajamas. Unaware of Shmuel's fate as a Jewish prisoner or the role his own Nazi father plays in his imprisonment, Bruno embarks on a dangerous journey inside the camp's walls.
## 567 A pianist about to flee from a duel receives a letter from a woman he cannot remember. As she tells the story of her lifelong love for him, he is forced to reinterpret his own past.
## 568 Jeffrey 'The Dude' Lebowski, a Los Angeles slacker who only wants to bowl and drink White Russians, is mistaken for another Jeffrey Lebowski, a wheelchair-bound millionaire, and finds himself dragged into a strange series of events involving nihilists, adult film producers, ferrets, errant toes, and large sums of money.
## 569 An isolated lake, where an old monk lives in a small floating temple. The monk has a young boy living with him, learning to become a monk. We watch as seasons and years pass by.
## 570 To save the universe, and their friendship, Mordecai and Rigby must defeat an evil volleyball coach.
## 571 In 25 AD,Judah Ben-Hur, a Jew in ancient Judea, opposes the occupying Roman empire. Falsely accused by a Roman childhood friend-turned-overlord of trying to kill the Roman governor, he is put into slavery and his mother and sister are taken away as prisoners. Three years later and freed by a grateful Roman galley commander whom he has rescued from drowning, he becomes an expert charioteer for Rome, all the while plotting to return to Judea, find and rescue his family, and avenge himself on his former friend. All the while, the form and work of Jesus move in the background of his life...
## 572 Based on a famous Mexican legend, a group of kids must stop the ghost of a woman whose guilt over the drowning of her own children leads her to abduct youngsters who wander the woods at night.
## 573 In April of 1945, Germany stands at the brink of defeat with the Russian Army closing in from the east and the Allied Expeditionary Force attacking from the west. In Berlin, capital of the Third Reich, Adolf Hitler proclaims that Germany will still achieve victory and orders his generals and advisers to fight to the last man. When the end finally does come, and Hitler lies dead by his own hand, what is left of his military must find a way to end the killing that is the Battle of Berlin, and lay down their arms in surrender.
## 574 The youngest son of an alcoholic former boxer returns home, where he's trained by his father for competition in a mixed martial arts tournament – a path that puts the fighter on a collision course with his estranged, older brother.
## 575 Tired of scaring humans every October 31 with the same old bag of tricks, Jack Skellington, the spindly king of Halloween Town, kidnaps Santa Claus and plans to deliver shrunken heads and other ghoulish gifts to children on Christmas morning. But as Christmas approaches, Jack's rag-doll girlfriend, Sally, tries to foil his misguided plans.
## 576 Equestria's divided. But a bright-eyed hero believes Earth Ponies, Pegasi and Unicorns should be pals — and, hoof to heart, she’s determined to prove it.
## 577 Virgil Oldman is a world renowned antiques expert and auctioneer. An eccentric genius, he leads a solitary life, going to extreme lengths to keep his distance from the messiness of human relationships. When appointed by the beautiful but emotionally damaged Claire to oversee the valuation and sale of her family’s priceless art collection, Virgil allows himself to form an attachment to her – and soon he is engulfed by a passion which will rock his bland existence to the core.
## 578 Blonde Betty Elms has only just arrived in Hollywood to become a movie star when she meets an enigmatic brunette with amnesia. Meanwhile, as the two set off to solve the second woman's identity, filmmaker Adam Kesher runs into ominous trouble while casting his latest project.
## 579 It's the hope that sustains the spirit of every GI: the dream of the day when he will finally return home. For three WWII veterans, the day has arrived. But for each man, the dream is about to become a nightmare.
## 580 When Grizz, Panda, and Ice Bear's love of food trucks and viral videos get out of hand, the brothers are now chased away from their home and embark on a trip to Canada, where they can live in peace.
## 581 Two years after the events of the Fourth Great Ninja War, the moon that Hagoromo Otsutsuki created long ago to seal away the Gedo Statue begins to descend towards the world, threatening to become a meteor that would destroy everything on impact. Amidst this crisis, a direct descendant of Kaguya Otsutsuki named Toneri Otsutsuki attempts to kidnap Hinata Hyuga but ends up abducting her younger sister Hanabi. Naruto and his allies now mount a rescue mission before finding themselves embroiled in a final battle to decide the fate of everything.
## 582 Paris, France. Fred and his colleagues, members of the BPM, the Police Child Protection Unit, dedicated to pursuing all sorts of offenses committed against the weakest, must endure the scrutiny of Melissa, a photographer commissioned to graphically document the daily routine of the team.
## 583 Everyone knows that the stork delivers babies, but where do the storks get the babies from? The answer lies up in the stratosphere, where cloud people sculpt babies from clouds and bring them to life. Gus, a lonely and insecure grey cloud, is a master at creating "dangerous" babies. Crocodiles, porcupines, rams and more - Gus's beloved creations are works of art, but more than a handful for his loyal delivery stork partner, Peck. As Gus's creations become more and more rambunctious, Peck's job gets harder and harder. How will Peck manage to handle both his hazardous cargo and his friend's fiery temperament?
## 584 In 1938, an art collector appeals to eminent archaeologist Dr. Indiana Jones to embark on a search for the Holy Grail. Indy learns that a medieval historian has vanished while searching for it, and the missing man is his own father, Dr. Henry Jones Sr.. He sets out to rescue his father by following clues in the old man's notebook, which his father had mailed to him before he went missing. Indy arrives in Venice, where he enlists the help of a beautiful academic, Dr. Elsa Schneider, along with Marcus Brody and Sallah. Together they must stop the Nazis from recovering the power of eternal life and taking over the world!
## 585 After a bloody invasion of the BOPE in the High-Security Penitentiary Bangu 1 in Rio de Janeiro to control a rebellion of interns, the Lieutenant-Colonel Roberto Nascimento and the second in command Captain André Matias are accused by the Human Right Aids member Diogo Fraga of execution of prisoners. Matias is transferred to the corrupted Military Police and Nascimento is exonerated from the BOPE by the Governor.
## 586 A group of French soldiers, including the patrician Captain de Boeldieu and the working-class Lieutenant Maréchal, grapple with their own class differences after being captured and held in a World War I German prison camp. When the men are transferred to a high-security fortress, they must concoct a plan to escape beneath the watchful eye of aristocratic German officer von Rauffenstein, who has formed an unexpected bond with de Boeldieu.
## 587 Since the moment they met at age 5, Rosie and Alex have been best friends, facing the highs and lows of growing up side by side. A fleeting shared moment, one missed opportunity, and the decisions that follow send their lives in completely different directions. As each navigates the complexities of life, love, and everything in between, they always find their way back to each other - but is it just friendship, or something more?
## 588 Nemo Nobody leads an ordinary existence with his wife and 3 children; one day, he wakes up as a mortal centenarian in the year 2092.
## 589 It's New Year's Eve. Three drunkards evoke a legend. The legend tells that the last person to die in a year, if he is a great sinner, will have to drive during the whole year the Phantom Chariot, that picks up the souls of the dead.
## 590 In the southern town, a gang of "currency traders" is operating, led by the Chief and his assistant Kozodoyev. A modest Soviet clerk and an exemplary family man Semyon Semyonovich Gorbunkov goes on a foreign cruise on a motor ship, on which Kozodoyev also sailed, who must pick up diamonds in one of the eastern cities and transport them in a plaster hand. But due to a misunderstanding, instead of a swindler, an unsuspecting Gorbunkov falls in the appointed place, and a precious plaster is imposed on him. That's where it all starts...
## 591 Tired of being locked in a reptile house where humans gawk at them like they are monsters, a ragtag group of Australia’s deadliest creatures plot an escape from their zoo to the Outback, a place where they’ll fit in without being judged.
## 592 Tom Joad returns to his home after a jail sentence to find his family kicked out of their farm due to foreclosure. He catches up with them on his Uncle’s farm, and joins them the next day as they head for California and a new life... Hopefully.
## 593 James Sullivan and Mike Wazowski are monsters, they earn their living scaring children and are the best in the business... even though they're more afraid of the children than they are of them. When a child accidentally enters their world, James and Mike suddenly find that kids are not to be afraid of and they uncover a conspiracy that could threaten all children across the world.
## 594 A circus' beautiful trapeze artist agrees to marry the leader of side-show performers, but his deformed friends discover she is only marrying him for his inheritance.
## 595 Documentary filmmaker Genya Tachibana has tracked down the legendary actress Chiyoko Fujiwara, who mysteriously vanished at the height of her career. When he presents her with a key she had lost and thought was gone forever, the filmmaker could not have imagined that it would not only unlock the long-held secrets of Chiyoko’s life... but also his own.
## 596 Nemo, an adventurous young clownfish, is unexpectedly taken from his Great Barrier Reef home to a dentist's office aquarium. It's up to his worrisome father Marlin and a friendly but forgetful fish Dory to bring Nemo home -- meeting vegetarian sharks, surfer dude turtles, hypnotic jellyfish, hungry seagulls, and more along the way.
## 597 An aging gangster, Fernand Naudin is hoping for a quiet retirement when he suddenly inherits a fortune from an old friend, a former gangster supremo known as the Mexican. If he is ambivalent about his new found wealth, Fernand is positively nonplussed to discover that he has also inherited his benefactor’s daughter, Patricia. Unfortunately, not only does Fernand have to put up with the thoroughly modern Patricia and her nauseating boyfriend, but he also had to contend with the Mexican’s trigger-happy former employees, who are determined to make a claim.
## 598 Based on the true story of would-be Brooklyn bank robbers John Wojtowicz and Salvatore Naturale. Sonny and Sal attempt a bank heist which quickly turns sour and escalates into a hostage situation and stand-off with the police. As Sonny's motives for the robbery are slowly revealed and things become more complicated, the heist turns into a media circus.
## 599 The classic story of English POWs in Burma forced to build a bridge to aid the war effort of their Japanese captors. British and American intelligence officers conspire to blow up the structure, but Col. Nicholson , the commander who supervised the bridge's construction, has acquired a sense of pride in his creation and tries to foil their plans.
## 600 A young couple, Rosemary and Guy, moves into an infamous New York apartment building, known by frightening legends and mysterious events, with the purpose of starting a family.
## 601 Nine years later, Jesse travels across Europe giving readings from a book he wrote about the night he spent in Vienna with Celine. After his reading in Paris, Celine finds him, and they spend part of the day together before Jesse has to again leave for a flight. They are both in relationships now, and Jesse has a son, but as their strong feelings for each other start to return, both confess a longing for more.
## 602 After discovering a once-in-a-lifetime player with a rocky past abroad, a down on his luck basketball scout takes it upon himself to bring the phenom to the States without his team's approval. Against the odds, they have one final shot to prove they have what it takes to make it in the NBA.
## 603 A Puerto-Rican ex-con, just released from prison, pledges to stay away from drugs and violence despite the pressure around him, and lead a better life outside NYC.
## 604 This romantic drama by Michelangelo Antonioni follows the love life of Vittoria, a beautiful literary translator living in Rome. After splitting from her writer boyfriend, Riccardo, Vittoria meets Piero, a lively stockbroker, on the hectic floor of the Roman stock exchange. Though Vittoria and Piero begin a relationship, it is not one without difficulties, and their commitment to one another is tested during an eclipse.
## 605 In Chinatown, law and order is turned upside down when a trio of feral Chinese gangsters arrive, start terrorizing civilians, and usurping territory. The beleaguered local gangsters team up with the police, lead by the badass loose cannon Ma Seok-do, to bring them down. Based on a true story.
## 606 Chan Wing Yan, a young police officer, has been sent undercover as a mole in the local mafia. Lau Kin Ming, a young mafia member, infiltrates the police force. Years later, their older counterparts, Chen Wing Yan and Inspector Lau Kin Ming, respectively, race against time to expose the mole within their midst.
## 607 When Harry Potter's name emerges from the Goblet of Fire, he becomes a competitor in a grueling battle for glory among three wizarding schools—the Triwizard Tournament. But since Harry never submitted his name for the Tournament, who did? Now Harry must confront a deadly dragon, fierce water demons and an enchanted maze only to find himself in the cruel grasp of He Who Must Not Be Named.
## 608 Ja-yoon is a high school student who struggles with memory loss after she endured some unknown trauma during her childhood. While trying to uncover the truth, she is unwittingly dragged into a world of crime and finds herself on a journey that will awaken many secrets hidden deep within.
## 609 The story of the onset of the HIV-AIDS crisis in New York City in the early 1980s, taking an unflinching look at the nation's sexual politics as gay activists and their allies in the medical community fight to expose the truth about the burgeoning epidemic to a city and nation in denial.
## 610 A young couple's love is tested when Sun-jin is diagnosed with a rare form of Alzheimer's disease.
## 611 In the near future, a weary Logan cares for an ailing Professor X in a hideout on the Mexican border. But Logan's attempts to hide from the world and his legacy are upended when a young mutant arrives, pursued by dark forces.
## 612 In the days following the surrender of Germany in May 1945, a group of young German prisoners of war is handed over to the Danish authorities and subsequently sent to the West Coast, where they are ordered to remove the more than two million mines that the Germans had placed in the sand along the coast. With their bare hands, crawling around in the sand, the boys are forced to perform the dangerous work under the leadership of a Danish sergeant.
## 613 The true story of how the Boston Globe uncovered the massive scandal of child molestation and cover-up within the local Catholic Archdiocese, shaking the entire Catholic Church to its core.
## 614 A little girl is taken on a mind-bending tour of her distant future.
## 615 Years after his father disowns his adopted brother for marrying a woman of lower social standing, a young man goes on a mission to reunite his family.
## 616 Jennifer Dulos, the wealthy, Connecticut mother-of-five who mysteriously vanished.
## 617 On March 21st, 1945, the British Royal Air Force set out on a mission to bomb Gestapo's headquarters in Copenhagen. The raid had fatal consequences as some of the bombers accidentally targeted a school and more than 120 people were killed, 86 of whom were children.
## 618 A young girl discovers an idealized parallel universe behind a secret door in her new home, unaware that it contains a sinister secret.
## 619 After graduating from Emory University in 1992, top student and athlete Christopher McCandless abandons his possessions, gives his entire $24,000 savings account to charity, and hitchhikes to Alaska to live in the wilderness.
## 620 A young man, whose only possession is a motorcycle, spends his time riding around the city looking for empty apartments. After finding one, he hangs out for a while, fixing himself something to eat, washing laundry or making small repairs in return. He always tries to leave before the owners get back but in one ostensibly empty mansion he meets the abused wife of a rich man and she escapes with him.
## 621 In 2006, a group of thieves performed what is considered one of the most famous and smart bank heists in the history of Argentina. How they robbed the Rio bank is as surprising as what happened afterwards. This is their story.
## 622 The deep conversation between a Japanese architect and a French actress forms the basis of this celebrated French film, considered one of the vanguard productions of the French New Wave. Set in Hiroshima after the end of World War II, the couple -- lovers turned friends -- recount, over many hours, previous romances and life experiences. The two intertwine their stories about the past with pondering the devastation wrought by the atomic bomb dropped on the city.
## 623 Sophie reflects on the shared joy and private melancholy of a holiday she took with her father twenty years earlier. Memories real and imagined fill the gaps between miniDV footage as she tries to reconcile the father she knew with the man she didn't.
## 624 Karin hopes to recover from her recent stay at a mental hospital by spending the summer at her family's cottage on a tiny island. Her husband, Martin, cares for her but is frustrated by her physical withdrawal. Her younger brother, Minus, is confused by Karin's vulnerability and his own budding sexuality. Their father, David, cannot overcome his haughty remoteness. Beset by visions, Karin descends further into madness.
## 625 The story of Kurt, a young art student who falls in love with fellow student, Ellie. Ellie’s father, Professor Seeband, a famous doctor, is dismayed at his daughter’s choice of boyfriend, and vows to destroy the relationship. What neither of them knows is that their lives are already connected through a terrible crime Seeband committed decades ago.
## 626 A good-natured but unlucky Italian is constantly going on a difficult situations, but never lose his mood.
## 627 Two angels, Damiel and Cassiel, glide through the streets of Berlin, observing the bustling population, providing invisible rays of hope to the distressed but never interacting with them. When Damiel falls in love with lonely trapeze artist Marion, the angel longs to experience life in the physical world, and finds -- with some words of wisdom from actor Peter Falk -- that it might be possible for him to take human form.
## 628 After his release from prison, bank robber Zequi sets off to recover the stolen money that was buried by his dizzy accomplice. He's horrified to learn that a high school gymnasium is now standing over the site where the loot is stashed. Needing to infiltrate the building, Zequi lands a job as a substitute teacher for a group of wild and unruly students. As the ex-con tries to lay down the law, he starts to realize that life in jail may have been easier than trying to deal with rebellious teens.
## 629 The family-friendly movie explores the transformational role prayer plays in the lives of the Jordan family. Tony and Elizabeth Jordan, a middle-class couple who seemingly have it all – great jobs, a beautiful daughter, their dream home. But appearances can be deceiving. In reality, the Jordan’s marriage has become a war zone and their daughter is collateral damage. With the help of Miss Clara, an older, wiser woman, Elizabeth discovers she can start fighting for her family instead of against them. Through a newly energized faith, Elizabeth and Tony’s real enemy doesn’t have a prayer.
## 630 The story of the Agojie, the all-female unit of warriors who protected the African Kingdom of Dahomey in the 1800s with skills and a fierceness unlike anything the world has ever seen, and General Nanisca as she trains the next generation of recruits and readies them for battle against an enemy determined to destroy their way of life.
## 631 As children in the loving Ekdahl family, Fanny and Alexander enjoy a happy life with their parents, who run a theater company. After their father dies unexpectedly, however, the siblings end up in a joyless home when their mother, Emilie, marries a stern bishop. The bleak situation gradually grows worse as the bishop becomes more controlling, but dedicated relatives make a valiant attempt to aid Emilie, Fanny and Alexander.
## 632 King Arthur, accompanied by his squire, recruits his Knights of the Round Table, including Sir Bedevere the Wise, Sir Lancelot the Brave, Sir Robin the Not-Quite-So-Brave-As-Sir-Lancelot and Sir Galahad the Pure. On the way, Arthur battles the Black Knight who, despite having had all his limbs chopped off, insists he can still fight. They reach Camelot, but Arthur decides not to enter, as "it is a silly place".
## 633 When danger threatens her camp, the fierce and highly skilled Comanche warrior Naru sets out to protect her people. But the prey she stalks turns out to be a highly evolved alien predator with a technically advanced arsenal.
## 634 Twelve episodic tales in the life of a Parisian woman and her slow descent into prostitution.
## 635 The Earthrealm heroes must journey to the Outworld and fight for the survival of their homeland, invaded by the forces of evil warlord Shao Kahn, in the tournament to end all tournaments: the final Mortal Kombat.
## 636 A senator, who became famous for killing a notorious outlaw, returns for the funeral of an old friend and tells the truth about his deed.
## 637 As the son of a Viking leader on the cusp of manhood, shy Hiccup Horrendous Haddock III faces a rite of passage: he must kill a dragon to prove his warrior mettle. But after downing a feared dragon, he realizes that he no longer wants to destroy it, and instead befriends the beast – which he names Toothless – much to the chagrin of his warrior father.
## 638 After his mother’s death, Zucchini is befriended by a kind police officer, Raymond, who accompanies him to his new foster home filled with other orphans his age. There, with the help of his newfound friends, Zucchini eventually learns to trust and love as he searches for a new family of his own.
## 639 Gifted Hands: The Ben Carson Story is a movie based on the life story of world-renowned neurosurgeon Ben Carson from 1961 to 1987.
## 640 Devout Christians Töre and Märeta send their only daughter, the virginal Karin, and their foster daughter, the unrepentant Ingeri, to deliver candles to a distant church. On their way through the woods, the girls encounter a group of savage goat herders who brutally rape and murder Karin as Ingeri remains hidden. When the killers unwittingly seek refuge in the farmhouse of Töre and Märeta, Töre plots a fitting revenge.
## 641 Katie, a 17-year-old, has been sheltered since childhood and confined to her house during the day by a rare disease that makes even the smallest amount of sunlight deadly. Fate intervenes when she meets Charlie and they embark on a summer romance.
## 642 Shuhei Hirayama is a widower with a 24-year-old daughter. Gradually, he comes to realize that she should not be obliged to look after him for the rest of his life, so he arranges a marriage for her.
## 643 Akira Kurosawa's lauded feudal epic presents the tale of a petty thief who is recruited to impersonate Shingen, an aging warlord, in order to avoid attacks by competing clans. When Shingen dies, his generals reluctantly agree to have the impostor take over as the powerful ruler. He soon begins to appreciate life as Shingen, but his commitment to the role is tested when he must lead his troops into battle against the forces of a rival warlord.
## 644 An aging doorman, after being fired from his prestigious job at a luxurious Hotel is forced to face the scorn of his friends, neighbours and society.
## 645 Two modern-day cowboys meet on a shepherding job in the summer of '63, the two share a raw and powerful summer together that turns into a lifelong relationship conflict
## 646 Unscrupulous boxing promoters, violent bookmakers, a Russian gangster, incompetent amateur robbers and supposedly Jewish jewelers fight to track down a priceless stolen diamond.
## 647 Jubei is a masterless ninja who travels the land alone, lending his services to those with gold—or a worthy cause. His fearsome abilities have served him well, but a plot to overthrow the government threatens to end his wandering ways—and possibly his life.
## 648 Aspiring comic Rupert Pupkin attempts to achieve success in show business by stalking his idol, a late night talk-show host who craves his own privacy.
## 649 Celestine is a little mouse trying to avoid a dental career while Ernest is a big bear craving an artistic outlet. When Celestine meets Ernest, they overcome their natural enmity by forging a life of crime together.
## 650 Remy, a resident of Paris, appreciates good food and has quite a sophisticated palate. He would love to become a chef so he can create and enjoy culinary masterpieces to his heart's delight. The only problem is, Remy is a rat. When he winds up in the sewer beneath one of Paris' finest restaurants, the rodent gourmet finds himself ideally placed to realize his dream.
## 651 Because of a technical defect an American bomber team mistakenly orders the destruction of Moscow. The President of the United States has but little time to prevent an atomic catastrophe from occurring.
## 652 A history professor and his wife entertain a young couple who are new to the university's faculty. As the drinks flow, secrets come to light, and the middle-aged couple unload onto their guests the full force of the bitterness, dysfunction, and animosity that defines their marriage.
## 653 A young soldier faces profound disillusionment in the soul-destroying horror of World War I. Together with several other young German soldiers, he experiences the horrors of war, such evil of which he had not conceived of when signing up to fight. They eventually become sad, tormented, and confused of their purpose.
## 654 Kyung-Chul is a dangerous psychopath who kills for pleasure. Soo-Hyun, a top-secret agent, decides to track down the murderer himself. He promises himself that he will do everything in his power to take vengeance against the killer, even if it means that he must become a monster himself.
## 655 Dignity. Poise. Mystery. We expect nothing less from the great turn-of-the-century magician, Presto. But when Presto neglects to feed his rabbit one too many times, the magician finds he isn't the only one with a few tricks up his sleeve!
## 656 Orphaned after a Nazi air raid, Paulette, a young Parisian girl, runs into Michel, an older peasant boy, and the two quickly become close. Together, they try to make sense of the chaotic and crumbling world around them, attempting to cope with death as they create a burial ground for Paulette's deceased pet dog. Eventually, however, Paulette's stay with Michel's family is threatened by the harsh realities of wartime.
## 657 A barren soundstage is stylishly utilized to create a minimalist small-town setting in which a mysterious woman named Grace hides from the criminals who pursue her. The town is two-faced and offers to harbor Grace as long as she can make it worth their effort, so Grace works hard under the employ of various townspeople to win their favor. Tensions flare, however, and Grace's status as a helpless outsider provokes vicious contempt and abuse from the citizens of Dogville.
## 658 The true story of Peppino Impastato, an activist who openly opposed the Mafia in small-town 1970s Sicily despite living just "one hundred steps" away from notorious Mafia boss Tano Badalamenti.
## 659 Woody, Buzz, and the rest of Andy's toys haven't been played with in years. With Andy about to go to college, the gang find themselves accidentally left at a nefarious day care center. The toys must band together to escape and return home to Andy.
## 660 Lisbela is a young woman who loves going to the movies. Leléu is a con man, going from town to town selling all sort of things and performing as master of ceremonies for some cheesy numbers, such as the woman who gets transformed into a gorilla. He gets involved with Linaura, a sexy and beautiful woman who happens to be the wife of the most frightening hitman of the place. The hitman finds out his wife's affair and goes after Leléu, who has to leave in a hurry. In another town, he meets and falls instantly in love with Lisbela, who is engaged to Douglas, a hillbilly who tries hard to pass for a cosmopolitan Rio de Janeiro dweller.
## 661 19-year-old Tomek whiles away his lonely life by spying on his opposite neighbour Magda through binoculars. She's an artist in her mid-thirties, and appears to have everything - not least a constant stream of men at her beck and call. But when the two finally meet, they discover that they have a lot more in common than appeared at first sight...
## 662 When a machine that allows therapists to enter their patient's dreams is stolen, all hell breaks loose. Only a young female therapist can stop it: Paprika.
## 663 Set in the Bronx during the tumultuous 1960s, an adolescent boy is torn between his honest, working-class father and a violent yet charismatic crime boss. Complicating matters is the youngster's growing attraction - forbidden in his neighborhood - for a beautiful black girl.
## 664 In 1879, Kenshin and his allies face their strongest enemy yet: his former brother-in-law Enishi Yukishiro and his minions, who've vowed their revenge.
## 665 A businessman with a disfigured face obtains a lifelike mask from his doctor, but the mask starts altering his personality.
## 666 A fictional account of the life of Japanese author Yukio Mishima told in four parts. The first three parts relate events in three of his novels: The Temple of the Golden Pavilion, Kyoko's House, and Runaway Horses. The last part depicts the events of 25th November 1970.
## 667 Working incognito at his rich dad's company to test his own merits, Teto falls for Paula and tells her he grew up poor, a lie that spins out of control.
## 668 A lifelong love of flight inspires Japanese aviation engineer Jiro Horikoshi, whose storied career includes the creation of the A-6M World War II fighter plane.
## 669 Forced to give up his dreams of art school, Zach works dead-end jobs to support his sister and her son. Questioning his life, he paints, surfs and hangs out with his best friend, Gabe. When Gabe's older brother returns home for the summer, Zach suddenly finds himself drawn into a relationship he didn't expect.
## 670 One part vigilante, one part criminal kingpin, Red Hood begins cleaning up Gotham with the efficiency of Batman, but without following the same ethical code.
## 671 In order to help bring Nazis to justice, U.S. government agent T.R. Devlin recruits Alicia Huberman, the American daughter of a convicted German war criminal, as a spy. As they begin to fall for one another, Alicia is instructed to win the affections of Alexander Sebastian, a Nazi hiding out in Brazil. When Sebastian becomes serious about his relationship with Alicia, the stakes get higher, and Devlin must watch her slip further undercover.
## 672 After narrowly escaping a bizarre accident, a troubled teenager is plagued by visions of a large bunny rabbit that manipulates him to commit a series of crimes.
## 673 A simple, street-smart man tries to protect his family from a tough cop looking for his missing son.
## 674 In Italy in the 1930s, sky pirates in biplanes terrorize wealthy cruise ships as they sail the Adriatic Sea. The only pilot brave enough to stop the scourge is the mysterious Porco Rosso, a former World War I flying ace who was somehow turned into a pig during the war. As he prepares to battle the pirate crew's American ace, Porco Rosso enlists the help of spunky girl mechanic Fio Piccolo and his longtime friend Madame Gina.
## 675 With the help of the "Dragon Sin of Wrath" Meliodas and the worst rebels in history, the Seven Deadly Sins, the "Holy War", in which four races, including Humans, Goddesses, Fairies and Giants fought against the Demons, is finally over. At the cost of the "Lion Sin of Pride" Escanor's life, the Demon King was defeated and the world regained peace. After that, each of the Sins take their own path.
## 676 Joong-ho is a dirty detective turned pimp in financial trouble as several of his girls have recently disappeared without clearing their debts. While trying to track them down, he finds a clue that the vanished girls were all called up by the same client whom one of his girls is meeting with right now.
## 677 Gil Carter and Art Croft ride into a small Nevada town plagued by cattle thieves. Initially suspected of being the rustlers themselves, Carter and Croft eventually join a posse out to get the criminals, who also may be involved in a recent shooting. When the posse closes in on a group that could be the fugitives, they must decide on a course of action, with numerous lives hanging in the balance.
## 678 Three detectives in the corrupt and brutal L.A. police force of the 1950s use differing methods to uncover a conspiracy behind the shotgun slayings of the patrons at an all-night diner.
## 679 When world heavyweight boxing champion, Apollo Creed wants to give an unknown fighter a shot at the title as a publicity stunt, his handlers choose palooka Rocky Balboa, an uneducated collector for a Philadelphia loan shark. Rocky teams up with trainer Mickey Goldmill to make the most of this once in a lifetime break.
## 680 Jack Sparrow, a freewheeling 18th-century pirate, quarrels with a rival pirate bent on pillaging Port Royal. When the governor's daughter is kidnapped, Sparrow decides to help the girl's love save her.
## 681 A decade after a tragic mistake, family man Chas and occult detective John Constantine set out to cure Chas’s daughter Trish from a mysterious supernatural coma. With the help of the mysterious Nightmare Nurse, the influential Queen of Angels, and brutal Aztec God Mictlantecuhtli, the pair just might have a chance at outsmarting the demon Beroul to save Trish’s soul. In a world of shadows and dark magic, not everything is what it seems, and there’s always a price to pay. The path to redemption is never easy, and if Constantine is to succeed, he must navigate through the dark urban underbelly of Los Angeles, outwit the most cunning spawns of hell, and come face to face with arch-nemesis Nergal – all while battling his own inner demons!
## 682 When 17-year-old Makoto Konno gains the ability to, quite literally, "leap" backwards through time, she immediately sets about improving her grades and preventing personal mishaps. However, she soon realises that changing the past isn't as simple as it seems, and eventually, will have to rely on her new powers to shape the future of herself and her friends.
## 683 The gang goes on a trip to check on Velma's younger sister, Madelyn. She's been studying stage magic at the Whirlen Merlin Magic Academy, where apparently there have been sightings of a giant griffin. The gang decides to investigate.
## 684 The teenagers of Disney's most infamous villains return to the Isle of the Lost to recruit a new batch of villainous offspring to join them at Auradon Prep.
## 685 When a car bomb explodes on the American side of the U.S./Mexico border, Mexican drug enforcement agent Miguel Vargas begins his investigation, along with American police captain Hank Quinlan. When Vargas begins to suspect that Quinlan and his shady partner, Menzies, are planting evidence to frame an innocent man, his investigations into their possible corruption quickly put himself and his new bride, Susie, in jeopardy.
## 686 Manhattan explores how the life of a middle-aged television writer dating a teenage girl is further complicated when he falls in love with his best friend's mistress.
## 687 A pair of seducers try to prove who has the best techniques while trying not to fall in love with each other.
## 688 In a Turkish village, five orphaned sisters live under strict rule while members of their family prepare their arranged marriages.
## 689 A musician witnesses the murder of a famous psychic, and then teams up with a fiesty reporter to find the killer while evading attempts on their lives by the unseen killer bent on keeping a dark secret buried.
## 690 Finney Blake, a shy but clever 13-year-old boy, is abducted by a sadistic killer and trapped in a soundproof basement where screaming is of little use. When a disconnected phone on the wall begins to ring, Finney discovers that he can hear the voices of the killer’s previous victims. And they are dead set on making sure that what happened to them doesn’t happen to Finney.
## 691 Pittsburgh, Pennsylvania, 1991. High school freshman Charlie is a wallflower, always watching life from the sidelines, until two senior students, Sam and her stepbrother Patrick, become his mentors, helping him discover the joys of friendship, music and love.
## 692 New York comedian Alvy Singer falls in love with the ditsy Annie Hall.
## 693 Tim and John fell in love while teenagers at their all-boys high school. John was captain of the football team, Tim an aspiring actor playing a minor part in Romeo and Juliet. Their romance endured for 15 years in the face of everything life threw at it - the separations, the discrimination, the temptations, the jealousies and the losses - until the only problem that love can't solve tried to destroy them.
## 694 The Fantastic Mr. Fox bored with his current life, plans a heist against the three local farmers. The farmers, tired of sharing their chickens with the sly fox, seek revenge against him and his family.
## 695 Grace, a compassionate young supervisor at a foster care facility, helps at-risk teens. But when a new charge dredges up memories of her own troubled past, Grace's tough exterior begins eroding.
## 696 Following the death of District Attorney Harvey Dent, Batman assumes responsibility for Dent's crimes to protect the late attorney's reputation and is subsequently hunted by the Gotham City Police Department. Eight years later, Batman encounters the mysterious Selina Kyle and the villainous Bane, a new terrorist leader who overwhelms Gotham's finest. The Dark Knight resurfaces to protect a city that has branded him an enemy.
## 697 Mabel Longhetti, desperate and lonely, is married to a Los Angeles municipal construction worker, Nick. Increasingly unstable, especially in the company of others, she craves happiness, but her extremely volatile behavior convinces Nick that she poses a danger to their family and decides to commit her to an institution for six months. Alone with a trio of kids to raise on his own, he awaits her return, which holds more than a few surprises.
## 698 In a desolate and dark world full of shadows, lives one little girl who seems to do nothing but collect water in jars and protect a large egg she carries everywhere. A mysterious man enters her life... and they discuss the world around them.
## 699 In 1987, five young men, using brutally honest rhymes and hardcore beats, put their frustration and anger about life in the most dangerous place in America into the most powerful weapon they had: their music. Taking us back to where it all began, Straight Outta Compton tells the true story of how these cultural rebels—armed only with their lyrics, swagger, bravado and raw talent—stood up to the authorities that meant to keep them down and formed the world’s most dangerous group, N.W.A. And as they spoke the truth that no one had before and exposed life in the hood, their voice ignited a social revolution that is still reverberating today.
## 700 Clumsy Monsieur Hulot finds himself perplexed by the intimidating complexity of a gadget-filled Paris. He attempts to meet with a business contact but soon becomes lost. His roundabout journey parallels that of an American tourist, and as they weave through the inventive urban environment, they intermittently meet, developing an interest in one another. They eventually get together at a chaotic restaurant, along with several other quirky characters.
## 701 A young farmer in rural Yorkshire numbs his daily frustrations with binge drinking and casual sex, until the arrival of a Romanian migrant worker.
## 702 An epic tale spanning forty years in the life of Celie, an African-American woman living in the South who survives incredible abuse and bigotry. After Celie's abusive father marries her off to the equally debasing 'Mister' Albert Johnson, things go from bad to worse, leaving Celie to find companionship anywhere she can. She perseveres, holding on to her dream of one day being reunited with her sister in Africa.
## 703 When Domenico first meets Filomena in Naples during World War II, he is instantly smitten. Flash forward to the postwar years, and the two meet again, sparking a passionate affair that spans two decades. But when Filomena — who has now become Domenico's kept woman and has secretly borne his children — learns that her lover is planning to wed another, she will stop at nothing to hook him into marrying her instead.
## 704 A teacher (Saverio) and a schoolkeeper (Mario) get lost in the Italian countryside. They find themselves in the late 15th century, they met Leonardo da Vinci and try to teach him how to play cards, they try to stop Columbus, they sing beatles's song etc...
## 705 Harry, Ron and Hermione walk away from their last year at Hogwarts to find and destroy the remaining Horcruxes, putting an end to Voldemort's bid for immortality. But with Harry's beloved Dumbledore dead and Voldemort's unscrupulous Death Eaters on the loose, the world is more dangerous than ever.
## 706 For Pierre Brochant and his friends, Wednesday is “Idiots' Day”. The idea is simple: each person has to bring along an idiot. The one who brings the most spectacular idiot wins the prize. Tonight, Brochant is ecstatic. He has found a gem. The ultimate idiot, “A world champion idiot!”. What Brochant doesn’t know is that Pignon is a real jinx, a past master in the art of bringing on catastrophes...
## 707 Grieving parents journey through an emotional void as they mourn the loss of a child in the aftermath of a tragic school shooting.
## 708 Wael, a former street child, makes a living from small scams with his adoptive mother and partner-in-crime Monique. When this unconventional duo swindles the wrong guy, Victor, an old acquaintance of Monique now in charge of a support organization for troubled teens, they have no choice but to become his interim secretary and educator in order to redeem themselves.
## 709 Paul Baumer and his friends Albert and Muller, egged on by romantic dreams of heroism, voluntarily enlist in the German army. Full of excitement and patriotic fervour, the boys enthusiastically march into a war they believe in. But once on the Western Front, they discover the soul-destroying horror of World War I.
## 710 A monumental windstorm and an abused horse's refusal to work or eat signal the beginning of the end for a poor farmer and his daughter.
## 711 Schoolteacher Bertram Cates is arrested for teaching his students Darwin's theory of evolution. The case receives national attention and one of the newspaper reporters, E.K. Hornbeck, arranges to bring in renowned defense attorney and atheist Henry Drummond to defend Cates. The prosecutor, Matthew Brady is a former presidential candidate, famous evangelist, and old adversary of Drummond.
## 712 In Monterrey, Mexico, a young street gang spends their days dancing to slowed-down cumbia and attending parties. After a mix-up with a local cartel, their leader is forced to migrate to the U.S. but quickly longs to return home.
## 713 Princes who have been turned into Dwarfs seek the red shoes of a lady in order to break the spell, although it will not be easy.
## 714 Young Treasury Agent Eliot Ness arrives in Chicago and is determined to take down Al Capone, but it's not going to be easy because Capone has the police in his pocket. Ness meets Jim Malone, a veteran patrolman and probably the most honorable one on the force. He asks Malone to help him get Capone, but Malone warns him that if he goes after Capone, he is going to war.
## 715 As Hiccup fulfills his dream of creating a peaceful dragon utopia, Toothless’ discovery of an untamed, elusive mate draws the Night Fury away. When danger mounts at home and Hiccup’s reign as village chief is tested, both dragon and rider must make impossible decisions to save their kind.
## 716 Throughout his life Edward Bloom has always been a man of big appetites, enormous passions and tall tales. In his later years, he remains a huge mystery to his son, William. Now, to get to know the real man, Will begins piecing together a true picture of his father from flashbacks of his amazing adventures.
## 717 Returning home from a shopping trip to a nearby town, bored suburban housewife Laura Jesson is thrown by happenstance into an acquaintance with virtuous doctor Alec Harvey. Their casual friendship soon develops during their weekly visits into something more emotionally fulfilling than either expected, and they must wrestle with the potential havoc their deepening relationship would have on their lives and the lives of those they love.
## 718 Story of two young people who belong to different worlds. It is the chronicle of a love improbable, almost impossible but inevitable dragging in a frantic journey they discover the first great love. Babi is a girl from upper-middle class that is educated in goodness and innocence . Hache is a rebellious boy, impulsive, unconscious, has a appetite for risk and danger embodied in endless fights and illegal motorbike races, the limit of common sense
## 719 The story of how Richard Williams served as a coach to his daughters Venus and Serena, who will soon become two of the most legendary tennis players in history.
## 720 A woman returning home falls asleep and has vivid dreams that may or may not be happening in reality. Through repetitive images and complete mismatching of the objective view of time and space, her dark inner desires play out on-screen.
## 721 Brian Cohen is an average young Jewish man, but through a series of ridiculous events, he gains a reputation as the Messiah. When he's not dodging his followers or being scolded by his shrill mother, the hapless Brian has to contend with the pompous Pontius Pilate and acronym-obsessed members of a separatist movement. Rife with Monty Python's signature absurdity, the tale finds Brian's life paralleling Biblical lore, albeit with many more laughs.
## 722 As a Civil War veteran spends years searching for a young niece captured by Indians, his motivation becomes increasingly questionable.
## 723 Five high school students from different walks of life endure a Saturday detention under a power-hungry principal. The disparate group includes rebel John, princess Claire, outcast Allison, brainy Brian and Andrew, the jock. Each has a chance to tell his or her story, making the others see them a little differently -- and when the day ends, they question whether school will ever be the same.
## 724 NYPD cop John McClane's plan to reconcile with his estranged wife is thrown for a serious loop when, minutes after he arrives at her office, the entire building is overtaken by a group of terrorists. With little help from the LAPD, wisecracking McClane sets out to single-handedly rescue the hostages and bring the bad guys down.
## 725 Two con artists try to swindle a stamp collector by selling him a sheet of counterfeit rare stamps (the "nine queens").
## 726 When car dealer Charlie Babbitt learns that his estranged father has died, he returns home to Cincinnati, where he discovers that he has a savant older brother named Raymond and that his father's $3 million fortune is being left to the mental institution in which Raymond lives. Motivated by his father's money, Charlie checks Raymond out of the facility in order to return with him to Los Angeles. The brothers' cross-country trip ends up changing both their lives.
## 727 One day, Koyomi Araragi encounters the horrifying vampire, Kiss-shot Acerola-orion Heart-under-blade A.K.A. the "King of Apparitions." He saves the fatally wounded Kiss-shot by offering his blood at the expense of his own life as a human. Now Koyomi has to face the vampire hunters to retrieve Kiss-shot’s limbs which were taken by these hunters...
## 728 When a young RAF pilot miraculously survives bailing out of his aeroplane without a parachute, he falls in love with an American radio operator. But the officials in the other world realise their mistake and dispatch an angel to collect him.
## 729 A stage director and an actress struggle through a grueling, coast-to-coast divorce that pushes them to their personal extremes.
## 730 Georges and Anne are in their eighties. They are cultivated, retired music teachers. Their daughter, who is also a musician, lives abroad with her family. One day, Anne has a stroke, and the couple's bond of love is severely tested.
## 731 A private detective takes on a case that involves him with three eccentric criminals, a beautiful liar, and their quest for a priceless statuette.
## 732 When a zombie virus pushes Korea into a state of emergency, those trapped on an express train to Busan must fight for their own survival.
## 733 Salvatore "Sal" Fragione is the Italian owner of a pizzeria in Brooklyn. A neighborhood local, Buggin' Out, becomes upset when he sees that the pizzeria's Wall of Fame exhibits only Italian actors. Buggin' Out believes a pizzeria in a black neighborhood should showcase black actors, but Sal disagrees. The wall becomes a symbol of racism and hate to Buggin' Out and to other people in the neighborhood, and tensions rise.
## 734 Dr. Malcolm Sayer, a shy research physician, uses an experimental drug to "awaken" the catatonic victims of a rare disease. Leonard is the first patient to receive the controversial treatment. His awakening, filled with awe and enthusiasm, proves a rebirth for Sayer too, as the exuberant patient reveals life's simple but unutterably sweet pleasures to the introverted doctor.
## 735 Novelist Paul Sheldon crashes his car on a snowy Colorado road. He is found by Annie Wilkes, the "number one fan" of Paul's heroine Misery Chastaine. Annie is also dangerously unstable, and Paul finds himself crippled, drugged, and at her mercy.
## 736 Bacurau, a small town in the Brazilian sertão, mourns the loss of its matriarch, Carmelita, who lived to be 94. Days later, its inhabitants notice that their community has vanished from most maps.
## 737 A fictional history of two legendary revolutionaries' journey away from home before they began fighting for their country in the 1920s.
## 738 In a suburban fantasy world, two teenage elf brothers embark on an extraordinary quest to discover if there is still a little magic left out there.
## 739 In real life, Kwon Yoo is unemployed, but in the virtual game world he is the best leader. Kwon Yoo is then framed for a murder. With the help of hacker Yeo-Wool, he tries to uncover the truth behind the murder case.
## 740 Living with her tyrannical stepfather in a new home with her pregnant mother, 10-year-old Ofelia feels alone until she explores a decaying labyrinth guarded by a mysterious faun who claims to know her destiny. If she wishes to return to her real father, Ofelia must complete three terrifying tasks.
## 741 Jake Blues, just released from prison, puts his old band back togther to save the Catholic home where he and his brother Elwood were raised.
## 742 Metal drummer Ruben begins to lose his hearing. When a doctor tells him his condition will worsen, he thinks his career and life is over. His girlfriend Lou checks the former addict into a rehab for the deaf hoping it will prevent a relapse and help him adapt to his new life. After being welcomed and accepted just as he is, Ruben must choose between his new normal and the life he once knew.
## 743 The Doctor and Clara face their Last Christmas. Trapped on an Arctic base, under attack from terrifying creatures, who are you going to call? Santa Claus!
## 744 A middle aged carpenter, who requires state welfare after injuring himself, is joined by a single mother in a similar scenario.
## 745 The kingdom of Takicardie quakes under the rule of the tyrannical King Charles V-et-III-font-VIII-et-VIII-font-XVI, whose favourite pastime is shooting birds. His archenemy is a cheeky mockingbird, whose favourite pastime is thwarting the king’s attempts to shoot birds. One night, a portrait of the king comes to life and disposes of the real king, taking his place. The portrait king falls in love with a young shepherdess in another painting and intends to marry her. But, alas, the shepherdess has fallen in love with a chimneysweep and together they elope from the king’s palace. Enraged, the king sends his police to capture them and once they are within his power he forces the shepherdess to marry him. The mockingbird must use all his guile and courage to once more thwart the king and bring his evil reign to an end.
## 746 Seibei Iguchi leads a difficult life as a low ranking samurai at the turn of the nineteenth century. A widower with a meager income, Seibei struggles to take care of his two daughters and senile mother. New prospects seem to open up when the beautiful Tomoe, a childhood friend, comes back into he and his daughters' life, but as the Japanese feudal system unravels, Seibei is still bound by the code of honor of the samurai and by his own sense of social precedence. How can he find a way to do what is best for those he loves?
## 747 Charlie Simms is a student at a private preparatory school who comes from a poor family. To earn the money for his flight home to Gresham, Oregon for Christmas, Charlie takes a job over Thanksgiving looking after retired U.S. Army officer Lieutenant Colonel Frank Slade, a cantankerous middle-aged man who lives with his niece and her family.
## 748 In the aftermath of the Spanish Civil War, Ana, a sensitive seven-year-old girl in a rural Spanish hamlet is traumatized after a traveling projectionist screens a print of James Whale's 1931 "Frankenstein" for the village. The youngster is profoundly disturbed by the scenes in which the monster murders the little girl and is later killed himself by the villagers. She questions her sister about the profundities of life and death and believes her older sibling when she tells her that the monster is not dead, but exists as a spirit inhabiting a nearby barn. When a Loyalist soldier, a fugitive from Franco's victorious army, hides out in the barn, Ana crosses from reality into a fantasy world of her own.
## 749 Marty and Doc are at it again in this wacky sequel to the 1985 blockbuster as the time-traveling duo head to 2015 to nip some McFly family woes in the bud. But things go awry thanks to bully Biff Tannen and a pesky sports almanac. In a last-ditch attempt to set things straight, Marty finds himself bound for 1955 and face to face with his teenage parents -- again.
## 750 Determined to prove herself, Officer Judy Hopps, the first bunny on Zootopia's police force, jumps at the chance to crack her first case - even if it means partnering with scam-artist fox Nick Wilde to solve the mystery.
## 751 America's coolest heroes, the Teen Titans, go to Tokyo to track down the mysterious Japanese criminal Brushogun.
## 752 Chickie wants to support his friends fighting in Vietnam, so he does something wild—personally bring them American beer. What starts as a well-meaning journey quickly changes Chickie’s life and perspective. Based on a true story.
## 753 A semi-biographical account of Yip Man, the first martial arts master to teach the Chinese martial art of Wing Chun. The film focuses on events surrounding Ip that took place in the city of Foshan between the 1930s to 1940s during the Second Sino-Japanese War. Directed by Wilson Yip, the film stars Donnie Yen in the lead role, and features fight choreography by Sammo Hung.
## 754 When petty criminal Luke Jackson is sentenced to two years in a Florida prison farm, he doesn't play by the rules of either the sadistic warden or the yard's resident heavy, Dragline, who ends up admiring the new guy's unbreakable will. Luke's bravado, even in the face of repeated stints in the prison's dreaded solitary confinement cell, "the box," make him a rebel hero to his fellow convicts and a thorn in the side of the prison officers.
## 755 The lives of three men who were childhood friends are shattered when one of them has a family tragedy.
## 756 When the popular, restless Landon Carter is forced to participate in the school drama production he falls in love with Jamie Sullivan, the daughter of the town's minister. Jamie has a "to-do" list for her life and also a very big secret she must keep from Landon.
## 757 Paul Atreides, a brilliant and gifted young man born into a great destiny beyond his understanding, must travel to the most dangerous planet in the universe to ensure the future of his family and his people. As malevolent forces explode into conflict over the planet's exclusive supply of the most precious resource in existence-a commodity capable of unlocking humanity's greatest potential-only those who can conquer their fear will survive.
## 758 In 1984, a group of LGBT activists decide to raise money to support the National Union of Mineworkers during their lengthy strike. There is only one problem: the Union seems embarrassed to receive their support.
## 759 Batman has not been seen for ten years. A new breed of criminal ravages Gotham City, forcing 55-year-old Bruce Wayne back into the cape and cowl. But, does he still have what it takes to fight crime in a new era?
## 760 As a young and naive recruit in Vietnam, Chris Taylor faces a moral crisis when confronted with the horrors of war and the duality of man.
## 761 With college decisions looming, Elle juggles her long-distance romance with Noah, changing relationship with bestie Lee and feelings for a new classmate.
## 762 A man without attachments or responsibilities suddenly finds himself with an abandoned baby and leaves for London to try and find the mother. Eight years later after he and his daughter become inseparable Gloria's mother reappears.
## 763 Canadian folk artist Maud Lewis falls in love with a fishmonger while working for him as a live-in housekeeper.
## 764 A special bond develops between plus-sized inflatable robot Baymax, and prodigy Hiro Hamada, who team up with a group of friends to form a band of high-tech heroes.
## 765 In this biographical drama, Selena Quintanilla is born into a musical Mexican-American family in Texas. Her father, Abraham, realizes that his young daughter is talented and begins performing with her at small venues. She finds success and falls for her guitarist, Chris Perez, who draws the ire of her father. Seeking mainstream stardom, Selena begins recording an English-language album which, tragically, she would never complete.
## 766 Bounty hunters seek shelter from a raging blizzard and get caught up in a plot of betrayal and deception.
## 767 Emmi Kurowski, a cleaning lady, is lonely in her old age. Her husband died years ago, and her grown children offer little companionship. One night she goes to a bar frequented by Arab immigrants and strikes up a friendship with middle-aged mechanic Ali. Their relationship soon develops into something more, and Emmi's family and neighbors criticize their spontaneous marriage. Soon Emmi and Ali are forced to confront their own insecurities about their future.
## 768 In the midst of the Great Depression, manipulative emcee Rocky enlists contestants for a dance marathon offering a $1,500 cash prize. Among them are a failed actress, a middle-aged sailor, a delusional blonde and a pregnant girl.
## 769 A retired farmer and widower in his 70s, Alvin Straight learns one day that his distant brother Lyle has suffered a stroke and may not recover. Alvin is determined to make things right with Lyle while he still can, but his brother lives in Wisconsin, while Alvin is stuck in Iowa with no car and no driver's license. Then he hits on the idea of making the trip on his old lawnmower, thus beginning a picturesque and at times deeply spiritual odyssey.
## 770 The Guardians of Arcadia reunite to battle the nefarious Arcane Order, who've reawakened the primordial Titans.
## 771 Set more than a decade after the events of the first film, learn the story of the Sully family (Jake, Neytiri, and their kids), the trouble that follows them, the lengths they go to keep each other safe, the battles they fight to stay alive, and the tragedies they endure.
## 772 The King's Speech tells the story of the man who became King George VI, the father of Queen Elizabeth II. After his brother abdicates, George ('Bertie') reluctantly assumes the throne. Plagued by a dreaded stutter and considered unfit to be king, Bertie engages the help of an unorthodox speech therapist named Lionel Logue. Through a set of unexpected techniques, and as a result of an unlikely friendship, Bertie is able to find his voice and boldly lead the country into war.
## 773 King Randolph sends for his cousin Duchess Rowena to help turn his daughters, Princess Genevieve and her 11 sisters, into better ladies. But the Duchess takes away all the sisters fun, including the sisters favorite pastime: dancing.Thinking all hope is lost they find a secret passageway to a magical land were they can dance the night away.
## 774 What was supposed to be a peaceful protest turned into a violent clash with the police. What followed was one of the most notorious trials in history.
## 775 In a ghetto where religion and drug trafficking rub shoulders, Dounia has a lust for power and success. Supported by Maimouna, her best friend, she decides to follow in the footsteps of Rebecca, a respected dealer. But her encounter with Djigui, a young, disturbingly sensual dancer, throws her off course.
## 776 A group of Serbian socialists prepares for the war in a surreal underground filled by parties, tragedies, love and hate.
## 777 A small egg named Toto decides that he wants to fulfill his purpose in life and become a chicken instead of dying in a frying pan; so he starts a quest to return to the farms along with his new friend, the noisy egg Willy and a crazy bacon stripe. The three friends will face lot of obstacles in their quest.
## 778 A teenager reflects on his life after being accused of cheating on the Indian version of "Who Wants to be a Millionaire?".
## 779 An epic mosaic of many interrelated characters in search of happiness, forgiveness, and meaning in the San Fernando Valley.
## 780 1899, the Christmas-time St.Petersburg. Ice-covered rivers and canals of the capital seethe with festive activities. On the eve of the new century those who should not be destined to meet, come together. They are people from different worlds: Matvey, the son of a lamplighter, whose only treasure is his silver-plated skates; Alice is the daughter of a high-ranking official dreaming of science. Each of them has his own difficult life-story, but having accidentally met they rush forward together in pursuit of their dreams.
## 781 The four old friends meet on the grave of the fifth of them, Perozzi, who died at the end of the first episode. Time has passed but they are still up for adventures and cruel jokes, and while they recall the one they created together with the late friend, new ones are on their way, starting right there at the cemetery.
## 782 The son of a sailor, 5-year-old Sosuke, lives a quiet life on an oceanside cliff with his mother Lisa. One fateful day, he finds a beautiful goldfish trapped in a bottle on the beach and upon rescuing her, names her Ponyo. But she is no ordinary goldfish.
## 783 Two tales of crimes intertwine in present-day Hong Kong.
## 784 Follow the adventures of Belle, a bright young woman who finds herself in the castle of a prince who's been turned into a mysterious beast. With the help of the castle's enchanted staff, Belle soon learns the most important lesson of all -- that true beauty comes from within.
## 785 In order to advance her career in the dynamic world of publicity in Mexico City, Raquel tries to reunite with her high school friend Cecy who has become the queen of social media. But unlike followers, friendships do not come instantly.
## 786 When Day, a sunny fellow, encounters Night, a stranger of distinctly darker moods, sparks fly! Day and Night are frightened and suspicious of each other at first, and quickly get off on the wrong foot. But as they discover each other's unique qualities--and come to realize that each of them offers a different window onto the same world-the friendship helps both to gain a new perspective.
## 787 Escaping death, a Hebrew infant is raised in a royal household to become a prince. Upon discovery of his true heritage, Moses embarks on a personal quest to reclaim his destiny as the leader and liberator of the Hebrew people.
## 788 It's a dreary Christmas 1944 for the American POWs in Stalag 17 and the men in Barracks 4, all sergeants, have to deal with a grave problem—there seems to be a security leak.
## 789 A young bride in the midst of her wedding finds herself mysteriously transported to the TARDIS. The Doctor must discover what her connection is with the Empress of the Racnoss's plan to destroy the world.
## 790 After another spat with her kids, Dona Hermínia decides to take some time off from them and hides away in her aunt's house, where she reminisces about her kids in an age when they still needed her.
## 791 Dull and plain Catherine lives with her emotionally distant father, Dr. Sloper, in 1840s New York. Her days are empty — filled with little more than needlepoint. Enter handsome Morris Townsend, a dashing social climber with his eye on the spinster's heart and substantial inheritance.
## 792 On the cusp of his 30th birthday, Jonathon Larson, a promising young theater composer, navigates love, friendship, and the pressures of life as an artist in New York City.
## 793 A mother lives quietly with her son. One day, a girl is brutally killed, and the boy is charged with the murder. Now, it's his mother's mission to prove him innocent.
## 794 Two competing lawyers join forces to sue a prestigious law firm for AIDS discrimination. As their unlikely friendship develops their courage overcomes the prejudice and corruption of their powerful adversaries.
## 795 A grandiose party to celebrate a sixtieth birthday unleashes a family drama with all the lies that conceal horrendous secrets. The eldest son, Christian, stages a showdown with the popular pater familias; his provocative, moving after-dinner speech dislodges all the masks, which finally fall completely as the father-son conflict intensifies and the bewildered guests look on.
## 796 Paris, in the early 1990s: a group of young activists is desperately tied to finding the cure against an unknown lethal disease. They target the pharmaceutical labs that are retaining potential cures, and multiply direct actions, with the hope of saving their lives as well as the ones of future generations.
## 797 Fast Eddie Felson is a small-time pool hustler with a lot of talent but a self-destructive attitude. His bravado causes him to challenge the legendary Minnesota Fats to a high-stakes match.
## 798 Wallace rents out Gromit's former bedroom to a penguin, who takes up an interest in the techno pants created by Wallace. However, Gromit later learns that the penguin is a wanted criminal.
## 799 Ambitious artist Jabari attempts to balance success and love when he moves into his dream Manhattan apartment and falls for his next-door neighbor.
## 800 A biopic of Temple Grandin, an autistic woman who has become one of top scientists in humane livestock handling.
## 801 Taking its title from an archaic Japanese word meaning "ghost story," this anthology adapts four folk tales. A penniless samurai marries for money with tragic results. A man stranded in a blizzard is saved by Yuki the Snow Maiden, but his rescue comes at a cost. Blind musician Hoichi is forced to perform for an audience of ghosts. An author relates the story of a samurai who sees another warrior's reflection in his teacup.
## 802 Cry Baby, a strong and sensitive girl, is sent off to a disturbing sleepaway school that’s hidden underneath a grandiose façade. Luckily, she has a sweet and unapologetic best friend who sticks up for her when she gets bullied by the other students whose brains are under control by the Principal and his wicked staff. With the help of the magical friends they meet along the way, as well as an Angelic Spirit Guide, they are able to gain the strength they need to fight off the school’s belligerent patriarchal conditioning.
## 803 Shishio sets sail in his ironclad ship to bring down the government. In order to stop him, Kenshin trains with his old master to learn his final technique.
## 804 The arrival of a new student in school changes Leonardo's life. This 15 year-old blind teenager has to deal with the jealousy of his friend Giovana while figuring out the new feelings he's having towards his new friend, Gabriel.
## 805 12-year-old Regan MacNeil begins to adapt an explicit new personality as strange events befall the local area of Georgetown. Her mother becomes torn between science and superstition in a desperate bid to save her daughter, and ultimately turns to her last hope: Father Damien Karras, a troubled priest who is struggling with his own faith.
## 806 The mysterious Count Orlok summons Thomas Hutter to his remote Transylvanian castle in the mountains. The eerie Orlok seeks to buy a house near Hutter and his wife, Ellen. After Orlok reveals his vampire nature, Hutter struggles to escape the castle, knowing that Ellen is in grave danger
## 807 An aging codger named Geri plays a daylong game of chess in the park against himself. Somehow, he begins losing to his livelier opponent. But just when the game's nearly over, Geri manages to turn the tables.
## 808 Cars fly, trees fight back, and a mysterious house-elf comes to warn Harry Potter at the start of his second year at Hogwarts. Adventure and danger await when bloody writing on a wall announces: The Chamber Of Secrets Has Been Opened. To save Hogwarts will require all of Harry, Ron and Hermione’s magical abilities and courage.
## 809 At the beginning of the 1913 Mexican Revolution, greedy bandit Juan Miranda and idealist John H. Mallory, an Irish Republican Army explosives expert on the lam from the British, fall in with a band of revolutionaries plotting to strike a national bank. When it turns out that the government has been using the bank as a hiding place for illegally detained political prisoners -- who are freed by the blast -- Miranda becomes a revolutionary hero against his will.
## 810 After an accidental text message turns into a digital friendship, Vale and Alex start crushing on each other without realizing they've met in real life.
## 811 After barely surviving a violent attack by an elusive serial killer, crime boss Jang Dong-su finds himself forming an unlikely partnership with local detective Jung Tae-seok to catch the sadistic killer simply known as K.
## 812 One day a young woman named Blanca is saved by Xuan, a snake catcher from a nearby village. She has lost her memory, and together they go on a journey to discover her real identity, developing deeper feelings for one another along the way. But as they learn more about her past, they uncover a darker plot of supernatural forces vying for power, with the fate of the world hanging in the balance.
## 813 In his first special in seven years, Ricky Gervais slings his trademark snark at celebrity, mortality and a society that takes everything personally.
## 814 Palermo, Sicily, 1980. Mafia member Tommaso Buscetta decides to move to Brazil with his family fleeing the constant war between the different clans of the criminal organization. But when, after living several misfortunes, he is forced to return to Italy, he makes a bold decision that will change his life and the destiny of Cosa Nostra forever.
## 815 In 2026, four years after the infamous Sword Art Online incident, a revolutionary new form of technology has emerged: the Augma, a device that utilizes an Augmented Reality system. Unlike the Virtual Reality of the NerveGear and the Amusphere, it is perfectly safe and allows players to use it while they are conscious, creating an instant hit on the market. The most popular application for the Augma is the game Ordinal Scale, which immerses players in a fantasy role-playing game with player rankings and rewards. Following the new craze, Kirito's friends dive into the game, and despite his reservations about the system, Kirito eventually joins them. While at first it appears to be just fun and games, they soon find out that the game is not all that it seems...
## 816 A pimp with no other means to provide for himself finds his life spiralling out of control when his prostitute is sent to prison.
## 817 Twelve years after their beloved eldest son, Junpei, drowned while saving a stranger's life, Kyohei and Toshiko welcome their surviving children home for a family reunion. Younger son Ryota still feels that his parents resent that he isn't the one who died; his new wife, Yukari, is awkwardly meeting the rest of the family for the first time. Daughter Chinami strains to fill the uncomfortable pauses with forced cheer.
## 818 Set in 1940s France, a new teacher at a school for disruptive boys gives hope and inspiration.
## 819 It ain't easy bein' green -- especially if you're a likable (albeit smelly) ogre named Shrek. On a mission to retrieve a gorgeous princess from the clutches of a fire-breathing dragon, Shrek teams up with an unlikely compatriot -- a wisecracking donkey.
## 820 A small suburban town receives a visit from a castaway unfinished science experiment named Edward.
## 821 Agnès Varda eloquently captures Paris in the sixties with this real-time portrait of a singer set adrift in the city as she awaits test results of a biopsy. A chronicle of the minutes of one woman’s life, Cléo from 5 to 7 is a spirited mix of vivid vérité and melodrama, featuring a score by Michel Legrand and cameos by Jean-Luc Godard and Anna Karina.
## 822 In a small Jewish community in a pre-Revolutionary Russian village, a poor milkman, determined to find good husbands for his five daughters, consults the traditional matchmaker – and also has words with God.
## 823 Inspired by true events, this film takes place in Rwanda in the 1990s when more than a million Tutsis were killed in a genocide that went mostly unnoticed by the rest of the world. Hotel owner Paul Rusesabagina houses over a thousand refuges in his hotel in attempt to save their lives.
## 824 A private school for young girls is scandalized when one spiteful student accuses the two young women who run the school of being in a relationship.
## 825 When their trip to San Lorenzo takes a turn for the worst, Arnold and his classmate’s only hope of getting home is retracing the dangerous path that led to Arnold's parents' disappearance.
## 826 In this luminous tale set in the former Yugoslavia, Perhan, an engaging young Romany with telekinetic powers, is seduced by the quick-cash world of petty crime that threatens to destroy him and those he loves.
## 827 Tad accidentally unleashes an ancient spell, endangering the lives of his friends Mummy, Jeff, and Belzoni. With everyone against him and only helped by Sara, he sets off on an adventure to end the Curse of the Mummy.
## 828 In the years before the Second World War, a tomboyish postulant at an Austrian abbey is hired as a governess in the home of a widowed naval captain with seven children, and brings a new love of life and music into the home.
## 829 When an unexpected enemy emerges and threatens global safety and security, Nick Fury, director of the international peacekeeping agency known as S.H.I.E.L.D., finds himself in need of a team to pull the world back from the brink of disaster. Spanning the globe, a daring recruitment effort begins!
## 830 In his second year of fighting crime, Batman uncovers corruption in Gotham City that connects to his own family while facing a serial killer known as the Riddler.
## 831 Armed with boyish charm and a sharp wit, the former "SNL" writer offers sly takes on marriage, his beef with babies and the time he met Bill Clinton.
## 832 A biographical drama centered on the rivalry between Formula 1 drivers James Hunt and Niki Lauda during the 1976 Formula One motor-racing season.
## 833 After emigrating to Greece from Nigeria, Vera and Charles Antetokounmpo struggled to survive and provide for their five children, while living under the daily threat of deportation. Desperate to obtain Greek citizenship but undermined by a system that blocked them at every turn, the family's vision, determination and faith lifted them out of obscurity to launch the careers of three NBA champions.
## 834 Comedy icon Dave Chappelle makes his triumphant return to the screen with a pair of blistering, fresh stand-up specials. Filmed at The Palladium in Los Angeles, California, in March 2016.
## 835 A stranger in the city asks questions no one has asked before. Known only by his initials, the man's innocent questions and childlike curiosity take him on a journey of love, laughter and letting go.
## 836 A deranged socialite accosts a tennis star with his theory that if two strangers trade murders, they can disguise their motives and avoid suspicion.
## 837 As Garibaldi's troops begin the unification of Italy in the 1860s, an aristocratic Sicilian family grudgingly adapts to the sweeping social changes undermining their way of life. Proud but pragmatic Prince Don Fabrizio Salina allows his war hero nephew, Tancredi, to marry Angelica, the beautiful daughter of gauche, bourgeois Don Calogero, in order to maintain the family's accustomed level of comfort and political clout.
## 838 In a time when monsters walk the Earth, humanity’s fight for its future sets Godzilla and Kong on a collision course that will see the two most powerful forces of nature on the planet collide in a spectacular battle for the ages.
## 839 The loss of their young daughter threatens to destroy the love and faith of two married musicians.
## 840 An unexpected phone call brings an elderly woman to her childhood country cottage, and memories of an orphan boy she knew 47 years ago come flooding back to her.
## 841 The rigid principles of a devout Catholic man are challenged during a one-night stay with Maud, a divorced woman with an outsize personality.
## 842 An alcoholic ex-football player drinks his days away, having failed to come to terms with his sexuality and his real feelings for his football buddy who died after an ambiguous accident. His wife is crucified by her desperation to make him desire her: but he resists the affections of his wife. His reunion with his father—who is dying of cancer—jogs a host of memories and revelations for both father and son.
## 843 Two teen track stars discover first love as they train for the biggest relay race of their young lives.
## 844 A young boy discovers a stray balloon, which seems to have a mind of its own, on the streets of Paris. The two become inseparable, yet the world’s harsh realities finally interfere.
## 845 As Lord Voldemort tightens his grip on both the Muggle and wizarding worlds, Hogwarts is no longer a safe haven. Harry suspects perils may even lie within the castle, but Dumbledore is more intent upon preparing him for the final battle fast approaching. Together they work to find the key to unlock Voldemorts defenses and to this end, Dumbledore recruits his old friend and colleague Horace Slughorn, whom he believes holds crucial information. Even as the decisive showdown looms, romance blossoms for Harry, Ron, Hermione and their classmates. Love is in the air, but danger lies ahead and Hogwarts may never be the same again.
## 846 Will Kane, the sheriff of a small town in New Mexico, learns a notorious outlaw he put in jail has been freed, and will be arriving on the noon train. Knowing the outlaw and his gang are coming to kill him, Kane is determined to stand his ground, so he attempts to gather a posse from among the local townspeople.
## 847 In the wake of a school tragedy, Vada, Mia and Quinton form a unique and dynamic bond as they navigate the never linear, often confusing journey to heal in a world that feels forever changed.
## 848 Bob Parr has given up his superhero days to log in time as an insurance adjuster and raise his three children with his formerly heroic wife in suburbia. But when he receives a mysterious assignment, it's time to get back into costume.
## 849 Delphine and Solange are two sisters living in Rochefort. Delphine is a dancing teacher and Solange composes and teaches the piano. Maxence is a poet and a painter. He is doing his military service. Simon owns a music shop, he left Paris one month ago to come back where he fell in love 10 years ago. They are looking for love, looking for each other, without being aware that their ideal partner is very close...
## 850 While her son, Kichi, is away at war, a woman and her daughter-in-law survive by killing samurai who stray into their swamp, then selling whatever valuables they find. Both are devastated when they learn that Kichi has died, but his wife soon begins an affair with a neighbor who survived the war, Hachi. The mother disapproves and, when she can't steal Hachi for herself, tries to scare her daughter-in-law with a mysterious mask from a dead samurai.
## 851 After reluctantly agreeing to coach cross-country, high school basketball Coach John Harrison helps the least likely runner attempt the impossible in the biggest race of the year.
## 852 When Lou Bloom, desperate for work, muscles into the world of L.A. crime journalism, he blurs the line between observer and participant to become the star of his own story. Aiding him in his effort is Nina, a TV-news veteran.
## 853 Raised on tales of a Djinn fairy princess, Azur, a young Frenchman goes to North Africa in search of the sprite, only to discover that his close childhood friend, Asmar, an Arab youth whose mother raised both boys also seeks the genie.
## 854 Two teens facing personal struggles form a powerful bond as they embark on a cathartic journey chronicling the wonders of Indiana.
## 855 The countryside isn't always as calm and peaceful as it's made out to be, and the animals on this farm are particularly agitated: a fox who mothers a family of chicks, a rabbit who plays the stork, and a duck who wants to be Santa Claus.
## 856 A mystery novelist devises an insurance scam with his wife's lover – but things aren't exactly as they seem.
## 857 Driven by tragedy, billionaire Bruce Wayne dedicates his life to uncovering and defeating the corruption that plagues his home, Gotham City. Unable to work within the system, he instead creates a new identity, a symbol of fear for the criminal underworld - The Batman.
## 858 A quiet and inconspicuous man rents an apartment in France where he finds himself drawn into a rabbit hole of dangerous paranoia.
## 859 As a wild stallion travels across the frontiers of the Old West, he befriends a young human and finds true love with a mare.
## 860 After Regina Lampert falls for the dashing Peter Joshua on a skiing holiday in the French Alps, she discovers upon her return to Paris that her husband has been murdered. Soon, she and Peter are giving chase to three of her late husband's World War II cronies, Tex, Scobie and Gideon, who are after a quarter of a million dollars the quartet stole while behind enemy lines. But why does Peter keep changing his name?
## 861 Matko is a small time hustler, living by the Danube with his 17-year-old son Zare. After a failed business deal he owes money to the much more successful gangster Dadan. Dadan has a sister, Afrodita, that he desperately wants to see get married so they strike a deal: Zare is to marry her.
## 862 A weak-willed Italian man becomes a fascist flunky who goes abroad to arrange the assassination of his old teacher, now a political dissident.
## 863 Career criminal Johnny Clay recruits a sharpshooter, a crooked police officer, a bartender and a betting teller named George, among others, for one last job before he goes straight and gets married. But when George tells his restless wife about the scheme to steal millions from the racetrack where he works, she hatches a plot of her own.
## 864 When the Bad Guys, a crew of criminal animals, are finally caught after years of heists and being the world’s most-wanted villains, Mr. Wolf brokers a deal to save them all from prison.
## 865 Ricky is a defiant young city kid who finds himself on the run with his cantankerous foster uncle in the wild New Zealand bush. A national manhunt ensues, and the two are forced to put aside their differences and work together to survive.
## 866 Valentin is Acapulco's resident playboy, until a former fling leaves a baby on his doorstep and him heading with her out of Mexico.
## 867 The story of Elwood P. Dowd who makes friends with a spirit taking the form of a human-sized rabbit named Harvey that only he sees (and a few privileged others on occasion also.) After his sister tries to commit him to a mental institution, a comedy of errors ensues. Elwood and Harvey become the catalysts for a family mending its wounds and for romance blossoming in unexpected places.
## 868 African-American Philadelphia police detective Virgil Tibbs is arrested on suspicion of murder by Bill Gillespie, the racist police chief of tiny Sparta, Mississippi. After Tibbs proves not only his own innocence but that of another man, he joins forces with Gillespie to track down the real killer. Their investigation takes them through every social level of the town, with Tibbs making enemies as well as unlikely friends as he hunts for the truth.
## 869 In a village of the Po valley where the earth is hard and life miserly, the priest and the communist mayor are always fighting to be the head of the community. If in secret, they admired and liked each other, politics still divided them as it is dividing the country. And when the mayor wants his "People's House"; the priest wants his "Garden City" for the poor. Division exist between the richest and the poorest, the pious and the atheists and even between lovers. But if the people are hard as the country, they are good in the bottom of there heart.
## 870 Before he was a protector, Kenshin was a fearsome assassin known as Battosai. But when he meets gentle Tomoe Yukishiro, a beautiful young woman who carries a huge burden in her heart, his life will change forever.
## 871 When dad has to unexpectedly step in for mom to do his daughter Zuri’s hair before a big event, what seems like a simple task is anything but as these locks have a mind of their own!
## 872 Set on an island off the coast of New England in the summer of 1965, Moonrise Kingdom tells the story of two twelve-year-olds who fall in love, make a secret pact, and run away together into the wilderness. As various authorities try to hunt them down, a violent storm is brewing off-shore – and the peaceful island community is turned upside down in more ways than anyone can handle.
## 873 Set in the neurosurgical ward of Copenhagen's Rigshospitalet, the city and country's main hospital, nicknamed "Riget", a number of characters, staff and patients alike, encounter bizarre phenomena, both human and supernatural.
## 874 Returning for his fifth year of study at Hogwarts, Harry is stunned to find that his warnings about the return of Lord Voldemort have been ignored. Left with no choice, Harry takes matters into his own hands, training a small group of students to defend themselves against the dark arts.
## 875 Family and friends try to sabotage the budding romance between a young upper class girl and a humble student.
## 876 Holly Golightly is an eccentric New York City playgirl determined to marry a Brazilian millionaire. But when young writer Paul Varjak moves into her apartment building, her past threatens to get in their way.
## 877 His only friend called him 'the man from nowhere'... Taesik, a former special agent becomes a loner after losing his wife in a miserable accident and lives a bitter life running a pawnshop. He only has a few customers and a friend named Somi, a little girl next door. As Taesik spends more and more time with Somi, he gets attached to her. Then Somi is kidnapped by a gang, and as Taesik tries to save Somi by becoming deeply associated with the gang his mysterious past is revealed.
## 878 When Charlie Brown complains about the overwhelming materialism that he sees amongst everyone during the Christmas season, Lucy suggests that he become director of the school Christmas pageant. Charlie Brown accepts, but is a frustrating struggle. When an attempt to restore the proper spirit with a forlorn little fir Christmas tree fails, he needs Linus' help to learn the meaning of Christmas.
## 879 World famous movie star Olivia faces a PR disaster when a paparazzi snaps a photo of her with her married lover, Vincent. The hard-working valet Antonio accidentally appears in the same photo and is enlisted to pose as Olivia’s new boyfriend as a cover-up. This ruse with Olivia thrusts Antonio into the spotlight and unexpected chaos.
## 880 A promising career with the police, a baby on the way... Marc's life seems to be right on track. Then he meets fellow policeman Kay and during their regular jogs Marc experiences a never-before-felt sense of ease and effortlessness -- and what it means to fall in love with another man.
## 881 Amidst her own personality crisis, southern housewife Evelyn Couch meets Ninny, an outgoing old woman who tells her the story of Idgie Threadgoode and Ruth Jamison, two young women who experienced hardships and love in Whistle Stop, Alabama in the 1920s.
## 882 Low-level bureaucrat Sam Lowry escapes the monotony of his day-to-day life through a recurring daydream of himself as a virtuous hero saving a beautiful damsel. Investigating a case that led to the wrongful arrest and eventual death of an innocent man instead of wanted terrorist Harry Tuttle, he meets the woman from his daydream, and in trying to help her gets caught in a web of mistaken identities, mindless bureaucracy and lies.
## 883 On her wild quest for love, 9-year-old Benni's untamed energy drives everyone around her to despair.
## 884 Photographer Robert Kincaid wanders into the life of housewife Francesca Johnson for four days in the 1960s.
## 885 American expat Mickey Pearson has built a highly profitable marijuana empire in London. When word gets out that he’s looking to cash out of the business forever it triggers plots, schemes, bribery and blackmail in an attempt to steal his domain out from under him.
## 886 A group of people traveling on a stagecoach find their journey complicated by the threat of Geronimo, and learn something about each other in the process.
## 887 Occupied France, 1942. Gilles is arrested by SS soldiers alongside other Jews and sent to a camp in Germany. He narrowly avoids sudden execution by swearing to the guards that he is not Jewish, but Persian. This lie temporarily saves him, but Gilles gets assigned a life-or-death mission: to teach Farsi to Head of Camp Koch, who dreams of opening a restaurant in Iran once the war is over. Through an ingenious trick, Gilles manages to survive by inventing words of "Farsi" every day and teaching them to Koch.
## 888 After going their separate ways, Scooby-Doo, Shaggy, Velma, Daphne, and Fred reunite to investigate the ghost of Moonscar the pirate on a haunted bayou island, but it turns out the swashbuckler's spirit isn't the only creepy character on the island. The sleuths also meet up with cat creatures and zombies... and it looks like for the first time in their lives, these ghouls might actually be real.
## 889 During the 1972 elections, two reporters' investigation sheds light on the controversial Watergate scandal that compels President Nixon to resign from his post.
## 890 Julie is haunted by her grief after living through a tragic auto wreck that claimed the life of her composer husband and young daughter. Her initial reaction is to withdraw from her relationships, lock herself in her apartment and suppress her pain. But avoiding human interactions on the bustling streets of Paris proves impossible, and she eventually meets up with Olivier, an old friend who harbors a secret love for her, and who could draw her back to reality.
## 891 A lighthearted take on director Yasujiro Ozu’s perennial theme of the challenges of intergenerational relationships, Good Morning tells the story of two young boys who stop speaking in protest after their parents refuse to buy a television set. Ozu weaves a wealth of subtle gags through a family portrait as rich as those of his dramatic films, mocking the foibles of the adult world through the eyes of his child protagonists. Shot in stunning color and set in a suburb of Tokyo where housewives gossip about the neighbors’ new washing machine and unemployed husbands look for work as door-to-door salesmen, this charming comedy refashions Ozu’s own silent classic I Was Born, But . . . to gently satirize consumerism in postwar Japan.
## 892 Taped live and in concert at Constitution Hall in Washington, D.C. in August, 1983, Eddie Murphy: Delirious captures Eddie Murphy's wild and outrageous stand-up comedy act, which he performed in New York and eighteen other cities across the U.S. to standing-room-only audiences. Eddie's comedy was groundbreaking, completely new, razor sharp and definitely funny.Eddie Murphy pontificates in his own vulgarly hilarious fashion on everything from bizarre sexual fantasies to reliving the family barbecue, and is peppered with Eddie's one-of-a-kind wit. Laugh along as Eddie reminiscences of hot childhood days and the ice cream man intermixed with classic vocal parodies of top American entertainers.Experience Eddie Murphy at his best, live and red hot! Delirious! Uncensored and Uncut!
## 893 The year is 2071. Following a terrorist bombing, a deadly virus is released on the populace of Mars and the government has issued the largest bounty in history, for the capture of whoever is behind it. The bounty hunter crew of the spaceship Bebop; Spike, Faye, Jet and Ed, take the case with hopes of cashing in the bounty. However, the mystery surrounding the man responsible, Vincent, goes deeper than they ever imagined, and they aren't the only ones hunting him.
## 894 Mob assassin Jeffrey is no ordinary hired gun; the best in his business, he views his chosen profession as a calling rather than simply a job. So, when beautiful nightclub chanteuse Jennie is blinded in the crossfire of his most recent hit, Jeffrey chooses to retire after one last job to pay for his unintended victim's sight-restoring operation. But when Jeffrey is double-crossed, he reluctantly joins forces with a rogue policeman to make things right.
## 895 A sweeping romantic epic set in Japan in the years before World War II, a penniless Japanese child is torn from her family to work as a maid in a geisha house.
## 896 Javier is what we have dubbed as a "husband-in-law." That is that without taking care of the care of the house and children at all, he knows exactly what needs to be done, and that he continuously collects a sum of sentences from the type: "It is that you do not organize", or "do not get nervous", you already consider that overflowing woman drowns in a glass of water. Javier will have to face the reality of dealing with five children (between four and twelve years old) when his wife decides to go on a trip and leave him alone with them. The chaotic situation that takes place at home will progressively evolve ecologically to the most absolute disaster, but at the same time it will give parents and children the opportunity to meet and enjoy themselves for the first time.
## 897 Four high school teachers launch a drinking experiment: upholding a constant low level of intoxication.
## 898 The story of an impossible love between a woman named Fred and a transgender woman named Laurence who reveals her inner desire to become her true self.
## 899 The story of Michael Oher, a homeless and traumatized boy who became an All American football player and first round NFL draft pick with the help of a caring woman and her family.
## 900 A cold and mysterious new security guard for a Los Angeles cash truck company surprises his co-workers when he unleashes precision skills during a heist. The crew is left wondering who he is and where he came from. Soon, the marksman's ultimate motive becomes clear as he takes dramatic and irrevocable steps to settle a score.
## 901 After the cataclysmic events in New York with The Avengers, Steve Rogers, aka Captain America is living quietly in Washington, D.C. and trying to adjust to the modern world. But when a S.H.I.E.L.D. colleague comes under attack, Steve becomes embroiled in a web of intrigue that threatens to put the world at risk. Joining forces with the Black Widow, Captain America struggles to expose the ever-widening conspiracy while fighting off professional assassins sent to silence him at every turn. When the full scope of the villainous plot is revealed, Captain America and the Black Widow enlist the help of a new ally, the Falcon. However, they soon find themselves up against an unexpected and formidable enemy—the Winter Soldier.
## 902 Doctor Sanada treats gangster Matsunaga after he is wounded in a gunfight, and discovers that he is suffering from tuberculosis. Sanada tries to convince Matsunaga to stay for treatment, which would drastically change his lifestyle. They form an uneasy friendship until Matsunaga's old boss Okada returns from prison.
## 903 Viridiana is preparing to start her life as a nun when she is sent, somewhat unwillingly, to visit her aging uncle, Don Jaime. He supports her; but the two have met only once. Jaime thinks Viridiana resembles his dead wife. Viridiana has secretly despised this man all her life and finds her worst fears proven when Jaime grows determined to seduce his pure niece. Viridiana becomes undone as her uncle upends the plans she had made to join the convent.
## 904 The life story of Elvis Presley as seen through the complicated relationship with his enigmatic manager, Colonel Tom Parker.
## 905 On the planet Ygam, the Draags, extremely technologically and spiritually advanced blue humanoids, consider the tiny Oms, human beings descendants of Terra's inhabitants, as ignorant animals. Those who live in slavery are treated as simple pets and used to entertain Draag children; those who live hidden in the hostile wilderness of the planet are periodically hunted and ruthlessly slaughtered as if they were vermin.
## 906 Tough cop Dave Bannion takes on a politically powerful crime syndicate.
## 907 A collection of magical tales based upon the actual dreams of director Akira Kurosawa.
## 908 Prominent gang leader Cyrus calls a meeting of New York's gangs to set aside their turf wars and take over the city. At the meeting, a rival leader kills Cyrus, but a Coney Island gang called the Warriors is wrongly blamed for Cyrus' death. Before you know it, the cops and every gangbanger in town is hot on the Warriors' trail.
## 909 A seagull is caught by the black tide of a sinking petrol ship. She manages to fly inland and falls down in a garden by a cat. Moribund, she asks the cat to fulfill three promises: that when she lays her egg he must not eat it; that he must take care of it until it hatches; that he would teach the newborn how to fly.
## 910 In the ruins of post-WWII Berlin, a twelve-year-old boy is left to his own devices in order to help provide for his family.
## 911 A pious 20-year-old juvenile delinquent is sent to work at a sawmill in a small town; on arrival, he dresses up as a priest and accidentally takes over the local parish. The arrival of this young, charismatic preacher is an opportunity for the local community to begin the healing process after a tragedy that happened a year prior.
## 912 A young Spanish woman who has newly moved to Berlin finds her flirtation with a local guy turn potentially deadly as their night out with his friends reveals a dangerous secret.
## 913 Two FBI agents investigating the murder of civil rights workers during the 60s seek to breach the conspiracy of silence in a small Southern town where segregation divides black and white. The younger agent trained in FBI school runs up against the small town ways of his partner, a former sheriff.
## 914 Aydin, a retired actor, owns a small hotel in central Anatolia with his young wife Nihal and his sister Necla, who is coping with her recent divorce. During the winter, snow covers the ground and boredom brings the return of old memories, pushing Aydin to flee…
## 915 Don Birnam, a long-time alcoholic, has been sober for ten days and appears to be over the worst... but his craving has just become more insidious. Evading a country weekend planned by his brother and girlfriend, he begins a four-day bender that just might be his last - one way or another.
## 916 Five young men dream of success as they drift lazily through life in a small Italian village. Fausto, the group's leader, is a womanizer; Riccardo craves fame; Alberto is a hopeless dreamer; Moraldo fantasizes about life in the city; and Leopoldo is an aspiring playwright. As Fausto chases a string of women, to the horror of his pregnant wife, the other four blunder their way from one uneventful experience to the next.
## 917 A family loaded with quirky, colorful characters piles into an old van and road trips to California for little Olive to compete in a beauty pageant.
## 918 Italy, early '90s. Calm, clever and inscrutable, politician Giulio Andreotti has been synonymous with power for decades. He has survived everything: electoral battles, terrorist massacres, loss of friends, slanderous accusations; but now certain repentant mobsters implicate him in the crimes of Cosa Nostra.
## 919 Gilbert Grape is a small-town young man with a lot of responsibility. Chief among his concerns are his mother, who is so overweight that she can't leave the house, and his mentally impaired younger brother, Arnie, who has a knack for finding trouble. Settled into a job at a grocery store and an ongoing affair with local woman Betty Carver, Gilbert finally has his life shaken up by the free-spirited Becky.
## 920 A fading southern belle tries to build a new life with her sister in New Orleans.
## 921 When an aspiring young artist is forced to join her high school track team, she uses it as an opportunity to pursue the girl she's been harboring a long-time crush on. But she soon finds herself falling for an unexpected teammate and discovers what real love feels like.
## 922 During a manned mission to Mars, Astronaut Mark Watney is presumed dead after a fierce storm and left behind by his crew. But Watney has survived and finds himself stranded and alone on the hostile planet. With only meager supplies, he must draw upon his ingenuity, wit and spirit to subsist and find a way to signal to Earth that he is alive.
## 923 High school seniors and best friends, Sonny and Duane, live in a dying Texas town. The handsome Duane is dating a local beauty, while Sonny is having an affair with the coach's wife. As graduation nears and both boys contemplate their futures, Duane eyes the army and Sonny takes over a local business. Each struggles to figure out if he can escape this dead-end town and build a better life somewhere else.
## 924 A hard-working mother inches towards disaster as she divorces her husband and starts a successful restaurant business to support her spoiled daughter.
## 925 Following the tragic death of her teenage son, Manuela travels from Madrid to Barcelona in an attempt to contact the long-estranged father the boy never knew. She reunites with an old friend, an outspoken transgender sex worker, and befriends a troubled actress and a pregnant, HIV-positive nun.
## 926 Super spy Lance Sterling and scientist Walter Beckett are almost exact opposites. Lance is smooth, suave and debonair. Walter is… not. But what Walter lacks in social skills he makes up for in smarts and invention, creating the awesome gadgets Lance uses on his epic missions. But when events take an unexpected turn, Walter and Lance suddenly have to rely on each other in a whole new way.
## 927 Five years have passed since Hiccup and Toothless united the dragons and Vikings of Berk. Now, they spend their time charting unmapped territories. During one of their adventures, the pair discover a secret cave that houses hundreds of wild dragons -- and a mysterious dragon rider who turns out to be Hiccup's mother, Valka. Hiccup and Toothless then find themselves at the center of a battle to protect Berk from a power-hungry warrior named Drago.
## 928 A group of rogues steal a scroll granting its bearer the property of the land of Aurocastro in Apulia, a province in the south of Italy. They elect a shaggy knight, Brancaleone from Norcia, as their leader, and decide to get possession of this supposedly wealthy land. Many adventures will occurr during the journey.
## 929 A psychopathic criminal with a mother complex makes a daring break from prison and then leads his old gang in a chemical plant payroll heist. After the heist, events take a crazy turn.
## 930 Lara Jean's love life goes from imaginary to out of control when her secret letters to every boy she's ever fallen for are mysteriously mailed out.
## 931 In 1970s Mexico City, two domestic workers help a mother of four while her husband is away for an extended period of time.
## 932 Detective Nishi is relieved from a stakeout to visit his sick wife in hospital. He is informed that she is terminally ill, and is advised to take her home. During his visit, a suspect shoots one detective dead and leaves Nishi's partner, Horibe, paralyzed. Nishi leaves the police force to spend time with his wife at home, and must find a way to pay off his debts to the yakuza.
## 933 In this enchantingly cracked fairy tale, the beautiful Princess Buttercup and the dashing Westley must overcome staggering odds to find happiness amid six-fingered swordsmen, murderous princes, Sicilians and rodents of unusual size. But even death can't stop these true lovebirds from triumphing.
## 934 In a rural French village, an old man and his only remaining relative cast their covetous eyes on an adjoining vacant property. They need its spring water for growing their flowers, and are dismayed to hear that the man who has inherited it is moving in. They block up the spring and watch as their new neighbour tries to keep his crops watered from wells far afield through the hot summer. Though they see his desperate efforts are breaking his health and his wife and daughter's hearts, they think only of getting the water.
## 935 War in Abkhazia, 1992. An Estonian man Ivo has stayed behind to harvest his crops of tangerines. In a bloody conflict at his door, a wounded man is left behind, and Ivo is forced to take him in.
## 936 Ebenezer Scrooge is far too greedy to understand that Christmas is a time for kindness and generosity. But with the guidance of some new found friends, Scrooge learns to embrace the spirit of the season. A retelling of the classic Dickens tale with Disney's classic characters.
## 937 When a rich woman's ex-husband and a tabloid-type reporter turn up just before her planned remarriage, she begins to learn the truth about herself.
## 938 After failing to make it on Broadway, April returns to her hometown and reluctantly begins training a misfit group of young dancers for a competition.
## 939 Alexander, a journalist, philosopher and retired actor, celebrates a birthday with friends and family when it is announced that nuclear war has begun.
## 940 When his mother eloped with an Italian opera singer, Louis Mazzini was cut off from her aristocratic family. After the family refuses to let her be buried in the family mausoleum, Louis avenges his mother's death by attempting to murder every family member who stands between himself and the family fortune. But when he finds himself torn between his longtime love and the widow of one of his victims, his plans go awry.
## 941 German journalist Philip Winter has a case of writer’s block when trying to write an article about the United States. He decides to return to Germany, and while trying to book a flight, encounters a German woman and her nine year old daughter Alice doing the same. The three become friends (almost out of necessity) and while the mother asks Winter to mind Alice temporarily, it quickly becomes apparent that Alice will be his responsibility for longer than he expected.
## 942 A police detective falls in love with the woman whose murder he's investigating.
## 943 Dona Hermínia is back, but now rich and famous since she is the host of her own successful TV show. However, the overprotective character will have to deal with her children's departures, as Marcelina and Juliano decide to move out. In counterpart, she will welcome, as a visitor, her sister Lúcia Helena, who's been living in New York.
## 944 A journey through the psyche of a young ballerina whose starring role as the duplicitous swan queen turns out to be a part for which she becomes frighteningly perfect.
## 945 The epic story of the first contact, encounter, approach, betrayal and, eventually, life-transcending friendship, between Karamakate, an Amazonian shaman, last survivor of his people, and two scientists that, over the course of 40 years, travel through the Amazon in search of a sacred plant that can heal them. Inspired by the journals of the first explorers of the Colombian Amazon, Theodor Koch-Grunberg and Richard Evans Schultes.
## 946 Aspiring actors Aldo, Giovanni, and Giacomo work dead-end jobs while focusing on their passion project: staging an adaptation of 'Cyrano de Bergerac'. However, love for the same woman will end their friendship. Three years later, Giovanni and Giacomo reunite to travel from Milan to Sicily after hearing that Aldo is dying.
## 947 Benjamin, a recent college graduate very worried about his future, finds himself in a love triangle with an older woman and her daughter.
## 948 Mickey, Minnie, Horace Horsecollar, and Clarabelle Cow go on a musical wagon ride until Peg-Leg Pete tries to run them off the road.
## 949 In a town in the Northwest of the province of Buenos Aires, a group of neighbors is organized to recover the economy of the area, but when the corralito is implemented in the country and they suffer a fraud, their hopes disappear. Now, they will unite to recover the lost money and give the blow of their lives to their greatest enemy.
## 950 As a 13-year-old, fledgling writer Briony Tallis irrevocably changes the course of several lives when she accuses her older sister's lover of a crime he did not commit.
## 951 New York City newspaper writer J.J. Hunsecker holds considerable sway over public opinion with his Broadway column, but one thing that he can't control is his younger sister, Susan, who is in a relationship with aspiring jazz guitarist Steve Dallas. Hunsecker strongly disapproves of the romance and recruits publicist Sidney Falco to find a way to split the couple, no matter how ruthless the method.
## 952 Private Investigator Philip Marlowe is hired by wealthy General Sternwood regarding a matter involving his youngest daughter Carmen. Before the complex case is over, Marlowe sees murder, blackmail, deception, and what might be love.
## 953 Chuck Nolan, a top international manager for FedEx, and Kelly, a Ph.D. student, are in love and heading towards marriage. Then Chuck's plane to Malaysia crashes at sea during a terrible storm. He's the only survivor, and finds himself marooned on a desolate island. With no way to escape, Chuck must find ways to survive in his new home.
## 954 An aging group of outlaws look for one last big score as the "traditional" American West is disappearing around them.
## 955 The tale of an extraordinary family, the Madrigals, who live hidden in the mountains of Colombia, in a magical house, in a vibrant town, in a wondrous, charmed place called an Encanto. The magic of the Encanto has blessed every child in the family—every child except one, Mirabel. But when she discovers that the magic surrounding the Encanto is in danger, Mirabel decides that she, the only ordinary Madrigal, might just be her exceptional family's last hope.
## 956 Tragedy strikes when a woman named Joyce's son falls through the ice on a frozen lake and is trapped underwater for over 15 minutes. After being rushed to the hospital, the 14-year-old boy continues to fight for his life as Joyce, her husband and their pastor stay by his bedside and pray for a miracle.
## 957 After his lover rejects him, a young man in early 20th century England, trapped by the oppressiveness of Edwardian society, tries to come to terms with and accept his sexuality.
## 958 Jeff Bailey seems to be a mundane gas station owner in remote Bridgeport, California. He is dating local girl Ann Miller and lives a quiet life. But Jeff has a secret past, and when a mysterious stranger arrives in town, Jeff is forced to return to the dark world he had tried to escape.
## 959 Zed and Addison are back at Seabrook High, where, after a groundbreaking semester, they continue to steer both their school and community toward unity. But the arrival of a new group of outsiders – mysterious werewolves – threatens to shake up the newfound peace and causes a rift in Zed and Addison’s budding romance.
## 960 After a one-night stand results in pregnancy, a young woman decides to become partners with the emotionally immature father-to-be.
## 961 Documentary style account of a nuclear holocaust and its effect on the working class city of Sheffield, England; and the eventual long run effects of nuclear war on civilization.
## 962 In New York, the boys Rocky Sullivan and Jerry Connelly are best friends and small time thieves. After a robbery, Rocky is arrested and sent to a reformatory school, where he begins his criminal career. Jerry escapes and later becomes a priest. After three years in prison, Rocky is released and demands the return of $100,000 deposited with his solicitor - prior to his jail term.
## 963 When a lively young family moves in next door, grumpy widower Otto Anderson meets his match in a quick-witted, pregnant woman named Marisol, leading to an unlikely friendship that turns his world upside down.
## 964 Senior year of high school takes center stage as Lara Jean returns from a family trip to Korea and considers her college plans — with and without Peter.
## 965 Nathan, 16, lives alone with his father Stephane. A newcomer in high school, he is invited to a party and falls in love with Louis, a boy in his class. They find themselves out of sight and kiss each other, but someone takes a picture of them. Soon, the photo is published on Facebook and a storm overtakes their lives as they face bullying and rejection.
## 966 When an insatiable great white shark terrorizes the townspeople of Amity Island, the police chief, an oceanographer and a grizzled shark hunter seek to destroy the blood-thirsty beast.
## 967 Things go badly for a hack director and film crew shooting a low-budget zombie movie in an abandoned Japanese World War II facility, when they are attacked by real zombies. Or, that's what it says on the tin, but this is the story of how it really happened.
## 968 Retired wealthy sea captain Jim McKay arrives in the vast expanse of the West to marry fiancée Pat Terrill. McKay is a man whose values and approach to life are a mystery to the ranchers and ranch foreman Steve Leech takes an immediate dislike to him. Pat is spoiled, selfish and controlled by her wealthy father, Major Henry Terrill. The Major is involved in a ruthless civil war, over watering rights for cattle, with a rough hewn clan led by Rufus Hannassey. The land in question is owned by Julie Maragon and both Terrill and Hannassey want it.
## 969 Edmond Dantés's life and plans to marry the beautiful Mercedes are shattered when his best friend, Fernand, deceives him. After spending 13 miserable years in prison, Dantés escapes with the help of a fellow inmate and plots his revenge, cleverly insinuating himself into the French nobility.
## 970 During the trial of a man accused of his father's murder, a lone juror takes a stand against the guilty verdict handed down by the others as a result of their preconceptions and prejudices.
## 971 Roger Santet is a convicted murderer sprung from prison by the Sicilian clan headed by the aging Vittorio Manalese. They conspire to steal a large cache of jewels from an exhibit in Rome. As they are preparing for the heist, the mobster's American friend Tony Nicosia suggests that a better way to get the rocks would be to hijack the transport plane while it is en route to New York. The dogged inspector Le Goff is using all the available resources to thwart their plans. Though the heist itself is successful, Santet finds himself trapped by the mob because of his fling with Manalese's daughter-in-law.
## 972 A year has passed since Guts parted ways with the Band of the Hawks. Meanwhile, his former mercenary group is plotting a rescue mission to save an imprisoned Griffith.
## 973 The just out of college effete son of a no-nonsense steamboat captain comes to visit his father whom he's not seen since he was little.
## 974 After the Second Impact, Tokyo-3 is being attacked by giant monsters called Angels that seek to eradicate humankind. The child Shinji's objective is to fight the Angels by piloting one of the mysterious Evangelion mecha units. A remake of the first six episodes of GAINAX's famous 1996 anime series. The film was retitled "Evangelion: 1.01" for its home video version and "Evangelion: 1.11" for a release with additional scenes.
## 975 Dave Chappelle takes on gun culture, the opioid crisis and the tidal wave of celebrity scandals in this defiant stand-up special.
## 976 Kubo mesmerizes the people in his village with his magical gift for spinning wild tales with origami. When he accidentally summons an evil spirit seeking vengeance, Kubo is forced to go on a quest to solve the mystery of his fallen samurai father and his mystical weaponry, as well as discover his own magical powers.
## 977 A theater director struggles with his work, and the women in his life, as he attempts to create a life-size replica of New York inside a warehouse as part of his new play.
## 978 Abandoned by her family, Kya raises herself all alone in the marshes outside of her small town. When her former boyfriend is found dead, Kya is instantly branded by the local townspeople and law enforcement as the prime suspect for his murder.
## 979 Cashier and part-time starving artist Christopher Cross is absolutely smitten with the beautiful Kitty March. Kitty plays along, but she's really only interested in Johnny, a two-bit crook. When Kitty and Johnny find out that art dealers are interested in Chris's work, they con him into letting Kitty take credit for the paintings. Cross allows it because he is in love with Kitty, but his love will only let her get away with so much.
## 980 Fitzcarraldo is a dreamer who plans to build an opera house in Iquitos, in the Peruvian Amazon, so, in order to finance his project, he embarks on an epic adventure to collect rubber, a very profitable product, in a remote and unexplored region of the rainforest.
## 981 Princess Jasmine grows tired of being forced to remain in the palace, so she sneaks out into the marketplace, in disguise, where she meets street-urchin Aladdin. The couple falls in love, although Jasmine may only marry a prince. After being thrown in jail, Aladdin becomes embroiled in a plot to find a mysterious lamp, with which the evil Jafar hopes to rule the land.
## 982 The spirited Boruto Uzumaki, son of Seventh Hokage Naruto, is a skilled ninja who possesses the same brashness and passion his father once had. However, the constant absence of his father, who is busy with his Hokage duties, puts a damper on Boruto's fire. He ends up meeting his father's friend Sasuke, and requests to become... his apprentice!? The curtain on the story of the new generation rises!
## 983 The story of a donkey Balthazar as he is passed from owner to owner, some kind and some cruel but all with motivations beyond his understanding. Balthazar, whose life parallels that of his first keeper, Marie, is truly a beast of burden, suffering the sins of humankind. But despite his powerlessness, he accepts his fate nobly.
## 984 Pursued by formidable Chinese assassins, young Kotaro and his dog run into No Name, a mysterious stranger who gets pulled into the chase. The unlikely companions form a bond over saving the dog from a poison attack, but chaos erupts when the assassins find Kotaro, and No Name must face his past before a horrible fate is met again.
## 985 A dramatized account of a great Russian naval mutiny and a resultant public demonstration, showing support, which brought on a police massacre. The film had an incredible impact on the development of cinema and is a masterful example of montage editing.
## 986 Algiers, 1997. The country is in the hands of terrorist groups, seeking to establish an Islamic and archaic state. Women are particularly affected and oppressed by primitive diktas, who seek to take control of their bodies and control their passage through the public space. While a frenzied hunt for women unveiled is launched, Nedjma, a young student passionate about fashion, is determined to federate the girls of her campus to organize a fashion show braving all the forbidden.
## 987 When his wealthy grandfather finally dies, Jason Stevens fully expects to benefit when it comes to the reading of the will. But instead of a sizable inheritance, Jason receives a test, a series of tasks he must complete before he can get any money.
## 988 An arrogant, high-powered attorney takes on the case of a poor altar boy found running away from the scene of the grisly murder of the bishop who has taken him in. The case gets a lot more complex when the accused reveals that there may or may not have been a third person in the room.
## 989 Astronaut Taylor crash lands on a distant planet ruled by apes who use a primitive race of humans for experimentation and sport. Soon Taylor finds himself among the hunted, his life in the hands of a benevolent chimpanzee scientist.
## 990 Inspired by the 2005 riots in Paris, Stéphane, a recent transplant to the impoverished suburb of Montfermeil, joins the local anti-crime squad. Working alongside his unscrupulous colleagues Chris and Gwada, Stéphane struggles to maintain order amidst the mounting tensions between local gangs. When an arrest turns unexpectedly violent, the three officers must reckon with the aftermath and keep the neighborhood from spiraling out of control.
## 991 A series of mysterious events changes the life of a blind pianist who now must report a crime that was actually never witnessed by him.
## 992 Woo-Jin changes into a different person every time he wakes up. He falls in love with Yi-Soo.
## 993 Ghost pirates attack the cruise ship that Scooby and the gang are vacationing on.
## 994 The discovery of a severed human ear found in a field leads a young man on an investigation related to a beautiful, mysterious nightclub singer and a group of criminals who have kidnapped her child.
## 995 Now a detective-for-hire like her infamous brother, Enola Holmes takes on her first official case to find a missing girl, as the sparks of a dangerous conspiracy ignite a mystery that requires the help of friends — and Sherlock himself — to unravel.
## 996 Ryota Nonomiya is a successful businessman driven by money. He learns that his biological son was switched with another child after birth. He must make a life-changing decision and choose his true son or the boy he raised as his own.
## 997 In the post-apocalyptic future, reigning tyrannical supercomputers teleport a cyborg assassin known as the "Terminator" back to 1984 to kill Sarah Connor, whose unborn son is destined to lead insurgents against 21st century mechanical hegemony. Meanwhile, the human-resistance movement dispatches a lone warrior to safeguard Sarah. Can he stop the virtually indestructible killing machine?
## 998 The story of a super-secret spy organization that recruits an unrefined but promising street kid into the agency's ultra-competitive training program just as a global threat emerges from a twisted tech genius.
## 999 Lilja lives in poverty and dreams of a better life. Her mother moves to the United States and abandons her to her aunt, who neglects her. Lilja hangs out with her friends, Natasha and Volodya, who is suicidal. Desperate for money, she starts working as a prostitute, and later meets Andrei. He offers her a good job in Sweden, but when Lilja arrives her life quickly enters a downward spiral.
## 1000 Two young men, Martin and Rudi, both suffering from terminal cancer, get to know each other in a hospital room. They drown their desperation in tequila and decide to take one last trip to the sea. Drunk and still in pajamas they steal the first fancy car they find, a 60's Mercedes convertible. The car happens to belong to a bunch of gangsters, which immediately start to chase it, since it contains more than the pistol Martin finds in the glove box.
## 1001 Set in 1977, back when sex was safe, pleasure was a business and business was booming, idealistic porn producer Jack Horner aspires to elevate his craft to an art form. Horner discovers Eddie Adams, a hot young talent working as a busboy in a nightclub, and welcomes him into the extended family of movie-makers, misfits and hangers-on that are always around. Adams' rise from nobody to a celebrity adult entertainer is meteoric, and soon the whole world seems to know his porn alter ego, "Dirk Diggler". Now, when disco and drugs are in vogue, fashion is in flux and the party never seems to stop, Adams' dreams of turning sex into stardom are about to collide with cold, hard reality.
## 1002 The young Harold lives in his own world of suicide-attempts and funeral visits to avoid the misery of his current family and home environment. Harold meets an 80-year-old woman named Maude who also lives in her own world yet one in which she is having the time of her life. When the two opposites meet they realize that their differences don’t matter and they become best friends and love each other.
## 1003 The true-life story of Christian music star Jeremy Camp and his journey of love and loss that looks to prove there is always hope.
## 1004 Based on the true story of Homer Hickam, a coal miner's son who was inspired by the first Sputnik launch to take up rocketry against his father's wishes, and eventually became a NASA scientist.
## 1005 As a Korean-American man raised in the Louisiana bayou works hard to make a life for his family, he must confront the ghosts of his past as he discovers that he could be deported from the only country he has ever called home.
## 1006 Benjamin, a young German computer whiz, is invited to join a subversive hacker group that wants to be noticed on the world's stage.
## 1007 In the carefree days before World War I, introverted Austrian author Jules strikes up a friendship with the exuberant Frenchman Jim and both men fall for the impulsive and beautiful Catherine.
## 1008 After fighting his way through an apartment building populated by an army of dangerous criminals and escaping with his life, SWAT team member Rama goes undercover, joining a powerful Indonesian crime syndicate to protect his family and uncover corrupt members of his own force.
## 1009 Six vignettes follow the Allied invasion from July 1943 to winter 1944, from Sicily north to Venice.
## 1010 After being held captive in an Afghan cave, billionaire engineer Tony Stark creates a unique weaponized suit of armor to fight evil.
## 1011 A self-assured businessman murders his employer, the husband of his mistress, which unintentionally provokes an ill-fated chain of events.
## 1012 Shang-Chi must confront the past he thought he left behind when he is drawn into the web of the mysterious Ten Rings organization.
## 1013 Kenshin has settled into his new life with Kaoru and his other friends when he is approached with a request from the Meiji government. Makoto Shishio, a former assassin like Kenshin, was betrayed, set on fire and left for dead. He survived, and is now in Kyoto, plotting with his gathered warriors to overthrow the new government. Against Kaoru's wishes, Kenshin reluctantly agrees to go to Kyoto and help keep his country from falling back into civil war.
## 1014 Adventurous filmmaker, Carl Denham, sets out to produce a motion picture unlike anything the world has seen before. Alongside his leading lady Ann Darrow and his first mate Jack Driscoll, they arrive on an island and discover a legendary creature said to be neither beast nor man. Denham captures the monster to displayed on Broadway as Kong, the eighth wonder of the world.
## 1015 A brilliant but clumsy high school senior vows to get into her late father's alma mater by transforming herself and a misfit squad into dance champions.
## 1016 After the bloody battle against Hades, the goddess Athena and her saints are still recovering when they find themselves face to face with their newest and most formidable foe: the dreadful moon goddess Artemis. Artemis replaces Athena as the earth guardian deity and takes over the Sanctuary, turning Athena's Saints into her servants. Upon invading the Sanctuary, the Bronze Saints learn that Athena was banished by Artemis and decide to fight the moon goddess in order to rescue their true goddess and free the Earth from Artemis's ominous control.
## 1017 A middle-aged Tehranian man, Mr. Badii is intent on killing himself and seeks someone to bury him after his demise. Driving around the city, the seemingly well-to-do Badii meets with numerous people, including a Muslim student, asking them to take on the job, but initially he has little luck. Eventually, Badii finds a man who is up for the task because he needs the money, but his new associate soon tries to talk him out of committing suicide.
## 1018 A disparate group of individuals takes refuge in an abandoned house when corpses begin to leave the graveyard in search of fresh human bodies to devour. The pragmatic Ben does his best to control the situation, but when the murderous zombies surround the house, the other survivors begin to panic.
## 1019 Follows the investigation into the assassination of President John F. Kennedy led by New Orleans district attorney Jim Garrison.
## 1020 A dramatic history of Pu Yi, the last of the Emperors of China, from his lofty birth and brief reign in the Forbidden City, the object of worship by half a billion people; through his abdication, his decline and dissolute lifestyle; his exploitation by the invading Japanese, and finally to his obscure existence as just another peasant worker in the People's Republic.
## 1021 A young girl had her voice magically taken away so that she would never hurt people with it, but her outlook changes when she encounters music and friendship. Will Naruse be able to convey the anthem of her heart?
## 1022 In 1900, strong-willed widow Lucy Muir goes to live in Gull Cottage by the British seaside, even though it appears to be haunted. On her very first night she meets the ghost of the crusty former owner, Captain Gregg—and refuses to be scared off. They eventually become friends and allies, after Lucy gets used to the idea of a man's ghost haunting her bedroom.
## 1023 Pennsylvania, 1956. Frank Sheeran, a war veteran of Irish origin who works as a truck driver, accidentally meets mobster Russell Bufalino. Once Frank becomes his trusted man, Bufalino sends him to Chicago with the task of helping Jimmy Hoffa, a powerful union leader related to organized crime, with whom Frank will maintain a close friendship for nearly twenty years.
## 1024 The Guardians must fight to keep their newfound family together as they unravel the mysteries of Peter Quill's true parentage.
## 1025 Jaime Escalante is a mathematics teacher in a school in a hispanic neighbourhood. Convinced that his students have potential, he adopts unconventional teaching methods to try and turn gang members and no-hopers into some of the country's top algebra and calculus students.
## 1026 A gay couple from Hong Kong takes a trip to Argentina in search of a new beginning but instead begins drifting even further apart.
## 1027 Mykola is an eccentric pacifist who wants to be useful to humanity. When the war begins at Donbass, Mykola’s naive world is collapsing as the militants kill his pregnant wife and burn his home to the ground. Recovered, he makes a cardinal decision and gets enlisted in a sniper company. Having met his wife’s killers, he emotionally breaks down and arranges “sniper terror” for the enemy. He’s saved from a senseless death by his instructor who himself gets mortally wounded. The death of a friend leaves a “scar” and Mykola is ready to sacrifice his life.
## 1028 14-year-old Arrietty and the rest of the Clock family live in peaceful anonymity as they make their own home from items "borrowed" from the house's human inhabitants. However, life changes for the Clocks when a human boy discovers Arrietty.
## 1029 An impromptu goodbye party for Professor John Oldman becomes a mysterious interrogation after the retiring scholar reveals to his colleagues he never ages and has walked the earth for 14,000 years.
## 1030 A psychological thriller of a grieving mother turned cold-blooded avenger with a twisty master plan to pay back those who were responsible for her daughter's death.
## 1031 After high school slacker Ferris Bueller successfully fakes an illness in order to skip school for the day, he goes on a series of adventures throughout Chicago with his girlfriend Sloane and best friend Cameron, all the while trying to outwit his wily school principal and fed-up sister.
## 1032 In 1980s Naples, Italy, an awkward Italian teen struggling to find his place experiences heartbreak and liberation after he's inadvertently saved from a freak accident by football legend Diego Maradona.
## 1033 Yugi and Kaiba have a special duel that transcends dimensions.
## 1034 Gaetano, a young Neapolitan, decides to leave home, work and friends, to look for other moments of life and meet other people.
## 1035 A fatalistic car crash in Mexico city sets off a chain of events in the lives of three people: a supermodel, a young man wanting to run off with his sister-in-law, and a homeless man. Their lives are catapulted into unforeseen situations instigated by the seemingly inconsequential destiny of a dog.
## 1036 Fluffy, Jimmy Five's pet dog, vanished. He develops an infallible plan to rescue the little dog, but, he will need help from his faithful friends: Monica, Maggy and Smudge. Together, they will face challengers and live incredible adventures to get Fluffy back home.
## 1037 When her father enlists to fight for the British in WWI, young Sara Crewe goes to New York to attend the same boarding school her late mother attended. She soon clashes with the severe headmistress, Miss Minchin, who attempts to stifle Sara's creativity and sense of self- worth.
## 1038 Grace is a religious woman who lives in an old house kept dark because her two children, Anne and Nicholas, have a rare sensitivity to light. When the family begins to suspect the house is haunted, Grace fights to protect her children at any cost in the face of strange events and disturbing visions.
## 1039 I CAN'T THINK STRAIGHT is a 2007 romance movie about a London-based Jordanian of Palestinian descent, Tala, who is preparing for an elaborate wedding. A turn of events causes her to have an affair and subsequently fall in love with another woman, Leyla, a British Indian.
## 1040 After the NATO bombing of Yugoslavia in 1999, the Yugoslav army pulls out of Kosovo region, leaving Serbian people at the mercy of the Albanian UCK terrorists. A small band of soldiers must take over the Slatina airport, and hold it until the Russian peacekeepers arrive.
## 1041 When the creator of a popular video game system dies, a virtual contest is created to compete for his fortune.
## 1042 Escaping from poverty to become a witcher, Vesemir slays monsters for coin and glory, but when a new menace rises, he must face the demons of his past.
## 1043 Popelka, a resourceful and independent young girl, is a servant in her stepmother's house and confides her closest friend the owl. When she comes across three magical acorns, she's granted a single wish for each one of them.
## 1044 Mortimer Brewster, a newspaper drama critic, playwright, and author known for his diatribes against marriage, suddenly falls in love and gets married; but when he makes a quick trip home to tell his two maiden aunts, he finds out his aunts' hobby - killing lonely old men and burying them in the cellar!
## 1045 When Gerda Wegener asks her husband Einar to fill in as a portrait model, Einar discovers the person she's meant to be and begins living her life as Lili Elbe. Having realized her true self and with Gerda's love and support, Lili embarks on a groundbreaking journey as a transgender pioneer.
## 1046 Chris and his girlfriend Rose go upstate to visit her parents for the weekend. At first, Chris reads the family's overly accommodating behavior as nervous attempts to deal with their daughter's interracial relationship, but as the weekend progresses, a series of increasingly disturbing discoveries lead him to a truth that he never could have imagined.
## 1047 One year after the events of the anime, Rintarou begins to feel the repercussions of extensive time travel, and eventually completely fades from reality. Kurisu, being the only companion to remember him, now must find a way to bring him back.
## 1048 Despite being deposed as president of his condominium association, grumpy 59-year-old Ove continues to watch over his neighbourhood with an iron fist. When pregnant Parvaneh and her family move into the terraced house opposite Ove and she accidentally back into Ove’s mailbox, it sets off a series of unexpected changes in his life.
## 1049 Based on the best-seller book 'The Little Prince', the movie tells the story of a little girl that lives with resignation in a world where efficiency and work are the only dogmas. Everything will change when accidentally she discovers her neighbor that will tell her about the story of the Little Prince that he once met.
## 1050 In late 1890s Wyoming, Butch Cassidy is the affable, clever and talkative leader of the outlaw Hole in the Wall Gang. His closest companion is the laconic dead-shot Sundance Kid. As the west rapidly becomes civilized, the law finally catches up to Butch, Sundance and their gang. Chased doggedly by a special posse, the two decide to make their way to South America in hopes of evading their pursuers once and for all.
## 1051 After being gone for a decade, a country star returns home to the love he left behind.
## 1052 Greek Sea, World War II. An Italian ship leaves a handful of soldiers in a little island; their mission is to spot enemy ships and to hold the island in case of attack. The village of the island seems abandoned and there isn't a single enemy in sight, so the soldiers begin to relax a little. Things change when their ship is hit and destroyed by the enemy, and the soldiers find themselves abandoned there.
## 1053 Yuki's family is nearly wiped out before she is born due to the machinations of a band of criminals. These criminals kidnap and brutalize her mother but leave her alive. Later her mother ends up in prison with only revenge to keep her alive. She creates an instrument for this revenge by purposefully getting pregnant. Yuki never knows the love of a family but only killing and revenge.
## 1054 Hinako is a surf-loving college student who has just moved to a small seaside town. When a sudden fire breaks out at her apartment building, she is rescued by Minato, a handsome firefighter, and the two soon fall in love. Just as they become inseparable, Minato loses his life in an accident at sea. Hinako is so distraught that she can no longer even look at the ocean, but one day she sings a song that reminds her of their time together, and Minato appears in the water. From then on, she can summon him in any watery surface as soon as she sings their song, but can the two really remain together forever? And what is the real reason for Minato's sudden reappearance?
## 1055 Dr. Génessier is riddled with guilt after an accident that he caused disfigures the face of his daughter, the once beautiful Christiane, who outsiders believe is dead. Dr. Génessier, along with accomplice and laboratory assistant Louise, kidnaps young women and brings them to the Génessier mansion. After rendering his victims unconscious, Dr. Génessier removes their faces and attempts to graft them on to Christiane's.
## 1056 A group of Anglican nuns, led by Sister Clodagh, are sent to a mountain in the Himalayas. The climate in the region is hostile and the nuns are housed in an odd old palace. They work to establish a school and a hospital, but slowly their focus shifts. Sister Ruth falls for a government worker, Mr. Dean, and begins to question her vow of celibacy. As Sister Ruth obsesses over Mr. Dean, Sister Clodagh becomes immersed in her own memories of love.
## 1057 An IRS agent with a fateful secret embarks on an extraordinary journey of redemption by forever changing the lives of seven strangers.
## 1058 Near the end of the Korean War, a platoon of U.S. soldiers is captured by communists and brainwashed. Following the war, the platoon is returned home, and Sergeant Raymond Shaw is lauded as a hero by the rest of his platoon. However, the platoon commander, Captain Bennett Marco, finds himself plagued by strange nightmares and soon races to uncover a terrible plot.
## 1059 This animated adventure spins a more optimistic twist on the long-mythicized story of the "lost daughter" of Russia's last czar. A wicked sorcerer places a curse on the Romanov family, and Anastasia is separated from them during their attempts to escape from a rowdy revolt seizing their palace. Years later, after growing up with amnesia in an orphanage, "Anya" encounters two Russian men seeking a reward offered by the Dowager Empress Marie, for the return of her missing granddaughter. They decide to travel together to visit the Empress in Paris. Will Anya finally be reunited with her remaining family and find a loving home at last?
## 1060 This Surrealist film, with a title referencing the Communist Manifesto, strings together short incidents based on the life of director Luis Buñuel. Presented as chance encounters, these loosely related, intersecting situations, all without a consistent protagonist, reach from the 19th century to the 1970s. Touching briefly on subjects such as execution, pedophilia, incest, and sex, the film features an array of characters, including a sick father and incompetent police officers.
## 1061 Struggling stockbroker Jimmie Shannon learns that, if he gets married by 7 p.m. on his 27th birthday -- which is today -- he'll inherit $7 million from an eccentric relative.
## 1062 The Alchemist assembles together a group of people from all walks of life to represent the planets in the solar system. The occult adept's intention is to put his recruits through strange mystical rites and divest them of their worldly baggage before embarking on a trip to Lotus Island. There they ascend the Holy Mountain to displace the immortal gods who secretly rule the universe.
## 1063 Two men share an odd friendship while they care for two women who are both in deep comas.
## 1064 A small-time thief steals a car and impulsively murders a motorcycle policeman. Wanted by the authorities, he attempts to persuade a girl to run away to Italy with him.
## 1065 An aging Chinese mom suffering from empty nest syndrome gets another chance at motherhood when one of her dumplings springs to life as a lively, giggly dumpling boy.
## 1066 After leading his football team to 15 winning seasons, coach Bill Yoast is demoted and replaced by Herman Boone – tough, opinionated and as different from the beloved Yoast as he could be. The two men learn to overcome their differences and turn a group of hostile young men into champions.
## 1067 A simple-minded gardener named Chance has spent all his life in the Washington D.C. house of an old man. When the man dies, Chance is put out on the street with no knowledge of the world except what he has learned from television.
## 1068 Caleb Holt, a heroic fire captain who values dedication and service to others above all else. But the most important partnership in his life, his marriage, is about to go up in smoke. This gripping story follows one man's desire to transform his life and marriage through the healing power of faith and fully embrace the fireman's code: "Never leave your partner behind."
## 1069 The life story of New Zealander Burt Munro, who spent years building a 1920 Indian motorcycle—a bike which helped him set the land-speed world record at Utah's Bonneville Salt Flats in 1967.
## 1070 Dolls takes puppeteering as its overriding motif, which relates thematically to the action provided by the live characters. Chief among those tales is the story of Matsumoto and Sawako, a young couple whose relationship is about to be broken apart by the former's parents, who have insisted their son take part in an arranged marriage to his boss' daughter.
## 1071 After David Kim's 16-year-old daughter goes missing, a local investigation is opened and a detective is assigned to the case. But 37 hours later and without a single lead, David decides to search the one place no one has looked yet, where all secrets are kept today: his daughter's laptop.
## 1072 A dog goes on quest to discover his purpose in life over the course of several lifetimes with multiple owners.
## 1073 The lives of a young couple intertwine with a much older man as he reflects back on a lost love while he's trapped in an automobile crash.
## 1074 Sixteen years ago, a mysterious masked ninja unleashes a powerful creature known as the Nine-Tailed Demon Fox on the Hidden Leaf Village Konoha, killing many people. In response, the Fourth Hokage Minato Namikaze and his wife Kushina Uzumaki, the Demon Fox's living prison or Jinchūriki, manage to seal the creature inside their newborn son Naruto Uzumaki. With the Tailed Beast sealed, things continued as normal. However, in the present day, peace ended when a group of ninja called the Akatsuki attack Konoha under the guidance of Tobi, the mysterious masked man behind Fox's rampage years ago who intends on executing his plan to rule the world by shrouding it in illusions.
## 1075 In 2027, in a chaotic world in which humans can no longer procreate, a former activist agrees to help transport a miraculously pregnant woman to a sanctuary at sea, where her child's birth may help scientists save the future of humankind.
## 1076 Wealthy rancher Bick Benedict and dirt-poor cowboy Jett Rink both woo Leslie Lynnton, a beautiful young woman from Maryland who is new to Texas. She marries Benedict, but she is shocked by the racial bigotry of the White Texans against the local people of Mexican descent. Rink discovers oil on a small plot of land, and while he uses his vast, new wealth to buy all the land surrounding the Benedict ranch, the Benedict's disagreement over prejudice fuels conflict that runs across generations.
## 1077 When French criminal Corey gets released from prison, he resolves to never return. He is quickly pulled back into the underworld, however, after a chance encounter with escaped murderer Vogel. Along with former policeman and current alcoholic Jansen, they plot an intricate jewel heist. All the while, quirky Police Commissioner Mattei, who was the one to lose custody of Vogel, is determined to find him.
## 1078 Christine Collins is overjoyed when her kidnapped son is brought back home. But when Christine suspects that the boy returned to her isn't her child, the police captain has her committed to an asylum.
## 1079 The origin story of former Special Forces operative turned mercenary Wade Wilson, who, after being subjected to a rogue experiment that leaves him with accelerated healing powers, adopts the alter ego Deadpool. Armed with his new abilities and a dark, twisted sense of humor, Deadpool hunts down the man who nearly destroyed his life.
## 1080 Thor is imprisoned on the other side of the universe and finds himself in a race against time to get back to Asgard to stop Ragnarok, the destruction of his home-world and the end of Asgardian civilization, at the hands of a powerful new threat, the ruthless Hela.
## 1081 Despite the tumor-shrinking medical miracle that has bought her a few years, Hazel has never been anything but terminal, her final chapter inscribed upon diagnosis. But when a patient named Augustus Waters suddenly appears at Cancer Kid Support Group, Hazel's story is about to be completely rewritten.
## 1082 12 American military prisoners in World War II are ordered to infiltrate a well-guarded enemy château and kill the Nazi officers vacationing there. The soldiers, most of whom are facing death sentences for a variety of violent crimes, agree to the mission and the possible commuting of their sentences.
## 1083 A narcissistic TV weatherman, along with his attractive-but-distant producer, and his mawkish cameraman, is sent to report on Groundhog Day in the small town of Punxsutawney, where he finds himself repeating the same day over and over.
## 1084 Claudia and Anna join Anna's lover, Sandro, on a boat trip to a remote volcanic island. When Anna goes missing, a search is launched. In the meantime, Sandro and Claudia become involved in a romance despite Anna's disappearance, though the relationship suffers from guilt and tension.
## 1085 A tormented jazz musician finds himself lost in an enigmatic story involving murder, surveillance, gangsters, doppelgängers, and an impossible transformation inside a prison cell.
## 1086 After settling in Green Hills, Sonic is eager to prove he has what it takes to be a true hero. His test comes when Dr. Robotnik returns, this time with a new partner, Knuckles, in search for an emerald that has the power to destroy civilizations. Sonic teams up with his own sidekick, Tails, and together they embark on a globe-trotting journey to find the emerald before it falls into the wrong hands.
## 1087 Major Bill Cage is an officer who has never seen a day of combat when he is unceremoniously demoted and dropped into combat. Cage is killed within minutes, managing to take an alpha alien down with him. He awakens back at the beginning of the same day and is forced to fight and die again... and again - as physical contact with the alien has thrown him into a time loop.
## 1088 A raw urban drama about two friends raised on the dangerous streets of Kingston, Jamaica. Biggs and Wayne take on the "Shotta" way of life to survive. As young boys, they begin a life of crime, eventually moving to the US where they begin a ruthless climb from the bottom. They remain bound to each other by their shottas loyalty as they aggressively take control of the Jamaican underworld.
## 1089 In a hospital on the outskirts of 1920s Los Angeles, an injured stuntman begins to tell a fellow patient, a little girl with a broken arm, a fantastic story about 5 mythical heroes. Thanks to his fractured state of mind and her vivid imagination, the line between fiction and reality starts to blur as the tale advances.
## 1090 Two gangsters seek revenge on the state jail worker who during their stay at a youth prison sexually abused them. A sensational court hearing takes place to charge him for the crimes.
## 1091 A weekend at a marquis’ country château lays bare some ugly truths about a group of haut bourgeois acquaintances.
## 1092 In the year 2035, convict James Cole reluctantly volunteers to be sent back in time to discover the origin of a deadly virus that wiped out nearly all of the earth's population and forced the survivors into underground communities. But when Cole is mistakenly sent to 1990 instead of 1996, he's arrested and locked up in a mental hospital. There he meets psychiatrist Dr. Kathryn Railly, and patient Jeffrey Goines, the son of a famous virus expert, who may hold the key to the mysterious rogue group, the Army of the 12 Monkeys, thought to be responsible for unleashing the killer disease.
## 1093 Supervillains Harley Quinn, Bloodsport, Peacemaker and a collection of nutty cons at Belle Reve prison join the super-secret, super-shady Task Force X as they are dropped off at the remote, enemy-infused island of Corto Maltese.
## 1094 Jacek climbs into the taxi driven by Waldemar, tells him to drive to a remote location, then brutally strangles him, seemingly without motive.
## 1095 A couple's attitudes are challenged when their daughter brings home a fiancé who is black.
## 1096 Bosnia, July 1995. Aida is a translator for the UN in the small town of Srebrenica. When the Serbian army takes over the town, her family is among the thousands of citizens looking for shelter in the UN camp. As an insider to the negotiations Aida has access to crucial information that she needs to interpret. What is at the horizon for her family and people – rescue or death? Which move should she take?
## 1097 A celebration of love and creative inspiration takes place in the infamous, gaudy and glamorous Parisian nightclub, at the cusp of the 20th century. A young poet, who is plunged into the heady world of Moulin Rouge, begins a passionate affair with the club's most notorious and beautiful star.
## 1098 A tale of outsized ambition and outrageous excess, tracing the rise and fall of multiple characters in an era of unbridled decadence and depravity during Hollywood's transition from silent films and to sound films in the late 1920s.
## 1099 Legendary marshal Wyatt Earp, now a weary gunfighter, joins his brothers Morgan and Virgil to pursue their collective fortune in the thriving mining town of Tombstone. But Earp is forced to don a badge again and get help from his notorious pal Doc Holliday when a gang of renegade brigands and rustlers begins terrorizing the town.
## 1100 Sentenced to six years in prison, Malik El Djebena is alone in the world and can neither read nor write. On his arrival at the prison, he seems younger and more brittle than the others detained there. At once he falls under the sway of a group of Corsicans who enforce their rule in the prison. As the 'missions' go by, he toughens himself and wins the confidence of the Corsican group.
## 1101 In czarist Russia, a neurotic soldier and his distant cousin formulate a plot to assassinate Napoleon.
## 1102 Japan is thrown into a panic after several ships are sunk near Odo Island. An expedition to the island led by Dr. Yemani soon discover something far more devastating than imagined in the form of a 50 meter tall monster whom the natives call Gojira. Now the monster begins a rampage that threatens to destroy not only Japan, but the rest of the world as well.
## 1103 Boyz n the Hood is the popular and successful film and social criticism from John Singleton about the conditions in South Central Los Angeles where teenagers are involved in gun fights and drug dealing on a daily basis.
## 1104 A bank teller called Guy realizes he is a background character in an open world video game called Free City that will soon go offline.
## 1105 A molecular biologist's study of the human eye has far-reaching implications about humanity's scientific and spiritual beliefs.
## 1106 Lugano, Switzerland. Titta Di Girolamo is a discreet and sullen man who has been living for almost a decade in a modest hotel room, a prisoner of an atrocious routine, apparently without purpose. His past is a mystery, nobody knows what he does for a living, he answers indiscreet questions evasively. What secrets does this enigmatic man hide?
## 1107 With both her adoptive parents now dead, a black optometrist decides to make contact with her birth mother, but is shocked to find out that she is white.
## 1108 Takao, who is training to become a shoemaker, skipped school and is sketching shoes in a Japanese-style garden. He meets a mysterious woman, Yukino, who is older than him. Then, without arranging the times, the two start to see each other again and again, but only on rainy days. They deepen their relationship and open up to each other. But the end of the rainy season soon approaches.
## 1109 Giacinto lives with his wife, their ten children and various other family members in a shack on the hills of Rome. Some time ago he has lost his left eye while at work, and got a consistent sum of money from the insurance company, which he keeps hidden from the rest of the family. His whole life is now based on defending the money he sees as his own, while the rest of the family tries to kill him.
## 1110 The retelling of June 6, 1944, from the perspectives of the Germans, US, British, Canadians, and the Free French. Marshall Erwin Rommel, touring the defenses being established as part of the Reich's Atlantic Wall, notes to his officers that when the Allied invasion comes they must be stopped on the beach. "For the Allies as well as the Germans, it will be the longest day"
## 1111 County Durham England 1984 the miners strike has started and the police have started coming up from Bethnal Green starting a class war with the lower classes suffering caught in the middle of the conflict is 11-year old Billy Elliot who after leaving his boxing club for the day stubbles upon a ballet class and finds out that he's naturally talented. He practices with his teacher Mrs Wilkinson for an upcoming audition in Newcastle-upon Tyne the audition is for the royal Ballet school in London.
## 1112 The chronicles of four years in the life of Julie, a young woman who navigates the troubled waters of her love life and struggles to find her career path, leading her to take a realistic look at who she really is.
## 1113 During her wedding ceremony, Rachel notices Luce in the audience and feels instantly drawn to her. The two women become close friends, and when Rachel learns that Luce is a lesbian, she realizes that despite her happy marriage to Heck, she is falling for Luce. As she questions her sexual orientation, Rachel must decide between her stable relationship with Heck and her exhilarating new romance with Luce.
## 1114 When a team of mercenaries breaks into a wealthy family compound on Christmas Eve, taking everyone inside hostage, the team isn’t prepared for a surprise combatant: Santa Claus is on the grounds, and he’s about to show why this Nick is no saint.
## 1115 Cinephile slackers Franz and Arthur spend their days mimicking the antiheroes of Hollywood noirs and Westerns while pursuing the lovely Odile. The misfit trio upends convention at every turn, be it through choreographed dances in cafés or frolicsome romps through the Louvre. Eventually, their romantic view of outlaws pushes them to plan their own heist, but their inexperience may send them out in a blaze of glory -- which could be just what they want.
## 1116 A mysterious group called Humarize strongly believes in the Quirk Singularity Doomsday theory which states that when quirks get mixed further in with future generations, that power will bring forth the end of humanity. In order to save everyone, the Pro-Heroes around the world ask UA Academy heroes-in-training to assist them and form a world-class selected hero team. It’s up to the heroes to save the world and the future of heroes in what is the most dangerous crisis to take place yet in My Hero Academia.
## 1117 A Pixar short about a lost-and-found box and the unseen monster within.
## 1118 In this, the sequel to Jean de Florette, Manon (Beart) has grown into a beautiful young shepherdess living in the idyllic Provencal countryside. She plots vengeance on the men who greedily conspired to acquire her father's land years earlier.
## 1119 After moving to a new town, troublemaking teen Jim Stark is supposed to have a clean slate, although being the new kid in town brings its own problems. While searching for some stability, Stark forms a bond with a disturbed classmate, Plato, and falls for local girl Judy. However, Judy is the girlfriend of neighborhood tough, Buzz. When Buzz violently confronts Jim and challenges him to a drag race, the new kid's real troubles begin.
## 1120 When the Primm family moves to New York City, their young son Josh struggles to adapt to his new school and new friends. All of that changes when he discovers Lyle — a singing crocodile who loves baths, caviar and great music — living in the attic of his new home. But when Lyle’s existence is threatened by evil neighbor Mr. Grumps, the Primms must band together to show the world that family can come from the most unexpected places.
## 1121 The simple story has the pair coming to the rescue of peace-loving Mormons when land-hungry Major Harriman sends his bullies to harass them into giving up their fertile valley. Trinity and Bambino manage to save the Mormons and send the bad guys packing with slapstick humor instead of excessive violence, saving the day.
## 1122 Brash, loudmouthed and opportunistic, Kikujiro is the unlikely companion for Masao who is determined to see the mother he has never met. The two begin a series of adventures which soon turns out to be a whimsical journey of laughter and tears with a wide array of surprises and unique characters along the way.
## 1123 Andy heads off to Cowboy Camp, leaving his toys to their own devices. Things shift into high gear when an obsessive toy collector named Al McWhiggen, owner of Al's Toy Barn kidnaps Woody. Andy's toys mount a daring rescue mission, Buzz Lightyear meets his match and Woody has to decide where he and his heart truly belong.
## 1124 Young Dorothy finds herself in a magical world where she makes friends with a lion, a scarecrow and a tin man as they make their way along the yellow brick road to talk with the Wizard and ask for the things they miss most in their lives. The Wicked Witch of the West is the only thing that could stop them.
## 1125 It is just another evening commute until the rain starts to fall, and the city comes alive to the sound of dripping rain pipes, whistling awnings and gurgling gutters.
## 1126 When the kingdom's most wanted-and most charming-bandit Flynn Rider hides out in a mysterious tower, he's taken hostage by Rapunzel, a beautiful and feisty tower-bound teen with 70 feet of magical, golden hair. Flynn's curious captor, who's looking for her ticket out of the tower where she's been locked away for years, strikes a deal with the handsome thief and the unlikely duo sets off on an action-packed escapade, complete with a super-cop horse, an over-protective chameleon and a gruff gang of pub thugs.
## 1127 Based on the experiences of Agu, a child fighting in the civil war of an unnamed, fictional West African country. Follows Agu's journey as he's forced to join a group of soldiers. While he fears his commander and many of the men around him, his fledgling childhood has been brutally shattered by the war raging through his country, and he is at first torn between conflicting revulsion and fascination.
## 1128 A chronicle of three weeks in the lives of several high school teachers, administrators and students through the eyes of substitute teacher, Henry Barthes. Henry roams from school to school, imparting modes of knowledge, but never staying long enough to form any semblance of sentient attachment.
## 1129 Three tales of very different women using their sexuality as a means to getting what they want.
## 1130 The Sea Inside is about Spaniard Ramón Sampedro, who fought a 30-year campaign to win the right to end his life with dignity. It is the story of Ramón’s relationships with two women: Julia a lawyer who supports his cause, and Rosa, a local woman who wants to convince him that life is worth living.
## 1131 In the Salinas Valley in and around World War I, Cal Trask feels he must compete against overwhelming odds with his brother for the love of their father. Cal is frustrated at every turn, from his reaction to the war, how to get ahead in business and in life, and how to relate to his estranged mother.
## 1132 A gambler discovers an old flame while in Argentina, but she's married to his new boss.
## 1133 Elise thought she had the perfect life: an ideal boyfriend and a promising career as a ballet dancer. It all falls apart the day she catches him cheating on her with her stage backup; and after she suffers an injury on stage, it seems like she might not be able to dance ever again. A heartwarming and inspiring story that tells us how sometimes, the worst thing that could happen may turn out to be the best.
## 1134 Taking place after alien crafts land around the world, an expert linguist is recruited by the military to determine whether they come in peace or are a threat.
## 1135 Danila goes to his successful brother, Victor, in Petersburg to start a new life. Unknown to Danila, Victor is a contract killer, but is in hiding after asking for too much money to assassinate a Chechen mob boss. To avoid exposure, Victor convinces Danila to kill the boss instead.
## 1136 The young Shivudu is left as a foundling in a small village by his mother. By the time he’s grown up, it has become apparent that he possesses exceptional gifts. He meets the beautiful warrior princess Avanthika and learns that her queen has been held captive for the last 25 years. Shividu sets off to rescue her, discovering his own origins in the process.
## 1137 When three close friends escape from Hong Kong to war-time Saigon to start a criminal's life, they all go through a harrowing experience which totally shatters their lives and their friendship forever.
## 1138 Zed and Addison are beginning their final year at Seabrook High in the town that’s become a safe haven for monsters and humans alike. Zed is anticipating an athletic scholarship that will make him the first Zombie to attend college, while Addison is gearing up for Seabrook’s first international cheer-off competition. Then suddenly, extraterrestrial beings appear around Seabrook, provoking something other than friendly competition.
## 1139 Tom Ripley is a talented mimic, moocher, forger and all-around criminal improviser; but there's more to Tom Ripley than even he can guess.
## 1140 Following the death of his employer and mentor, Bumpy Johnson, Frank Lucas establishes himself as the number one importer of heroin in the Harlem district of Manhattan. He does so by buying heroin directly from the source in South East Asia and he comes up with a unique way of importing the drugs into the United States. Partly based on a true story.
## 1141 Marcello, a small and gentle dog groomer, finds himself involved in a dangerous relationship of subjugation with Simone, a former violent boxer who terrorizes the entire neighborhood. In an effort to reaffirm his dignity, Marcello will submit to an unexpected act of vengeance.
## 1142 A faithful retelling of the 1942 "Vel' d'Hiv Roundup" and the events surrounding it.
## 1143 With only three weeks left in his three year contract, Sam Bell is getting anxious to finally return to Earth. He is the only occupant of a Moon-based manufacturing facility along with his computer and assistant, GERTY. When he has an accident however, he wakens to find that he is not alone.
## 1144 An apocalyptic story set in the furthest reaches of our planet, in a stark desert landscape where humanity is broken, and most everyone is crazed fighting for the necessities of life. Within this world exist two rebels on the run who just might be able to restore order.
## 1145 I was born under unusual circumstances. And so begins The Curious Case of Benjamin Button, adapted from the 1920s story by F. Scott Fitzgerald about a man who is born in his eighties and ages backwards: a man, like any of us, who is unable to stop time. We follow his story, set in New Orleans, from the end of World War I in 1918 into the 21st century, following his journey that is as unusual as any man's life can be. Benjamin Button, is a grand tale of a not-so-ordinary man and the people and places he discovers along the way, the loves he finds, the joys of life and the sadness of death, and what lasts beyond time.
## 1146 At the Café des Poètes in Paris, a fight breaks out between the poet Orphée and a group of resentful upstarts. A rival poet, Cègeste, is killed, and a mysterious princess insists on taking Orpheus and the body away in her Rolls-Royce. Orphée soon finds himself in the underworld, where the Princess announces that she is, in fact, Death. Orpheus escapes in the car back to the land of the living, only to become obsessed with the car radio.
## 1147 Vampire housemates try to cope with the complexities of modern life and show a newly turned hipster some of the perks of being undead.
## 1148 Sayra, a Honduran teen, hungers for a better life. Her chance for one comes when she is reunited with her long-estranged father, who intends to emigrate to Mexico and then enter the United States. Sayra's life collides with a pair of Mexican gangmembers who have boarded the same American-bound train.
## 1149 The Popes are a family who haven't been able to use their real identity for years. In the late sixties, the parents set a weapons lab afire in an effort to hinder the government's Vietnam war campaign. Ever since then, the Popes have been on the run with the authorities never far behind.
## 1150 The gang's vacation to Paris takes a wrong turn when Scooby and Shaggy miss their flight and end up on a skydiving expedition in the Himalayas. To make matters worse, upon arrival they must outrun the Abominable Snowmonster.
## 1151 Per her mother's last wish, an 8 year old girl sets out to reunite her father with his college best friend who was in love with him.
## 1152 After his wealthy family prohibits him from marrying the woman he is in love with, Devdas Mukherjee's life spirals further and further out of control as he takes up alcohol and a life of vice to numb the pain.
## 1153 A widowed new dad copes with doubts, fears, heartache and dirty diapers as he sets out to raise his daughter on his own. Inspired by a true story.
## 1154 Caleb, a coder at the world's largest internet company, wins a competition to spend a week at a private mountain retreat belonging to Nathan, the reclusive CEO of the company. But when Caleb arrives at the remote location he finds that he will have to participate in a strange and fascinating experiment in which he must interact with the world's first true artificial intelligence, housed in the body of a beautiful robot girl.
## 1155 What lengths will a robot undergo to do his job? BURN·E is a dedicated hard working robot who finds himself locked out of his ship. BURN·E quickly learns that completing a simple task can often be a very difficult endeavor.
## 1156 Sam, a neurodivergent man, has a daughter with a homeless woman who abandons them when they leave the hospital, leaving Sam to raise Lucy on his own. But as Lucy grows up, Sam's limitations as a parent start to become a problem and the authorities take her away. Sam convinces high-priced lawyer Rita to take his case pro bono and in turn teaches her the value of love and family.
## 1157 A tale of murder, crime and punishment set in the summer of 1949. Ed Crane, a barber in a small California town, is dissatisfied with his life, but his wife Doris' infidelity and a mysterious opportunity presents him with a chance to change it.
## 1158 Fifteen years after murdering his sister on Halloween Night 1963, Michael Myers escapes from a mental hospital and returns to the small town of Haddonfield, Illinois to kill again.
## 1159 The Dwarves, Bilbo and Gandalf have successfully escaped the Misty Mountains, and Bilbo has gained the One Ring. They all continue their journey to get their gold back from the Dragon, Smaug.
## 1160 Mr Banks is looking for a nanny for his two mischievous children and comes across Mary Poppins, an angelic nanny. She not only brings a change in their lives but also spreads happiness.
## 1161 From war-torn Syria to the 2016 Rio Olympics, two young sisters embark on a risky voyage, putting their hearts and their swimming skills to heroic use.
## 1162 In the 1960s, two entrepreneurs hatch an ingenious business plan to fight for housing integration—and equal access to the American Dream.
## 1163 A cop who loses his partner in a shoot-out with gun smugglers goes on a mission to catch them. In order to get closer to the leaders of the ring he joins forces with an undercover cop who's working as a gangster hitman. They use all means of excessive force to find them.
## 1164 The true story of Elle France editor Jean-Dominique Bauby, who, in 1995 at the age of 43, suffered a stroke that paralyzed his entire body, except his left eye. Using that eye to blink out his memoir, Bauby eloquently described the aspects of his interior world, from the psychological torment of being trapped inside his body to his imagined stories from lands he'd only visited in his mind.
## 1165 C.R. MacNamara will do anything to get a promotion within the Coca-Cola company, including looking after boss W.P. Hazeltine's rebellious teenage daughter, Scarlett. When Scarlett visits Berlin, where C.R. is stationed, she reveals that she is married to a communist named Otto Piffl -- and C.R. recognizes that Otto's anti-establishment stance will clash with his boss's own political views, possibly jeopardizing his promotion.
## 1166 Mumbai, India, November 26, 2008. While several terrorists spread hatred and death through the city, others attack the Taj Mahal Palace Hotel. Both hotel staff and guests risk their lives, making unthinkable sacrifices to protect themselves and keep everyone safe while help arrives.
## 1167 In 1868, after the Bakumatsu war ends, the ex-assassin Kenshin Himura traverses Japan with an inverted sword, to defend the needy without killing.
## 1168 Driver is a skilled Hollywood stuntman who moonlights as a getaway driver for criminals. Though he projects an icy exterior, lately he's been warming up to a pretty neighbor named Irene and her young son, Benicio. When Irene's husband gets out of jail, he enlists Driver's help in a million-dollar heist. The job goes horribly wrong, and Driver must risk his life to protect Irene and Benicio from the vengeful masterminds behind the robbery.
## 1169 Hugo Barrett is a servant in the Chelsea home of indolent aristocrat Tony. All seems to go well until the playboy’s girlfriend Susan takes a dislike to the efficient employee. Then Barrett persuades Tony to hire his sister Vera as a live-in maid, and matters take another turn for the worse…
## 1170 An aspiring actress begins to suspect that her temperamental and mentally impaired boyfriend is a murderer.
## 1171 A young boy makes a snowman one Christmas Eve, which comes to life at midnight and takes him on a magical adventure to the North Pole to meet Santa Claus.
## 1172 After recovering from injuries sustained in the mob attack upon himself and his creation, Dr. Frankenstein falls under the control of his former mentor, Dr. Pretorius, who insists the now-chastened doctor resume his experiments in creating new life. Meanwhile, the Monster remains on the run from those who wish to destroy him without understanding that his intentions are generally good despite his lack of socialization and self-control.
## 1173 After her son Kevin commits a horrific act, troubled mother Eva reflects on her complicated relationship with her disturbed son as he grew from a toddler into a teenager.
## 1174 In the 22nd century, a paraplegic Marine is dispatched to the moon Pandora on a unique mission, but becomes torn between following orders and protecting an alien civilization.
## 1175 Fifth Avenue socialite Irene Bullock needs a "forgotten man" to win a scavenger hunt, and no one is more forgotten than Godfrey Park, who resides in a dump by the East River. Irene hires Godfrey as a servant for her riotously unhinged family, to the chagrin of her spoiled sister, Cornelia, who tries her best to get Godfrey fired. As Irene falls for her new butler, Godfrey turns the tables and teaches the frivolous Bullocks a lesson or two.
## 1176 Ash Williams and his girlfriend Linda find a log cabin in the woods with a voice recording from an archeologist who had recorded himself reciting ancient chants from "The Book of the Dead." As they play the recording an evil power is unleashed taking over Linda's body.
## 1177 Dr. Jean Markham returns to the town she left as a teenager to take over her late father's medical practice. When a school-yard scuffle lands Charlie in her surgery, she invites him to visit the hives in her garden and tell his secrets to the bees, as she once did. The new friendship between the boy and the bee keeper brings his mother Lydia into Jean's world.
## 1178 In Ancient Polynesia, when a terrible curse incurred by Maui reaches an impetuous Chieftain's daughter's island, she answers the Ocean's call to seek out the demigod to set things right.
## 1179 Ted Kramer is a career man for whom his work comes before his family. His wife Joanna cannot take this anymore, so she decides to leave him. Ted is now faced with the tasks of housekeeping and taking care of himself and their young son Billy.
## 1180 The sinking of the Titanic is presented in a highly realistic fashion in this tense British drama. The disaster is portrayed largely from the perspective of the ocean liner's second officer, Charles Lightoller. Despite numerous warnings about ice, the ship sails on, with Capt. Edward John Smith keeping it going at a steady clip. When the doomed vessel finally hits an iceberg, the crew and passengers discover that they lack enough lifeboats, and tragedy follows.
## 1181 David Huxley is waiting to get a bone he needs for his museum collection. Through a series of strange circumstances, he meets Susan Vance, and the duo have a series of misadventures which include a leopard called Baby.
## 1182 A disgraced basketball coach is given the chance to coach Los Amigos, a team of players who are intellectually disabled, and soon realizes they just might have what it takes to make it to the national championships.
## 1183 An ambitious young man struggles to achieve his dream of becoming an employee in a Munich luxury hotel despite being strongly visually impaired.
## 1184 Buck is a big-hearted dog whose blissful domestic life is turned upside down when he is suddenly uprooted from his California home and transplanted to the exotic wilds of the Yukon during the Gold Rush of the 1890s. As the newest rookie on a mail delivery dog sled team—and later its leader—Buck experiences the adventure of a lifetime, ultimately finding his true place in the world and becoming his own master.
## 1185 Eccentric and full of manias, Michele is a young high school professor who defines himself as “not used to happiness”. He realizes his life is meaningless if he doesn’t have a woman by his side but, after a series of rather disastrous experiences, he feels more alone than ever. Then, out of the blue, a new French teacher called Bianca arrives at school. Amongst uncertainties and contradictions, the two start dating. In the meantime, a series of homicides take place and a police officer begins to suspect that Michele is involved. Bianca will save him providing an alibi at the right moment, but then, everything goes wrong again.
## 1186 When Pete and Ellie decide to start a family, they stumble into the world of foster care adoption. They hope to take in one small child but when they meet three siblings, including a rebellious 15 year old girl, they find themselves speeding from zero to three kids overnight.
## 1187 With nuclear war looming, a military expert in underwater acoustics strives to prove things aren't as they seem—or sound—using only his ears.
## 1188 Russian inmate Boyka, now severely hobbled by the knee injury suffered at the end of Undisputed 2. No longer the feared prison fighter he was, he has declined so far that he is now good only for cleaning toilets. But when a new prison fight tournament begins - an international affair, matching the best fighters from prisons around the globe, enticing them with the promise of freedom for the winner - Boyka must reclaim his dignity and fight for his position in the tournament.
## 1189 Wallace Shawn and Andre Gregory, apparently playing themselves, share their lives over the course of an evening meal at a restaurant.
## 1190 Young writer Richard Collier is met on the opening night of his first play by an old lady who begs him to "Come back to me". Mystified, he tries to find out about her, and learns that she is a famous stage actress from the early 1900s. Becoming more and more obsessed with her, by self-hypnosis he manages to travel back in time—where he meets her.
## 1191 Jack Crabb, looking back from extreme old age, tells of his life being raised by Indians and fighting with General Custer.
## 1192 Whilst on a short weekend getaway, Louise shoots a man who had tried to rape Thelma. Due to the incriminating circumstances, they make a run for it and thus a cross country chase ensues for the two fugitives. Along the way, both women rediscover the strength of their friendship and surprising aspects of their personalities and self-strengths in the trying times.
## 1193 Alex Kerner's mother was in a coma while the Berlin wall fell. When she wakes up he must try to keep her from learning what happened (as she was an avid communist supporter) to avoid shocking her which could lead to another heart attack.
## 1194 Washington Irving's tale of Ichabod Crane and the headless horseman is brought to life, narrated by Bing Crosby.
## 1195 Nathan Algren is an American hired to instruct the Japanese army in the ways of modern warfare, which finds him learning to respect the samurai and the honorable principles that rule them. Pressed to destroy the samurai's way of life in the name of modernization and open trade, Algren decides to become an ultimate warrior himself and to fight for their right to exist.
## 1196 A young girl discovers a secret map to the dreamworld of Slumberland, and with the help of an eccentric outlaw, she traverses dreams and flees nightmares, with the hope that she will be able to see her late father again.
## 1197 In New York, Felix, a neurotic news writer who just broke up with his wife, is urged by his chaotic friend Oscar, a sports journalist, to move in with him, but their lifestyles are as different as night and day are, so Felix's ideas about housekeeping soon begin to irritate Oscar.
## 1198 A teenage hustler and a young man obsessed with alien abductions cross paths, together discovering a horrible, liberating truth.
## 1199 Following a bungled robbery, three violent criminals take a young woman, a middle-aged man, and a child hostage and force them to drive them outside Rome to help them make a clean getaway.
## 1200 On the first day at his new school, Cameron instantly falls for Bianca, the gorgeous girl of his dreams. The only problem is that Bianca is forbidden to date until her ill-tempered, completely un-dateable older sister Kat goes out, too. In an attempt to solve his problem, Cameron singles out the only guy who could possibly be a match for Kat: a mysterious bad boy with a nasty reputation of his own.
## 1201 After her grandfather's death, 20-year-old Alma decides to go back to her childhood home - a little island in the heart of the majestic Canadian forest. Whilst there, she rescues two helpless cubs: a wolf and a lion. They forge an inseparable bond, but their world soon collapses as the forest ranger discovers the animals and takes them away. The two cub brothers must now embark on a treacherous journey across Canada to be reunited with one another and Alma once more.
## 1202 The film tackles the life journey of Toni Ligabue, visionary naïf painter who used to draw tigers, lions and jaguars while living among the poplar trees of the boundless Po valley. A harsh life that is a fairy tale too, as a lonely and marginalized kid finds redemption in his art, and a way to express himself and be admired by the world.
## 1203 An impressionable teenage girl from a dead-end town and her older greaser boyfriend embark on a killing spree in the South Dakota badlands.
## 1204 Connected by phone in the same home but 20 years apart, a serial killer puts another woman’s past — and life — on the line to change her own fate.
## 1205 After being wrongfully convicted, a woman is imprisoned for 13 years and forced to give up her daughter. While in prison she gains the respect of her cellmates and plots her revenge on the man responsible. Once released, she begins her elaborate plan of retribution, but discovers a horrifying truth.
## 1206 In honor of his birthday, San Francisco banker Nicholas Van Orton, a financial genius and a cold-hearted loner, receives an unusual present from his younger brother, Conrad: a gift certificate to play a unique kind of game. In nary a nanosecond, Nicholas finds himself consumed by a dangerous set of ever-changing rules, unable to distinguish where the charade ends and reality begins.
## 1207 Giulia De Martino is a pilot. At seventeen she participates in the GT Championship, under the guidance of her father Mario. But one day everything changes and Giulia has to face alone both the track and her own life.
## 1208 Greg is coasting through senior year of high school as anonymously as possible, avoiding social interactions like the plague while secretly making spirited, bizarre films with Earl, his only friend. But both his anonymity and friendship threaten to unravel when his mother forces him to befriend a classmate with leukemia.
## 1209 A council case worker looks for the relatives of those found dead and alone.
## 1210 The true story of Captain Richard Phillips and the 2009 hijacking by Somali pirates of the US-flagged MV Maersk Alabama, the first American cargo ship to be hijacked in two hundred years.
## 1211 D has been hired to track down Meier Link, a notoriously powerful vampire who has abducted a woman, Charlotte Elbourne. D's orders are strict - find Charlotte, at any cost. For the first time, D faces serious competition. The Markus Brothers, a family of Vampire Hunters, were hired for the same bounty. D Must intercept Meier and conquer hostile forces on all sides in a deadly race against time.
## 1212 World War II is raging, and an American general has been captured and is being held hostage in the Schloss Adler, a Bavarian castle that's nearly impossible to breach. It's up to a group of skilled Allied soldiers to liberate the general before it's too late.
## 1213 When circumstances force an outlaw to impersonate a county governor and clean up a corrupt town, the Robin Hood figure finds himself in a showdown with the local godfather.
## 1214 A left-wing journalist whose wife died while giving birth to his son during a military coup returns to his family's farm. Estranged from his father for turning his back on the family and wasting his life with political activism instead, he tries to reconnect with him so that his son will have a place to live as his health is deteriorating due to the extensive torture he had to endure.
## 1215 Karl Childers, a mentally disabled man, has been in the custody of the state mental hospital since the age of 12 for killing his mother and her lover. Although thoroughly institutionalized, he is deemed fit to be released into the outside world.
## 1216 Set in the changing world of the late 1960s, Susanna Kaysen's prescribed "short rest" from a psychiatrist she had met only once becomes a strange, unknown journey into Alice's Wonderland, where she struggles with the thin line between normal and crazy. Susanna soon realizes how hard it is to get out once she has been committed, and she ultimately has to choose between the world of people who belong inside or the difficult world of reality outside.
## 1217 The rebellious Thracian Spartacus, born and raised a slave, is sold to Gladiator trainer Batiatus. After weeks of being trained to kill for the arena, Spartacus turns on his owners and leads the other slaves in rebellion. As the rebels move from town to town, their numbers swell as escaped slaves join their ranks. Under the leadership of Spartacus, they make their way to southern Italy, where they will cross the sea and return to their homes.
## 1218 A snobbish phonetics professor agrees to a wager that he can take a flower girl and make her presentable in high society.
## 1219 Tommy Riley has moved with his dad to Chicago from a 'nice place'. He keeps to himself, goes to school. However, after a street fight he is noticed and quickly falls into the world of illegal underground boxing - where punches can kill.
## 1220 The story of Joy Division’s lead singer Ian Curtis, from his schoolboy days in 1973 to his suicide on the eve of the band's first American tour in 1980.
## 1221 Traveling in search of the rare ingredient, “sky fish” Meliodas and Hawk arrive at a palace that floats above the clouds. The people there are busy preparing a ceremony, meant to protect their home from a ferocious beast that awakens once every 3,000 years. But before the ritual is complete, the Six Knights of Black—a Demon Clan army—removes the seal on the beast, threatening the lives of everyone in the Sky Palace.
## 1222 After a botched robbery results in the brutal murder of a rural family, two drifters elude police, in the end coming to terms with their own mortality and the repercussions of their vile atrocity.
## 1223 In this true story told through flashbacks, Christy Brown is born with crippling cerebral palsy into a poor, working-class Irish family. Able only to control movement in his left foot and to speak in guttural sounds, he is mistakenly believed to have a intellectual disability for the first ten years of his life.
## 1224 Based on a true story, in which Richmond High School head basketball coach Ken Carter made headlines in 1999 for benching his undefeated team due to poor academic results.
## 1225 Set in the Mayan civilization, when a man's idyllic presence is brutally disrupted by a violent invading force, he is taken on a perilous journey to a world ruled by fear and oppression where a harrowing end awaits him. Through a twist of fate and spurred by the power of his love for his woman and his family he will make a desperate break to return home and to ultimately save his way of life.
## 1226 An anthology of 5 different cab drivers in 5 American and European cities and their remarkable fares on the same eventful night.
## 1227 After he and his first wife separate, journalist David Sheff struggles to help their teenage son, who goes from experimenting with drugs to becoming devastatingly addicted to methamphetamine.
## 1228 Paranormal investigators Ed and Lorraine Warren encounter what would become one of the most sensational cases from their files. The fight for the soul of a young boy takes them beyond anything they'd ever seen before, to mark the first time in U.S. history that a murder suspect would claim demonic possession as a defense.
## 1229 A young man struggles to access sublimated childhood memories. He finds a technique that allows him to travel back into the past, to occupy his childhood body and change history. However, he soon finds that every change he makes has unexpected consequences.
## 1230 As a former London constable, Nicholas Angel finds it difficult to adapt to his new assignment in the sleepy British village of Sandford. Not only does he miss the excitement of the big city, but he also has a well-meaning oaf for a partner. However, when a series of grisly accidents rocks Sandford, Angel smells something rotten in the idyllic village.
## 1231 Véronique is a beautiful young French woman who aspires to be a renowned singer; Weronika lives in Poland, has a similar career goal and looks identical to Véronique, though the two are not related. The film follows both women as they contend with the ups and downs of their individual lives, with Véronique embarking on an unusual romance with Alexandre Fabbri, a puppeteer who may be able to help her with her existential issues.
## 1232 The success of the Conchy virtual assistant (which was developed by Javier) has earned him a favorable spot in the parents chat room - until something unexpected ruins it all.
## 1233 Law enforcement officers Adam Mitchell, Nathan Hayes, and their partners stand up to the worst the streets have to offer with confidence and focus. Yet at the end of the day, they face a challenge that none of them are truly prepared to tackle: fatherhood. They know that God desires to turn the hearts of fathers to their children, but their children are beginning to drift further and further away from them. When tragedy hits home, these men are left wrestling with their hopes, their fears, their faith, and their fathering. Can a newfound urgency help these dads draw closer to God... and to their children?
## 1234 Longfellow Deeds lives in a small town, leading a small town kind of life. When a relative dies and leaves Deeds a fortune, Longfellow moves to the big city where he becomes an instant target for everyone. Deeds outwits them all until Babe Bennett comes along. When small-town boy meets big-city girl anything can, and does, happen.
## 1235 A young street hustler attempts to escape the rigors and temptations of the ghetto in a quest for a better life.
## 1236 In a future society in the era of indefinite eugenics, humans are set on a life course depending on their DNA. Young Vincent Freeman is born with a condition that would prevent him from space travel, yet is determined to infiltrate the GATTACA space program.
## 1237 Kuzco is a self-centered emperor who summons Pacha from a village and to tell him that his home will be destroyed to make room for Kuzco's new summer home. Kuzco's advisor, Yzma, tries to poison Kuzco and accidentally turns him into a llama, who accidentally ends up in Pacha's village. Pacha offers to help Kuzco if he doesn't destroy his house, and so they form an unlikely partnership.
## 1238 The life of a Russian physician and poet who, although married to another, falls in love with a political activist's wife and experiences hardship during World War I and then the October Revolution.
## 1239 The life of a legendary sea monster hunter is turned upside down when a young girl stows away on his ship.
## 1240 England, early 18th century. The close relationship between Queen Anne and Sarah Churchill is threatened by the arrival of Sarah's cousin, Abigail Hill, resulting in a bitter rivalry between the two cousins to be the Queen's favourite.
## 1241 Recently paroled from prison, legendary burglar "Doc" Riedenschneider, with funding from Alonzo Emmerich, a crooked lawyer, gathers a small group of veteran criminals together in the Midwest for a big jewel heist.
## 1242 Frank Serpico is an idealistic New York City cop who refuses to take bribes, unlike the rest of the force. His actions get Frank shunned by the other officers, and often placed in dangerous situations by his partners. When his superiors ignore Frank's accusations of corruption, he decides to go public with the allegations. Although this causes the Knapp Commission to investigate his claims, Frank has also placed a target on himself.
## 1243 A woman’s body disappears mysteriously from the morgue without a trace. Police inspector Jaime Peña investigates the strange occurrence with the help of Álex Ulloa, the widower of the missing woman.
## 1244 Following a brutal series of murders taking place on Halloween, Thanksgiving, and Christmas, Gotham City's young vigilante known as the Batman sets out to pursue the mysterious serial killer alongside police officer James Gordon and district attorney Harvey Dent.
## 1245 When his best friend Gary is suddenly snatched away, SpongeBob takes Patrick on a madcap mission far beyond Bikini Bottom to save their pink-shelled pal.
## 1246 Clarence marries hooker Alabama, steals cocaine from her pimp, and tries to sell it in Hollywood, while the owners of the coke try to reclaim it.
## 1247 A tenacious attorney uncovers a dark secret that connects a growing number of unexplained deaths to one of the world's largest corporations. In the process, he risks everything — his future, his family, and his own life — to expose the truth.
## 1248 A fragile Kansas girl's unrequited and forbidden love for a handsome young man from the town's most powerful family drives her to heartbreak and madness.
## 1249 San Francisco Bay, January 18, 1960. Frank Lee Morris is transferred to Alcatraz, a maximum security prison located on a rocky island. Although no one has ever managed to escape from there, Frank and other inmates begin to carefully prepare an escape plan.
## 1250 Between two Thanksgivings, Hannah's husband falls in love with her sister Lee, while her hypochondriac ex-husband rekindles his relationship with her sister Holly.
## 1251 Two college roommates have 24 hours to make the ultimate choice as they finalize arrangements for a black market abortion.
## 1252 To save their cash-strapped orphanage, a guardian and his kids partner with a washed-up boat captain for a chance to win a lucrative fishing competition.
## 1253 Leo Borlock is an average student at Mica High School. He gets decent grades, is a member of the school's marching band and has always been content flying under the radar. But all that changes when he meets Stargirl Caraway, a confident and colorful new student with a penchant for the ukulele, who stands out in a crowd. She is kind, finds magic in the mundane and touches the lives of others with the simplest of gestures. Her eccentricities and infectious personality charm Leo and the student body, and she quickly goes from being ignored and ridiculed to accepted and praised, then back again, sending Leo on a rollercoaster ride of emotions.
## 1254 Susan, a single mother of two, works as a waitress in a small town. Her son, Henry, is an 11-year-old genius who not only manages the family finances but acts as emotional support for his mother and younger brother. When Henry discovers that the girl next door has a terrible secret, he implores Susan to take matters into her own hands.
## 1255 Surveillance expert Harry Caul is hired by a mysterious client's brusque aide to tail a young couple. Tracking the pair through San Francisco's Union Square, Caul and his associate Stan manage to record a cryptic conversation between them. Tormented by memories of a previous case that ended badly, Caul becomes obsessed with the resulting tape, trying to determine if the couple is in danger.
## 1256 When their latest scheme goes awry, Mayor Humdinger and his nephew Harold accidentally divert a meteor towards Adventure Bay. The meteor's golden energy grants the PAW Patrol superpowers. The heroic Mighty Pups are on a roll to super-save the day.
## 1257 In the midst of a divorce, Miriam Besson decides to ask for exclusive custody of her son, in order to protect him from a father that she is accusing of violence. The judge-in-charge of the file grants a shared custody to the father whom it considers abused. Taken as a hostage between his parents, Julien Besson will do everything to prevent the worst from happening.
## 1258 A romantic comedy about a family traveling to the French capital for business. The party includes a young engaged couple forced to confront the illusion that a life different from their own is better.
## 1259 It has been thirteen years since the Androids began their killing rampage and Son Gohan is the only person fighting back. He takes Bulma's son Trunks as a student and even gives his own life to save Trunks's. Now Trunks must figure out a way to change this apocalyptic future
## 1260 A student tries to fix a problem he accidentally caused in OZ, a digital world, while pretending to be the fiancé of his friend at her grandmother's 90th birthday.
## 1261 Winner of four Academy Awards, including Best Picture and Best Actor, Sir Laurence Olivier’s Hamlet continues to be the most compelling version of Shakespeare’s beloved tragedy. Olivier is at his most inspired—both as director and as the melancholy Dane himself—as he breathes new life into the words of one of the world’s greatest dramatists.
## 1262 An oppressed Mexican peasant village hires seven gunfighters to help defend their homes.
## 1263 Two high schoolers find hope as they fight to save an old wartime era clubhouse from destruction during the preparations for the 1964 Tokyo Olympics.
## 1264 An army cadet accompanies an irascible, blind captain on a week-long trip from Turin to Naples.
## 1265 In the early years of the 20th century, Mohandas K. Gandhi, a British-trained lawyer, forsakes all worldly possessions to take up the cause of Indian independence. Faced with armed resistance from the British government, Gandhi adopts a policy of 'passive resistance', endeavouring to win freedom for his people without resorting to bloodshed.
## 1266 Woody has always been confident about his place in the world and that his priority is taking care of his kid, whether that's Andy or Bonnie. But when Bonnie adds a reluctant new toy called "Forky" to her room, a road trip adventure alongside old and new friends will show Woody how big the world can be for a toy.
## 1267 Paranormal investigators Ed and Lorraine Warren work to help a family terrorized by a dark presence in their farmhouse. Forced to confront a powerful entity, the Warrens find themselves caught in the most terrifying case of their lives.
## 1268 Just when Charlotte ‘Charlie’ Newton, is feeling especially frustrated by the lack of excitement in her small town in California, she receives wonderful news: Her uncle and namesake, Charlie Oakley, is coming to visit. However, as secrets about him come to the fore, Charlotte’s admiration turns into suspicion.
## 1269 A newlywed fears she's going mad when strange things start happening at the family mansion.
## 1270 A few decades after the destruction of the Inca Empire, a Spanish expedition led by the infamous Aguirre leaves the mountains of Peru and goes down the Amazon River in search of the lost city of El Dorado. When great difficulties arise, Aguirre’s men start to wonder whether their quest will lead them to prosperity or certain death.
## 1271 After completing jail time for beating up a man who tried to seduce his mentally-handicapped teenage daughter, The Butcher wants to start life anew. He institutionalizes his daughter and moves to the Lille suburbs with his mistress, who promises him a new butcher shop. Learning that she lied, The Butcher returns to Paris to find his daughter.
## 1272 Paris, France, December 1897. The young playwright Edmond Rostand feels like a failure. Inspiration has abandoned him. Married and father of two children, desperate and penniless, he persuades the great actor Constant Coquelin to perform the main role in his new play. But there is a problem: Coquelin wants to premiere it at Christmas and Edmond has not written a single word.
## 1273 After his older brother passes away, Lee Chandler is forced to return home to care for his 16-year-old nephew. There he is compelled to deal with a tragic past that separated him from his family and the community where he was born and raised.
## 1274 Grandmother Mi Ja works part-time as a caretaker, and struggles to raise a teen grandson by herself. Despite her tough situation, she speaks softly, dresses fashionably, and approaches the world with child-like curiosity. Enrolling in a poetry class, she endeavors to capture life in verse form, but her simple dream of completing a poem is stalled by the early signs of Alzheimer's disease and the heavy financial and emotional burden of her grandson's shocking wrongdoing.
## 1275 A husband and wife detective team takes on the search for a missing inventor and almost get killed for their efforts.
## 1276 Following the events at home, the Abbott family now face the terrors of the outside world. Forced to venture into the unknown, they realize that the creatures that hunt by sound are not the only threats that lurk beyond the sand path.
## 1277 Searching for a safer habitat, the prehistoric Crood family discovers an idyllic, walled-in paradise that meets all of its needs. Unfortunately, they must also learn to live with the Bettermans -- a family that's a couple of steps above the Croods on the evolutionary ladder. As tensions between the new neighbors start to rise, a new threat soon propels both clans on an epic adventure that forces them to embrace their differences, draw strength from one another, and survive together.
## 1278 Shaun lives a supremely uneventful life, which revolves around his girlfriend, his mother, and, above all, his local pub. This gentle routine is threatened when the dead return to life and make strenuous attempts to snack on ordinary Londoners.
## 1279 A story that revolves around three sisters who live in their grandmother's home and the arrival of their 13-year-old half sister.
## 1280 The journey of Manolo, a young man who is torn between fulfilling the expectations of his family and following his heart. Before choosing which path to follow, he embarks on an incredible adventure that spans three fantastical worlds where he must face his greatest fears.
## 1281 A losing coach with an underdog football team faces their giants of fear and failure on and off the field to surprising results.
## 1282 In Luis Buñuel’s deliciously satiric masterpiece, an upper-class sextet sits down to dinner but never eats, their attempts continually thwarted by a vaudevillian mixture of events both actual and imagined.
## 1283 A stern Russian woman sent to Paris on official business finds herself attracted to a man who represents everything she is supposed to detest.
## 1284 Tough narcotics detective 'Popeye' Doyle is in hot pursuit of a suave French drug dealer who may be the key to a huge heroin-smuggling operation.
## 1285 The true story of boxer Jim Braddock who, in the 1920s following his retirement, makes a surprise comeback in order to get him and his family out of a socially poor state.
## 1286 Sinan is passionate about literature and has always wanted to be a writer. Returning to the village where he was born, he pours his heart and soul into scraping together the money he needs to be published, but his father’s debts catch up with him.
## 1287 Billy Hayes is caught attempting to smuggle drugs out of Turkey. The Turkish courts decide to make an example of him, sentencing him to more than 30 years in prison. Hayes has two opportunities for release: the appeals made by his lawyer, his family, and the American government, or the "Midnight Express".
## 1288 Linus and David Larrabee are the two sons of a very wealthy family. Linus is all work – busily running the family corporate empire, he has no time for a wife and family. David is all play – technically he is employed by the family business, but never shows up for work, spends all his time entertaining, and has been married and divorced three times. Meanwhile, Sabrina Fairchild is the young, shy, and awkward daughter of the household chauffeur, who goes away to Paris for two years, and returns to capture David's attention, while falling in love with Linus.
## 1289 An Iranian family survives the shah and the ayatollah and moves to France. This story follows the family through it all. Despite the politics, revolution, prison, beatings, assassinations and suicides this is a comedy.
## 1290 Jep Gambardella has seduced his way through the lavish nightlife of Rome for decades, but after his 65th birthday and a shock from the past, Jep looks past the nightclubs and parties to find a timeless landscape of absurd, exquisite beauty.
## 1291 After a successful robbery leaves famed thief Lupin the Third and his partner Jigen with nothing but a large amount of expertly crafted counterfeit bills, he decides to track down the forgers responsible—and steal any other treasures he may find in the Castle of Cagliostro, including the 'damsel in distress' he finds imprisoned there.
## 1292 An FBI undercover agent infilitrates the mob and finds himself identifying more with the mafia life at the expense of his regular one.
## 1293 When Lois Lane is killed, an unhinged Superman decides to take control of the Earth. Determined to stop him, Batman creates a team of freedom-fighting heroes. But when superheroes go to war, can the world survive?
## 1294 As Gotham City's young vigilante, the Batman, struggles to pursue a brutal serial killer, district attorney Harvey Dent gets caught in a feud involving the criminal family of the Falcones.
## 1295 Zephyr, now known as Z, rides the seas with only one goal: Destroy all pirates and their dreams at becoming King of Pirates. When Luffy and his crew encounter him at sea, not only are they utterly defeated by the man with an arm made of Seastone, Nami, Robin, and Chopper are turned 10 years younger due to Z's minion Ain. Luffy is so determined to win against him that he does not even notice Z's master plan that could sacrifice thousands of lives.
## 1296 Wallace's whirlwind romance with the proprietor of the local wool shop puts his head in a spin, and Gromit is framed for sheep-rustling in a fiendish criminal plot.
## 1297 The frustrating adventures of a humble employee who all the time has to fullfill the wishes and desires of his bosses.
## 1298 Colorado Springs, late 1970s. Ron Stallworth, an African American police officer, and Flip Zimmerman, his Jewish colleague, run an undercover operation to infiltrate the Ku Klux Klan.
## 1299 When a single mom and her two kids arrive in a small town, they begin to discover their connection to the original Ghostbusters and the secret legacy their grandfather left behind.
## 1300 Martin is a neurotic web designer taking baby steps out of the isolation of his one-room apartment and his virtual reality. Mariana is an artist fresh out of a a long relationship. They are perfect for each other, live on the same street, in opposite buildings, but they never meet. Can the movement of a modern city of three million people bring them together?
## 1301 A brilliant plastic surgeon creates a synthetic skin that withstands any kind of damage. His guinea pig: a mysterious and volatile woman who holds the key to his obsession.
## 1302 Working in Dr. Cranley's laboratory, scientist Jack Griffin was always given the latitude to conduct some of his own experiments. His sudden departure, however, has Cranley's daughter Flora worried about him. Griffin has taken a room at the nearby Lion's Head Inn, hoping to reverse an experiment he conducted on himself that made him invisible. But the experimental drug has also warped his mind, making him aggressive and dangerous. He's prepared to do whatever it takes to restore his appearance.
## 1303 Jamie Graham, a privileged English boy, is living in Shanghai when the Japanese invade and force all foreigners into prison camps. Jamie is captured with an American sailor, who looks out for him while they are in the camp together. Even though he is separated from his parents and in a hostile environment, Jamie maintains his dignity and youthful spirits, providing a beacon of hope for the others held captive with him.
## 1304 Two lighthouse keepers try to maintain their sanity while living on a remote and mysterious New England island in the 1890s.
## 1305 A case of the flu quickly morphs into a pandemic. As the death toll mounts and the living panic, the government plans extreme measures to contain it.
## 1306 Le Chiffre, a banker to the world's terrorists, is scheduled to participate in a high-stakes poker game in Montenegro, where he intends to use his winnings to establish his financial grip on the terrorist market. M sends Bond—on his maiden mission as a 00 Agent—to attend this game and prevent Le Chiffre from winning. With the help of Vesper Lynd and Felix Leiter, Bond enters the most important poker game in his already dangerous career.
## 1307 When space galleon cabin boy Jim Hawkins discovers a map to an intergalactic "loot of a thousand worlds," a cyborg cook named John Silver teaches him to battle supernovas and space storms on their journey to find treasure.
## 1308 Chasing his dream to join an elite K-9 unit, a state trooper partners with a fellow underdog: clever but naughty shelter pup Ruby. Based on a true story.
## 1309 A group of misfits encounter a young Yeti named Everest, and they set off to reunite the magical creature with his family on the mountain of his namesake.
## 1310 An American hypochondriac who is working as a baggage handler is forced to confront his fears when a British teenager with a terminal illness enlists him to help her carry out her eccentric bucket list.
## 1311 Thirty years after the events of the first film, a new blade runner, LAPD Officer K, unearths a long-buried secret that has the potential to plunge what's left of society into chaos. K's discovery leads him on a quest to find Rick Deckard, a former LAPD blade runner who has been missing for 30 years.
## 1312 In their efforts to find a safe haven from the zombie apocalypse, the gang find themselves on a deserted island. Now, they take advantage of the momentary respite to enjoy some surf, sand and bathing suits!
## 1313 A story of two Russian boys whose father suddenly returns home after a 12-year absence. He takes the boys on a holiday to a remote island on a lake that turns into a test of manhood of almost mythic proportions.
## 1314 An ex-mercenary turned smuggler. A Mende fisherman. Amid the explosive civil war overtaking 1999 Sierra Leone, these men join for two desperate missions: recovering a rare pink diamond of immense value and rescuing the fisherman's son, conscripted as a child soldier into the brutal rebel forces ripping a swath of torture and bloodshed countrywide.
## 1315 When the Flash finds himself dropped into the middle of World War II, he joins forces with Wonder Woman and her top-secret team known as the Justice Society of America.
## 1316 Frustrated with the direction of the church, Cardinal Bergoglio requests permission to retire in 2012 from Pope Benedict. Instead, facing scandal and self-doubt, the introspective Pope Benedict summons his harshest critic and future successor to Rome to reveal a secret that would shake the foundations of the Catholic Church.
## 1317 The ultimate X-Men ensemble fights a war for the survival of the species across two time periods as they join forces with their younger selves in an epic battle that must change the past – to save our future.
## 1318 Set in 1982 in the suburb of Blackeberg, Stockholm, twelve-year-old Oskar is a lonely outsider, bullied at school by his classmates; at home, Oskar dreams of revenge against a trio of bullies. He befriends his twelve-year-old, next-door neighbor Eli, who only appears at night in the snow-covered playground outside their building.
## 1319 Aging wrestler Randy "The Ram" Robinson is long past his prime but still ready and rarin' to go on the pro-wrestling circuit. After a particularly brutal beating, however, Randy hangs up his tights, pursues a serious relationship with a long-in-the-tooth stripper, and tries to reconnect with his estranged daughter. But he can't resist the lure of the ring and readies himself for a comeback.
## 1320 10-year-old Bart Millard lives with his mother and abusive father Arthur in Texas. One day his mother drops him off at a Christian camp where he meets Shannon. Upon his return from camp, Bart finds his mother has left and movers are removing her belongings. He angrily confronts his father, who denies that his abusiveness was the reason she left. Years later, in high school, Bart and Shannon are dating. Bart plays football to please his father but is injured, breaking both ankles and ending his career. The only elective with openings is music class, so he reluctantly signs up.
## 1321 A British Guianese engineer starts a job as a high school teacher in London’s East End, where his uninterested and delinquent pupils are in desperate need of attention and care.
## 1322 A hurricane swells outside, but it's nothing compared to the storm within the hotel at Key Largo. There, sadistic mobster Johnny Rocco holes up - and holds at gunpoint hotel owner James Temple, his widowed daughter-in-law Nora, and ex-GI Frank McCloud.
## 1323 Trevor, an insomniac lathe operator, experiences unusual occurrences at work and home. A strange man follows him everywhere, but no one else seems to notice him.
## 1324 In 2257, a taxi driver is unintentionally given the task of saving a young girl who is part of the key that will ensure the survival of humanity.
## 1325 Two lifelong friends find themselves at an impasse when one abruptly ends their relationship, with alarming consequences for both of them.
## 1326 When a hulking monster arrives on Earth and begins a mindless rampage, the Justice League is quickly called in to stop it. But it soon becomes apparent that only Superman can stand against the monstrosity.
## 1327 Joe Buck is a wide-eyed hustler from Texas hoping to score big with wealthy New York City women; he finds a companion in Enrico "Ratso" Rizzo, an ailing swindler with a bum leg and a quixotic fantasy of escaping to Florida.
## 1328 In the 1820s, a frontiersman, Hugh Glass, sets out on a path of vengeance against those who left him for dead after a bear mauling.
## 1329 Swedish thriller based on Stieg Larsson's novel about a male journalist and a young female hacker. In the opening of the movie, Mikael Blomkvist, a middle-aged publisher for the magazine Millennium, loses a libel case brought by corrupt Swedish industrialist Hans-Erik Wennerström. Nevertheless, he is hired by Henrik Vanger in order to solve a cold case, the disappearance of Vanger's niece
## 1330 A man returns to his Appalachian homestead. On the trip, he falls for a young woman. The only problem is her family has vowed to kill every member of his family.
## 1331 Chic socialite Melanie Daniels enjoys a passing flirtation with an eligible attorney in a San Francisco pet shop and, on an impulse, follows him to his hometown bearing a gift of lovebirds. But upon her arrival, the bird population runs amok. Suddenly, the townsfolk face a massive avian onslaught, with the feathered fiends inexplicably attacking people all over Bodega Bay.
## 1332 A young journalist in London becomes obsessed with a series of letters she discovers that recounts an intense star-crossed love affair from the 1960s.
## 1333 Mastro Geppetto is a poor carpenter with no wife and no children. The man is very lonely, and when trading a piece of wood with his colleague Mastro Ciliegia, he decides to build himself a puppet to make him company.
## 1334 Bart Tare is an ex-Army man who has a lifelong fixation with guns, he meets a kindred spirit in sharpshooter Annie Starr and goes to work at a carnival. After upsetting the carnival owner who lusts after Starr, they both get fired. Soon, on Starr's behest, they embark on a crime spree for cash.
## 1335 A young, English working-class boy spends his free time caring for and training his pet falcon.
## 1336 An American newcomer to a prestigious German ballet academy comes to realize that the school is a front for something sinister amid a series of grisly murders.
## 1337 An international assassin known as ‘The Jackal’ is employed by disgruntled French generals to kill President Charles de Gaulle, with a dedicated gendarme on the assassin’s trail.
## 1338 Antoine and Olga, a French couple, have been living in a small village in Galicia for a long time. They practice eco-responsible agriculture and restore abandoned houses to facilitate repopulation. Everything should be idyllic but for their opposition to a wind turbine project that creates a serious conflict with their neighbors. The tension will rise to the point of irreparability.
## 1339 An inexperienced, sickly priest shows up in the rural French community of Ambricourt, where he joins the community's clergy. But the locals don't take kindly to the priest, and his ascetic ways and unsociable demeanor make him an outcast. During Bible studies at the nearby girls school, he is continually mocked by his students. Then his attempt to intervene in a family feud backfires into a scandal. His failures, compounded with his declining health, begin to erode his faith.
## 1340 A tribute to the controversial black activist and leader of the struggle for black liberation. He hit bottom during his imprisonment in the '50s, he became a Black Muslim and then a leader in the Nation of Islam. His assassination in 1965 left a legacy of self-determination and racial pride.
## 1341 After killing a prison guard, convict Robert Stroud faces life imprisonment in solitary confinement. Driven nearly mad by loneliness and despair, Stroud's life gains new meaning when he happens upon a helpless baby sparrow in the exercise yard and nurses it back to health. Despite having only a third grade education, Stroud goes on to become a renowned ornithologist and achieves a greater sense of freedom and purpose behind bars than most people find in the outside world.
## 1342 Un Chien Andalou is an European avant-garde surrealist film, a collaboration between director Luis Buñuel and Salvador Dali.
## 1343 Alice, the only relatively normal member of the eccentric Sycamore family, falls in love with Tony Kirby, but his wealthy banker father and snobbish mother strongly disapprove of the match. When the Kirbys are invited to dinner to become better acquainted with their future in-laws, things don't turn out the way Alice had hoped.
## 1344 Onoff is a famous writer, now a recluse. The Inspector is suspicious when Onoff is brought into the station one night, disoriented and suffering a kind of amnesia. In an isolated, rural police station, the Inspector tries to establish the events surrounding a killing, to reach a startling resolution.
## 1345 Traveling through an unnamed European country on the brink of war, sickly, intellectual Ester, her sister Anna and Anna's young son, Johan, check into a near-empty hotel. A basic inability to communicate among the three seems only to worsen during their stay. Anna provokes her sister by enjoying a dalliance with a local man, while the boy, left to himself, has a series of enigmatic encounters that heighten the growing air of isolation.
## 1346 An alien and a robot land on Earth after World War II and tell mankind to be peaceful or face destruction.
## 1347 One man defeated three assassins who sought to murder the most powerful warlord in pre-unified China.
## 1348 Hubert, a brash 17-year-old, is confused and torn by a love-hate relationship with his mother that consumes him more and more each day. After distressing ordeals and tragic episodes, Hubert will find his mother on the banks of Saint Lawrence river, where he grew up, and where a murder will be committed: the murder of childhood.
## 1349 A story of Naoufel, a young man who is in love with Gabrielle. In another part of town, a severed hand escapes from a dissection lab, determined to find its body again.
## 1350 A spoiled rich woman and a brutish Communist deckhand become stranded alone on a desert island after venturing away from their cruise.
## 1351 In 1916, a Chicago steel worker accidentally kills his supervisor and flees to the Texas panhandle with his girlfriend and little sister to work harvesting wheat in the fields of a stoic farmer.
## 1352 A young teenager named Mikey Walsh finds an old treasure map in his father's attic. Hoping to save their homes from demolition, Mikey and his friends Data Wang, Chunk Cohen, and Mouth Devereaux run off on a big quest to find the secret stash of Pirate One-Eyed Willie.
## 1353 Dr. Henry Frankenstein attempts to create life by assembling a creature from body parts of the deceased. Aided by his loyal misshapen assistant, Fritz, Frankenstein succeeds in animating his monster, but, confused and traumatized, it escapes into the countryside and begins to wreak havoc. Frankenstein searches for the elusive being and eventually must confront his tormented creation.
## 1354 A cartoonist teams up with an ace reporter and a law enforcement officer to track down an elusive serial killer.
## 1355 Competitive ice skater Tonya Harding rises amongst the ranks at the U.S. Figure Skating Championships, but her future in the sport is thrown into doubt when her ex-husband intervenes.
## 1356 The dialogue-less film follows the major life stages of a castaway on a deserted tropical island populated by turtles, crabs and birds.
## 1357 Capricious small-town girl Juliette and barge captain Jean marry after a whirlwind courtship, and she comes to live aboard his boat, L'Atalante. As they make their way down the Seine, Jean grows weary of Juliette's flirtations with his all-male crew, and Juliette longs to escape the monotony of the boat and experience the excitement of a big city. When she steals away to Paris by herself, her husband begins to think their marriage was a mistake.
## 1358 Waking Life is about a young man in a persistent lucid dream-like state. The film follows its protagonist as he initially observes and later participates in philosophical discussions that weave together issues like reality, free will, our relationships with others, and the meaning of life.
## 1359 As the Allied forces approach Paris in August 1944, German Colonel Von Waldheim is desperate to take all of France's greatest paintings to Germany. He manages to secure a train to transport the valuable art works even as the chaos of retreat descends upon them. The French resistance however wants to stop them from stealing their national treasures but have received orders from London that they are not to be destroyed. The station master, Labiche, is tasked with scheduling the train and making it all happen smoothly but he is also part of a dwindling group of resistance fighters tasked with preventing the theft. He and others stage an elaborate ruse to keep the train from ever leaving French territory.
## 1360 The film tells a story of a divorced couple trying to raise their young son. The story follows the boy for twelve years, from first grade at age 6 through 12th grade at age 17-18, and examines his relationship with his parents as he grows.
## 1361 Three friends who were inseparable in childhood decide to go on a three-week-long bachelor road trip to Spain, in order to re-establish their bond and explore thrilling adventures, before one of them gets married. What will they learn of themselves and each other during the adventure?
## 1362 An ophthalmologist's mistress threatens to reveal their affair to his wife, while a married documentary filmmaker is infatuated by another woman.
## 1363 Set in a 19th-century European village, this stop-motion animation feature follows the story of Victor, a young man whisked away to the underworld and wed to a mysterious corpse bride, while his real bride Victoria waits bereft in the land of the living.
## 1364 When cocky military lawyer Lt. Daniel Kaffee and his co-counsel, Lt. Cmdr. JoAnne Galloway, are assigned to a murder case, they uncover a hazing ritual that could implicate high-ranking officials such as shady Col. Nathan Jessep.
## 1365 The story of Mötley Crüe and their rise from the Sunset Strip club scene of the early 1980s to superstardom.
## 1366 Londoner Harry Fabian is a second-rate con man looking for an angle. After years of putting up with Harry's schemes, his girlfriend, Mary, becomes fed up when he taps her for yet another loan.
## 1367 An uptight English writer traveling to Crete on a matter of business finds his life changed forever when he meets the gregarious Alexis Zorba.
## 1368 'Toon star Roger is worried that his wife Jessica is playing pattycake with someone else, so the studio hires detective Eddie Valiant to snoop on her. But the stakes are quickly raised when Marvin Acme is found dead and Roger is the prime suspect.
## 1369 A woman is released from prison after serving a sentence for a violent crime and re-enters a society that refuses to forgive her past.
## 1370 In the last months of World War II, as the Allies make their final push in the European theatre, a battle-hardened U.S. Army sergeant named 'Wardaddy' commands a Sherman tank called 'Fury' and its five-man crew on a deadly mission behind enemy lines. Outnumbered and outgunned, Wardaddy and his men face overwhelming odds in their heroic attempts to strike at the heart of Nazi Germany.
## 1371 Chronicles three years of a middle class family seemingly caught up in their daily routines, only troubled by minor incidents. Behind their apparent calm and repetitive existence however, they are actually planning something sinister.
## 1372 Bestowed with superhuman strength, a young mortal named Hercules sets out to prove himself a hero in the eyes of his father, the great god Zeus. Along with his friends Pegasus, a flying horse, and Phil, a personal trainer, Hercules is tricked by the hilarious, hotheaded villain Hades, who's plotting to take over Mount Olympus!
## 1373 Kim Sun-woo is an enforcer and manager for a hotel owned by a cold, calculative crime boss, Kang who assigns Sun-Woo to a simple errand while he is away on a business trip; to shadow his young mistress, Heesoo, for fear that she may be cheating on him with a younger man with the mandate that he must kill them both if he discovers their affair.
## 1374 A brilliant toy company roboticist uses artificial intelligence to develop M3GAN, a life-like doll programmed to emotionally bond with her newly orphaned niece. But when the doll's programming works too well, she becomes overprotective of her new friend with terrifying results.
## 1375 The autobiography of a Somalian nomad who was sold in marriage at 13, fled from Africa a while later to become finally an American supermodel and is now at the age of 38, the UN spokeswoman against female genital mutilation.
## 1376 Remy Germain is a doctor in a French town who becomes the focus of a vicious smear campaign, as letters accusing him of having an affair and performing unlawful abortions are mailed to village leaders. The mysterious writer, who signs each letter as "Le Corbeau" (The Raven) soon targets the whole town, exposing everyone's dark secrets. This allegorical film was highly controversial at the time of its release, and was banned in France after the Liberation.
## 1377 A second-class horror movie has to be shown at Cannes Film Festival, but, before each screening, the projectionist is killed by a mysterious fellow, with hammer and sickle, just as it happens in the film to be shown.
## 1378 A story about a troubled boy growing up in England, set in 1983. He comes across a few skinheads on his way home from school, after a fight. They become his new best friends, even like family. Based on experiences of director Shane Meadows.
## 1379 An alien is left behind on Earth and saved by the 10-year-old Elliot who decides to keep him hidden in his home. While a task force hunts for the extra-terrestrial, Elliot, his brother, and his little sister Gertie form an emotional bond with their new friend, and try to help him find his way home.
## 1380 A couple vacationing in Morocco with their young son accidentally stumble upon an assassination plot. When the child is kidnapped to ensure their silence, they have to take matters into their own hands to save him.
## 1381 The movie covers the events which occurred in between the downfall of The Company and the finale of the TV series (SEASON 4). It details the arrest and incarceration of Sara Tancredi, the final escape plan which Michael devises for Sara, and reveals the ultimate fate of Gretchen Morgan.
## 1382 The lives of many individuals connected by the desire for happiness, often from sources usually considered dark or evil.
## 1383 Au revoir les enfants tells a heartbreaking story of friendship and devastating loss concerning two boys living in Nazi-occupied France. At a provincial Catholic boarding school, the precocious youths enjoy true camaraderie—until a secret is revealed. Based on events from writer-director Malle’s own childhood, the film is a subtle, precisely observed tale of courage, cowardice, and tragic awakening.
## 1384 On a train headed for England a group of travelers is delayed by an avalanche. Holed up in a hotel in a fictional European country, young Iris befriends elderly Miss Froy. When the train resumes, Iris suffers a bout of unconsciousness and wakes to find the old woman has disappeared. The other passengers ominously deny Miss Froy ever existed, so Iris begins to investigate with another traveler and, as the pair sleuth, romantic sparks fly.
## 1385 The mostly true story of the legendary "worst director of all time", who, with the help of his strange friends, filmed countless B-movies without ever becoming famous or successful.
## 1386 In the 1930s, bored waitress Bonnie Parker falls in love with an ex-con named Clyde Barrow and together they start a violent crime spree through the country, stealing cars and robbing banks.
## 1387 After an emotional exchange between a Lebanese Christian and a Palestinian refugee escalates, the men end up in a court case that gets national attention.
## 1388 Seasoned musician Jackson Maine discovers — and falls in love with — struggling artist Ally. She has just about given up on her dream to make it big as a singer — until Jack coaxes her into the spotlight. But even as Ally's career takes off, the personal side of their relationship is breaking down, as Jack fights an ongoing battle with his own internal demons.
## 1389 When an earthquake hits a Korean village housing a run-down nuclear power plant, a man risks his life to save the country from imminent disaster.
## 1390 HA Yoon-ju becomes the newest member to a unit within the Korean Police Forces Special Crime Department that specializes in surveillance activities on high profile criminals. She teams up with HWANG Sang-Jun, the veteran leader of the unit, and tries to track down James who is the cold-hearted leader of an armed criminal organization.
## 1391 A school teacher discusses types of government with his class. His students find it too boring to repeatedly go over national socialism and believe that dictatorship cannot be established in modern Germany. He starts an experiment to show how easily the masses can become manipulated.
## 1392 French military man Adrien Dufourquet gets an eight-day furlough to visit his fiancée, Agnès. But when he arrives in Paris, he learns that her late father's partner, museum curator Professor Catalan, has just been kidnapped by a group of Amazon tribesmen who have also stolen a priceless statue from the museum. Adrien and Agnès pursue the kidnappers to Brazil, where they learn that the statue is the key to a hidden Amazon treasure.
## 1393 A dweeby, mild-mannered man comes to the aid of a drunk young woman on a subway platform. Little does he know how much trouble he’s in for.
## 1394 Wallace and Gromit have run out of cheese, and this provides an excellent excuse for the duo to take their holiday to the moon, where, as everyone knows, there is ample cheese.
## 1395 Leningrad, one summer in the early eighties. Smuggling LPs by Lou Reed and David Bowie, the underground rock scene is boiling ahead of the Perestroika. Mike and his beautiful wife Natasha meet with young Viktor Tsoï. Together with friends, they will change the destiny of rock’n’roll in the Soviet Union.
## 1396 A brutal mugging leaves Grey Trace paralyzed in the hospital and his beloved wife dead. A billionaire inventor soon offers Trace a cure — an artificial intelligence implant called STEM that will enhance his body. Now able to walk, Grey finds that he also has superhuman strength and agility — skills he uses to seek revenge against the thugs who destroyed his life.
## 1397 Down a foggy, desolate road to the port city of Le Havre travels Jean, an army deserter looking for another chance to make good on life. Fate, however, has a different plan for him, as acts of both revenge and kindness render him front-page news.
## 1398 A small-town doctor learns that the population of his community is being replaced by emotionless alien duplicates.
## 1399 Officer Chan Ka Kui manages to put a major Hong Kong drug dealer behind the bars practically alone, after a shooting and an impressive chase inside a slum. Now, he must protect the boss' secretary, Selina, who will testify against the gangster in court.
## 1400 A robust adventure about two British adventurers who take over primitive Kafiristan as "godlike" rulers, meeting a tragic end through their desire for a native girl. Based on a short story by Rudyard Kipling.
## 1401 It has been nine years since we last met Jesse and Celine, the French-American couple who once met on a train in Vienna. Now, live in Paris with twin daughters, but have spent a summer in Greece on the invitation of an author colleague of Jesse's. When the vacation is over and Jesse must send his teenage son off to the States, he begins to question his life decisions, and his relationship with Celine is at risk.
## 1402 Fledgling singer-songwriter Winslow Leach finds himself double-crossed by the nefarious music producer Swan, who steals both his music and the girl Winslow wants to sing it, Phoenix, for the grand opening of his rock palace, the Paradise. After Swan has Winslow sent to prison for trespassing, Winslow endures a freak accident that leaves him disfigured, after which he seeks revenge on both Swan and the Paradise.
## 1403 Unlucky assassin Ladybug is determined to do his job peacefully after one too many gigs gone off the rails. Fate, however, may have other plans, as Ladybug's latest mission puts him on a collision course with lethal adversaries from around the globe—all with connected, yet conflicting, objectives—on the world's fastest train.
## 1404 Successful movie director John L. Sullivan, convinced he won't be able to film his ambitious masterpiece until he has suffered, dons a hobo disguise and sets off on a journey, aiming to "know trouble" first-hand. When all he finds is a train ride back to Hollywood and a beautiful blonde companion, he redoubles his efforts, managing to land himself in more trouble than he bargained for when he loses his memory and ends up a prisoner on a chain gang.
## 1405 As Stitch, a runaway genetic experiment from a faraway planet, wreaks havoc on the Hawaiian Islands, he becomes the mischievous adopted alien "puppy" of an independent little girl named Lilo and learns about loyalty, friendship, and ʻohana, the Hawaiian tradition of family.
## 1406 A neurotic film critic obsessed with the movie Casablanca (1942) attempts to get over his wife leaving him by dating again with the help of a married couple and his illusory idol, Humphrey Bogart.
## 1407 A woman must steal a statue from a Paris museum to help conceal her father's art forgeries.
## 1408 The real-life story of a friendship between two journalists, an American and a Cambodian, during the bloody Khmer Rouge takeover of Cambodia in 1975, which led to the death of 2-3 million Cambodians during the next four years, until Pol Pot's regime was toppled by the intervening Vietnamese in 1979.
## 1409 When a powerful criminal, who is connected to Bruce Wayne's ex-girlfriend, blames the Dark Knight for killing a crime lord, Batman decides to fight against him.
## 1410 During a summer of friendship and adventure, one boy becomes a part of the gang, nine boys become a team and their leader becomes a legend by confronting the terrifying mystery beyond the right field wall.
## 1411 With his best friend Luca away at school, Alberto is enjoying his new life in Portorosso working alongside Massimo – the imposing, tattooed, one-armed fisherman of few words – who's quite possibly the coolest human in the entire world as far as Alberto is concerned. He wants more than anything to impress his mentor, but it's easier said than done.
## 1412 Strange events happen in a small village in the north of Germany during the years just before World War I, which seem to be ritual punishment. The abused and suppressed children of the villagers seem to be at the heart of this mystery.
## 1413 Sweethearts Brad and Janet, stuck with a flat tire during a storm, discover the eerie mansion of Dr. Frank-N-Furter, a transvestite scientist. As their innocence is lost, Brad and Janet meet a houseful of wild characters, including a rocking biker and a creepy butler. Through elaborate dances and rock songs, Frank-N-Furter unveils his latest creation: a muscular man named 'Rockv'.
## 1414 "Patton" tells the tale of General George S. Patton, famous tank commander of World War II. The film begins with patton's career in North Africa and progresses through the invasion of Germany and the fall of the Third Reich. Side plots also speak of Patton's numerous faults such his temper and habit towards insubordination.
## 1415 Exactly one year after young rock guitarist Eric Draven and his fiancée are brutally killed by a ruthless gang of criminals, Draven—watched over by a hypnotic crow—returns from the grave to exact revenge.
## 1416 How did Sarah and Victor get along for more than 45 years? Who was this enigmatic woman living in the shadow of her husband? Love, ambition, betrayals and secrets feed the story of this extraordinary couple, as they experience both the large and small moments of the last century's history.
## 1417 King Charles VI declares that Knight Jean de Carrouges settle his dispute with his squire, Jacques Le Gris, by challenging him to a duel.
## 1418 Alice Howland, happily married with three grown children, is a renowned linguistics professor who starts to forget words. When she receives a devastating diagnosis, Alice and her family find their bonds tested.
## 1419 In 1940s New York, a white widow who dreams of being on Broadway has a chance encounter with a black single mother, who becomes her maid.
## 1420 When a doctor decides to carry out an AIDS prevention program inside Latin America’s largest prison: the Casa de Detenção de São Paulo - Carandiru, he discovers the victim of one of the darkest days in Brazilian History when the State of São Paulo’s Military Police, with the excuse for law enforcement, shot to death 111 people. Based on real facts and on the book written by Dráuzio Varella.
## 1421 Thirteen-year-old Mei is experiencing the awkwardness of being a teenager with a twist – when she gets too excited, she transforms into a giant red panda.
## 1422 Wisecracking mercenary Deadpool battles the evil and powerful Cable and other bad guys to save a boy's life.
## 1423 One by one, a flock of small birds perches on a telephone wire. Sitting close together has problems enough, and then comes along a large dopey bird that tries to join them. The birds of a feather can't help but make fun of him - and their clique mentality proves embarrassing in the end.
## 1424 After avenging his family's brutal murder, Wales is pursued by a pack of soldiers. He prefers to travel alone, but ragtag outcasts are drawn to him - and Wales can't bring himself to leave them unprotected.
## 1425 Josef K wakes up in the morning and finds the police in his room. They tell him that he is on trial but nobody tells him what he is accused of. In order to find out about the reason for this accusation and to protest his innocence, he tries to look behind the façade of the judicial system. But since this remains fruitless, there seems to be no chance for him to escape from this Kafkaesque nightmare.
## 1426 In a small and conservative Scottish village, a woman's paralytic husband convinces her to have extramarital intercourse so she can tell him about it and give him a reason for living.
## 1427 Odette is a 8-yr-old girl who loves to dance and draw. Once she has become an adult, Odette realizes she was abused, and immerses herself body and soul in her career as a dancer while trying to deal with her past.
## 1428 Two families attempt a daredevil plan to escape the GDR with a homemade hot air balloon, but it crashes just before the border. The Stasi finds traces of this attempt to escape and immediately starts investigations, while the two families are forced to build a new escape balloon. With each passing day the Stasi is closer on their heels – a nerve-wracking race against time begins.
## 1429 Clara, a vibrant former music critic and widow with flowing tresses is the only remaining apartment owner in a beautiful older building targeted for demolition by ruthless luxury high-rise developers. Clara proves to be a force to be reckoned with as she thwarts the builders plans to kick her out of the apartment.
## 1430 Princess Anneliese finds an unexpected friendship when she meets her humble look-alike, Erika.
## 1431 In an abandoned Tokyo overrun by bubbles and gravitational abnormalities, one gifted young man has a fateful meeting with a mysterious girl.
## 1432 A retired and widowed Chinese master chef Chu and his family live in modern day Taipei, Taiwan. He lives with his three attractive daughters, all of whom are unattached. Soon, each of the daughters encounter new men in their lives. When these new relationships blossom, stereotypes are broken and the living situation within the family changes. Since the family has difficulty expressing their love for each other, the intricate preparation of banquet quality dishes for their Sunday dinners is the surrogate for their familial feelings.
## 1433 A man embarks on an increasingly obsessive search for his girlfriend after she disappears without a trace during a romantic summer getaway to France.
## 1434 A chronicle of country music legend Johnny Cash's life, from his early days on an Arkansas cotton farm to his rise to fame with Sun Records in Memphis, where he recorded alongside Elvis Presley, Jerry Lee Lewis and Carl Perkins.
## 1435 Elastigirl springs into action to save the day, while Mr. Incredible faces his greatest challenge yet – taking care of the problems of his three children.
## 1436 Set in 1929, a political boss and his advisor have a parting of the ways when they both fall for the same woman.
## 1437 A young woman, traumatized by a tragic event in her past, seeks out vengeance against those who crossed her path.
## 1438 In a strange and isolated chateau, a man becomes acquainted with a woman and insists that they have met before.
## 1439 Three young people learn that love can neither be defined nor contained by society's definition of normal and abnormal.
## 1440 Monica Wright and Quincy McCall grew up in the same neighborhood and have known each other since childhood. As they grow into adulthood, they fall in love, but they also share another all-consuming passion: basketball. As Quincy and Monica struggle to make their relationship work, they follow separate career paths though high school and college basketball and, they hope, into stardom in big-league professional ball.
## 1441 Royal Tenenbaum and his wife Etheline had three children and then they separated. All three children are extraordinary --- all geniuses. Virtually all memory of the brilliance of the young Tenenbaums was subsequently erased by two decades of betrayal, failure, and disaster. Most of this was generally considered to be their father's fault. "The Royal Tenenbaums" is the story of the family's sudden, unexpected reunion one recent winter.
## 1442 Two soldiers from opposite sites get stuck between the front lines in the same trench. The UN is asked to free them and both sides agree on a ceasefire, but will they stick to it?
## 1443 During an ever-growing epidemic of zombies that have risen from the dead, two Philadelphia SWAT team members, a traffic reporter, and his television-executive girlfriend seek refuge in a secluded shopping mall.
## 1444 Taking place between the years 1837 and 1843, Balzac’s classic novel focuses on the young poet Lucien de Rubempré, who leaves Angouleme for Paris in the pursuit of becoming an author.
## 1445 After suffering a family tragedy, Mack Phillips spirals into a deep depression causing him to question his innermost beliefs. Facing a crisis of faith, he receives a mysterious letter urging him to an abandoned shack deep in the Oregon wilderness. Despite his doubts, Mack journeys to the shack and encounters an enigmatic trio of strangers led by a woman named Papa. Through this meeting, Mack finds important truths that will transform his understanding of his tragedy and change his life forever.
## 1446 A Westerner finds refuge with a group of women in a church during Japan's rape of Nanking in 1937. Posing as a priest, he attempts to lead the women to safety.
## 1447 When a madman dubbed 'Scorpio' terrorizes San Francisco, hard-nosed cop, Harry Callahan – famous for his take-no-prisoners approach to law enforcement – is tasked with hunting down the psychopath. Harry eventually collars Scorpio in the process of rescuing a kidnap victim, only to see him walk on technicalities. Now, the maverick detective is determined to nail the maniac himself.
## 1448 When barbarian hordes threaten her homeland, the brave and cunning Mulan disguises herself as a male soldier to swell the ranks in her aging father's stead. The warrior's remarkable courage drives her through powerful battle scenes and brutal wartime strategy. Mulan loses dear friends to the enemy's blade as she rises to become one of her country's most valuable leaders — but can she win the war before her secret is exposed?
## 1449 A sprawling drama centered on five key days in a family's life.
## 1450 Huo Yuan Jia became the most famous martial arts fighter in all of China at the turn of the 20th Century. Huo faced personal tragedy but ultimately fought his way out of darkness, defining the true spirit of martial arts and also inspiring his nation. The son of a great fighter who didn't wish for his child to follow in his footsteps, Huo resolves to teach himself how to fight - and win.
## 1451 Young Chickenhare is the adopted son of King Peter, a famous adventurer. Part chicken and part hare, he has a really tough time growing up and disguises himself as a hare to avoid the mockeries of his peers. When the day of the Royal Adventurer Society trials comes, Chickenhare, hampered by his disguise, fails miserably. But he is determined to grab a second chance and find the Scepter of the Hamster of Darkness, before his evil Uncle Lapin. The Scepter will give immense power to its holder. If Lapin gets hold of it, he will be unstoppable. Accompanied by his faithful servant Abe, a sarcastic turtle, and Meg, a martial arts expert skunk, he sets of on an epic and initiatory quest.
## 1452 A rogue band of resistance fighters unite for a mission to steal the Death Star plans and bring a new hope to the galaxy.
## 1453 In 1973, 15-year-old William Miller's unabashed love of music and aspiration to become a rock journalist lands him an assignment from Rolling Stone magazine to interview and tour with the up-and-coming band, Stillwater.
## 1454 A team of elite commandos on a secret mission in a Central American jungle come to find themselves hunted by an extraterrestrial warrior.
## 1455 Beautiful young manicurist Carole suffers from androphobia (the pathological fear of interaction with men). When her sister and roommate, Helen, leaves their London flat to go on an Italian holiday with her married boyfriend, Carole withdraws into her apartment. She begins to experience frightful hallucinations, her fear gradually mutating into madness.
## 1456 The incredible true story of Vietnam War hero William H. Pitsenbarger, a U.S. Air Force Pararescuemen medic who personally saved over sixty men. Thirty-two years later, Pentagon staffer Scott Huffman investigates a Congressional Medal of Honor request for Pitsenbarger and uncovers a high-level conspiracy behind the decades-long denial of the medal, prompting Huffman to put his own career on the line to seek justice for the fallen airman.
## 1457 While subjected to the horrors of WWII Germany, young Liesel finds solace by stealing books and sharing them with others. Under the stairs in her home, a Jewish refugee is being sheltered by her adoptive parents.
## 1458 A young Austrian girl is kidnapped and held in captivity for eight years. Based on the real-life case of Natascha Kampusch.
## 1459 Raised a boy in East Berlin, Hedwig undergoes a personal transformation in order to emigrate to the U.S., where she reinvents herself as an “internationally ignored” but divinely talented rock diva, inhabiting a “beautiful gender of one.”
## 1460 The story of a gentle-hearted beast in love with a simple and beautiful girl. She is drawn to the repellent but strangely fascinating Beast, who tests her fidelity by giving her a key, telling her that if she doesn't return it to him by a specific time, he will die of grief. She is unable to return the key on time, but it is revealed that the Beast is the genuinely handsome one. A simple tale of tragic love that turns into a surreal vision of death, desire, and beauty.
## 1461 In 1950s New York, a department-store clerk who dreams of a better life falls for an older, married woman.
## 1462 The most dangerous and exciting car race in the universe is held only once every five years. And that's tonight. The competitors are lined up at the starting block. In his vehicle, JP, the most daredevil driver on the circuit, is ready for the green light. Female driver Sonoshee, with whom he is secretly in love, is also on the starting line. She will stop at nothing to get on to that podium. In this race, not only is anything possible, but also anything is allowed. In fact, their adversaries have modified their vehicles to equip them with highly destructive weapons; with such participants, it is hardly surprising that Redline is forbidden by the authorities, who will try anything to halt the proceedings.
## 1463 A man and a woman meet in the ruins of post-war Poland. With vastly different backgrounds and temperaments, they are fatally mismatched and yet drawn to each other.
## 1464 Don Sallust is the minister of the King of Spain. Being disingenuous, hypocritical, greedy and collecting the taxes for himself, he is hated by the people he oppresses. Accused by The Queen, a beautiful princess Bavarian, of having an illegitimate child to one of her maids of honor, he was stripped of his duties and ordered to retire to a monastery.
## 1465 "This Is Spinal Tap" shines a light on the self-contained universe of a metal band struggling to get back on the charts, including everything from its complicated history of ups and downs, gold albums, name changes and undersold concert dates, along with the full host of requisite groupies, promoters, hangers-on and historians, sessions, release events and those special behind-the-scenes moments that keep it all real.
## 1466 In the Nazi-occupied Netherlands during World War II, a Jewish singer infiltrates the regional Gestapo headquarters for the Dutch resistance.
## 1467 A neo-nazi sentenced to community service at a church clashes with the blindly devotional priest.
## 1468 Resolving to achieve professional success without compromising her ethics, Lucy embarks on a ruthless game of one-upmanship against cold and efficient nemesis Joshua, a rivalry that is complicated by her growing attraction to him.
## 1469 During an unfortunate series of events, a friend of Kung Fury is assassinated by the most dangerous kung fu master criminal of all time, Adolf Hitler, a.k.a Kung Führer. Kung Fury decides to travel back in time to Nazi Germany in order to kill Hitler and end the Nazi empire once and for all.
## 1470 After being kidnapped as a small child and raised by the five men who abducted him, a teenage boy is now forced to join their life in crime.
## 1471 Robert Gould Shaw leads the US Civil War's first all-black volunteer company, fighting prejudices of both his own Union army and the Confederates.
## 1472 A retired academic teacher tries to find the love of his youth after being diagnosed with Alzheimer's.
## 1473 A deaf man and his girlfriend resort to desperate measures in order to fund a kidney transplant for his sister. Things go horribly wrong, and the situation spirals rapidly into a cycle of violence and revenge.
## 1474 A seemingly bright and mostly innocent 16-year-old named Mo attempts to navigate high school under the guidance of his best friend Zeke, an unmotivated-yet-charismatic college dropout. Although Zeke genuinely cares about Mo, things start to go awry as he teaches Mo nontraditional life lessons in drug dealing, partying, and dating. Meanwhile, Mo’s well-meaning dad tries to step in and take back the reins of his son’s upbringing.
## 1475 A teacher discovers his calling. Marco relocates to Palermo from Milan and takes a job teaching in a reform school while he waits for a high school position. He tries to understand and motivate his handful of students, reading them colloquial poetry, encouraging them to stand up for their rights, finding out about their histories. Natale, in for murder, enamoured of the Mafia, the King Rat within the group; Mery, a drag queen, arrested for assault when defending himself, in love with Mario and, in daylight, rejected by all; Pietro, illiterate, muscular, believing his destiny is set; the callow Claudio, vulnerable, learning to harden himself. What can Mario learn and do in such a short time?
## 1476 Fugitive convict Aldo seizes a car, taking policeman Giacomo and civilian Giovanni hostages. While chased by the police all over Italy, they will eventually become friends.
## 1477 An ordinary word processor has the worst night of his life after he agrees to visit a girl in Soho whom he met that evening at a coffee shop.
## 1478 A kidnapped boy strikes up a friendship with his captor: an escaped convict on the run from the law, headed by an honorable U.S. Marshal.
## 1479 A young rabbit embarks on a journey to dig the burrow of her dreams, despite not having a clue what she's doing.
## 1480 Théo is given up for adoption by his biological mother on the very day he is born. After this anonymous birth, the mother has two months to change her mind… Or not. The child welfare services and adoption service spring into action… The former have to take care of the baby and support it during this limbo-like time, this period of uncertainty, while the latter must find a woman to become his adoptive mother. She is called Alice, and she has spent the last ten years fighting to have a child.
## 1481 Fictional documentary about the life of human chameleon Leonard Zelig, a man who becomes a celebrity in the 1920s due to his ability to look and act like whoever is around him. Clever editing places Zelig in real newsreel footage of Woodrow Wilson, Babe Ruth, and others.
## 1482 After Dr. Bill Harford's wife, Alice, admits to having sexual fantasies about a man she met, Bill becomes obsessed with having a sexual encounter. He discovers an underground sexual group and attends one of their meetings -- and quickly discovers that he is in over his head.
## 1483 The Templeton brothers — Tim and his Boss Baby little bro Ted — have become adults and drifted away from each other. But a new boss baby with a cutting-edge approach and a can-do attitude is about to bring them together again … and inspire a new family business.
## 1484 Stevie is a sweet 13-year-old about to explode. His mom is loving and attentive, but a little too forthcoming about her romantic life. His big brother is a taciturn and violent bully. So Stevie searches his working-class Los Angeles suburb for somewhere to belong. He finds it at the Motor Avenue skate shop.
## 1485 The destinies of two families are irrevocably tied together after a cyclist is hit off the road by a jeep in the night before Christmas Eve.
## 1486 In the rural area around the Anatolian town of Keskin, the local prosecutor, police commissar, and doctor lead a search for a victim of a murder to whom a suspect named Kenan and his mentally challenged brother confessed. However, the search is proving more difficult than expected as Kenan is fuzzy as to the body's exact location. As the group continues looking, its members can't help but chat among themselves about both trivia and their deepest concerns in an investigation that is proving more trying than any of them expected.
## 1487 Paddington, now happily settled with the Browns, picks up a series of odd jobs to buy the perfect present for his Aunt Lucy, but it is stolen.
## 1488 Chen Zhen, a Chinese engineering student in Kyoto, who braves the insults and abuse of his Japanse fellow students for his local love Mitsuko Yamada, daughter of the director, returns in 1937 to his native Shangai, under Japanse protectorate -in fact military occupation- after reading about the death of his kung-fu master Hou Ting-An in a fight against the Japanese champion Ryuichi Akutagawa.
## 1489 Slevin is mistakenly put in the middle of a personal war between the city’s biggest criminal bosses. Under constant watch, Slevin must try not to get killed by an infamous assassin and come up with an idea of how to get out of his current dilemma.
## 1490 Bardock, Son Goku's father, is a low-ranking Saiyan soldier who was given the power to see into the future by the last remaining alien on a planet he just destroyed. He witnesses the destruction of his race and must now do his best to stop Frieza's impending massacre.
## 1491 A dangerous combination of radiation and insecticide causes the unfortunate Scott Carey to shrink, slowly but surely, until he is only a few inches tall. His home becomes a wilderness where he must survive everything from spiders living in the cellar to his beloved cat.
## 1492 Two carefree pals traveling through Alabama are mistakenly arrested, and charged with murder. Fortunately, one of them has a cousin who's a lawyer - Vincent Gambini, a former auto mechanic from Brooklyn who just passed his bar exam after his sixth try. When he arrives with his leather-clad girlfriend, to try his first case, it's a real shock - for him and the Deep South!
## 1493 A Japanese mobster attempts to even the score when he realizes he and his lackeys have been pawns in a lethal game.
## 1494 In 1970s Hollywood, Detective Philip Marlowe tries to help a friend who is accused of murdering his wife.
## 1495 Raimunda lives and works in Madrid with her husband Paco and their daughter Paula. Raimunda's sister Sole lives nearby. The two sisters miss their mother Irene who died several years ago in a house fire along with their father. When a former neighbor from their hometown reports that she has seen the ghost of Irene, the daughters do not believe her. After a murder and a family tragedy, however, Irene's spirit materializes around her daughters to comfort them.
## 1496 Free-spirited writer Juliet Ashton forms a life-changing bond with the delightful and eccentric Guernsey Literary and Potato Peel Pie Society, when she decides to write about the book club they formed during the occupation of Guernsey in WWII.
## 1497 A story of two love affairs. A father's love for his five sons. And one son's love for his father, a love so strong it compels him to live a lie. That son is Zac Beaulieu, born on the 25th of December 1960, different from all his brothers, but desperate to fit in. During the next 20 years, life takes Zac on a surprising and unexpected journey that ultimately leads him to accept his true nature and, even more importantly, leads his father to love him for who he really is.
## 1498 When eccentric candy man Willy Wonka promises a lifetime supply of sweets and a tour of his chocolate factory to five lucky kids, penniless Charlie Bucket seeks the golden ticket that will make him a winner.
## 1499 Two men answer the call of the ocean in this romantic fantasy-adventure. Jacques and Enzo are a pair of friends who have been close since childhood, and who share a passion for the dangerous sport of free diving. Professional diver Jacques opted to follow in the footsteps of his father, who died at sea when Jacques was a boy; to the bewilderment of scientists, Jacques harbors a remarkable ability to adjust his heart rate and breathing pattern in the water, so that his vital signs more closely resemble that of dolphins than men. As Enzo persuades a reluctant Jacques to compete against him in a free diving contest -- determining who can dive deeper and longer without scuba gear -- Jacques meets Johana, a beautiful insurance investigator from America, and he finds that he must choose between his love for her and his love of the sea.
## 1500 Polish immigrant Karol Karol finds himself out of a marriage, a job and a country when his French wife, Dominique, divorces him after six months due to his impotence. Forced to leave France after losing the business they jointly owned, Karol enlists fellow Polish expatriate Mikołaj to smuggle him back to their homeland.
## 1501 Joe, a young American soldier, is hit by a mortar shell on the last day of World War I. He lies in a hospital bed with a fate worse than death as a quadruple amputee who has lost his arms, legs, eyes, ears, mouth and nose. Unbeknown to his doctors, he remains conscious and able to think, thereby reliving his life through strange dreams and memories.
## 1502 This classic "Peanuts" tale focuses on the thumb-sucking, blanket-holding Linus, and his touching faith in the "Great Pumpkin." When Linus discovers that no one else believes in the creature, he sets out to prove that the Pumpkin's no myth—by spending the night alone in a pumpkin patch.
## 1503 When illness strikes two people who are polar opposites, life and death bring them together in surprising ways.
## 1504 Thomas is a meek man on the verge of a nervous breakdown. Despite his situation he decides to fake a work trip to go to Vallarta to confront Jero, a taxi driver who is sleeping with his wife.
## 1505 A fading actor best known for his portrayal of a popular superhero attempts to mount a comeback by appearing in a Broadway play. As opening night approaches, his attempts to become more altruistic, rebuild his career, and reconnect with friends and family prove more difficult than expected.
## 1506 Loner Mark Lewis works at a film studio during the day and, at night, takes racy photographs of women. Also he's making a documentary on fear, which involves recording the reactions of victims as he murders them. He befriends Helen, the daughter of the family living in the apartment below his, and he tells her vaguely about the movie he is making.
## 1507 In 1920s Chicago, Italian immigrant and notorious thug, Antonio "Tony" Camonte, shoots his way to the top of the mobs while trying to protect his sister from the criminal life.
## 1508 Thief Gaston Monescu and pickpocket Lily are partners in crime and love. Working for perfume company executive Mariette Colet, the two crooks decide to combine their criminal talents to rob their employer. Under the alias of Monsieur Laval, Gaston uses his position as Mariette's personal secretary to become closer to her. However, he takes things too far when he actually falls in love with Mariette, and has to choose between her and Lily.
## 1509 Bitter and hateful, the Grinch is irritated at the thought of a nearby village having a happy time celebrating Christmas. Disguised as Santa Claus, with his dog made to look like a reindeer, he decides to raid the village to steal all the Christmas things.
## 1510 Ray and Ken, two hit men, are in Bruges, Belgium, waiting for their next mission. While they are there they have time to think and discuss their previous assignment. When the mission is revealed to Ken, it is not what he expected.
## 1511 14th-century Franciscan monk William of Baskerville and his young novice arrive at a conference to find that several monks have been murdered under mysterious circumstances. To solve the crimes, William must rise up against the Church's authority and fight the shadowy conspiracy of monastery monks using only his intelligence – which is considerable.
## 1512 Superman agrees to sacrifice his powers to start a relationship with Lois Lane, unaware that three Kryptonian criminals he inadvertently released are conquering Earth.
## 1513 Risking his life, Luke ventures to Rome to visit Paul -- the apostle who's bound in chains and held captive in Nero's darkest and bleakest prison cell. Haunted by the shadows of his past misdeeds, Paul wonders if he's been forgotten as he awaits his grisly execution. Before Paul's death, Luke resolves to write another book that details the birth of what will come to be known as the church.
## 1514 Peter Parker and his friends go on a summer trip to Europe. However, they will hardly be able to rest - Peter will have to agree to help Nick Fury uncover the mystery of creatures that cause natural disasters and destruction throughout the continent.
## 1515 A pair of former high school sweethearts reunite after many years when they return to visit their small hometown.
## 1516 20 years after his escape from Impel Down, the legendary pirate Shiki, the Golden Lion, reappears causing massive upheaval to the Marines. During his long seclusion, he was able to come up with a scheme to bring the World Government to his knees. On his way to execute the plan, Shiki crosses paths with the Straw Hat Pirates and becomes so impressed with Nami's knowledge of meteorology that he abducts her to forcedly enlist her into his crew. Luffy and the gang end up on a strange land populated with monstrous beasts as they desperately search for Shiki and Nami.
## 1517 Set in South Carolina in 1964, this is the tale of Lily Owens a 14 year-old girl who is haunted by the memory of her late mother. To escape her lonely life and troubled relationship with her father, Lily flees with Rosaleen, her caregiver and only friend, to a South Carolina town that holds the secret to her mother's past.
## 1518 This biblical drama from the Catholic Marxist director focuses on the teachings of Jesus, including the parables that reflect their revolutionary nature. As Jesus travels along the coast of the Sea of Galilee, he gradually gathers more followers, leading him into direct conflict with the authorities.
## 1519 Tells the true story of a 60 Minutes television series exposé of the tobacco industry, as seen through the eyes of a real tobacco executive, Jeffrey Wigand.
## 1520 When Dr. Anthony Edwardes arrives at a Vermont mental hospital to replace the outgoing hospital director, Dr. Constance Peterson, a psychoanalyst, discovers Edwardes is actually an impostor. The man confesses that the real Dr. Edwardes is dead and fears he may have killed him, but cannot recall anything. Dr. Peterson, however is convinced his impostor is innocent of the man's murder, and joins him on a quest to unravel his amnesia through psychoanalysis.
## 1521 On his first day on the job as a narcotics officer, a rookie cop works with a rogue detective who isn't what he appears.
## 1522 When former Green Beret John Rambo is harassed by local law enforcement and arrested for vagrancy, the Vietnam vet snaps, runs for the hills and rat-a-tat-tats his way into the action-movie hall of fame. Hounded by a relentless sheriff, Rambo employs heavy-handed guerilla tactics to shake the cops off his tail.
## 1523 The world is under attack by an alien armada led by the powerful Apokoliptian, Darkseid. A group of superheroes consisting of Superman, Batman, Wonder Woman, The Flash, Green Lantern, Cyborg, and Shazam must set aside their differences and gather together to defend Earth.
## 1524 From the mean streets of the Belleville district of Paris to the dazzling limelight of New York's most famous concert halls, Edith Piaf's life was a constant battle to sing and survive, to live and love. Raised in her grandmother's brothel, Piaf was discovered in 1935 by nightclub owner Louis Leplee, who persuaded her to sing despite her extreme nervousness. Piaf became one of France's immortal icons, her voice one of the indelible signatures of the 20th century.
## 1525 A renowned New York playwright is enticed to California to write for the movies and discovers the hellish truth of Hollywood.
## 1526 Christian, a visionary scientist, studies wild geese. For his son, a teenager obsessed with video games, the idea of spending a holiday with his father in the wilderness is a nightmare. However, father and son will get together around a crazy project: save a species endangered, thanks to the ultralight of Christian! Then begins an incredible and perilous journey ...
## 1527 A very handsome man finds the love of his life, but he suffers an accident and needs to have his face rebuilt by surgery after it is severely disfigured.
## 1528 It is the 23rd century. The Federation Starship U.S.S. Enterprise is on routine training maneuvers and Admiral James T. Kirk seems resigned to the fact that this inspection may well be the last space mission of his career. But Khan is back. Aided by his exiled band of genetic supermen, Khan - brilliant renegade of 20th century Earth - has raided Space Station Regula One, stolen a top secret device called Project Genesis, wrested control of another Federation Starship and sets out in pursuit of the Enterprise, determined to let nothing stand in the way of his mission: kill Admiral Kirk... even if it means universal Armageddon.
## 1529 Dr. Lily Houghton enlists the aid of wisecracking skipper Frank Wolff to take her down the Amazon in his dilapidated boat. Together, they search for an ancient tree that holds the power to heal – a discovery that will change the future of medicine.
## 1530 A fanboy of a supervillain supergroup known as the Vicious 6, Gru hatches a plan to become evil enough to join them, with the backup of his followers, the Minions.
## 1531 The true story of the "Flying Sikh" world champion runner and Olympian Milkha Singh who overcame the massacre of his family, civil war during the India-Pakistan partition, and homelessness to become one of India's most iconic athletes.
## 1532 Pierrot escapes his boring society and travels from Paris to the Mediterranean Sea with Marianne, a girl chased by hit-men from Algeria. They lead an unorthodox life, always on the run.
## 1533 A boy and his eccentric parents leave their home in Paris for a country house in Spain. As the mother descends deeper into her own mind, it's up to the boy and his father to keep her safe and happy.
## 1534 After dumping a bucket of water on a beautiful young woman from the window of a train car, wealthy Frenchman Mathieu, regales his fellow passengers with the story of the dysfunctional relationship between himself and the young woman in question, a fiery 19-year-old flamenco dancer named Conchita. What follows is a tale of cruelty, depravity and lies -- the very building blocks of love.
## 1535 Based on Jane Austen's classic novel of the Dashwood sisters, sensible Elinor and passionate Marianne, whose chances at marriage seem doomed by their family's sudden loss of fortune. When Henry Dashwood dies unexpectedly, his estate must pass on by law to his son from his first marriage, John and wife Fanny. But these circumstances leave Mr. Dashwood's current wife, and daughters Elinor, Marianne and Margaret, without a home and with barely enough money to live on. As Elinor and Marianne struggle to find romantic fulfillment in a society obsessed with financial and social status, they must learn to mix sense with sensibility in their dealings with both money and men.
## 1536 Ryder and the pups are called to Adventure City to stop Mayor Humdinger from turning the bustling metropolis into a state of chaos.
## 1537 The anti-Ching patriots, under the guidance of Ho Kuang-han, have secretly set up their base in Canton, disguised as school masters. During a brutal Manchu attack, Lui manages to escape, and devotes himself to learning the martial arts in order to seek revenge.
## 1538 Four women are given into the custody of the Magdalene sisterhood asylum to correct their sinful behavior: Crispina and Rose have given birth to a premarital child, Margaret got raped by her cousin and the orphan Bernadette had been repeatedly caught flirting with the boys. All have to work in a laundry under the strict supervision of the nuns, who break their wills through sadistic punishment.
## 1539 After losing their academic posts at a prestigious university, a team of parapsychologists goes into business as proton-pack-toting "ghostbusters" who exterminate ghouls, hobgoblins and supernatural pests of all stripes. An ad campaign pays off when a knockout cellist hires the squad to purge her swanky digs of demons that appear to be living in her refrigerator.
## 1540 Tank commander Kalashnikov is severely injured in battle in 1941. The accident leaves him incapacitated and unable to return to the front line. While recovering in the hospital he begins creating the initial sketches of what will become one of the world’s most legendary weapons. A self-taught inventor, Mikhail Kalashnikov, is only 29 when he develops the now iconic assault riffle — the AK-47.
## 1541 Franck is a firefighter in Paris. He saves people. He lives at the station with his wife, who is about to have twins. He’s happy. During a call out to a fire, be puts himself in danger, to save his men. He’s going to have to learn to live again and accept to be the one being saved, this time.
## 1542 After a serious sport accident in a swimming pool, Ben, now an incomplete quadriplegic, arrives in a rehabilitation center. He meets with other handicapped persons (tetraplegics, paraplegics, traumatized crania), all victims of accidents, as well as a handicapped since his early childhood. They go through impotence, despair and resignation, with their daily struggle to learn how to move a finger or to hold a fork. Some of them slowly find a little mobility while others receive the verdict of the handicap for life. Despite everything, hope and friendship help them endure their difficulties.
## 1543 The Marx Brothers take on high society and the opera world to bring two lovers together. A sly business manager and two wacky friends of two opera singers help them achieve success while humiliating their stuffy and snobbish enemies.
## 1544 Liang Qu is a chic, confident and cold but charming half cat, half human due to a magic spell and he has the ability to melt/heal broken hearts. He lives with Miao Xiao Wan, an honest, confident woman who's created an app that translates cats' sounds and language.
## 1545 During a mysterious thunderstorm, Vera, a young mother, manages to save a life in danger, but her good deed causes a disturbing chain of unexpected consequences.
## 1546 The story of the miraculous evacuation of Allied soldiers from Belgium, Britain, Canada and France, who were cut off and surrounded by the German army from the beaches and harbour of Dunkirk between May 26th and June 4th 1940 during World War II.
## 1547 Marty, a butcher who lives in the Bronx with his mother is unmarried at 34. Good-natured but socially awkward he faces constant badgering from family and friends to get married but has reluctantly resigned himself to bachelorhood. Marty meets Clara, an unattractive school teacher, realising their emotional connection, he promises to call but family and friends try to convince him not to.
## 1548 A mute gunslinger fights in the defense of a group of outlaws and a vengeful young widow, against a group of ruthless bounty hunters.
## 1549 The final installment of the Back to the Future trilogy finds Marty digging the trusty DeLorean out of a mineshaft and looking for Doc in the Wild West of 1885. But when their time machine breaks down, the travelers are stranded in a land of spurs. More problems arise when Doc falls for pretty schoolteacher Clara Clayton, and Marty tangles with Buford Tannen.
## 1550 The Band of the Hawk participates in the Midland war campaign. On the bloody battlefield, they conquer decisive victories that lead them to Doldrey, an old fortress that will decide the outcome of the war.
## 1551 After five disparate high school students meet in detention, they realize they have more in common than they think and form a band that becomes a champion for students sidelined by the high school elite.
## 1552 On the outskirts of town, the hard-nosed Vienna owns a saloon frequented by the undesirables of the region, including Dancin' Kid and his gang. Another patron of Vienna's establishment is Johnny Guitar, a former gunslinger and her lover. When a heist is pulled in town that results in a man's death, Emma Small, Vienna's rival, rallies the townsfolk to take revenge on Vienna's saloon – even without proof of her wrongdoing.
## 1553 A reforming ex-gangster tries to reconcile with his estranged policeman brother, but the ties to his former gang are difficult to break.
## 1554 The story of the battle of Iwo Jima between the United States and Imperial Japan during World War II, as told from the perspective of the Japanese who fought it.
## 1555 In 17th-century France, Father Urbain Grandier seeks to protect the city of Loudun from the corrupt establishment of Cardinal Richelieu. Hysteria occurs within the city when he is accused of witchcraft by a sexually repressed nun.
## 1556 A chance encounter with a stranger changes the life of a college gymnast.
## 1557 An aimless young troublemaker, Alessandro, squanders his days gambling and getting into fights, and he often spends his nights in jail. With few prospects, he begrudgingly accepts a job as a companion to Giorgio, an elderly poet suffering from Alzheimer’s. On their daily walks, the two banter and become friends, and Alessandro quickly learns more about this forgotten poet as the old man’s memory drifts. After learning a secret from Giorgio’s past, Alessandro and his friends work to uncover the mystery of this tale, an unexpected history lesson and a touching coming-of-age adventure.
## 1558 After being coerced into working for a crime boss, a young getaway driver finds himself taking part in a heist doomed to fail.
## 1559 After 29-year-old Adaline recovers from a nearly lethal accident, she inexplicably stops growing older. As the years stretch on and on, Adaline keeps her secret to herself until she meets a man who changes her life.
## 1560 As bass guitarist for a garage-rock band, Scott Pilgrim has never had trouble getting a girlfriend; usually, the problem is getting rid of them. But when Ramona Flowers skates into his heart, he finds she has the most troublesome baggage of all: an army of ex-boyfriends who will stop at nothing to eliminate him from her list of suitors.
## 1561 A vengeful witch and her fiendish servant return from the grave and begin a bloody campaign to possess the body of the witch's beautiful look-alike descendant. Only the girl's brother and a handsome doctor stand in her way.
## 1562 A gorilla named Ivan who’s living in a suburban shopping mall tries to piece together his past, with the help of other animals, as they hatch a plan to escape from captivity.
## 1563 Susan Morrow receives a book manuscript from her ex-husband – a man she left 20 years earlier – asking for her opinion of his writing. As she reads, she is drawn into the fictional life of Tony Hastings, a mathematics professor whose family vacation turns violent.
## 1564 A widowed field mouse must move her family -- including an ailing son -- to escape a farmer's plow. Aided by a crow and a pack of superintelligent, escaped lab rats, the brave mother struggles to transplant her home to firmer ground.
## 1565 Robin Hood fights nobly for justice against the evil Sir Guy of Gisbourne while striving to win the hand of the beautiful Maid Marian.
## 1566 Hamlet, Prince of Denmark, returns home to find his father murdered and his mother now marrying the murderer... his uncle. Meanwhile, war is brewing.
## 1567 A young transgender man explores his gender identity and searches for love in rural Nebraska.
## 1568 A Martinique charter boat skipper gets mixed up with the underground French resistance operatives during WWII.
## 1569 Wrongfully convicted of murdering his wife and sentenced to death, Richard Kimble escapes from the law in an attempt to find the real killer and clear his name.
## 1570 Based on the true story of Robin, a handsome, brilliant and adventurous man whose life takes a dramatic turn when polio leaves him paralyzed.
## 1571 Born on a sharecropping plantation in Northern Florida, Ray Charles went blind at seven. Inspired by a fiercely independent mom who insisted he make his own way, He found his calling and his gift behind a piano keyboard. Touring across the Southern musical circuit, the soulful singer gained a reputation and then exploded with worldwide fame when he pioneered coupling gospel and country together.
## 1572 A bad day gets worse for young detective Murakami when a pickpocket steals his gun on a hot, crowded bus. Desperate to right the wrong, he goes undercover, scavenging Tokyo’s sweltering streets for the stray dog whose desperation has led him to a life of crime. With each step, cop and criminal’s lives become more intertwined and the investigation becomes an examination of Murakami’s own dark side.
## 1573 An aged Charlie Chaplin narrates his life to his autobiography's editor, including his rise to wealth and comedic fame from poverty, his turbulent personal life and his run-ins with the FBI.
## 1574 Nester Patou, a naive police officer, is transferred to the red light district in Paris and organizes a raid on a dodgy hotel running as a brothel. In doing so he inadvertently disrupts the corrupt system of the police and the pimps union, and even nets his station superior. Fired from his job, Nester goes to the local bar for a drink and befriends a pretty young lady named Irma la Douce. Upon realizing she is a prostitute, Nester invents a crazy scheme to keep her from seeing other men.
## 1575 Wounded to the brink of death and suffering from amnesia, Jason Bourne is rescued at sea by a fisherman. With nothing to go on but a Swiss bank account number, he starts to reconstruct his life, but finds that many people he encounters want him dead. However, Bourne realizes that he has the combat and mental skills of a world-class spy—but who does he work for?
## 1576 Elisa is only forty when an incurable disease takes her from her husband and their daughter. Before her heart stops, Elisa finds a way to stay close to her: a gift for every birthday up to her adult age, 18 gifts to try to accompany her child's growth year after year.
## 1577 A headstrong Chinese-American woman returns to China when her beloved grandmother is given a terminal diagnosis. Billi struggles with her family's decision to keep grandma in the dark about her own illness as they all stage an impromptu wedding to see grandma one last time.
## 1578 The story of a group of men, an Army Rifle company called C-for-Charlie, who change, suffer, and ultimately make essential discoveries about themselves during the fierce World War II battle of Guadalcanal. It follows their journey, from the surprise of an unopposed landing, through the bloody and exhausting battles that follow, to the ultimate departure of those who survived.
## 1579 A weary gunfighter attempts to settle down with a homestead family, but a smouldering settler and rancher conflict forces him to act.
## 1580 After meeting one day, a shy boy who expresses himself through haiku and a bubbly but self-conscious girl share a brief, magical summer.
## 1581 An ambitious lobbyist faces off against the powerful gun lobby in an attempt to pass gun control legislation.
## 1582 The master of a dorayaki pastry store hires a 76-year-old woman whose talents attract customers from all over. But she's hiding a troubling secret. Life's joys are found in the little details, and no matter what may be weighing you down, everyone loves a good pastry.
## 1583 The story of two men on different sides of a prison riot -- the inmate leading the rebellion and the young guard trapped in the revolt, who poses as a prisoner in a desperate attempt to survive the ordeal.
## 1584 Joe Gideon is at the top of the heap, one of the most successful directors and choreographers in musical theater. But he can feel his world slowly collapsing around him - his obsession with work has almost destroyed his personal life, and only his bottles of pills keep him going.
## 1585 The film explores the world of firefighters in 1920s New York City and tells the story of a 16-year-old girl who will have to become a hero in order to save her city.
## 1586 29 years since the Black Flame Candle was last lit, the 17th-century Sanderson sisters are resurrected, and they are looking for revenge. Now it's up to three high school students to stop the ravenous witches from wreaking a new kind of havoc on Salem before dawn on All Hallow's Eve.
## 1587 A seductive woman gets an innocent professor mixed up in murder.
## 1588 The story of Michael Berg, a German lawyer who, as a teenager in the late 1950s, had an affair with an older woman, Hanna, who then disappeared only to resurface years later as one of the defendants in a war crimes trial stemming from her actions as a concentration camp guard late in the war. He alone realizes that Hanna is illiterate and may be concealing that fact at the expense of her freedom.
## 1589 Having defeated the best fighters of the Imperial Japanese army in occupied Shanghai, Ip Man and his family settle in post-war Hong Kong. Struggling to make a living, Master Ip opens a kung fu school to bring his celebrated art of Wing Chun to the troubled youth of Hong Kong. His growing reputation soon brings challenges from powerful enemies, including pre-eminent Hung Gar master, Hung Quan.
## 1590 When an overconfident teen alien gets behind the controls of a spaceship, he must attempt to abduct a slumbering farmer under the watchful eye of a critical instructor. But abducting humans requires precision and a gentle touch, and within a few missteps it's painfully clear why more humans don't go missing every year.
## 1591 It seemed like just another day at the park for Maggie Simpson. But when Maggie faces playground peril, a heroic young baby whisks her from danger and steals her heart.
## 1592 After accidentally coming into contact with radioactive waste, small-time crook Enzo Ceccotti gains superpowers. A misanthropic, introverted brute, he uses his new powers for personal gain until he meets Alessia, a mentally challenged girl who believes Enzo’s the hero from her favorite Japanese anime series, Steel Jeeg.
## 1593 Beth, Calvin, and their son Conrad are living in the aftermath of the death of the other son. Conrad is overcome by grief and misplaced guilt to the extent of a suicide attempt. He is in therapy. Beth had always preferred his brother and is having difficulty being supportive to Conrad. Calvin is trapped between the two trying to hold the family together.
## 1594 In the year 2029, Section 9, a group of cybernetically enhanced cops, are called in to investigate and stop a highly-wanted hacker known as 'The Puppetmaster'. Ghost in the Shell 2.0 is a reproduced version of its original 1995 counterpart. Among a numerous enhancements, for the film's 2.0 release, were a number of scenes were overhauled with 3D animation, visual improvements, and soundtrack rerecorded in 6.1 surround sound.
## 1595 Aspiring Florida defense lawyer Kevin Lomax accepts a job at a New York law firm. With the stakes getting higher every case, Kevin quickly learns that his boss has something far more evil planned.
## 1596 The friendship between two life-long girlfriends is put to the test when one starts a family and the other falls ill.
## 1597 When Dracula leaves the captive Jonathan Harker and Transylvania for London in search of Mina Murray, the reincarnation of Dracula's long-dead wife Elisabeta, obsessed vampire hunter Dr. Van Helsing sets out to end the madness.
## 1598 Richard Jewell thinks quick, works fast, and saves hundreds, perhaps thousands, of lives after a domestic terrorist plants several pipe bombs and they explode during a concert, only to be falsely suspected of the crime by sloppy FBI work and sensational media coverage.
## 1599 A chronicle of the life of Louis Zamperini, an Olympic runner who was taken prisoner by Japanese forces during World War II.
## 1600 Hollywood, 1927: As silent movie star George Valentin wonders if the arrival of talking pictures will cause him to fade into oblivion, he sparks with Peppy Miller, a young dancer set for a big break.
## 1601 Raquel's longtime crush on her next-door neighbor turns into something more when he starts developing feelings for her, despite his family's objections.
## 1602 The true story of the Mauritanian Mohamedou Ould Slahi, who was held at the U.S military's Guantanamo Bay detention center without charges for over a decade and sought help from a defense attorney for his release.
## 1603 Iron Monkey is a Hong Kong variation of Robin Hood. Corrupt officials of a Chinese village are robbed by a masked bandit known as "Iron Monkey", named after a benevolent deity. When all else fails, the Governor forces a traveling physician into finding the bandit. The arrival of an evil Shaolin monk, brings the physician and Iron Monkey together to battle the corrupt government.
## 1604 A police brigade working in the dangerous northern neighborhoods of Marseille, where the level of crime is higher than anywhere else in France.
## 1605 An aging, booze-addled father takes a trip from Montana to Nebraska with his estranged son in order to claim what he believes to be a million-dollar sweepstakes prize.
## 1606 Not paying attention to his job, a young demon allows the evil cleansing machine to overflow and explode, turning the young demon into the infamous monster Janemba. Goku and Vegeta make solo attempts to defeat the monster, but realize their only option is fusion.
## 1607 The mysterious disappearance of a kindergarten teacher during a picnic in the north of Iran is followed by a series of misadventures for her fellow travelers.
## 1608 Scooby-Doo and the Mystery Inc. gang become involved in a supernatural mystery in Egypt.
## 1609 The two brothers Trinity and Bambino are exchanged by two federal agents and take advantage of the situation to steal a huge booty hidden in a monastery by a gang of outlaws.
## 1610 With the intention to break free from the strict familial restrictions, a suicidal young woman sets up a marriage of convenience with a forty-year-old addict, an act that will lead to an outburst of envious love.
## 1611 Predestination chronicles the life of a Temporal Agent sent on an intricate series of time-travel journeys designed to prevent future killers from committing their crimes. Now, on his final assignment, the Agent must stop the one criminal that has eluded him throughout time and prevent a devastating attack in which thousands of lives will be lost.
## 1612 Frank Galvin is a down-on-his-luck lawyer and reduced to drinking and ambulance chasing, when a former associate reminds him of his obligations in a medical malpractice suit by serving it to Galvin on a silver platter—all parties are willing to settle out of court. Blundering his way through the preliminaries, Galvin suddenly realizes that the case should actually go to court—to punish the guilty, to get a decent settlement for his clients... and to restore his standing as a lawyer.
## 1613 Against formidable odds -- and an old-school diving instructor embittered by the U.S. Navy's new, less prejudicial policies -- Carl Brashear sets his sights on becoming the Navy's first African-American master diver in this uplifting true story. Their relationship starts out on the rocks, but fate ultimately conspires to bring the men together into a setting of mutual respect, triumph and honor.
## 1614 A biopic on the personal and artistic life of Italian songwriter Fabrizio De André.
## 1615 A drama centered on a classical pianist who has been diagnosed with ALS and the brash college student who becomes her caregiver.
## 1616 Following the events of Age of Ultron, the collective governments of the world pass an act designed to regulate all superhuman activity. This polarizes opinion amongst the Avengers, causing two factions to side with Iron Man or Captain America, which causes an epic battle between former allies.
## 1617 The life of the revered 18th-century Armenian poet and musician Sayat-Nova. Portraying events in the life of the artist from childhood up to his death, the movie addresses in particular his relationships with women, including his muse. The production tells Sayat-Nova's dramatic story by using both his poems and largely still camerawork, creating a work hailed as revolutionary by Mikhail Vartanov.
## 1618 Jaded ex-CIA operative John Creasy reluctantly accepts a job as the bodyguard for a 10-year-old girl in Mexico City. They clash at first, but eventually bond, and when she's kidnapped he's consumed by fury and will stop at nothing to save her life.
## 1619 Buenos Aires, Argentina, 1971. Carlos Robledo Puch is a 19-year-old boy with an angelic face, but a vocational thief as well, who acts ruthlessly, without remorse. When he meets Ramón, they follow together a dark path of crime and death.
## 1620 A university researcher is fired because of the cuts to university. To earn a living he decides to produce drugs recruiting his former colleagues, who despite their skills are living at the margins of society.
## 1621 A chronicle of the original Mercury astronauts in the formation of America's space program: Alan Shepherd, the first American in space; Gus Grissom, the benighted astronaut for whom nothing works out as planned; John Glenn, the straight-arrow 'boy scout' of the bunch who was the first American to orbit the earth; and the remaining pilots: Deke Slayton, Scott Carpenter, Wally Schirra, and Gordon Cooper.
## 1622 While doing a thesis about violence, Ángela finds a snuff video where a girl is tortured to death. Soon she discovers that the girl was a former student at her college...
## 1623 When Christy discovers her 10-year-old daughter Anna has a rare, incurable disease, she becomes a ferocious advocate for her daughter’s healing as she searches for a solution. After Anna has a freak accident and falls three stories, a miracle unfolds in the wake of her dramatic rescue that leaves medical specialists mystified, her family restored and their community inspired.
## 1624 Scooby, Shaggy and Scrappy Doo are on their way to a Miss Grimwood's Finishing School for Girls, where they have been hired as gym teachers. Once there, however, they find that it is actually a school for girl ghouls.
## 1625 A couple falls in love and agrees to meet in six months at the Empire State Building - but will it happen?
## 1626 The film follows Kaspar Hauser (Bruno S.), who lived the first seventeen years of his life chained in a tiny cellar with only a toy horse to occupy his time, devoid of all human contact except for a man who wears a black overcoat and top hat who feeds him.
## 1627 Sam Bowden witnesses a rape committed by Max Cady and testifies against him. When released after 8 years in prison, Cady begins stalking Bowden and his family but is always clever enough not to violate the law.
## 1628 After a tied 1st place in a local stunt race, two drivers start a contest to decide who of them will own the prize, a dune buggy. But when a mobster destroys the car, they are determined to get it back.
## 1629 Young Scottish doctor, Nicholas Garrigan decides it's time for an adventure after he finishes his formal education, so he decides to try his luck in Uganda, and arrives during the downfall of President Obote. General Idi Amin comes to power and asks Garrigan to become his personal doctor.
## 1630 The true story of technical troubles that scuttle the Apollo 13 lunar mission in 1970, risking the lives of astronaut Jim Lovell and his crew, with the failed journey turning into a thrilling saga of heroism. Drifting more than 200,000 miles from Earth, the astronauts work furiously with the ground crew to avert tragedy.
## 1631 Welcome to Sin City. This town beckons to the tough, the corrupt, the brokenhearted. Some call it dark… Hard-boiled. Then there are those who call it home — Crooked cops, sexy dames, desperate vigilantes. Some are seeking revenge, others lust after redemption, and then there are those hoping for a little of both. A universe of unlikely and reluctant heroes still trying to do the right thing in a city that refuses to care.
## 1632 An ordinary young boy called Nikolas sets out on an extraordinary adventure into the snowy north in search of his father who is on a quest to discover the fabled village of the elves, Elfhelm. Taking with him a headstrong reindeer called Blitzen and a loyal pet mouse, Nikolas soon meets his destiny in this magical and endearing story that proves nothing is impossible…
## 1633 Los Angeles, 1969. TV star Rick Dalton, a struggling actor specializing in westerns, and stuntman Cliff Booth, his best friend, try to survive in a constantly changing movie industry. Dalton is the neighbor of the young and promising actress and model Sharon Tate, who has just married the prestigious Polish director Roman Polanski…
## 1634 Super-assassin John Wick returns with a $14 million price tag on his head and an army of bounty-hunting killers on his trail. After killing a member of the shadowy international assassin’s guild, the High Table, John Wick is excommunicado, but the world’s most ruthless hit men and women await his every turn.
## 1635 Beatrice is a blabbermouth and a so-called billionaire countess who likes to believe she’s in intimacy with world leaders. Donatella is a young quiet tattooed woman, locked in her own mystery. They are both patients of a mental institution and subject to custodial measures.
## 1636 When a hopelessly romantic high school senior falls for a mysterious new classmate, it sets them both on an unexpected journey that teaches them about love, loss, and most importantly themselves.
## 1637 U.S. Navy SEAL Chris Kyle takes his sole mission—protect his comrades—to heart and becomes one of the most lethal snipers in American history. His pinpoint accuracy not only saves countless lives but also makes him a prime target of insurgents. Despite grave danger and his struggle to be a good husband and father to his family back in the States, Kyle serves four tours of duty in Iraq. However, when he finally returns home, he finds that he cannot leave the war behind.
## 1638 A biography of artist Frida Kahlo, who channeled the pain of a crippling injury and her tempestuous marriage into her work.
## 1639 In 1973, when Frank Bledsoe and his 18-year-old niece Beth take a road trip from Manhattan to Creekville, South Carolina for the family patriarch's funeral, they're unexpectedly joined by Frank's lover Walid.
## 1640 Salvador Mallo, a filmmaker in the twilight of his career, remembers his life: his mother, his lovers, the actors he worked with. The sixties in a small village in Valencia, the eighties in Madrid, the present, when he feels an immeasurable emptiness, facing his mortality, the incapability of continuing filming, the impossibility of separating creation from his own life. The need of narrating his past can be his salvation.
## 1641 In a Russian coastal town, Kolya is forced to fight the corrupt mayor when he is told that his house will be demolished. He recruits a lawyer friend to help, but the man's arrival brings further misfortune for Kolya and his family.
## 1642 Two penniless orphans, Black and White, struggle to survive on the mean streets of Treasure Town. When a megacorporation threatens to tear down the town to build an amusement park, Black and White engage in the fight of their life.
## 1643 The fate of the galaxy rests in the hands of bitter rivals. One, James Kirk, is a delinquent, thrill-seeking Iowa farm boy. The other, Spock, a Vulcan, was raised in a logic-based society that rejects all emotion. As fiery instinct clashes with calm reason, their unlikely but powerful partnership is the only thing capable of leading their crew through unimaginable danger, boldly going where no one has gone before. The human adventure has begun again.
## 1644 In New York, armed men hijack a subway car and demand a ransom for the passengers. Even if it's paid, how could they get away?
## 1645 A young girl, passionate about fashion design, is mysteriously able to enter the 1960s where she encounters her idol, a dazzling wannabe singer. But 1960s London is not what it seems, and time seems to be falling apart with shady consequences.
## 1646 Henry II and his estranged queen battle over the choice of an heir.
## 1647 Based on the inspiring and powerful true story and journal entries of Rachel Joy Scott- the first student killed in the Columbine High School shooting in 1999.
## 1648 Hildy, the journalist former wife of newspaper editor Walter Burns, visits his office to inform him that she's engaged and will be getting remarried the next day. Walter can't let that happen and frames the fiancé, Bruce Baldwin, for one thing after another, to keep him temporarily held in prison, while trying to steer Hildy into returning to her old job as his employee.
## 1649 Drac tries out some new monster pets to help occupy Tinkles for playtime.
## 1650 Stalinstadt, East Germany, 1956. While the Hungarian uprising against Soviets is taking place, teenage members of a classroom of the local school perform a seemingly harmless act that causes unexpected consequences.
## 1651 Bond has left active service and is enjoying a tranquil life in Jamaica. His peace is short-lived when his old friend Felix Leiter from the CIA turns up asking for help. The mission to rescue a kidnapped scientist turns out to be far more treacherous than expected, leading Bond onto the trail of a mysterious villain armed with dangerous new technology.
## 1652 Originally a collection of clips from the Neon Genesis Evangelion TV series, Death was created as a precursor to the re-worked ending of the series. Rebirth was intended as that re-worked ending, but after production overruns Rebirth became only the first half of the first part of The End of Evangelion, with some minor differences.
## 1653 The film follows Nishi, a loser who has a crush on his childhood girlfriend. After an encounter with the Japanese mafia, the film follows Nishi as he journeys to heaven and back, and ends up trapped in an even more unlikely place.
## 1654 A young governess for two children becomes convinced that the house and grounds are haunted.
## 1655 An uptight MBA student falls for the charismatic new neighbor who charms her troubled family – but he has a secret that forces him to push her away.
## 1656 The story of Rubin "Hurricane" Carter, a boxer wrongly imprisoned for murder, and the people who aided in his fight to prove his innocence.
## 1657 This simple romantic tragedy begins in 1957. Guy Foucher, a 20-year-old French auto mechanic, has fallen in love with 17-year-old Geneviève Emery, an employee in her widowed mother's chic but financially embattled umbrella shop. On the evening before Guy is to leave for a two-year tour of combat in Algeria, he and Geneviève make love. She becomes pregnant and must choose between waiting for Guy's return or accepting an offer of marriage from a wealthy diamond merchant.
## 1658 When Superman and the rest of the Justice League are kidnapped, Krypto the Super-Dog must convince a rag-tag shelter pack - Ace the hound, PB the potbellied pig, Merton the turtle and Chip the squirrel - to master their own newfound powers and help him rescue the superheroes.
## 1659 An FBI agent teams with the town's veteran game tracker to investigate a murder that occurred on a Native American reservation.
## 1660 Dominik is an ordinary boy. He's got loads of friends, the hottest girl in school, rich parents and money to spend on brand-name clothes. But one innocent kiss with a mate changes everything. He begins to isolate himself from the outside world, spending all his time on his computer. He meets an anonymous girl who introduces him to the "suicide room", a place from which there is no escape. Caught in a trap woven of his own emotions, Dominik becomes entangled in a web of intrigue and gradually loses what he cherishes most.
## 1661 When a beautiful first-grade teacher arrives at a prep school, she soon attracts the attention of an ambitious teenager named Max, who quickly falls in love with her. Max turns to the father of two of his schoolmates for advice on how to woo the teacher. However, the situation soon gets complicated when Max's new friend becomes involved with her, setting the two pals against one another in a war for her attention.
## 1662 Four Navy SEALs on a covert mission to neutralize a high-level Taliban operative must make an impossible moral decision in the mountains of Afghanistan that leads them into an enemy ambush. As they confront unthinkable odds, the SEALs must find reserves of strength and resilience to fight to the finish.
## 1663 Based on the journals of Che Guevara, leader of the Cuban Revolution. In his memoirs, Guevara recounts adventures he and best friend Alberto Granado had while crossing South America by motorcycle in the early 1950s.
## 1664 After his career is destroyed, a brilliant but arrogant surgeon gets a new lease on life when a sorcerer takes him under her wing and trains him to defend the world against evil.
## 1665 From a mountain peak in South Korea, a man plummets to his death. Did he jump, or was he pushed? When detective Hae-joon arrives on the scene, he begins to suspect the dead man’s wife Seo-rae. But as he digs deeper into the investigation, he finds himself trapped in a web of deception and desire.
## 1666 Barbie stars as Blair Willows, a kind-hearted girl who is chosen to attend Princess Charm School: a magical, modern place that teaches dancing, how to have tea parties, and proper princess manners. Blair loves her classes -- as well as the helpful magical sprites and her new friends, Princesses Hadley and Isla. But when royal teacher Dame Devin discovers that Blair looks a lot like the kingdom’s missing princess, she turns Blair’s world upside down to stop her from claiming the throne. Now Blair, Hadley and Delancy must find an enchanted crown to prove Blair’s true identity in this charming and magical princess story!
## 1667 A quiet young English girl named Alice finds herself in an alternate version of her own reality after chasing a white rabbit. She becomes surrounded by living inanimate objects and stuffed dead animals, and must find a way out of this nightmare- no matter how twisted or odd that way must be. A memorably bizarre screen version of Lewis Carroll’s novel ‘Alice’s Adventures in Wonderland’.
## 1668 While vacationing on a remote German island with his pregnant wife, an artist has an emotional breakdown while confronting his repressed desires.
## 1669 In 1966, Texas Western coach Don Haskins led the first all-black starting line-up for a college basketball team to the NCAA national championship.
## 1670 Convenience and video store clerks Dante and Randal are sharp-witted, potty-mouthed and bored out of their minds. So in between needling customers, the counter jockeys play hockey on the roof, visit a funeral home and deal with their love lives.
## 1671 Paris 1930. Paul has only ever had one and the same horizon: the high walls of the orphanage, an austere building in the Parisian working class suburbs. Entrusted to a joyful country woman, Célestine, and her husband, Borel, the rather stiff gamekeeper of a vast estate in Sologne, the city child, recalcitrant and stubborn, arrives in a mysterious and disturbing world, that of a sovereign and wild region. The huge forest, misty ponds, heaths, and fields all belong to the Count de la Fresnaye, an elderly taciturn man who lives alone in his manor.
## 1672 Adventure awaits 12 year old Brendan who must fight Vikings and a serpent god to find a crystal and complete the legendary Book of Kells. In order to finish Brother Aiden's book, Brendan must overcome his deepest fears on a secret quest that will take him beyond the abbey walls and into the enchanted forest where dangerous mythical creatures hide. Will Brendan succeed in his quest?
## 1673 Capturing John Lennon, Paul McCartney, George Harrison and Ringo Starr in their electrifying element, 'A Hard Day's Night' is a wildly irreverent journey through this pastiche of a day in the life of The Beatles during 1964. The band have to use all their guile and wit to avoid the pursuing fans and press to reach their scheduled television performance, in spite of Paul's troublemaking grandfather and Ringo's arrest.
## 1674 A graphic portrayal of the last twelve hours of Jesus of Nazareth's life.
## 1675 After being uprooted by his parents' separation and unable to fit into his new hometown, a teenager stumbles upon a magical app that causes his social media updates to come true.
## 1676 An evil feudal lord rapes a village girl on her wedding night and proceeds to ruin her and her husband's lives. After she's eventually banished from her village, the girl makes a pact with the devil to gain magical ability and take revenge.
## 1677 Nanni Moretti recalls in his diary three slice of life stories characterized by a sharply ironic look: in the first one he wanders through a deserted Rome, in the second he visits a reclusive friend on an island, and in the last he has to grapple with an unknown illness.
## 1678 A man against capital punishment is accused of murdering a fellow activist and is sent to death row.
## 1679 Inside the Kit Kat Club of 1931 Berlin, starry-eyed singer Sally Bowles and an impish emcee sound the clarion call to decadent fun, while outside a certain political party grows into a brutal force.
## 1680 Squadron Leader Veer Pratap Singh, a pilot in the Indian air force, rescues the stranded Zaara, a woman from Pakistan, following a bus accident, and their lives are forever bound.
## 1681 A music-loving kinkajou named Vivo embarks on the journey of a lifetime to fulfill his destiny and deliver a love song for an old friend.
## 1682 Has been an year since Pietro Zinni's gang got caught in the Sopox production laboratory and each of them locked up in different jails. From Regina Coeli jail, Pietro keep warning the authorities a fool syntetized nerve gas and he is ready to make a killing, but no one takes him seriously.
## 1683 Katniss Everdeen has returned home safe after winning the 74th Annual Hunger Games along with fellow tribute Peeta Mellark. Winning means that they must turn around and leave their family and close friends, embarking on a "Victor's Tour" of the districts. Along the way Katniss senses that a rebellion is simmering, but the Capitol is still very much in control as President Snow prepares the 75th Annual Hunger Games (The Quarter Quell) - a competition that could change Panem forever.
## 1684 Deep in the heart of Jakarta's slums lies an impenetrable safe house for the world's most dangerous killers and gangsters. Until now, the run-down apartment block has been considered untouchable to even the bravest of police. Cloaked under the cover of pre-dawn darkness and silence, an elite swat team is tasked with raiding the safe house in order to take down the notorious drug lord that runs it. But when a chance encounter with a spotter blows their cover and news of their assault reaches the drug lord, the building's lights are cut and all the exits blocked. Stranded on the sixth floor with no way out, the unit must fight their way through the city's worst to survive their mission. Starring Indonesian martial arts sensation Iko Uwais.
## 1685 One day in the life of Anders, a young recovering drug addict, who takes a brief leave from his treatment center to interview for a job and catch up with old friends in Oslo.
## 1686 An undercover cop has his loyalties tested when the boss of the corporate gang he's spent years infiltrating dies.
## 1687 In Mexico, two teenage boys and an attractive older woman embark on a road trip and learn a thing or two about life, friendship, sex, and each other.
## 1688 First time father Henry Spencer tries to survive his industrial environment, his angry girlfriend, and the unbearable screams of his newly born mutant child.
## 1689 Less than 24 hours into his parole, charismatic thief Danny Ocean is already rolling out his next plan: In one night, Danny's hand-picked crew of specialists will attempt to steal more than $150 million from three Las Vegas casinos. But to score the cash, Danny risks his chances of reconciling with ex-wife, Tess.
## 1690 The harrowing true story of two elite US Navy fighter pilots during the Korean War. Their heroic sacrifices would ultimately make them the Navy's most celebrated wingmen.
## 1691 Tara Markov is a girl who has power over earth and stone; she is also more than she seems. Is the newest Teen Titan an ally or a threat? And what are the mercenary Deathstroke's plans for the Titans?
## 1692 A wave of gruesome murders is sweeping Tokyo. The only connection is a bloody X carved into the neck of each of the victims. In each case, the murderer is found near the victim and remembers nothing of the crime. Detective Takabe and psychologist Sakuma are called in to figure out the connection, but their investigation goes nowhere...
## 1693 France, 1914, during World War I. On Christmas Eve, an extraordinary event takes place in the bloody no man's land that the French and the Scots dispute with the Germans…
## 1694 A martial artist agrees to spy on a reclusive crime lord using his invitation to a tournament there as cover.
## 1695 Beautiful young housewife Séverine Serizy cannot reconcile her masochistic fantasies with her everyday life alongside dutiful husband Pierre. When her lovestruck friend Henri mentions a secretive high-class brothel run by Madame Anais, Séverine begins to work there during the day under the name Belle de Jour. But when one of her clients grows possessive, she must try to go back to her normal life.
## 1696 Bruno Stroszek is released from prison and warned to stop drinking. He has few skills and fewer expectations: with a glockenspiel and an accordion, he ekes out a living as a street musician. He befriends Eva, a prostitute down on her luck and they join his neighbor, Scheitz, an elderly eccentric, when he leaves Germany to live in Wisconsin.
## 1697 When his only friend dies, a man born with dwarfism moves to rural New Jersey to live a life of solitude, only to meet a chatty hot dog vendor and a woman dealing with her own personal loss.
## 1698 In the midst of trying to legitimize his business dealings in 1979 New York and Italy, aging mafia don, Michael Corleone seeks forgiveness for his sins while taking a young protege under his wing.
## 1699 When a millionaire wheeler-dealer enters a business contract with a Hollywood hooker Vivian Ward, he loses his heart in the bargain.
## 1700 Young lawyer Ruth Bader Ginsburg teams with her husband Marty to bring a groundbreaking case before the U.S. Court of Appeals and overturn a century of sex discrimination.
## 1701 Set in 1992, a manager Vincent has to run a children's holiday camp for three weeks and to face the unexpected concerning the place, his colleagues, various problems linked to children about the rooms, trips, their belongings...
## 1702 The murder of her father sends a teenage tomboy on a mission of 'justice', which involves avenging her father's death. She recruits a tough old marshal, 'Rooster' Cogburn because he has 'true grit', and a reputation of getting the job done.
## 1703 A young British girl born and reared in India loses her neglectful parents in an earthquake. She is returned to England to live at her uncle's castle. Her uncle is very distant due to the loss of his wife ten years before. Neglected once again, she begins exploring the estate and discovers a garden that has been locked and neglected. Aided by one of the servants' boys, she begins restoring the garden, and eventually discovers some other secrets of the manor.
## 1704 Victor, a disillusioned sexagenarian, sees his life turned upside down on the day when Antoine, a brilliant entrepreneur, offers him a new kind of attraction: mixing theatrical artifices and historical reconstruction, this company offers his clients a chance to dive back into the era of their choice. Victor then chose to relive the most memorable week of his life: the one where, 40 years earlier, he met the great love.
## 1705 André, 19, lives in Porto Alegre, Brazil, and works as a photocopier operator. He likes to see his neighbor Sílvia with a pair of binoculars. She works selling clothes. Becoming attracted to her, he tries to get nearer, and goes to her shop to buy something, but finds out that he can't afford it. So he puts the photocopier to other uses, and begins to envisage fishy schemes to earn some money.
## 1706 Thirty years ago, aliens arrive on Earth. Not to conquer or give aid, but to find refuge from their dying planet. Separated from humans in a South African area called District 9, the aliens are managed by Multi-National United, which is unconcerned with the aliens' welfare but will do anything to master their advanced technology. When a company field agent contracts a mysterious virus that begins to alter his DNA, there is only one place he can hide: District 9.
## 1707 A radio astronomer receives the first extraterrestrial radio signal ever picked up on Earth. As the world powers scramble to decipher the message and decide upon a course of action, she must make some difficult decisions between her beliefs, the truth, and reality.
## 1708 During their travel from Chicago to New York, Harry and Sally debate whether or not sex ruins a friendship between a man and a woman. Eleven years later, and they're still no closer to finding the answer.
## 1709 Yusuke Kafuku, a stage actor and director, still unable, after two years, to cope with the loss of his beloved wife, accepts to direct Uncle Vanya at a theater festival in Hiroshima. There he meets Misaki, an introverted young woman, appointed to drive his car. In between rides, secrets from the past and heartfelt confessions will be unveiled.
## 1710 In the aftermath of WWI, a young German who grieves the death of her fiancé in France meets a mysterious French man who visits the fiance’s grave to lay flowers.
## 1711 An ordinary Lego mini-figure, mistakenly thought to be the extraordinary MasterBuilder, is recruited to join a quest to stop an evil Lego tyrant from gluing the universe together.
## 1712 Maureen Trant and her younger sibling Dani share a strong connection, but local boy Court Foster threatens to throw their bond off balance. Dani and Court meet first and have a flirtatious rapport -- but when he meets Maureen, he falls hard and they begin a passionate affair. The new couple try to keep their love hidden from Dani, but she soon learns the truth, disavowing her sister. But a heartbreaking accident later reunites the girls.
## 1713 Set against Paris' oldest bridge, the Pont Neuf, while it was closed for repairs, this film is a love story between two young vagrants: Alex, a would be circus performer addicted to alcohol and sedatives and Michele, a painter driven to a life on the streets because of a failed relationship and an affliction which is slowly turning her blind.
## 1714 A successful mod photographer in London whose world is bounded by fashion, pop music, marijuana, and easy sex, feels his life is boring and despairing. But in the course of a single day he unknowingly captures a death on film.
## 1715 A twice-divorced mother of three who sees an injustice, takes on the bad guy and wins -- with a little help from her push-up bra. Erin goes to work for an attorney and comes across medical records describing illnesses clustered in one nearby town. She starts investigating and soon exposes a monumental cover-up.
## 1716 The story of a precocious six year-old and her ragtag group of friends whose summer break is filled with childhood wonder, possibility and a sense of adventure while the adults around them struggle with hard times.
## 1717 One day at work, unsuccessful puppeteer Craig finds a portal into the head of actor John Malkovich. The portal soon becomes a passion for anybody who enters its mad and controlling world of overtaking another human body.
## 1718 In Japan, gonzo filmmakers hatch a three-pronged plan to save an actress's career, end a yakuza war and make a hit movie.
## 1719 A gunfighting stranger comes to the small settlement of Lago. After gunning down three gunmen who tried to kill him, the townsfolk decide to hire the Stranger to hold off three outlaws who are on their way.
## 1720 During WWII, a teenage boy discovering himself becomes love-stricken by Malèna, a sensual woman living in a small, narrow-minded Italian town.
## 1721 Cole Thornton, a gunfighter for hire, joins forces with an old friend, Sheriff J.P. Hara. Together with a fighter and a gambler, they help a rancher and his family fight a rival rancher that is trying to steal their water.
## 1722 Bourne is brought out of hiding once again by reporter Simon Ross who is trying to unveil Operation Blackbriar, an upgrade to Project Treadstone, in a series of newspaper columns. Information from the reporter stirs a new set of memories, and Bourne must finally uncover his dark past while dodging The Company's best efforts to eradicate him.
## 1723 Cherry drifts from college dropout to army medic in Iraq - anchored only by his true love, Emily. But after returning from the war with PTSD, his life spirals into drugs and crime as he struggles to find his place in the world.
## 1724 A first-time captain leads a convoy of allied ships carrying thousands of soldiers across the treacherous waters of the “Black Pit” to the front lines of WW2. With no air cover protection for 5 days, the captain and his convoy must battle the surrounding enemy Nazi U-boats in order to give the allies a chance to win the war.
## 1725 Beyond the human realm, there is a magical race of beings who control the tides and the changing of the seasons. One of these beings, a young girl named Chun, seeks something more—she wants to experience the human world! At sixteen, she finally gets her chance and transforms into a dolphin in order to explore the world that has her fascinated. But she soon discovers that it's a dangerous place and nearly gets killed in a vortex. Luckily, her life is spared when a young boy sacrifices himself to save her. Moved by his kindness and courage, she uses magic to bring him back to life only to learn that this power comes at a serious price. On a new adventure, she’ll have to make her own sacrifices in order to protect his soul until it is ready to return to the human world.
## 1726 Longing for a baby, a stripper pursues another man in order to make her boyfriend jealous.
## 1727 Returning home with his father after a shopping expedition, Wong Fei-Hong is unwittingly caught up in the battle between foreigners who wish to export ancient Chinese artifacts and loyalists who don't want the pieces to leave the country. Fei-Hong must fight against the foreigners using his Drunken Boxing style, and overcome his father's antagonism as well.
## 1728 Tang Lung arrives in Rome to help his cousins in the restaurant business. They are being pressured to sell their property to the syndicate, who will stop at nothing to get what they want. When Tang arrives he poses a new threat to the syndicate, and they are unable to defeat him. The syndicate boss hires the best Japanese and European martial artists to fight Tang, but he easily finishes them off.
## 1729 If Stan, Kyle and Cartman could just work together, they could go back in time to make sure Covid never happened. But traveling back to the past seems to be the easy answer until they meet Victor Chaos.
## 1730 When 30-ish rich kid Lenny has to take care of 15-year-old David, who’s suffering from heart disease, it’s the beginning of a wild adventure. Lenny fearlessly breaks all the rules to fulfill his young friend’s every wish.
## 1731 Cecilia is a waitress in New Jersey, living a dreary life during the Great Depression. Her only escape from her mundane reality is the movie theatre. After losing her job, Cecilia goes to see 'The Purple Rose of Cairo' in hopes of raising her spirits, where she watches dashing archaeologist Tom Baxter time and again.
## 1732 "Selma," as in Alabama, the place where segregation in the South was at its worst, leading to a march that ended in violence, forcing a famous statement by President Lyndon B. Johnson that ultimately led to the signing of the Voting Rights Act.
## 1733 Two neurotics, working for a suicide hotline on the night of Christmas Eve, get caught up in a catastrophe when a pregnant woman, her abusive boyfriend, and a transvestite visit their office.
## 1734 Wyatt Earp and his brothers Morgan and Virgil ride into Tombstone and leave brother James in charge of their cattle herd. On their return they find their cattle stolen and James dead. Wyatt takes on the job of town marshal, making his brothers deputies, and vows to stay in Tombstone until James' killers are found. He soon runs into the brooding, coughing, hard-drinking Doc Holliday as well as the sullen and vicious Clanton clan. Wyatt discovers the owner of a trinket stolen from James' dead body and the stage is set for the Earps' long-awaited revenge.
## 1735 Traveling businessman David Mann angers the driver of a rusty tanker while crossing the California desert. A simple trip turns deadly, as Mann struggles to stay on the road while the tanker plays cat and mouse with his life.
## 1736 In Paris XVIIIth district, Lambert works the night shift at a gas station, rarely speaking, living alone, drinking. One day comes a half-jewish half-arab small-time crook in dire straits, pushing a Moped. Named Bensoussan, he takes refuge at the station pretending he needs a spark plug. The two men become friends.
## 1737 Amid the modern wastelands and toxic factories of Italy, wife and mother Giuliana desperately tries to conceal her tenuous grip on reality from those around her, especially her successful yet neglectful husband, Ugo. Ugo's old pal, Corrado, shows up in town on a business trip and is more sensitive to Giuliana's anxieties. They begin an affair, but it does little to quell Giuliana's existential fears, and her mental state rapidly deteriorates.
## 1738 A member of an elite paramilitary counter-terrorism unit becomes traumatized after witnessing the suicide bombing of a young girl and is forced to undergo retraining. However, unbeknownst to him, he becomes a key player in a dispute between rival police divisions, as he finds himself increasingly involved with the sister of the girl he saw die.
## 1739 Subaru and friends finally get a moment of peace, and Subaru goes on a certain secret mission that he must not let anyone find out about! However, even though Subaru is wearing a disguise, Petra and other children of the village immediately figure out who he is. Now that his mission was exposed within five seconds of it starting, what will happen with Subaru's "date course" with Emilia?
## 1740 Based on a true story. In Léon Blum high school in Créteil (France), a history teacher decides to have her weakest 10th grade class take a national history competition. This will change them.
## 1741 An aspiring dancer moves to New York City and becomes caught up in a whirlwind of flighty fair-weather friends, diminishing fortunes and career setbacks.
## 1742 A ghost and a French marquis wander through the Winter Palace in St Petersburg, encountering scenes from many different periods of its history.
## 1743 After a long voyage from Scotland, pianist Ada McGrath and her young daughter, Flora, are left with all their belongings, including a piano, on a New Zealand beach. Ada, who has been mute since childhood, has been sold into marriage to a local man named Alisdair Stewart. Making little attempt to warm up to Alisdair, Ada soon becomes intrigued by his Maori-friendly acquaintance, George Baines, leading to tense, life-altering conflicts.
## 1744 Rahim is in prison because of a debt he was unable to repay. During a two-day leave, he tries to convince his creditor to withdraw his complaint against the payment of part of the sum. But things don't go as planned. Is he truly a hero?
## 1745 Before eleven years old Tilda's parents can put her beloved grandfather in an old people's home due to his progressing Alzheimer disease, she takes him on one last adventure that subliminally threatens to tear her family apart.
## 1746 A romantic comedy centered on Dexter and Emma, who first meet during their graduation in 1988 and proceed to keep in touch regularly. The film follows what they do on July 15 annually, usually doing something together.
## 1747 15-year-old deep-thinking Welsh schoolboy Oliver Tate struggles to initiate and maintain a relationship with Jordana, his devilish, dark-haired classmate at their Swansea high school. As his parents' marriage begins to fall apart, similar problems arise in his relationship with Jordana.
## 1748 A down-on-his-luck crab fisherman embarks on a journey to get a young man with Down syndrome to a professional wrestling school in rural North Carolina and away from the retirement home where he’s lived for the past two and a half years.
## 1749 A successful, attractive, intelligent and brilliant advertising executive is longing to finally find emotional stability in his life, and decides to propose to his girlfriend. After she refuses his proposal, his life takes a turn when a new young lady enters his life.
## 1750 Baran the Bandit, released from prison after serving 35 years, searches for vengeance against his former best friend who betrayed him and stole his lover, teaming up with a young punk with his own demons along the way.
## 1751 Australian good girl Sandy and greaser Danny fell in love over the summer. But when they unexpectedly discover they're now in the same high school, will they be able to rekindle their romance despite their eccentric friends?
## 1752 Centers on the unlikely relationship between Ann Atwater, an outspoken civil rights activist, and C.P. Ellis, a local Ku Klux Klan leader who reluctantly co-chaired a community summit, battling over the desegregation of schools in Durham, North Carolina during the racially-charged summer of 1971. The incredible events that unfolded would change Durham and the lives of Atwater and Ellis forever.
## 1753 A controlling father’s attempts to ensure that his two children succeed in high school backfire after his son experiences a career-ending sports injury. Their familial bonds are eventually placed under severe strain by an unexpected tragedy.
## 1754 Doctor Strange, with the help of mystical allies both old and new, traverses the mind-bending and dangerous alternate realities of the Multiverse to confront a mysterious new adversary.
## 1755 Queen Ramonda, Shuri, M’Baku, Okoye and the Dora Milaje fight to protect their nation from intervening world powers in the wake of King T’Challa’s death. As the Wakandans strive to embrace their next chapter, the heroes must band together with the help of War Dog Nakia and Everett Ross and forge a new path for the kingdom of Wakanda.
## 1756 Headstrong Thomas Dunson starts a thriving Texas cattle ranch with the help of his faithful trail hand, Groot, and his protégé, Matthew Garth, an orphan Dunson took under his wing when Matt was a boy. In need of money following the Civil War, Dunson and Matt lead a cattle drive to Missouri, where they will get a better price than locally, but the crotchety older man and his willful young partner begin to butt heads on the exhausting journey.
## 1757 Eight-year-old Kevin McCallister makes the most of the situation after his family unwittingly leaves him behind when they go on Christmas vacation. But when a pair of bungling burglars set their sights on Kevin's house, the plucky kid stands ready to defend his territory. By planting booby traps galore, adorably mischievous Kevin stands his ground as his frantic mother attempts to race home before Christmas Day.
## 1758 When a Sumatran rat-monkey bites Lionel Cosgrove's mother, she's transformed into a zombie and begins killing (and transforming) the entire town while Lionel races to keep things under control.
## 1759 Das Experiment is a shocking psycho thriller about the potential for brutality that humans hide. Even more shocking is the fact that it’s based on an actual occurrence — a 1971 psychological experiment at Stanford University that was aborted prematurely when the experimenters lost control.
## 1760 Richard Hanney has a rude awakening when a glamorous female spy falls into his bed - with a knife in her back. Having a bit of trouble explaining it all to Scotland Yard, he heads for the hills of Scotland to try to clear his name by locating the spy ring known as The 39 Steps.
## 1761 In the post–World War II South, two families are pitted against a barbaric social hierarchy and an unrelenting landscape as they simultaneously fight the battle at home and the battle abroad.
## 1762 A young girl named Mija risks everything to prevent a powerful, multi-national company from kidnapping her best friend - a massive animal named Okja.
## 1763 When Mahendra, the son of Bāhubali, learns about his heritage, he begins to look for answers. His story is juxtaposed with past events that unfolded in the Mahishmati Kingdom.
## 1764 Tragedy, betrayal and a mysterious discovery fuel a woman's vengeance for the loss of her tribe and family.
## 1765 A 5-year-old girl embarks on a harrowing quest for survival amid the sudden rise and terrifying reign of the Khmer Rouge in Cambodia.
## 1766 When an IMF mission ends badly, the world is faced with dire consequences. As Ethan Hunt takes it upon himself to fulfill his original briefing, the CIA begin to question his loyalty and his motives. The IMF team find themselves in a race against time, hunted by assassins while trying to prevent a global catastrophe.
## 1767 The life story of Brazilian football legend, Pele.
## 1768 A reporter and a promiscuous young woman try to solve a series of child killings in a remote southern Italian town rife with superstition and a distrust of outsiders.
## 1769 Two warriors in pursuit of a stolen sword and a notorious fugitive are led to an impetuous, physically-skilled, teenage nobleman's daughter, who is at a crossroads in her life.
## 1770 Michele, Goffredo, Mirko and Vito are four friends who have participated in the battles of the student in Sixties. Now in the Seventies, the four friends don't know what to do, though young and with so many possibilities to find a job in life. Intellectuals marginalized and misunderstood, the four friends find themselves when they can in a restaurant to discuss their outlandish theories. A girl named Olga disrupts their life, but Michele is her favorite, although he does not know what to do with the girl.
## 1771 Tarzan was a small orphan who was raised by an ape named Kala since he was a child. He believed that this was his family, but on an expedition Jane Porter is rescued by Tarzan. He then finds out that he's human. Now Tarzan must make the decision as to which family he should belong to...
## 1772 The tender, heartbreaking story of a young man’s struggle to find himself, told across three defining chapters in his life as he experiences the ecstasy, pain, and beauty of falling in love, while grappling with his own sexuality.
## 1773 The former World Heavyweight Champion Rocky Balboa serves as a trainer and mentor to Adonis Johnson, the son of his late friend and former rival Apollo Creed.
## 1774 The evil Darth Sidious enacts his final plan for unlimited power -- and the heroic Jedi Anakin Skywalker must choose a side.
## 1775 When an armed, masked gang enter a Manhattan bank, lock the doors and take hostages, the detective assigned to effect their release enters negotiations preoccupied with corruption charges he is facing.
## 1776 Matthieu is a young and talented black box analyst on a mission to solve the reason behind the deadly crash of a brand new aircraft. Yet, when the case is closed by authorities, Matthieu cannot help but sense there is something wrong with the evidence. As he listens to the tracks again, he starts detecting some seriously disturbing details. Could the tape have been modified? Going against his boss' orders, Matthieu begins his own rogue investigation - an obsessional and dangerous quest for truth that will quickly threaten far more than his career...
## 1777 Deliveryman Jongsu is out on a job when he runs into Haemi, a girl who once lived in his neighborhood. She asks if he'd mind looking after her cat while she's away on a trip to Africa. On her return she introduces to Jongsu an enigmatic young man named Ben, who she met during her trip. And one day Ben tells Jongsu about his most unusual hobby...
## 1778 A family is forced to live in silence while hiding from creatures that hunt by sound.
## 1779 Spain, 2003. An accidental discovery leads Clarence to travel from the snowy mountains of Huesca to Equatorial Guinea, to visit the land where her father Jacobo and her uncle Kilian spent most of their youth, the island of Fernando Poo.
## 1780 A track coach in a small California town transforms a team of athletes into championship contenders.
## 1781 The Tramp and his dog companion struggle to survive in the inner city.
## 1782 Two hit men walk into a diner asking for a man called "the Swede". When the killers find the Swede, he's expecting them and doesn't put up a fight. Since the Swede had a life insurance policy, an investigator, on a hunch, decides to look into the murder. As the Swede's past is laid bare, it comes to light that he was in love with a beautiful woman who may have lured him into pulling off a bank robbery overseen by another man.
## 1783 While spending the summer at her grandmother's farm, a girl discovers a talent for communicating with horses and tries to tame a fierce stallion.
## 1784 In New York City, an insolent pickpocket, Skip McCoy, inadvertently sets off a chain of events when he targets ex-prostitute Candy and steals her wallet. Unaware that she has been making deliveries of highly classified information to the communists, Candy, who has been trailed by FBI agents for months in hopes of nabbing the spy ringleader, is sent by her ex-boyfriend, Joey, to find Skip and retrieve the valuable microfilm he now holds.
## 1785 An ambitious young man wins an heiress's heart but has to cope with his former girlfriend's pregnancy.
## 1786 An epic tale of three brothers and their father living in the remote wilderness of 1900s USA and how their lives are affected by nature, history, war, and love.
## 1787 Melvin Udall, a cranky, bigoted, obsessive-compulsive writer of romantic fiction, is rude to everyone he meets, including his gay neighbor, Simon. After Simon is hospitalized, Melvin finds his life turned upside down when he has to look after Simon's dog. In addition, Carol, the only waitress at the local diner who will tolerate him, must leave work to care for her sick son, making it impossible for Melvin to eat breakfast.
## 1788 Trapped on her family’s isolated farm, Pearl must tend to her ailing father under the bitter and overbearing watch of her devout mother. Lusting for a glamorous life like she’s seen in the movies, Pearl’s ambitions, temptations, and repressions collide.
## 1789 King T'Challa returns home to the reclusive, technologically advanced African nation of Wakanda to serve as his country's new leader. However, T'Challa soon finds that he is challenged for the throne by factions within his own country as well as without. Using powers reserved to Wakandan kings, T'Challa assumes the Black Panther mantle to join with ex-girlfriend Nakia, the queen-mother, his princess-kid sister, members of the Dora Milaje (the Wakandan 'special forces') and an American secret agent, to prevent Wakanda from being dragged into a world war.
## 1790 The story of an Indian boy named Pi, a zookeeper's son who finds himself in the company of a hyena, zebra, orangutan, and a Bengal tiger after a shipwreck sets them adrift in the Pacific Ocean.
## 1791 Two teenage girls embark on a series of destructive pranks in which they consume and destroy the world around them.
## 1792 In this anime anthology, a salvage ship crew happens upon a haunted vessel in "Magnetic Rose"; a cold tablet turns a lab worker into a biological weapon in "Stink Bomb"; and an urban populace carries on an endless war with an unseen foe in "Cannon Fodder."
## 1793 While the gang travel to Scotland to visit Daphne's cousin and witness the Highland Games, they find themselves terrorized by the legendary Loch Ness Monster.
## 1794 It's the 1940s, and the notorious Axe Gang terrorizes Shanghai. Small-time criminals Sing and Bone hope to join, but they only manage to make lots of very dangerous enemies. Fortunately for them, kung fu masters and hidden strength can be found in unlikely places. Now they just have to take on the entire Axe Gang.
## 1795 A vacuum repairman moonlights as a street musician and hopes for his big break. One day a Czech immigrant, who earns a living selling flowers, approaches him with the news that she is also an aspiring singer-songwriter. The pair decide to collaborate, and the songs that they compose reflect the story of their blossoming love.
## 1796 Pietro Zinni is asked by the police to revive the old gang to create a task force that will stop the spread of smart drugs.
## 1797 Nicolas Cage is Charlie Kaufman, a confused L.A. screenwriter overwhelmed by feelings of inadequacy, sexual frustration, self-loathing, and by the screenwriting ambitions of his freeloading twin brother Donald. While struggling to adapt "The Orchid Thief," by Susan Orlean, Kaufman's life spins from pathetic to bizarre. The lives of Kaufman, Orlean's book, become strangely intertwined as each one's search for passion collides with the others'.
## 1798 A young refugee of the Sudanese Civil War who wins a lottery for relocation to the United States with three other lost boys. Encountering the modern world for the first time, they develop an unlikely friendship with a brash American woman assigned to help them, but the young man struggles to adjust to this new life and his feelings of guilt about the brother he left behind.
## 1799 The sexy Gin is the new love of Hache, but this can not forget his former girlfriend, so the love triangle is inevitable.
## 1800 Obsessed with teaching his victims the value of life, a deranged, sadistic serial killer abducts the morally wayward. Once captured, they must face impossible choices in a horrific game of survival. The victims must fight to win their lives back, or die trying...
## 1801 Two lost souls visiting Tokyo -- the young, neglected wife of a photographer and a washed-up movie star shooting a TV commercial -- find an odd solace and pensive freedom to be real in each other's company, away from their lives in America.
## 1802 David Carr is a British Communist who is unemployed. In 1936, when the Spanish Civil War begins, he decides to fight for the Republican side, a coalition of liberals, communists and anarchists, so he joins the POUM militia and witnesses firsthand the betrayal of the Spanish revolution by Stalin's followers and Moscow's orders.
## 1803 300 years of a remarkable musical instrument. Crafted by the Italian master Bussotti (Cecchi) in 1681, the red violin has traveled through Austria, England, China, and Canada, leaving both beauty and tragedy in its wake. In Montreal, Samuel L Jackson plays an appraiser going over its complex history.
## 1804 When a Spanish Jesuit goes into the South American wilderness to build a mission in the hope of converting the Indians of the region, a slave hunter is converted and joins his mission. When Spain sells the colony to Portugal, they are forced to defend all they have built against the Portuguese aggressors.
## 1805 An adaptation of Mark Waid's "Tower of Babel" story from the JLA comic. Vandal Savage steals confidential files Batman has compiled on the members of the Justice League, and learns all their weaknesses.
## 1806 Max Rockatansky returns as the heroic loner who drives the dusty roads of a postapocalyptic Australian Outback in an unending search for gasoline. Arrayed against him and the other scraggly defendants of a fuel-depot encampment are the bizarre warriors commanded by the charismatic Lord Humungus, a violent leader whose scruples are as barren as the surrounding landscape.
## 1807 A wealthy New York investment banking executive hides his alternate psychopathic ego from his co-workers and friends as he escalates deeper into his illogical, gratuitous fantasies.
## 1808 A Korean American family moves to an Arkansas farm in search of its own American dream. Amidst the challenges of this new life in the strange and rugged Ozarks, they discover the undeniable resilience of family and what really makes a home.
## 1809 Hoping to find a sense of connection to her late mother, Gorgeous takes a trip to the countryside to visit her aunt at their ancestral house. She invites her six friends, Prof, Melody, Mac, Fantasy, Kung Fu, and Sweet, to join her. The girls soon discover that there is more to the old house than meets the eye.
## 1810 French adaptation of Marcel Pagnol's memoirs of his childhood in the countryside, early in the century.
## 1811 A misfit group of World War II American soldiers goes AWOL to rob a bank behind German lines.
## 1812 Lyla and Louis, a singer and a musician, fall in love, but are soon compelled to separate. Lyla is forced to give up her newborn but unknown to her, he grows up to become a musical genius.
## 1813 Two children, Ignacio and Enrique, know love, the movies and fear in a religious school at the beginning of the 1960s. Father Manolo, director of the school and its professor of literature, is witness to and part of these discoveries. The three are followed through the next few decades, their reunion marking life and death.
## 1814 A former serial killer with Alzheimer's fights to protect his daughter from her mysterious boyfriend who may be a serial killer too.
## 1815 Ex-hitman John Wick comes out of retirement to track down the gangsters that took everything from him.
## 1816 A shy 11-year-old's life takes a strange turn when she discovers three hungry goblins living in the attic of her new house. She misses her old life. She misses her father so very much. Until she makes some new ghoulish friends.
## 1817 Two different social classes collide when Cary Scott, a wealthy upper-class widow, falls in love with her much younger and down-to-earth gardener, prompting disapproval and criticism from her children and country club friends.
## 1818 The Planet Express crew return from cancellation, only to be robbed blind by hideous "sprunging" scam artists. Things go from bad to worse when the scammers hack Bender, start traveling through time, and take Earth over entirely! Will the crew be able to save the day, or will Bender's larcenous tendencies and their general incompetence doom them all?
## 1819 Pepa resolves to kill herself with a batch of sleeping-pill-laced gazpacho after her lover leaves her. Fortunately, she is interrupted by a deliciously chaotic series of events.
## 1820 A new technologically-superior Soviet nuclear sub, the Red October, is heading for the U.S. coast under the command of Captain Marko Ramius. The American government thinks Ramius is planning to attack. A lone CIA analyst has a different idea: he thinks Ramius is planning to defect, but he has only a few hours to find him and prove it - because the entire Russian naval and air commands are trying to find him, too. The hunt is on!
## 1821 A Russian and a German sniper play a game of cat-and-mouse during the Battle of Stalingrad in WWII.
## 1822 The iconic "gentleman thief" Lupin III returns in an action-packed, continent-spanning adventure, as Lupin III and his colorful underworld companions race to uncover the secrets of the mysterious Bresson Diary, before it falls into the hands of a dark cabal that will stop at nothing to resurrect the Third Reich.
## 1823 Inspired by her mom's rebellious past and a confident new friend, a shy 16-year-old publishes an anonymous zine calling out sexism at her school.
## 1824 Purehearted teen Lazzaro is content living as a sharecropper in rural Italy, but an unlikely friendship with the marquise’s son will change his world.
## 1825 Asterix and Obelix depart on an adventure to complete twelve impossible tasks to prove to Caesar that they are as strong as the Gods. You'll roar with laughter as they outwit, outrun, and generally outrage the very people who are trying to prove them "only human".
## 1826 In war-torn colonial America, in the midst of a bloody battle between British, the French and Native American allies, the aristocratic daughter of a British Colonel and her party are captured by a group of Huron warriors. Fortunately, a group of three Mohican trappers comes to their rescue.
## 1827 The wife of an abusive criminal finds solace in the arms of a kind regular guest in her husband's restaurant.
## 1828 A romantic drifter gets caught between a corrupt tycoon and his voluptuous wife.
## 1829 Immediately after their miscarriage, the US diplomat Robert Thorn adopts the newborn Damien without the knowledge of his wife. Yet what he doesn’t know is that their new son is the son of the devil.
## 1830 In this Frenco-Italian gangster parody, a shop keeper on his way to an Italian holiday suffers a crash which totals his car. The culprit can only compensate his ruined trip by driving an American friends car from Napels to Bordeaux, but as it happens to be filled with such contraband as stolen money, jewelry and drugs, the involuntary and unwitting companions in crime soon attract all but recreational attention from the "milieu".
## 1831 A man arrives in Helsinki and gets beaten up so severely he develops amnesia. Unable to remember his name or anything from his past life, he cannot get a job or an apartment, so he starts living on the outskirts of the city and slowly starts putting his life back on track.
## 1832 Uruguay, 1973. Having been crushed by the military dictatorship, surviving members of the Tupamaro guerillas are imprisoned and tortured. They must find a way to endure the coming 12 years.
## 1833 After taking a very nasty fall on Christmas Eve, grinchy Jorge blacks out and wakes up one year later, with no memory of the year that has passed. He soon realizes that he’s doomed to keep waking up on Christmas Eve after Christmas Eve, having to deal with the aftermath of what his other self has done the other 364 days of the year.
## 1834 When the pressure to be royal becomes too much for Mal, she returns to the Isle of the Lost where her archenemy Uma, Ursula's daughter, has taken her spot as self-proclaimed queen.
## 1835 A bitter old miser who makes excuses for his uncaring nature learns real compassion when three ghosts visit him on Christmas Eve.
## 1836 Abandoned by her father, a young woman embarks on a thousand-mile odyssey through the backroads of America where she meets a disenfranchised drifter. But despite their best efforts, all roads lead back to their terrifying pasts and to a final stand that will determine whether their love can survive their otherness.
## 1837 What do you dream of when you're 16-years-old and in a seaside resort in Normandy in the 1980s? A best friend? A lifelong teen pact? Scooting off on adventures on a boat or a motorbike? Living life at breakneck speed? No. You dream of death. Because you can't get a bigger kick than dying. And that's why you save it till the very end. The summer holidays are just beginning, and this story recounts how Alexis grew into himself.
## 1838 From his childhood in Poland to his adolescence in Nice to his years as a student in Paris and his tough training as a pilot during World War II, this tragi-comedy tells the romantic story of Romain Gary, one of the most famous French novelists and sole writer to have won the Goncourt Prize for French literature two times.
## 1839 Boxer "Irish" Micky Ward's unlikely road to the world light welterweight title. His Rocky-like rise was shepherded by half-brother Dicky, a boxer-turned-trainer who rebounded in life after nearly being KO'd by drugs and crime.
## 1840 Walt Disney's timeless masterpiece is an extravaganza of sight and sound! See the music come to life, hear the pictures burst into song and experience the excitement that is Fantasia over and over again.
## 1841 Collin must make it through his final three days of probation for a chance at a new beginning. He and his troublemaking childhood best friend, Miles, work as movers, and when Collin witnesses a police shooting, the two men’s friendship is tested as they grapple with identity and their changed realities in the rapidly-gentrifying neighborhood they grew up in.
## 1842 An adaptation of F. Scott Fitzgerald's Long Island-set novel, where Midwesterner Nick Carraway is lured into the lavish world of his neighbor, Jay Gatsby. Soon enough, however, Carraway will see through the cracks of Gatsby's nouveau riche existence, where obsession, madness, and tragedy await.
## 1843 A high school basketball player’s life turns upside down after free-falling into the harrowing world of drug addiction.
## 1844 After an untimely death, a newly dead New England couple seek help from a deranged demon exorcist to scare an affluent New York family out of their home.
## 1845 Genial, bumbling Monsieur Hulot loves his top-floor apartment in a grimy corner of the city, and cannot fathom why his sister's family has moved to the suburbs. Their house is an ultra-modern nightmare, which Hulot only visits for the sake of stealing away his rambunctious young nephew. Hulot's sister, however, wants to win him over to her new way of life, and conspires to set him up with a wife and job.
## 1846 Queen Poppy and Branch make a surprising discovery — there are other Troll worlds beyond their own, and their distinct differences create big clashes between these various tribes. When a mysterious threat puts all of the Trolls across the land in danger, Poppy, Branch, and their band of friends must embark on an epic quest to create harmony among the feuding Trolls to unite them against certain doom.
## 1847 Mia Hall, a talented young cellist, thought the most difficult decision she would ever have to make would be whether to pursue her musical dreams at prestigious Juilliard or follow her heart to be with the love of her life, Adam, a rock singer/guitarist. However, a car wreck changes everything in an instant, and now Mia's life hangs in the balance. Suspended between life and death, Mia faces a choice that will decide her future.
## 1848 An acclaimed writer, his ex-wife, and their teenaged children come to terms with the complexities of love in all its forms over the course of one tumultuous year.
## 1849 During his 18 years in Folsom Prison, street-gang leader Santana rules over all the drug-and-murder activities behind bars. Upon his release, Santana goes back to his old neighborhood, intending to lead a peaceful, crime-free life. But his old gang buddies force him back into his old habits.
## 1850 While vacationing with a friend in Paris, an American girl is kidnapped by a gang of human traffickers intent on selling her into forced prostitution. Working against the clock, her ex-spy father must pull out all the stops to save her. But with his best years possibly behind him, the job may be more than he can handle.
## 1851 After returning home from the Vietnam War, veteran Jacob Singer struggles to maintain his sanity. Plagued by hallucinations and flashbacks, Singer rapidly falls apart as the world and people around him morph and twist into disturbing images. His girlfriend, Jezzie, and ex-wife, Sarah, try to help, but to little avail. Even Singer's chiropractor friend, Louis, fails to reach him as he descends into madness.
## 1852 Andy moves to New York to work in the fashion industry. Her boss is extremely demanding, cruel and won't let her succeed if she doesn't fit into the high class elegant look of their magazine.
## 1853 An idealistic FBI agent is enlisted by a government task force to aid in the escalating war against drugs at the border area between the U.S. and Mexico.
## 1854 Shaggy is turned into a werewolf, and it's up to Scooby, Scrappy and Shaggy's girlfriend to help him win a race against other monsters, and become human again.
## 1855 Ebenezer Scrooge malcontentedly shuffles through life as a cruel, miserly businessman; until he is visited by three spirits on Christmas Eve who show him how his unhappy childhood and adult behavior has left him a selfish, lonely old man.
## 1856 Liana and Alexa (Barbie and Teresa) are best friends who share everything, including their love of singing. One day while walking through the forest home from the village, the girls meet an old beggar who gives them a magical mirror. As they clean the mirror and sing, a musical apprentice muse named Melody appears in the mirror's surface, and tells the girls about the secret of the Diamond Castle.
## 1857 When an office full of Chicago real estate salesmen is given the news that all but the top two will be fired at the end of the week, the atmosphere begins to heat up. Shelley Levene, who has a sick daughter, does everything in his power to get better leads from his boss, John Williamson, but to no avail. When his coworker Dave Moss comes up with a plan to steal the leads, things get complicated for the tough-talking salesmen.
## 1858 A head chef balances multiple personal and professional crises at a popular restaurant in London.
## 1859 A young woman's plans to propose to her girlfriend while at her family's annual holiday party are upended when she discovers her partner hasn't yet come out to her conservative parents.
## 1860 In 1879, during the Anglo-Zulu War, man-of-the-people Lt. Chard and snooty Lt. Bromhead are in charge of defending the isolated and vastly outnumbered Natal outpost of Rorke's Drift from tribal hordes.
## 1861 Two out-of-work actors -- the anxious, luckless Marwood and his acerbic, alcoholic friend, Withnail -- spend their days drifting between their squalid flat, the unemployment office and the pub. When they take a holiday "by mistake" at the country house of Withnail's flamboyantly gay uncle, Monty, they encounter the unpleasant side of the English countryside: tedium, terrifying locals and torrential rain.
## 1862 When her grandson is kidnapped during the Tour de France, Madame Souza and her beloved pooch Bruno team up with the Belleville Sisters—an aged song-and-dance team from the days of Fred Astaire—to rescue him.
## 1863 In this riot of frantic disguises and mistaken identities, Victor Pivert, a blustering, bigoted French factory owner, finds himself taken hostage by Slimane, an Arab rebel leader. The two dress up as rabbis as they try to elude not only assasins from Slimane's country, but also the police, who think Pivert is a murderer. Pivert ends up posing as Rabbi Jacob, a beloved figure who's returned to France for his first visit after 30 years in the United States. Adding to the confusion are Pivert's dentist-wife, who thinks her husband is leaving her for another woman, their daughter, who's about to get married, and a Parisian neighborhood filled with people eager to celebrate the return of Rabbi Jacob.
## 1864 An army ranger and his dog embark on a road trip along the Pacific Coast Highway to attend a friend's funeral.
## 1865 An unemployed Brit vents his rage on unsuspecting strangers as he embarks on a nocturnal London odyssey.
## 1866 Pianist David Helfgott, driven by his father and teachers, has a breakdown. Years later he returns to the piano, to popular if not critical acclaim.
## 1867 Rani, a 24-year-old homely girl, decides to go on her honeymoon alone when her fiancé calls off the wedding. Traveling around Europe, she finds joy, makes friends, and gains new-found independence.
## 1868 Isabella, a young model, is murdered by a mysterious masked figure at a fashion house in Rome. When her diary, which details the house employees many vices, disappears, the masked killer begins killing off all the models in and around the house to find it.
## 1869 Stingo, a young writer, moves to Brooklyn in 1947 to begin work on his first novel. As he becomes friendly with Sophie and her lover Nathan, he learns that she is a Holocaust survivor. Flashbacks reveal her harrowing story, from pre-war prosperity to Auschwitz. In the present, Sophie and Nathan's relationship increasingly unravels as Stingo grows closer to Sophie and Nathan's fragile mental state becomes ever more apparent.
## 1870 Persuasion is the newest adaptation of the classic Jane Austen novel of the same name published in 1818. Anne falls deeply in love with handsome young naval officer Frederick Wentworth at the age of nineteen.
## 1871 Kris Kringle, seemingly the embodiment of Santa Claus, is asked to portray the jolly old fellow at Macy's following his performance in the Thanksgiving Day parade. His portrayal is so complete that many begin to question if he truly is Santa Claus, while others question his sanity.
## 1872 When Seth Brundle makes a huge scientific and technological breakthrough in teleportation, he decides to test it on himself. Unbeknownst to him, a common housefly manages to get inside the device and the two become one.
## 1873 Members of the Granite Mountain Hotshots battle deadly wildfires to save an Arizona town.
## 1874 A young queen falls in love with her physician, and they start a revolution that changes their nation forever.
## 1875 A Victorian Englishman travels to the far future and finds that humanity has divided into two hostile species.
## 1876 Bill O'Neal infiltrates the Black Panthers on the orders of FBI Agent Mitchell and J. Edgar Hoover. As Black Panther Chairman Fred Hampton ascends—falling for a fellow revolutionary en route—a battle wages for O’Neal’s soul.
## 1877 When the renegade crew of Serenity agrees to hide a fugitive on their ship, they find themselves in an action-packed battle between the relentless military might of a totalitarian regime who will destroy anything – or anyone – to get the girl back and the bloodthirsty creatures who roam the uncharted areas of space. But... the greatest danger of all may be on their ship.
## 1878 In 1920s Ireland young doctor Damien O'Donovan prepares to depart for a new job in a London hospital. As he says his goodbyes at a friend's farm, British Black and Tans arrive, and a young man is killed. Damien joins his brother Teddy in the Irish Republican Army, but political events are soon set in motion that tear the brothers apart.
## 1879 In November 2015, a series of unprecedented and deadly attacks hits Paris. The anti-terrorist police led by Heloise and her chief commander Fred - face an unprecedented level of pressure: in a race against the clock, they must find the perpetrators of the attacks as quickly as possible before they can strike again, travelling across Europe and beyond in one of the biggest manhunts in history.
## 1880 Jacques Mesrine, a loyal son and dedicated soldier, is back home and living with his parents after serving in the Algerian War. Soon he is seduced by the neon glamour of sixties Paris and the easy money it presents. Mentored by Guido, Mesrine turns his back on middle class law-abiding and soon moves swiftly up the criminal ladder.
## 1881 A “modern” young woman of the 16th century, Danielle is as independent and wise as she is beautiful and kind. Against remarkable odds, she stands up to her scheming stepmother and works miracles on the lives of everyone around her, including the crown prince of France!
## 1882 The dramatised story of the Irish civil rights protest march on January 30 1972 which ended in a massacre by British troops.
## 1883 A disc jockey, a pimp and an Italian tourist escape from jail in New Orleans.
## 1884 Humbert Humbert is a middle-aged British novelist who is both appalled by and attracted to the vulgarity of American culture. When he comes to stay at the boarding house run by Charlotte Haze, he soon becomes obsessed with Lolita, the woman's teenaged daughter.
## 1885 A vampire relates his epic life story of love, betrayal, loneliness, and dark hunger to an over-curious reporter.
## 1886 All the major DC superheroes are starring in their own films, all but the Teen Titans, so Robin is determined to remedy this situation by getting over his role as a sidekick and becoming a movie star. Thus, with a few madcap ideas and an inspirational song in their hearts, the Teen Titans head to Hollywood to fulfill their dreams.
## 1887 The mystery begins when Shaggy and Scooby win tickets to "WrestleMania" and convince the crew to go with them to WWE City. But this city harbors a spooky secret - a ghastly Ghost Bear holds the town in his terrifying grip! To protect the coveted WWE Championship Title, the gang gets help from WWE Superstars like John Cena, Triple H, Sin Cara, Brodus Clay, AJ Lee, The Miz and Kane. Watch Scooby and the gang grapple with solving this case before it's too late.
## 1888 Alice Gould, a private investigator, pretends to be mentally ill in order to enter a psychiatric hospital and gather evidence for the case she is working on: the death of a patient in unclear circumstances.
## 1889 The second part of the Seventh Company adventures.
## 1890 The account of keepers of the Warsaw Zoo, Jan and Antonina Zabinski, who helped save hundreds of people and animals during the Nazi invasion.
## 1891 A woman searches for her adult son, who was taken away from her decades ago when she was forced to live in a convent.
## 1892 Housewife and mother Penny Chenery agrees to take over her ailing father's Virginia-based Meadow Stables, despite her lack of horse-racing knowledge. Against all odds, Chenery - with the help of veteran trainer Lucien Laurin - manages to navigate the male-dominated business, ultimately fostering the first Triple Crown winner in 25 years.
## 1893 A depressed white-collar worker tries hypnotherapy, only to find himself in a perpetual state of devil-may-care bliss that prompts him to start living by his own rules, and hatch a hapless attempt to embezzle money from his soul-killing employers.
## 1894 Ricky and his family have been fighting an uphill struggle against debt since the 2008 financial crash. An opportunity to wrestle back some independence appears with a shiny new van and the chance to run a franchise as a self-employed delivery driver. It's hard work, and his wife's job as a carer is no easier. The family unit is strong but when both are pulled in different directions everything comes to breaking point.
## 1895 During World War II, a small group of survivors is stranded in a lifeboat together after the ship they were traveling on is destroyed by a German U-boat.
## 1896 A rule bound head butler's world of manners and decorum in the household he maintains is tested by the arrival of a housekeeper who falls in love with him in post-WWI Britain. The possibility of romance and his master's cultivation of ties with the Nazi cause challenge his carefully maintained veneer of servitude.
## 1897 After a series of mysterious deaths befalls their small town, an offbeat group of friends become the target of a masked killer.
## 1898 Loki is banished from Asgard once again and must face his toughest opponents yet: the Simpsons and Springfield’s mightiest heroes. The God of Mischief teams up with Bart Simpson in the ultimate crossover event paying tribute to the Marvel Cinematic Universe of superheroes and villains.
## 1899 This psychedelic tour of life after death is seen entirely from the point of view of Oscar, a young American drug dealer and addict living in Tokyo with his prostitute sister, Linda. When Oscar is killed by police during a bust gone bad, his spirit journeys from the past -- where he sees his parents before their deaths -- to the present -- where he witnesses his own autopsy -- and then to the future, where he looks out for his sister from beyond the grave.
## 1900 Jonathan Harker, a real estate agent, goes to Transylvania to visit the mysterious Count Dracula and formalize the purchase of a property in Wismar. Once Jonathan is caught under his evil spell, Dracula travels to Wismar where he meets the beautiful Lucy, Jonathan's wife, while a plague spreads through the town, now ruled by death.
## 1901 A lonely widowed housewife does her daily chores and takes care of her apartment where she lives with her teenage son, and turns the occasional trick to make ends meet. Slowly, her ritualized daily routines begin to fall apart.
## 1902 Félix, disguised as Father Christmas, hands out leaflets advertising a sexy Christmas party. His place is taken by an African Santa Claus and he returns to his caravan only to find his girlfriend Josette about to leave him. When he comes after her, she takes refuge at "SOS Distress", run by two neurotics, Thérèse and Pierre.
## 1903 Rudy grew up in a steel mill town where most people ended up working, but wanted to play football at Notre Dame instead. There were only a couple of problems. His grades were a little low, his athletic skills were poor, and he was only half the size of the other players. But he had the drive and the spirit of 5 people and has set his sights upon joining the team.
## 1904 Fletcher Christian successfully leads a revolt against the ruthless Captain Bligh on the HMS Bounty. However, Bligh returns one year later, hell bent on avenging his captors.
## 1905 This film originated as a play in Paris. The story focuses on the one-day adventures of Bertrand Barnier played with a genius of French cinema, Louis de Funes. In the same morning he learns that his daughter is pregnant, an employee stole a large amount of money from his company, his maid is about to resign in order to marry a wealthy neighbor and his body builder is interested in marrying his daughter. The seemingly complicated story-line is full of comedy or errors and some of the most hilarious mime scenes of the French cinema.
## 1906 After an encounter with UFOs, an electricity linesman feels undeniably drawn to an isolated area in the wilderness where something spectacular is about to happen.
## 1907 After surviving a car accident that took the life of her boyfriend, a teenage girl believes he's attempting to reconnect with her from the after world.
## 1908 Seven years since the Monsterpocalypse began, Joel Dawson has been living underground in order to survive. But after reconnecting over radio with his high school girlfriend Aimee, Joel decides to venture out to reunite with her, despite all the dangerous monsters that stand in his way.
## 1909 After being punished for getting into trouble, a mischievous young man is sent to train under a brutal, but slovenly old beggar, who teaches him the secret of the Drunken Fist.
## 1910 A Russian teenager, living in London, dies during childbirth but leaves clues to a midwife in her journal, that could tie her child to a rape involving a violent Russian mob family.
## 1911 Zhenya and Boris are going through a vicious divorce marked by resentment, frustration and recriminations. Already embarking on new lives, each with a new partner, they are impatient to start again, to turn the page – even if it means threatening to abandon their 12-year-old son Alyosha. Until, after witnessing one of their fights, Alyosha disappears...
## 1912 The story of Lyudmila Pavlichenko, the most successful female sniper in history.
## 1913 Boy, an 11-year-old child and devout Michael Jackson fan who lives on the east coast of New Zealand in 1984, gets a chance to know his absentee criminal father, who has returned to find a bag of money he buried years ago.
## 1914 A boy named George Jung grows up in a struggling family in the 1950's. His mother nags at her husband as he is trying to make a living for the family. It is finally revealed that George's father cannot make a living and the family goes bankrupt. George does not want the same thing to happen to him, and his friend Tuna, in the 1960's, suggests that he deal marijuana. He is a big hit in California in the 1960's, yet he goes to jail, where he finds out about the wonders of cocaine. As a result, when released, he gets rich by bringing cocaine to America. However, he soon pays the price.
## 1915 The Egyptian Queen Cleopatra bets against the Roman Emperor, Julius Caesar, that her people are still great, even if the times of the Pharaohs has long passed. She vows (against all logic) to build a new palace for Caesar within three months. Since all her architects are either busy otherwise or too conservative in style, this ambivalent honor falls to Edifis. He is to build the palace and be covered in gold or, if not, his fate is to be eaten by crocodiles. Edifis calls upon an old friend to help him out: The fabulous Druid Getafix from Gaul, who brews a fantastic potion that gives supernatural strength. In order to help and protect the old Druid, Asterix and Obelix accompany him on his journey to Egypt. When Julius Caesar gets wind of the project succeeding, he has the building site attacked by his troops in order to win the bet and not lose face. But just like the local pirates, he hasn't counted on Asterix and Obelix.
## 1916 A young lawyer defends a black man accused of murdering two white men who raped his 10-year-old daughter, sparking a rebirth of the KKK.
## 1917 A death row inmate turns for spiritual guidance to a local nun in the days leading up to his scheduled execution for the murders of a young couple.
## 1918 The extraordinary tale of Harriet Tubman's escape from slavery and transformation into one of America's greatest heroes. Her courage, ingenuity and tenacity freed hundreds of slaves and changed the course of history.
## 1919 Powered with incredible speed, Sonic The Hedgehog embraces his new home on Earth. That is, until Sonic sparks the attention of super-uncool evil genius Dr. Robotnik. Now it’s super-villain vs. super-sonic in an all-out race across the globe to stop Robotnik from using Sonic’s unique power for world domination.
## 1920 Georges has Down syndrome, living at a mental-institution, Harry is a busy businessman, giving lectures for young aspiring salesmen. He is successful in his business life, but his social life is a disaster since his wife left him and took their two children with her. This weekend his children came by train to meet him, but Harry, working as always, forgot to pick them up. Neither his wife or his children want to see him again and he is driving around on the country roads, anguished and angry. He almost runs over Georges, on the run from the institution since everybody else went home with their parents except him, whose mother is dead. Harry tries to get rid of Georges but he won't leave his new friend. Eventually a special friendship forms between the two of them, a friendship which makes Harry a different person.
## 1921 When U.S. Rangers and an elite Delta Force team attempt to kidnap two underlings of a Somali warlord, their Black Hawk helicopters are shot down, and the Americans suffer heavy casualties, facing intense fighting from the militia on the ground.
## 1922 A young rock band, half from England and half from the US, drop out of college and move to the Sunset Strip to chase their dreams.
## 1923 Oakland, California. Young Afro-American Oscar Grant crosses paths with family members, friends, enemies and strangers before facing his fate on the platform at Fruitvale Station, in the early morning hours of New Year's Day 2009.
## 1924 In December 2004, close-knit family Maria, Henry and their three sons begin their winter vacation in Thailand. But the day after Christmas, the idyllic holiday turns into an incomprehensible nightmare when a terrifying roar rises from the depths of the sea, followed by a wall of black water that devours everything in its path. Though Maria and her family face their darkest hour, unexpected displays of kindness and courage ameliorate their terror.
## 1925 Two American tourists in England are attacked by a werewolf that none of the locals will admit exists.
## 1926 The young Bavarian princess Elisabeth, who all call Sissi, goes with her mother and older sister Néné to Austria where Néné will be wed to an emperor named Franz Joseph, Yet unexpectedly Franz runs into Sissi while out fishing and they fall in love.
## 1927 Lucky Prescott's life is changed forever when she moves from her home in the city to a small frontier town and befriends a wild mustang named Spirit.
## 1928 Natasha Romanoff, also known as Black Widow, confronts the darker parts of her ledger when a dangerous conspiracy with ties to her past arises. Pursued by a force that will stop at nothing to bring her down, Natasha must deal with her history as a spy and the broken relationships left in her wake long before she became an Avenger.
## 1929 Three Italians travel to their hometown to vote for elections: Pasquale is a Southern immigrant living in Munich who's genuinely happy to come back to Italy, even if just for a few days, but the country he dreams of is far from reality; Furio travels to Rome with his family, but his niggling attitude threatens to push his wife Magda over the edge; young Mimmo is also going to Rome, but the trip is repeatedly interrupted by worries about his grandma's health.
## 1930 Scooby-Doo and the Mystery Gang visit Oakhaven, Massachusetts to seek strange goings on involving a famous horror novelist and his ancestor who is rumored be a witch.
## 1931 Romeo Montague and Juliet Capulet fall in love against the wishes of their feuding families. Driven by their passion, the young lovers defy their destiny and elope, only to suffer the ultimate tragedy.
## 1932 A drama about a Maori family living in Auckland, New Zealand. Lee Tamahori tells the story of Beth Heke’s strong will to keep her family together during times of unemployment and abuse from her violent and alcoholic husband.
## 1933 A girl dying of leukemia compiles a list of things she'd like to do before passing away. Topping the list is her desire to lose her virginity.
## 1934 When an evil spirit known as Pitch lays down the gauntlet to take over the world, the immortal Guardians must join forces for the first time to protect the hopes, beliefs and imagination of children all over the world.
## 1935 Set in Harlem in 1987, Claireece "Precious" Jones is a 16-year-old African American girl born into a life no one would want. She's pregnant for the second time by her absent father; at home, she must wait hand and foot on her mother, an angry woman who abuses her emotionally and physically. School is chaotic and Precious has reached the ninth grade with good marks and a secret; She can't read.
## 1936 It's 1982, and Taeko is 27 years old, unmarried, and has lived her whole life in Tokyo. She decides to visit her family in the countryside, where she begins to reconnect to forgotten longings. In lyrical switches between the present and the past, Taeko contemplates the arc of her life, and wonders if she has been true to the dreams of her childhood self.
## 1937 Famed swordsman and poet Cyrano de Bergerac is in love with his cousin Roxane. He has never expressed his love for her as he his large nose undermines his self-confidence. Then he finds a way to express his love to her, indirectly.
## 1938 In 1993, Max was 13 when he was offered his first camera. For 25 years he will not stop filming. The bunch of friends, the loves, the successes, the failures. From the 90s to the 2010s, it is the portrait of a whole generation that is emerging through its objective.
## 1939 Chloe, a teenager who is confined to a wheelchair, is homeschooled by her mother, Diane. Chloe soon becomes suspicious of her mother and begins to suspect that she may be harboring a dark secret.
## 1940 A unique friendship develops when a little girl and her dying mother inherit a cook - Mr. Church. What begins as an arrangement that should only last six months, instead spans fifteen years.
## 1941 Guts, an immensely strong sword-for-hire, has little direction in his life, simply fighting one battle after the next. However, this all changes suddenly when he meets and is bested by Griffith, a beautiful and charismatic young man who leads the Band of the Hawk mercenary army. After Guts joins the Band and the relationship between the two men begins to blossom, Casca, the tough, lone swordswoman in the Band of the Hawk, struggles to accept Guts and the influence he has on the world around her. While the two men begin to fight together, Griffith continues to rise to power, all seemingly in order to reach his mysterious, prophesied goals. What lengths will Guts and Griffith go to in order to reach these goals, and where will fate take the two men?
## 1942 Four men from different parts of the globe, all hiding from their pasts in the same remote South American town, agree to risk their lives transporting several cases of dynamite (which is so old that it is dripping unstable nitroglycerin) across dangerous jungle terrain.
## 1943 Police sergeant Neil Howie is called to an island village in search of a missing girl whom the locals claim never existed. Stranger still, however, are the rituals that take place there.
## 1944 This English-language adaptation of the Swedish novel by Stieg Larsson follows a disgraced journalist, Mikael Blomkvist, as he investigates the disappearance of a weary patriarch's niece from 40 years ago. He is aided by the pierced, tattooed, punk computer hacker named Lisbeth Salander. As they work together in the investigation, Blomkvist and Salander uncover immense corruption beyond anything they have ever imagined.
## 1945 When Scooby and the gang get trapped in a video game created for them, they must fight against the 'Phantom Virus.' To escape the game they must go level by level and defeat the game once and for all.
## 1946 Mike Sullivan works as a hit man for crime boss John Rooney. Sullivan views Rooney as a father figure, however after his son is witness to a killing, Mike Sullivan finds himself on the run in attempt to save the life of his son and at the same time looking for revenge on those who wronged him.
## 1947 Vada Sultenfuss is obsessed with death. Her mother is dead, and her father runs a funeral parlor. She is also in love with her English teacher, and joins a poetry class over the summer just to impress him. Thomas J., her best friend, is "allergic to everything", and sticks with Vada despite her hangups. When Vada's father hires Shelly, and begins to fall for her, things take a turn to the worse...
## 1948 Batman works desperately to find a bomb planted by the Joker while Amanda Waller sends her newly-formed Suicide Squad to break into Arkham Asylum and recover vital information stolen by the Riddler.
## 1949 In this sequel to Les Bronzes (1978) summer has passed, but that doesn't mean the fun has to end for Bernard, Nathalie, Gigi, Jerome, Popeye, Jean-Claude, and Christiane.
## 1950 A retelling of the classic Dickens tale of Ebenezer Scrooge, miser extraordinaire. He is held accountable for his dastardly ways during night-time visitations by the Ghosts of Christmas Past, Present and Future.
## 1951 Rufus T. Firefly is named president/dictator of bankrupt Freedonia and declares war on neighboring Sylvania over the love of wealthy Mrs. Teasdale.
## 1952 Two teen rival babysitters, Jenny and Lola, team up to hunt down one of their kids who accidentally ran away into the big city without any supervision.
## 1953 Billy "The Great" Hope, the reigning junior middleweight boxing champion, has an impressive career, a loving wife and daughter, and a lavish lifestyle. However, when tragedy strikes, Billy hits rock bottom, losing his family, his house and his manager. He soon finds an unlikely savior in Tick Willis, a former fighter who trains the city's toughest amateur boxers. With his future on the line, Hope fights to reclaim the trust of those he loves the most.
## 1954 Robin is sent by Batman to work with the Teen Titans after his volatile behavior botches up a Justice League mission. The Titans must then step up to face Trigon after he possesses the League and threatens to conquer the world.
## 1955 Hired by a Spanish baron, Hong Kong treasure hunter Jackie, a.k.a. "Asian Hawk" and his entourage seek WWII Nazi gold buried in the Sahara Desert.
## 1956 An ordinary man frustrated with the various flaws he sees in society begins to psychotically and violently lash out against them.
## 1957 Good hearted but not very wordly-wise, Dante is happy driving the school bus for a group of mentally handicapped children, while feeling he is somehow missing out on life and love. So he is very excited when after nearly being knocked down by her car he meets Maria, who seems immediately enamoured of him. He is soon invited to her sumptuous Palermo villa, little suspecting that this is part of a plot. He bears an amazing likeness to Maria's stool-pigeon gangster husband and it would be convenient for them if the mobster, in the shape of Dante, was seen to be dead and buried.
## 1958 With the aid of a fellow Auschwitz survivor and a hand-written letter, an elderly man with dementia goes in search of the person responsible for the death of his family.
## 1959 Sara and Brian live an idyllic life with their young son and daughter. But their family is rocked by sudden, heartbreaking news that forces them to make a difficult and unorthodox choice in order to save their baby girl's life. The parents' desperate decision raises both ethical and moral questions and rips away at the foundation of their relationship. Their actions ultimately set off a court case that threatens to tear the family apart, while revealing surprising truths that challenge everyone's perceptions of love and loyalty and give new meaning to the definition of healing.
## 1960 Jackie Brown is a flight attendant who gets caught in the middle of smuggling cash into the country for her gunrunner boss. When the cops try to use Jackie to get to her boss, she hatches a plan — with help from a bail bondsman — to keep the money for herself.
## 1961 A thrilling and inspiring true story begins on the eve of World War II as, within days of becoming Prime Minister of Great Britain, Winston Churchill must face one of his most turbulent and defining trials: exploring a negotiated peace treaty with Nazi Germany, or standing firm to fight for the ideals, liberty and freedom of a nation. As the unstoppable Nazi forces roll across Western Europe and the threat of invasion is imminent, and with an unprepared public, a skeptical King, and his own party plotting against him, Churchill must withstand his darkest hour, rally a nation, and attempt to change the course of world history.
## 1962 Following the events of Captain America: Civil War, Peter Parker, with the help of his mentor Tony Stark, tries to balance his life as an ordinary high school student in Queens, New York City, with fighting crime as his superhero alter ego Spider-Man as a new threat, the Vulture, emerges.
## 1963 Young Cedric Errol and his widowed mother live in genteel poverty in 1880s Brooklyn after the death of his father. Cedric's grandfather, the Earl of Dorincourt, has long ago disowned his son for marrying an American. But after the death of the Earl's remaining son, he decides to accept Cedric as his heir.
## 1964 A young woman left her family for an unspecified reason. The husband determines to find out the truth and starts following his wife. At first, he suspects that a man is involved. But gradually, he finds out more and more strange behaviors and bizarre incidents that indicate something more than a possessed love affair.
## 1965 In 1941, the inhabitants of a small Jewish village in Central Europe organize a fake deportation train so that they can escape the Nazis and flee to Palestine.
## 1966 A depiction of the conflict between King Henry VIII of England and his Lord Chancellor, Sir Thomas More, who refuses to swear the Oath of Supremacy declaring Henry Supreme Head of the Church in England.
## 1967 An European immigrant endures a challenging voyage only to get into trouble as soon as he arrives in New York.
## 1968 A friend of Fred's, Alejo Otero, invites the Scooby gang to Veracruz, Mexico. There they find a monster, El Chupacabra, terrorizing the town.
## 1969 The adventures of a group of Texas teens on their last day of school in 1976, centering on student Randall Floyd, who moves easily among stoners, jocks and geeks. Floyd is a star athlete, but he also likes smoking weed, which presents a conundrum when his football coach demands he sign a "no drugs" pledge.
## 1970 Chris, a former tennis player, looks for work as an instructor. He meets Tom Hewett, a wealthy young man whose sister Chloe fall in love with Chris. But Chris has his eye on Tom's fiancee Nola.
## 1971 The film centres on Moncho and his coming-of-age experience in Galicia in 1936. Moncho develops a close relationship with his teacher Don Gregorio who introduces the boy to different things in the world. While the story centres on Moncho's ordinary coming-of-age experiences, tensions related to the looming Spanish Civil War periodically interrupt Moncho's personal growth and daily life.
## 1972 A sixteenth century love story about a marriage of alliance that gave birth to true love between a Mughal emperor and a Rajput princess.
## 1973 In New York City in the days following the events of 9/11, Monty Brogan is a convicted drug dealer about to start a seven-year prison sentence, and his final hours of freedom are devoted to hanging out with his closest buddies and trying to prepare his girlfriend for his extended absence.
## 1974 A father discovers that his son floats, which makes him different from other kids. To keep them both safe from the judgement of the world, Dad hides, covers, and grounds him. But when his son's ability becomes public, Dad must decide whether to run and hide or to accept his son as he is.
## 1975 In an underground world where tunnels extend everywhere, even though they live in dark and confined spaces, people wear protective clothes and lead quiet and enjoyable lives. Patema, a princess in her underground village, loves to explore the tunnels. Her favorite place is a "danger zone" that her village prohibits people from entering. Even though she's scolded, Patema's curiosity can't be held back. No one ever explained what the supposed danger was. On her usual trip to the "danger zone," Patema faces unexpected events. When hidden secrets come to light, the story begins to unfold.
## 1976 Two hillbillies are suspected of being killers by a group of paranoid college kids camping near the duo's West Virginian cabin. As the body count climbs, so does the fear and confusion as the college kids try to seek revenge against the pair.
## 1977 Under the pretense of having a picnic, a geologist takes his teenage daughter and 6-year-old son into the Australian outback and attempts to shoot them. When he fails, he turns the gun on himself, and the two city-bred children must contend with harsh wilderness alone. They are saved by a chance encounter with an Aborigine boy who shows them how to survive, and in the process underscores the disharmony between nature and modern life.
## 1978 An aspiring painter meets various characters and learns valuable lessons while traveling across America.
## 1979 A wanna-be blues guitar virtuoso seeks a long-lost song by legendary musician, Robert Johnson.
## 1980 At the start of the First World War, in the middle of Africa’s nowhere, a gin soaked riverboat captain is persuaded by a strong-willed missionary to go down river and face-off a German warship.
## 1981 An ex-thief is accused of enacting a new crime spree, so to clear his name he sets off to catch the new thief, who’s imitating his signature style.
## 1982 Arthur and Anatole are two little robbers. They want to rob money, money that will travel in a special train from Paris to Bruxelles. They don't know that other people have planned to do the same thing.
## 1983 In Los Angeles, an ex-con takes the underground fighting world by storm in his quest to fulfill a promise to a dead friend.
## 1984 Demons that once almost destroyed the world, are revived by someone. To prevent the world from being destroyed, the demon has to be sealed and the only one who can do it is the shrine maiden Shion from the country of demons, who has two powers; one is sealing demons and the other is predicting the deaths of humans. This time Naruto's mission is to guard Shion, but she predicts Naruto's death. The only way to escape it, is to get away from Shion, which would leave her unguarded, then the demon, whose only goal is to kill Shion will do so, thus meaning the end of the world. Naruto decides to challenge this "prediction of death."
## 1985 The true-life story of boxer-turned-priest. When an injury ends his amateur boxing career, Stuart Long moves to Los Angeles to find money and fame. While scraping by as a supermarket clerk, he meets Carmen, a Sunday school teacher who seems immune to his bad-boy charm. Determined to win her over, the longtime agnostic starts going to church to impress her. However, a motorcycle accident leaves him wondering if he can use his second chance to help others, leading to the surprising realization that he's meant to be a Catholic priest.
## 1986 Maleficent and her goddaughter Aurora begin to question the complex family ties that bind them as they are pulled in different directions by impending nuptials, unexpected allies, and dark new forces at play.
## 1987 Jean-Baptiste Grenouille, born in the stench of 18th century Paris, develops a superior olfactory sense, which he uses to create the world's finest perfumes. However, his work takes a dark turn as he tries to preserve scents in the search for the ultimate perfume.
## 1988 Paul Rivers, an ailing mathematician lovelessly married to an English émigré; Christina Peck, an upper-middle-class suburban housewife and mother of two girls; and Jack Jordan, a born-again ex-con, are brought together by a terrible accident that changes their lives.
## 1989 In 1979 Santa Barbara, California, Dorothea Fields is a determined single mother in her mid-50s who is raising her adolescent son, Jamie, at a moment brimming with cultural change and rebellion. Dorothea enlists the help of two younger women – Abbie, a free-spirited punk artist living as a boarder in the Fields' home and Julie, a savvy and provocative teenage neighbour – to help with Jamie's upbringing.
## 1990 A look at the life of Cecil Gaines who served eight presidents as the White House's head butler from 1952 to 1986, and had a unique front-row seat as political and racial history was made.
## 1991 The story takes place in the year 2034, two years after the events in Ghost in the Shell: S.A.C. 2nd GIG. Female cyborg Major Motoko Kusanagi has left Public Security Section 9, an elite counter-terrorist and anti-crime unit specializing in cyber-warfare, which has expanded to a team of 20 field operatives with Togusa acting as the field lead.
## 1992 This colorful adventure tells the story of an impetuous mermaid princess named Ariel who falls in love with the very human Prince Eric and puts everything on the line for the chance to be with him. Memorable songs and characters -- including the villainous sea witch Ursula.
## 1993 Special agent 007 comes face to face with one of the most notorious villains of all time, and now he must outwit and outgun the powerful tycoon to prevent him from cashing in on a devious scheme to raid Fort Knox -- and obliterate the world's economy.
## 1994 Author P.L. Travers looks back on her childhood while reluctantly meeting with Walt Disney, who seeks to adapt her Mary Poppins books for the big screen.
## 1995 The tale of a new breed of cultural insurgent: a punk genius who sparked a revolution and changed the face of human interaction for a generation, and perhaps forever.
## 1996 Tyler Rake, a fearless mercenary who offers his services on the black market, embarks on a dangerous mission when he is hired to rescue the kidnapped son of a Mumbai crime lord.
## 1997 An adaptation of the successful stage musical based on Victor Hugo's classic novel set in 19th-century France, in which a paroled prisoner named Jean Valjean seeks redemption.
## 1998 An unhappy middle-aged banker agrees to a procedure that will fake his death and give him a completely new look and identity – one that comes with its own price.
## 1999 In 1941 Hawaii, a private is cruelly punished for not boxing on his unit's team, while his captain's wife and second in command are falling in love.
## 2000 An African-American Mafia hit man who models himself after the samurai of old finds himself targeted for death by the mob. Jarmusch's spiritual gangster film tells the story of an inner-city hit man (Whitaker) who lives on a rooftop, training himself as a samurai in the strictest sense. He communicates primarily by carrier pigeon, while remaining loyal to a gangster (Tormey) who once saved his life.
## 2001 Expecting the usual tedium that accompanies a summer in the Catskills with her family, 17-year-old Frances 'Baby' Houseman is surprised to find herself stepping into the shoes of a professional hoofer—and unexpectedly falling in love.
## 2002 Based on the true life story of California gymnast Ariana Berlin. As she zoned in on her Olympic goals, 14 year old Ariana Berlin's life took a sharp turn when she was involved in a debilitating car accident. Gaining her confidence and movement back through learning hip hop dance, she unexpectedly found herself called back to the gymnastics world thanks to world renowned UCLA Coach Valorie Kondos Field. With Val's help, Ariana was eventually able to secure a spot on the UCLA gymnastics team and win an NCAA championship, a lifelong goal that she had always dreamed of. This is a wonderfully inspiring story of persistence, confidence, and the heart and courage to make a somewhat impossible comeback in life.
## 2003 In the suburbs of Tokyo some time ago, there lived a clumsy boy about 10 years old. There appeared in front of him named Sewashi, Nobita's descendant of four generations later from the 22nd century, and Doraemon, a 22nd century cat-type caretaker robot who helps people with its secret gadgets. Sewashi claims that his family is suffering from the debts Nobita made even to his generation, so in order to change this disastrous future, he brought along Doraemon as Nobita's caretaker to bring happiness to his future, although Doraemon is not happy about this. And so Sewashi installed an accomplishment program into Doraemon forcing him to take care of Nobita. Unless he makes Nobita happy, Doraemon can no longer go back to the 22nd century. This is how the life of Doraemon and Nobita begins. Will Doraemon succeed this mission and return to the 22nd century?
## 2004 Bruno Fioretti, known as "Mandrake", is an inveterate gambler who never misses a day at the horse racing track in Rome. He is doubly unlucky: he bets too much on one horse, and his wife is sleeping with his best friend because Mandrake is always at the track. Penniless and cuckolded, Mandrake decides to make one last bet.
## 2005 When principal Joe Clark takes over decaying Eastside High School, he's faced with students wearing gang colors and graffiti-covered walls. Determined to do anything he must to turn the school around, he expels suspected drug dealers, padlocks doors and demands effort and results from students, staff and parents. Autocratic to a fault, this real-life educator put it all on the line.
## 2006 Uta — the most beloved singer in the world. Her voice, which she sings with while concealing her true identity, has been described as “otherworldly.” She will appear in public for the first time at a live concert. As the venue fills with all kinds of Uta fans — excited pirates, the Navy watching closely, and the Straw Hats led by Luffy who simply came to enjoy her sonorous performance — the voice that the whole world has been waiting for is about to resound.
## 2007 An animated telling of Kobe Bryant's titular poem, signaling his retirement from the sport that made his name.
## 2008 An FBI agent and an Interpol detective track a team of illusionists who pull off bank heists during their performances and reward their audiences with the money.
## 2009 A mountain man who wishes to live the life of a hermit becomes the unwilling object of a long vendetta by Indians when he proves to be the match of their warriors in one-to-one combat on the early frontier.
## 2010 This deceptively simple tale of a bored English couple travelling to Italy to find a buyer for a house inherited from an uncle is transformed by Roberto Rossellini into a passionate story of cruelty and cynicism as their marriage disintegrates around them.
## 2011 The story of Elton John's life, from his years as a prodigy at the Royal Academy of Music through his influential and enduring musical partnership with Bernie Taupin.
## 2012 A mother of two inherits a home from her aunt. On the first night in the new home she is confronted with murderous intruders and fights for her daughters’ lives. Sixteen years later the daughters reunite at the house, and that is when things get strange . . .
## 2013 Pakistan-born comedian Kumail Nanjiani and grad student Emily Gardner fall in love but struggle as their cultures clash. When Emily contracts a mysterious illness, Kumail finds himself forced to face her feisty parents, his family's expectations, and his true feelings.
## 2014 In 1926, Newt Scamander arrives at the Magical Congress of the United States of America with a magically expanded briefcase, which houses a number of dangerous creatures and their habitats. When the creatures escape from the briefcase, it sends the American wizarding authorities after Newt, and threatens to strain even further the state of magical and non-magical relations.
## 2015 While Arturo tries to gain the love of Flora, he witnesses the history of Sicily from 1969 to 1992, miraculously dodging the crimes of the Mafia and supporting as a journalist the heroic struggle of the judges and policemen who fought this infamous organization.
## 2016 A retelling of Dragon Ball's origin with a different take on the meeting of Goku, Bulma, and Kame-Sen'nin. It also retells the Red Ribbon Army story; but this time they find Goku rather than Goku finding them.
## 2017 With the impending ice age almost upon them, a mismatched trio of prehistoric critters – Manny the woolly mammoth, Diego the saber-toothed tiger and Sid the giant sloth – find an orphaned infant and decide to return it to its human parents. Along the way, the unlikely allies become friends but, when enemies attack, their quest takes on far nobler aims.
## 2018 A frustrated man decides to take justice into his own hands after a plea bargain sets one of his family's killers free. He targets not only the killer but also the district attorney and others involved in the deal.
## 2019 Middle-aged Giulietta grows suspicious of her husband, Giorgio, when his behavior grows increasingly questionable. One night when Giorgio initiates a seance amongst his friends, Giulietta gets in touch with spirits and learns more about herself and her painful past. Slightly skeptical, but intrigued, she visits a mystic who gives her more information -- and nudges her toward the realization that her husband is indeed a philanderer.
## 2020 Postwar Germany, 1945. Leopold Kessler, an American of German descent, works as a sleeping car conductor for the Zentropa railway line. When he meets Katharina Hartmann, the railroad owner's daughter, and they fall in love, his life intersects with the dark and violent path of a mysterious organization opposed to the United States army military occupation.
## 2021 Four circus freaks with superpowers find themselves trapped in Nazi-occupied Rome after their owner and father figure goes missing in the aftermath of the 1943 surrender of Italy to the Allies.
## 2022 Sam the snowman tells us the story of a young red-nosed reindeer who, after being ousted from the reindeer games because of his glowing nose, teams up with Hermey, an elf who wants to be a dentist, and Yukon Cornelius, the prospector. They run into the Abominable Snowman and find a whole island of misfit toys. Rudoph vows to see if he can get Santa to help the toys, and he goes back to the North Pole on Christmas Eve. But Santa's sleigh is fogged in. But when Santa looks over Rudolph, he gets a very bright idea...
## 2023 A young woman’s quest for revenge against the people who kidnapped and tortured her as a child leads her and her best friend, also a victim of child abuse, on a terrifying journey into a living hell of depravity.
## 2024 Christopher Robin, the boy who had countless adventures in the Hundred Acre Wood, has grown up and lost his way. Now it’s up to his spirited and loveable stuffed animals, Winnie The Pooh, Tigger, Piglet, and the rest of the gang, to rekindle their friendship and remind him of endless days of childlike wonder and make-believe, when doing nothing was the very best something.
## 2025 Captain Jack Sparrow works his way out of a blood debt with the ghostly Davy Jones to avoid eternal damnation.
## 2026 An American man returns to the village of his birth in Ireland, where he finds love and conflict.
## 2027 A disk jockey goes to Vietnam to work for the Armed Forces Radio Service. While he becomes popular among the troops, his superiors disapprove of his humour.
## 2028 An intent fast paced Danish dark comedy film about two separately motivated brothers who with their slightly psychopathic tendencies end up in a touchy situation. One brother gets in serious trouble after a bank robbery and begs the other brother for help.
## 2029 In 1901, Elisa Sánchez Loriga adopts a male identity in order to marry the woman she loves, Marcela Gracia Ibeas.
## 2030 The intersecting stories of twenty-four characters—from country star to wannabe to reporter to waitress—connect to the music business in Nashville, Tennessee.
## 2031 A man struggles with memories of his past, including a wife he cannot remember, in a nightmarish world with no sun and run by beings with telekinetic powers who seek the souls of humans.
## 2032 The men who made millions from a global economic meltdown.
## 2033 Hideo Suzuki is a 35-year-old mangaka assistant, whose life seem to be stuck around his exhausting but low-paying job, unfulfilled dreams, strange hallucinations and unsatisfying relationships. He sees himself as a supporting character in his own life, has low self-esteem, resulting in frustration. One day, the world as Hideo knows it is shattered by the presence of a disease that turns people into homicidal maniacs, whose first instinct is to attack and devour the nearest human.
## 2034 England, 1021. Rob Cole, a boy born in a miserable mining town, swears to become a physician and vanquish disease and death. His harsh path of many years, a quest for knowledge besieged by countless challenges and sacrifices, leads him to the remote Isfahan, in Persia, where he meets Ibn Sina, the greatest healer of his time.
## 2035 When Antonia's husband Massimo is killed in a car accident, she accidentally discovers that he has been having a same-sex affair with a produce wholesaler named Michele.
## 2036 After a flight back home, Sam Hendrix returns with a doll he innocently acquired along the way. As it turns out, the doll is actually stuffed with heroin, and a group of criminals led by the ruthless Roat has followed Hendrix back to his place to retrieve it. When Hendrix leaves for business, the crooks make their move -- and find his blind wife, Susy, alone in the apartment. Soon, a life-threatening game begins between Susy and the thugs.
## 2037 In a post-apocalyptic world, the residents of an apartment above the butcher shop receive an occasional delicacy of meat, something that is in low supply. A young man new in town falls in love with the butcher's daughter, which causes conflicts in her family, who need the young man for other business-related purposes.
## 2038 Phineas and Ferb travel across the galaxy to rescue their older sister Candace, who has been abducted by aliens and taken to a utopia in a far-off planet, free of her pesky little brothers.
## 2039 Two star-crossed freshmen – a zombie, Zed and a cheerleader, Addison – each outsiders in their unique ways, befriend each other and work together to show their high school and the Seabrook community what they can achieve when they embrace their differences.
## 2040 Two psychotic young men take a mother, father, and son hostage in their vacation cabin and force them to play sadistic "games" with one another for their own amusement.
## 2041 This film tells the story of a successful writer called Harry Block, played by Allen himself, who draws inspiration from people he knows in real-life, and from events that happened to him, sometimes causing these people to become alienated from him as a result.
## 2042 In the questionable town of Deer Meadow, Washington, FBI Agent Desmond inexplicably disappears while hunting for the man who murdered a teen girl. The killer is never apprehended, and, after experiencing dark visions and supernatural encounters, Agent Dale Cooper chillingly predicts that the culprit will claim another life. Meanwhile, in the more cozy town of Twin Peaks, hedonistic beauty Laura Palmer hangs with lowlifes and seems destined for a grisly fate.
## 2043 Maria Altmann, an octogenarian Jewish refugee, takes on the Austrian government to recover a world famous painting of her aunt plundered by the Nazis during World War II, she believes rightfully belongs to her family. She did so not just to regain what was rightfully hers, but also to obtain some measure of justice for the death, destruction, and massive art theft perpetrated by the Nazis.
## 2044 A Korean man in China takes an assassination job in South Korea to make money and find his missing wife. But when the job is botched, he is forced to go on the run from the police and the gangsters who paid him.
## 2045 As the Joker visits Metropolis with a plan to kill Superman for Lex Luthor, Batman pursues the clown to Superman's turf.
## 2046 Pablo, a successful film director, disappointed in his relationship with his young lover, Juan, concentrates in a new project, a monologue starring his transgender sister, Tina. Antonio, an uptight young man, falls possessively in love with the director and in his passion would stop at nothing to obtain the object of his desire.
## 2047 On a mission to make Christmas unforgettable for Quill, the Guardians head to Earth in search of the perfect present.
## 2048 Henri “Papillon” Charrière, a safecracker from the Parisian underworld, is wrongfully convicted and sentenced to life imprisonment in the penal colony of French Guiana, where he forges a strong friendship with Louis Dega, a counterfeiter who needs his protection.
## 2049 When the crew of the Enterprise is called back home, they find an unstoppable force of terror from within their own organization has detonated the fleet and everything it stands for, leaving our world in a state of crisis. With a personal score to settle, Captain Kirk leads a manhunt to a war-zone world to capture a one man weapon of mass destruction. As our heroes are propelled into an epic chess game of life and death, love will be challenged, friendships will be torn apart, and sacrifices must be made for the only family Kirk has left: his crew.
## 2050 The story of Jacques Mesrine, France's public enemy No. 1 during the 1970s. After nearly two decades of legendary criminal feats -- from multiple bank robberies and to prison breaks -- Mesrine was gunned down by the French police in Paris.
## 2051 This movie portrays the drug scene in Berlin in the 70s, following tape recordings of Christiane F. 14 years old Christiane lives with her mother and little sister in a typical multi-storey apartment building in Berlin. She's fascinated by the 'Sound', a new disco with most modern equipment. Although she's legally too young, she asks a friend to take her. There she meets Detlef, who's in a clique where everybody's on drugs. Step by step she gets drawn deeper into the scene.
## 2052 Though Kevin has evidenced 23 personalities to his trusted psychiatrist, Dr. Fletcher, there remains one still submerged who is set to materialize and dominate all the others. Compelled to abduct three teenage girls led by the willful, observant Casey, Kevin reaches a war for survival among all of those contained within him — as well as everyone around him — as the walls between his compartments shatter apart.
## 2053 Tommaso is the youngest son of the Cantones, a large, traditional southern Italian family operating a pasta-making business since the 1960s. On a trip home from Rome, where he studies literature and lives with his boyfriend, Tommaso decides to tell his parents the truth about himself. But when he is finally ready to come out in front of the entire family, his older brother Antonio ruins his plans.
## 2054 The only son of wealthy widow Violet Venable dies while on vacation with his cousin Catherine. What the girl saw was so horrible that she went insane; now Mrs. Venable wants Catherine lobotomized to cover up the truth.
## 2055 Paul, a young idealist trying to figure out what he wants to do with his life, takes a job interviewing people for a marketing research firm. He moves in with aspiring pop singer Madeleine. Paul, however, is disillusioned by the growing commercialism in society, while Madeleine just wants to be successful. The story is told in a series of 15 unrelated vignettes.
## 2056 Life's questions are 'answered' in a series of outrageous vignettes, beginning with a staid London insurance company which transforms before our eyes into a pirate ship. Then there's the National Health doctors who try to claim a healthy liver from a still-living donor. The world's most voracious glutton brings the art of vomiting to new heights before his spectacular demise.
## 2057 On the eve of his wedding, on holiday on the Lake Annecy shore, a career diplomat visits an old acquaintance, perhaps a former girlfriend. Through her he meets an intense teenager, Laura, and then lusts after her sister, Claire. Whilst Laura attempts to flirt with him, his fantasy becomes focused on wanting to caress Claire's knee.
## 2058 John Anderton is a top 'Precrime' cop in the late-21st century, when technology can predict crimes before they're committed. But Anderton becomes the quarry when another investigator targets him for a murder charge.
## 2059 A young girl from London moves to Africa with her parents where she befriends a lion cub.
## 2060 A celebrity model couple are invited on a luxury cruise for the uber-rich, helmed by an unhinged, alcoholic captain. What first appears Instagrammable ends catastrophically, leaving the survivors stranded on a desert island in a struggle of hierarchy.
## 2061 A stranger arrives in a little village and soon after a mysterious sickness starts spreading. A policeman is drawn into the incident and is forced to solve the mystery in order to save his daughter.
## 2062 Bahia Benmahmoud, a free-spirited young woman, has a particular way of seeing political engagement, as she doesn't hesitate to sleep with those who don't agree with her to convert them to her cause - which is a lot of people, as all right-leaning people are concerned. Generally, it works pretty well. Until the day she meets Arthur Martin, a discreet forty-something who doesn't like taking risks. She imagines that with a name like that, he's got to be slightly fascist. But names are deceitful and appearances deceiving.
## 2063 The accidental mix-up of four identical plaid overnight bags leads to a series of increasingly wild and wacky situations.
## 2064 Erika Kohut, a sexually repressed piano teacher living with her domineering mother, meets a young man who starts romantically pursuing her.
## 2065 A depressed wealthy businessman and a spunky and care-free young woman embark on an unexpected journey that changes their lives.
## 2066 Jack Terry is a master sound recordist who works on grade-B horror movies. Late one evening, he is recording sounds for use in his movies when he hears something unexpected through his sound equipment and records it. Curiosity gets the better of him when the media become involved, and he begins to unravel the pieces of a nefarious conspiracy. As he struggles to survive against his shadowy enemies and expose the truth, he does not know whom he can trust.
## 2067 Showman Jerry Travers is working for producer Horace Hardwick in London. Jerry demonstrates his new dance steps late one night in Horace's hotel room, much to the annoyance of sleeping Dale Tremont below. She goes upstairs to complain and the two are immediately attracted to each other. Complications arise when Dale mistakes Jerry for Horace.
## 2068 A civilian oil rig crew is recruited to conduct a search and rescue effort when a nuclear submarine mysteriously sinks. One diver soon finds himself on a spectacular odyssey 25,000 feet below the ocean's surface where he confronts a mysterious force that has the power to change the world or destroy it.
## 2069 Prim professor Immanuel Rath finds some of his students ogling racy photos of cabaret performer Lola Lola and visits a local club, The Blue Angel, in an attempt to catch them there. Seeing Lola perform, the teacher is filled with lust, eventually resigning his position at the school to marry the young woman. However, his marriage to a coquette -- whose job is to entice men -- proves to be more difficult than Rath imagined.
## 2070 A young lawyer stumbles upon a vast conspiracy while investigating a brutal murder case.
## 2071 After his capture for attempted assassination of the Raikage, leader of Kumogakure, as well as killing Jōnin from Kirigakure and Iwagakure, Naruto is imprisoned in Hōzukijou: A criminal containment facility known as the Blood Prison. Mui, the castle master, uses the ultimate imprisonment technique to steal power from the prisoners, which is when Naruto notices his life has been targeted. Thus begins the battle to uncover the truth behind the mysterious murders and prove Naruto's innocence.
## 2072 Zen, an autistic teenage girl with powerful martial arts skills, gets money to pay for her sick mother Zin's treatment by seeking out all the people who owe Zin money and making them pay.
## 2073 Lin McAdam rides into town on the trail of Dutch Henry Brown, only to find himself in a shooting competition against him. McAdam wins the prize, a one-in-a-thousand Winchester rifle, but Dutch steals it and leaves town. McAdam follows, intent on settling his old quarrel, while the rifle keeps changing hands and touching a number of lives.
## 2074 Hrundi V. Bakshi, an accident-prone actor from India, is accidentally put on the guest list for an upcoming party at the home of a Hollywood film producer. Unfortunately, from the moment he arrives, one thing after another goes wrong with compounding effect.
## 2075 As a parting shot, fired reporter Ann Mitchell prints a fake letter from unemployed "John Doe," who threatens suicide in protest of social ills. The paper is forced to rehire Ann and hires John Willoughby to impersonate "Doe." Ann and her bosses cynically milk the story for all it's worth, until the made-up "John Doe" philosophy starts a whole political movement.
## 2076 In a gritty and alternate 1985 the glory days of costumed vigilantes have been brought to a close by a government crackdown, but after one of the masked veterans is brutally murdered, an investigation into the killer is initiated. The reunited heroes set out to prevent their own destruction, but in doing so uncover a sinister plot that puts all of humanity in grave danger.
## 2077 Viktor Navorski is a man without a country; his plane took off just as a coup d'etat exploded in his homeland, leaving it in shambles, and now he's stranded at Kennedy Airport, where he's holding a passport that nobody recognizes. While quarantined in the transit lounge until authorities can figure out what to do with him, Viktor simply goes on living – and courts romance with a beautiful flight attendant.
## 2078 Lola receives a phone call from her boyfriend Manni. He lost 100,000 DM in a subway train that belongs to a very bad guy. She has 20 minutes to raise this amount and meet Manni. Otherwise, he will rob a store to get the money. Three different alternatives may happen depending on some minor event along Lola's run.
## 2079 Carpet dealer and UFO photo forger Arif is abducted by aliens and must outwit the evil commander-in-chief of G.O.R.A., the planet where he is being held.
## 2080 A shy high schooler in Kyoto meets a man claiming to be his future self, who tells him he’s hacked into the past to save their first love.
## 2081 Testament of Youth is a powerful story of love, war and remembrance, based on the First World War memoir by Vera Brittain, which has become the classic testimony of that war from a woman’s point of view. A searing journey from youthful hopes and dreams to the edge of despair and back again, it’s a film about young love, the futility of war and how to make sense of the darkest times.
## 2082 Mickey Mouse, piloting a steamboat, delights his passenger, Minnie, by making musical instruments out of the menagerie on deck.
## 2083 Two scientists are chosen as guinea pigs for a time experiment: they are placed in hibernation and should be brought back to life after three years. In the meantime, however, World War III breaks out and life has been wiped off the surface of Earth. When they wake up, it turns out that not only 50 years have passed but also that they are the only living specimens of the male sex in a new, underground society composed exclusively of women.
## 2084 In the deep south during the 1930s, three escaped convicts search for hidden treasure while a relentless lawman pursues them. On their journey they come across many comical characters and incredible situations. Based upon Homer's 'Odyssey'.
## 2085 In a short musical film directed by Paul Thomas Anderson, Thom Yorke of Radiohead stars in a mind-bending visual piece. Best played loud.
## 2086 Bilbo Baggins, a hobbit enjoying his quiet life, is swept into an epic quest by Gandalf the Grey and thirteen dwarves who seek to reclaim their mountain home from Smaug, the dragon.
## 2087 David Locke is a world-weary American journalist who has been sent to cover a conflict in northern Africa, but he makes little progress with the story. When he discovers the body of a stranger who looks similar to him, Locke assumes the dead man's identity. However, he soon finds out that the man was an arms dealer, leading Locke into dangerous situations. Aided by a beautiful woman, Locke attempts to avoid both the police and criminals out to get him.
## 2088 Young Frenchwoman Mathilde searches for the truth about her missing fiancé, lost during World War I, and learns many unexpected things along the way. The love of her life is gone. But she refuses to believe he's gone forever — and she needs to know for sure.
## 2089 "The Hours" is the story of three women searching for more potent, meaningful lives. Each is alive at a different time and place, all are linked by their yearnings and their fears. Their stories intertwine, and finally come together in a surprising, transcendent moment of shared recognition.
## 2090 While searching for her missing mother, intrepid teen Enola Holmes uses her sleuthing skills to outsmart big brother Sherlock and help a runaway lord.
## 2091 Police officer Asger Holm, demoted to desk work as an alarm dispatcher, answers a call from a panicked woman who claims to have been kidnapped. Confined to the police station and with the phone as his only tool, Asger races against time to get help and find her.
## 2092 Wreck-It Ralph is the 9-foot-tall, 643-pound villain of an arcade video game named Fix-It Felix Jr., in which the game's titular hero fixes buildings that Ralph destroys. Wanting to prove he can be a good guy and not just a villain, Ralph escapes his game and lands in Hero's Duty, a first-person shooter where he helps the game's hero battle against alien invaders. He later enters Sugar Rush, a kart racing game set on tracks made of candies, cookies and other sweets. There, Ralph meets Vanellope von Schweetz who has learned that her game is faced with a dire threat that could affect the entire arcade, and one that Ralph may have inadvertently started.
## 2093 The spoiled young heir to the decaying Amberson fortune comes between his widowed mother and the man she has always loved.
## 2094 When carefree Nyles and reluctant maid of honor Sarah have a chance encounter at a Palm Springs wedding, things get complicated when they find themselves unable to escape the venue, themselves, or each other.
## 2095 Having suffered a tragedy, Ben becomes a caregiver to earn money. His first client, Trevor, is a hilarious 18-year-old with muscular dystrophy. One paralyzed emotionally, one paralyzed physically, Ben and Trevor hit the road on a trip into the western states. The folks they collect along the way will help them test their skills for surviving outside their calculated existence. Together, they come to understand the importance of hope and the necessity of true friendship.
## 2096 A man and a woman meet by accident on a Sunday evening at their childrens' boarding school. Slowly, they reveal themselves to each other, finding that each is a widow.
## 2097 Three moments in Takaki's life: his relationship with Akari and their forced separation; his friendship with Kanae, who is secretly in love with him; the demands and disappointments of adulthood, an unhappy life in a cold city.
## 2098 The true story of suburban housewife Gertrude Baniszewski, who kept a teenage girl locked in the basement of her Indiana home during the 1960s.
## 2099 Island of Java, 1942, during World War II. British Major Jack Celliers arrives at a Japanese prison camp, run by the strict Captain Yonoi. Colonel John Lawrence, who has a profound knowledge of Japanese culture, and Sergeant Hara, brutal and simpleton, will witness the struggle of wills between two men from very different backgrounds who are tragically destined to clash.
## 2100 A biographical portrait of a pre-fame Jane Austen and her romance with a young Irishman.
## 2101 A girl who halfheartedly tries to be part of the "in crowd" of her school meets a rebel who teaches her a more devious way to play social politics: by killing the popular kids.
## 2102 Otto and Ana are kids when they meet each other. Their names are palindromes. They meet by chance, people are related by chance. A story of circular lives, with circular names, and a circular place (Círculo polar) where the day never ends in the midnight sun. There are things that never end, and Love is one of them.
## 2103 A scientist in a surrealist society kidnaps children to steal their dreams, hoping that they slow his aging process.
## 2104 Michel takes up pickpocketing on a lark and is arrested soon after. His mother dies shortly after his release, and despite the objections of his only friend, Jacques, and his mother's neighbor Jeanne, Michel teams up with a couple of petty thieves in order to improve his craft. With a police inspector keeping an eye on him, Michel also tries to get a straight job, but the temptation to steal is hard to resist.
## 2105 The battle of Red Cliff continues and the alliance between Xu and East Wu is fracturing. With Cao Cao's massive forces on their doorstep, will the kingdoms of Xu and East Wu survive?
## 2106 A team of allied saboteurs are assigned an impossible mission: infiltrate an impregnable Nazi-held island and destroy the two enormous long-range field guns that prevent the rescue of 2,000 trapped British soldiers.
## 2107 During a writing slump, playwright J.M. Barrie meets a widow and her four children, all young boys—who soon become an important part of Barrie’s life and the inspiration that lead him to create his masterpiece. Peter Pan'.
## 2108 Two young officers are marked for death after confiscating a small cache of money and firearms from the members of a notorious cartel during a routine traffic stop.
## 2109 The film tells the story of the Michelucci family, from the nineteen-seventies to the present day: the central character is the stunningly beautiful Anna, the lively, frivolous and sometimes embarrassing mother of Bruno and Valeria. Everything begins in the Summer of 1971, at the annual Summer beauty pageant held at Livorno’s most popular bathing establishment. Anna is unexpectedly crowned “Most Beautiful Mother”, unwittingly stirring the violent jealousy of her husband. From then on, chaos strikes the family and for Anna, Bruno and his sister Valeria, it is the start of an adventure that will only end thirty years later.
## 2110 Handsomely-mounted historical epic concerns the birth of the Islamic faith and the story of the prophet Mohammed.
## 2111 Intent on seeing the Cahulawassee River before it's turned into one huge lake, outdoor fanatic Lewis Medlock takes his friends on a river-rafting trip they'll never forget into the dangerous American back-country.
## 2112 Teenagers in a small town are dropping like flies, apparently in the grip of mass hysteria causing their suicides. A cop's daughter, Nancy Thompson, traces the cause to child molester Fred Krueger, who was burned alive by angry parents many years before. Krueger has now come back in the dreams of his killers' children, claiming their lives as his revenge. Nancy and her boyfriend, Glen, must devise a plan to lure the monster out of the realm of nightmares and into the real world...
## 2113 A police raid in Detroit in 1967 results in one of the largest citizens' uprisings in the history of the United States.
## 2114 A successful Indian scientist returns home to his village to take his nanny back to America with him, and in the process rediscovers his roots.
## 2115 Lorelei Lee is a beautiful showgirl engaged to be married to the wealthy Gus Esmond, much to the disapproval of Gus' rich father, Esmond Sr., who thinks that Lorelei is just after his money. When Lorelei goes on a cruise accompanied only by her best friend, Dorothy Shaw, Esmond Sr. hires Ernie Malone, a private detective, to follow her and report any questionable behavior that would disqualify her from the marriage.
## 2116 The adventure of Bella, a dog who embarks on an epic 400-mile journey home after she is separated from her beloved human.
## 2117 Based on the incredibly true story of a Spanish man with Multiple Sclerosis who tried to finish an Iron-Man: 3,8km swimming, 180km cycling and 42 running. And he was told that he could not make 100 meters.
## 2118 France, 1940. In the first days of occupation, beautiful Lucile Angellier is trapped in a stifled existence with her controlling mother-in-law as they both await news of her husband: a prisoner of war. Parisian refugees start to pour into their small town, soon followed by a regiment of German soldiers who take up residence in the villagers' own homes. Lucile initially tries to ignore Bruno von Falk, the handsome and refined German officer staying with them. But soon, a powerful love draws them together and leads them into the tragedy of war.
## 2119 A mistaken delivery in Mumbai's famously efficient lunchbox delivery system (Mumbai's Dabbawallahs) connects a young housewife to a stranger in the dusk of his life. They build a fantasy world together through notes in the lunchbox. Gradually, this fantasy threatens to overwhelm their reality.
## 2120 With the help of government-issued pamphlets, an elderly British couple build a shelter and prepare for an impending nuclear attack, unaware that times and the nature of war have changed from their romantic memories of World War II.
## 2121 A journalist suffering from burn-out wants to finally say goodbye to his office – but his boss doesn’t like the idea one bit.
## 2122 After a drunken house party with his straight mates, Russell heads out to a gay club. Just before closing time he picks up Glen but what's expected to be just a one-night stand becomes something else, something special.
## 2123 In 1863, Amsterdam Vallon returns to the Five Points of America to seek vengeance against the psychotic gangland kingpin, Bill the Butcher, who murdered his father years earlier. With an eager pickpocket by his side and a whole new army, Vallon fights his way to seek vengeance on the Butcher and restore peace in the area.
## 2124 For best friends Becky and Hunter, life is all about conquering fears and pushing limits. But after they climb 2,000 feet to the top of a remote, abandoned radio tower, they find themselves stranded with no way down. Now Becky and Hunter’s expert climbing skills will be put to the ultimate test as they desperately fight to survive the elements, a lack of supplies, and vertigo-inducing heights
## 2125 Tristana is a young Spanish woman left to the care of Don Lope, a protective but impoverished aristocrat. Don sells his possessions to avoid manual labor and champions the causes of the dispossessed and downtrodden of society. He takes advantage of the vulnerable Tristana, who leaves him when she falls in love with Horacio. Unable to commit to him, she returns to Don Lope when she falls ill. He asks for her hand in marriage, and she accepts after losing her leg to cancer. She chooses to remain in a passionless union rather than be subject to the harsh realities of a society that refuses to change to the needs of women. Taken from the novel by celebrated author Benito Perez Galdos.
## 2126 Wake in Fright is the story of John Grant, a bonded teacher who arrives in the rough outback mining town of Bundanyabba planning to stay overnight before catching the plane to Sydney, but as one night stretches into several he plunges headlong into his own destruction.
## 2127 A bookish CIA researcher finds all his co-workers dead, and must outwit those responsible until he figures out who he can really trust.
## 2128 For Norman and Ethel Thayer, this summer on golden pond is filled with conflict and resolution. When their daughter Chelsea arrives, the family is forced to renew the bonds of love and overcome the generational friction that has existed for years.
## 2129 A man is on his way home when the poorly constructed tunnel he is driving through collapses, leaving him trapped leaving himself for the unexpected whilst emergency services struggle to help.
## 2130 A woman prepares for bed, but realizes that something may be lurking in the shadows.
## 2131 Two co-workers, one a vain woman and the other an awkward teenager, share an increasingly bizarre relationship after becoming roommates.
## 2132 A heroic version of Lex Luthor from an alternate universe appears to recruit the Justice League to help save his Earth from the Crime Syndicate, an evil version of the League. What ensues is the ultimate battle of good versus evil in a war that threatens both planets and, through a devious plan launched by Batman's counterpart Owlman, puts the balance of all existence in peril.
## 2133 The Parrs' baby Jack-Jack is thought to be normal, not having any super-powers like his parents or siblings. But when an outsider is hired to watch him, Jack-Jack shows his true potential.
## 2134 Traveler Allan Gray arrives in the village of Courtempierre and takes lodgings in a small inn. Gray has a great interest in the supernatural, particularly vampires. He's barely settled in when he feels a sinister force descending upon him. In the night an old man enters his room to tell him 'she must not die'. One of the old man's daughters, Leone, has been bitten by a vampire. In order to break the curse, Gray and Leone's sister Gisele must find the original vampire and drive a stake through her heart.
## 2135 Discover what Thor was up to during the events of Captain America: Civil War.
## 2136 In 1950s Ireland and New York, young Eilis Lacey has to choose between two men and two countries.
## 2137 College student Beca knows she does not want to be part of a clique, but that's exactly where she finds herself after arriving at her new school. Thrust in among mean gals, nice gals and just plain weird gals, Beca finds that the only thing they have in common is how well they sing together. She takes the women of the group out of their comfort zone of traditional arrangements and into a world of amazing harmonic combinations in a fight to the top of college music competitions.
## 2138 Vincent, a wealthy real estate agent, is invited to dinner by his sister Elizabeth and her husband Peter, both professors in Paris. Claude, a childhood friend and trombonist in a symphony orchestra, is also present. Vincent brings news from the prenatal examination of his and his wife Anna's unborn son. The name chosen by the soon-to-be parents strongly offends the others for many reasons. The dispute between the guests quickly escalates and before long the resurgence of old grudges and hidden secrets is unavoidable ...
## 2139 A French family moves to a new neighborhood with during the summer holidays. The story follows a 10-year-old gender non-conforming child, Laure, who experiments with their gender presentation, adopting the name Mikäel.
## 2140 Full-throttle melodrama about an ill-starred romance set against the backdrop of the siege of Sarajevo. A mother brings her teenage son to Sarajevo, where his father died in the Bosnian conflict years ago.
## 2141 When three friends finally come to after a raucous night of bachelor-party revelry, they find a baby in the closet and a tiger in the bathroom. But they can't seem to locate their best friend, Doug – who's supposed to be tying the knot. Launching a frantic search for Doug, the trio perseveres through a nasty hangover to try to make it to the church on time.
## 2142 The true story of Dr. Hunter "Patch" Adams, who in the 1970s found that humor is the best medicine, and was willing to do just anything to make his patients laugh—even if it meant risking his own career.
## 2143 Composer Gustav von Aschenbach travels to Venice for health reasons. There, he becomes obsessed with the stunning beauty of an adolescent Polish boy named Tadzio who is staying with his family at the same Grand Hôtel des Bains on the Lido as Aschenbach.
## 2144 A teen star ventures out to the Italian countryside for a summer and emerges a new artist.
## 2145 1940: During the chaotic running fights of the French army the 7th company disappears - nobody knows they've been taken captive. Only their scouting patrol, three witty but lazy guys, can escape and now wanders around behind the German lines. They'd like to just stay out the fights, but a Lieutenant urges them to use a captured truck to break through to their troops.
## 2146 Monika from Stockholm falls in love with Harry, a young man on holiday. When she becomes pregnant they are forced into a marriage, which begins to fall apart soon after they take up residence in a cramped little flat.
## 2147 The Joker is back with a vengeance, and Gotham's newest Dark Knight, Terry McGinnis, needs answers as he stands alone to face Gotham's most infamous Clown Prince of Crime.
## 2148 After spending years in California, Amir returns to his homeland in Afghanistan to help his old friend Hassan, whose son is in trouble.
## 2149 After the tragic death of star volleyball player Caroline "Line" Found, a team of dispirited high school girls must band together under the guidance of their tough-love coach in hopes of winning the state championship!
## 2150 Inspired by the isolated beauty of tropical islands and the explosive allure of ocean volcanoes, Lava is a musical love story that takes place over millions of years.
## 2151 A successful lawyer returns to his hometown for his mother's funeral only to discover that his estranged father, the town's judge, is suspected of murder.
## 2152 After Jonathan Harker attacks Dracula at his castle, the vampire travels to a nearby city, where he preys on the family of Harker's fiancée. The only one who may be able to protect them is Dr. van Helsing, Harker's friend and fellow-student of vampires, who is determined to destroy Dracula, whatever the cost.
## 2153 Follows the journey of a 90-year-old atheist and the quirky characters that inhabit his off-the-map desert town. He finds himself at the precipice of life, thrust into a journey of self-exploration.
## 2154 It's 1943 and World War II is raging in Europe. In New York, Arturo and Flora the daughter of a restaurant owner are in love, but she is promised in marriage to the son of a Mafia boss. There is a way around this, but to be able to marry Flora, Arturo needs to get permission from her father, who lives in a village in Sicily. Arturo doesn't have any money, so the only way he can get to Sicily is to enlist in the U.S. Army, which is preparing for a landing on the island.
## 2155 Biography of Loretta Lynn, a country and western singer that came from poverty to fame.
## 2156 After a failed anti-Nazi sabotage mission leaves his eleven comrades dead, a Norwegian resistance fighter finds himself fleeing the Gestapo through the snowbound reaches of Scandinavia.
## 2157 A divorced dad and his ex-con brother resort to a desperate scheme in order to save their family's farm in West Texas.
## 2158 A story centered around an Indian family who moves to France and opens a restaurant across the street from a Michelin-starred French restaurant.
## 2159 The story Jewish counterfeiter, Salomon Sorowitsch, coerced into assisting the Nazi operation of the Sachsenhausen concentration camp during World War II.
## 2160 When a CIA operation to purchase classified Russian documents is blown by a rival agent, who then shows up in the sleepy seaside village where Bourne and Marie have been living. The pair run for their lives and Bourne, who promised retaliation should anyone from his former life attempt contact, is forced to once again take up his life as a trained assassin to survive.
## 2161 In 1979, a group of college students find a Sumerian Book of the Dead in an old cabin they've rented for a weekend getaway.
## 2162 When Sally hears that her grandfather's grave may have been vandalized, she and her paraplegic brother, Franklin, set out with their friends to investigate. After a detour to their family's old farmhouse, they discover a group of crazed, murderous outcasts living next door. As the group is attacked one by one by the chainsaw-wielding Leatherface, who wears a mask of human skin, the survivors must do everything they can to escape.
## 2163 Arriving in Moscow, Chechen War veteran Danila (Sergei Bodrov Jr) meets Konstantin, an old friend who tells him that his twin brother has been forced into signing a crooked contract with a US ice hockey team. Soon after this meeting, Danila discovers Konstantin dead and he sets out to avenge his death; a journey that leads him to Chicago and a whole new experience.
## 2164 Somewhere in Tokyo, there is a room. In that room is a black sphere. Periodically, people who should otherwise have died are transferred to the room. There, the sphere gives them special suits and weapons, and sends them out on a mission to kill aliens here on Earth. While these missions take place, the rest of the world is largely oblivious to them. These missions are lethal - few participants survive them. The sphere calls the shots, and it's not the slightest bit nice. Its name... Gantz.
## 2165 When a faun named Mune becomes the Guardian of the Moon, little did he had unprepared experience with the Moon and an accident that could put both the Moon and the Sun in danger, including a corrupt titan named Necross who wants the Sun for himself and placing the balance of night and day in great peril. Now with the help of a wax-child named Glim and the warrior, Sohone who also became the Sun Guardian, they go out on an exciting journey to get the Sun back and restore the Moon to their rightful place in the sky.
## 2166 Thirty years after defeating the Galactic Empire, Han Solo and his allies face a new threat from the evil Kylo Ren and his army of Stormtroopers.
## 2167 Immediately after the events of The Desolation of Smaug, Bilbo and the dwarves try to defend Erebor's mountain of treasure from others who claim it: the men of the ruined Laketown and the elves of Mirkwood. Meanwhile an army of Orcs led by Azog the Defiler is marching on Erebor, fueled by the rise of the dark lord Sauron. Dwarves, elves and men must unite, and the hope for Middle-Earth falls into Bilbo's hands.
## 2168 A man and his son take an allegorical stroll through life with a talking bird that spouts social and political philosophy.
## 2169 Drawn from elements of West African folk tales, it depicts how a newborn boy, Kirikou, saves his village from the evil witch Karaba.
## 2170 An outcast half-wolf risks his life to prevent a deadly epidemic from ravaging Nome, Alaska.
## 2171 One-armed war veteran John J. Macreedy steps off a train at the sleepy little town of Black Rock. Once there, he begins to unravel a web of lies, secrecy, and murder.
## 2172 Turkey, cranberries, pumpkin pie... and the Peanuts gang to share them with. This is going to be the greatest Thanksgiving ever! The fun begins when Peppermint Patty invites herself and her pals to Charlie Brown's house for a REALLY big turkey party. Good grief! All our hero can cook is cold cereal and maybe toast. Is Charlie Brown doomed? Not when Linus, Snoopy and Woodstock chip in to save the (Thanksgiving) Day. With such good friends, Charlie Brown - and all of us - have so many reasons to be thankful.
## 2173 A group of scientists in San Francisco struggle to stay alive in the aftermath of a plague that is wiping out humanity, while Caesar tries to maintain dominance over his community of intelligent apes.
## 2174 Following the murder of her father by a hired hand, a 14-year-old farm girl sets out to capture the killer. To aid her, she hires the toughest U.S. Marshal she can find—a man with 'true grit'—Reuben J. 'Rooster' Cogburn.
## 2175 For three years after being forced from office, Nixon remained silent. But in summer 1977, the steely, cunning former commander-in-chief agreed to sit for one all-inclusive interview to confront the questions of his time in office and the Watergate scandal that ended his presidency. Nixon surprised everyone in selecting Frost as his televised confessor, intending to easily outfox the breezy British showman and secure a place in the hearts and minds of Americans. Likewise, Frost's team harboured doubts about their boss's ability to hold his own. But as the cameras rolled, a charged battle of wits resulted.
## 2176 In the future, the Japanese government captures a class of ninth-grade students and forces them to kill each other under the revolutionary "Battle Royale" act.
## 2177 A man trying to get home to his dog gets stuck in a time loop that forces him to relive a deadly run-in with a cop.
## 2178 When a meteor carrying a destructive plant strikes the world, a suicide squad is given hours to save their post-apocalyptic city from total collapse.
## 2179 A gangster known as "Samurai" wants to turn the waterfront of Rome into a new Las Vegas. All the local mob bosses have agreed to work for this common goal. But peace is not to last long.
## 2180 The life of George Falconer, a British college professor, is reeling with the recent and sudden loss of his longtime partner. This traumatic event makes George challenge his own will to live as he seeks the console of his close girl friend Charley, who is struggling with her own questions about life.
## 2181 In 1800, as Napoleon Bonaparte rises to power in France, a rivalry erupts between Armand and Gabriel, two lieutenants in the French Army, over a perceived insult. For over a decade, they engage in a series of duels amidst larger conflicts, including the failed French invasion of Russia in 1812, and shifts in the political and social systems of Europe.
## 2182 On their way to an afternoon on the lake, husband and wife Andrzej and Krystyna nearly run over a young hitchhiker. Inviting the young man onto the boat with them, Andrzej begins to subtly torment him; the hitchhiker responds by making overtures toward Krystyna. When the hitchhiker is accidentally knocked overboard, the husband's panic results in unexpected consequences.
## 2183 When 4 year old Amanda McCready disappears from her home and the police make little headway in solving the case, the girl's aunt, Beatrice McCready hires two private detectives, Patrick Kenzie and Angie Gennaro. The detectives freely admit that they have little experience with this type of case, but the family wants them for two reasons—they're not cops and they know the tough neighborhood in which they all live.
## 2184 A romantic drama based on the story of Carley Allison, a promising 18 year old figure skater and singer who made medical history in her fight against a rare 1 in 3.5 billion type of sarcoma.
## 2185 The hidden memoir of an elderly woman confined to a mental hospital reveals the history of her passionate yet tortured life, and of the religious and political upheavals in Ireland during the 1920s and 30s.
## 2186 Heavyweight Champ George "Iceman" Chambers is sent to a Russian jail on trumped-up drug charges. In order to win his freedom he must fight against the jailhouse fighting champ Uri Boyka in a battle to the death. This time he is not fighting for a title, he is fighting for his life!
## 2187 An enigmatic actress may have a hidden agenda when she auditions for a part in a misogynistic writer's play.
## 2188 A cross country trip to Hollywood is cut short by an unreliable engine & an unpleasant encounter with law enforcement. With the power of drag, three self proclaimed career-girls bring a bit of much needed beauty to rural middle America!
## 2189 Nada, a wanderer without meaning in his life, discovers a pair of sunglasses capable of showing the world the way it truly is. As he walks the streets of Los Angeles, Nada notices that both the media and the government are comprised of subliminal messages meant to keep the population subdued, and that most of the social elite are skull-faced aliens bent on world domination. With this shocking discovery, Nada fights to free humanity from the mind-controlling aliens.
## 2190 The comic mishaps and adventures of a young boy named Ralph, trying to convince his parents, teachers, and Santa that a Red Ryder B.B. gun really is the perfect Christmas gift for the 1940s.
## 2191 As a grisly virus rampages a city, a lone man stays locked inside his apartment, digitally cut off from seeking help and desperate to find a way out.
## 2192 During the marijuana bonanza, a violent decade that saw the origins of drug trafficking in Colombia, Rapayet and his indigenous family get involved in a war to control the business that ends up destroying their lives and their culture.
## 2193 When innocent civilians begin committing unthinkable crimes across Metropolis, Gotham City and beyond, Batman must call upon mystical counterparts to eradicate this demonic threat to the planet; enter Justice League Dark. This team of Dark Arts specialists must unravel the mystery of Earth's supernatural plague and contend with the rising, powerful villainous forces behind the siege—before it's too late for all of mankind.
## 2194 On the brink of the First World War, Albert's beloved horse Joey is sold to the Cavalry by his father. Against the backdrop of the Great War, Joey begins an odyssey full of danger, joy, and sorrow, and he transforms everyone he meets along the way. Meanwhile, Albert, unable to forget his equine friend, searches the battlefields of France to find Joey and bring him home.
## 2195 In 1950s London, renowned British dressmaker Reynolds Woodcock comes across Alma, a young, strong-willed woman, who soon becomes ever present in his life as his muse and lover.
## 2196 A sixteen-year-old boy insinuates himself into the house of a fellow student from his literature class and writes about it in essays for his French teacher. Faced with this gifted and unusual pupil, the teacher rediscovers his enthusiasm for his work, but the boy’s intrusion will unleash a series of uncontrollable events.
## 2197 On the night of 16 July 1942, ten year old Sarah and her parents are being arrested and transported to the Velodrome d'Hiver in Paris where thousands of other jews are being sent to get deported. Sarah however managed to lock her little brother in a closet just before the police entered their apartment. Sixty years later, Julia Jarmond, an American journalist in Paris, gets the assignment to write an article about this raid, a black page in the history of France. She starts digging archives and through Sarah's file discovers a well kept secret about her own in-laws.
## 2198 In Paris, Bob Montagne is practically synonymous with gambling -- and winning. He is kind, classy and well-liked by virtually everyone in town, including police inspector Ledru. However, when Bob's luck turns sour, he begins to lose friends and makes the most desperate gamble of his life: to rob the Deauville casino during Grand Prix weekend, when the vaults are full. Unfortunately, Bob soon learns that the game is rigged and the cops are on to him.
## 2199 Wallace and Gromit open a bakery, accidentally getting tied up with a murder mystery in the process. But when Wallace falls in love, Gromit is left to solve the case by himself.
## 2200 Chen Chen returns to his former school in Shanghai when he learns that his beloved instructor has been murdered. While investigating the man's death, Chen discovers that a rival Japanese school is operating a drug smuggling ring. To avenge his master’s death, Chen takes on both Chinese and Japanese assassins… and even a towering Russian.
## 2201 Upon receiving his draft notice and leaving his family ranch in Oklahoma, Claude heads to New York and befriends a tribe of long-haired hippies on his way to boot camp.
## 2202 With their father away as a chaplain in the Civil War, Jo, Meg, Beth and Amy grow up with their mother in somewhat reduced circumstances. They are a close family who inevitably have their squabbles and tragedies. But the bond holds even when, later, male friends start to become a part of the household.
## 2203 In the slums of the upper West Side of Manhattan, New York, a gang of Polish-American teenagers called the Jets compete with a rival gang of recently immigrated Puerto Ricans, the Sharks, to "own" the neighborhood streets. Tensions are high between the gangs but two romantics, one from each gang, fall in love leading to tragedy.
## 2204 The Borg, a relentless race of cyborgs, are on a direct course for Earth. Violating orders to stay away from the battle, Captain Picard and the crew of the newly-commissioned USS Enterprise E pursue the Borg back in time to prevent the invaders from changing Federation history and assimilating the galaxy.
## 2205 Zander Raines, a dazzling and tempestuous young choreographer, gives the break of a lifetime to two hopeful artists when he casts a stunning contemporary dancer, Barlow, and innovative pianist, Charlie, in New York’s most-anticipated new Broadway show: Free Dance. But the move throws off the show’s delicate creative balance when Charlie falls hard for Barlow, while Zander embraces her as his muse.
## 2206 Like some other kids, 12-year-old Trevor McKinney believed in the goodness of human nature. Like many other kids, he was determined to change the world for the better. Unlike most other kids, he succeeded.
## 2207 The third in a series of films featuring François Truffaut's alter-ego, Antoine Doinel, the story resumes with Antoine being discharged from military service. His sweetheart Christine's father lands Antoine a job as a security guard, which he promptly loses. Stumbling into a position assisting a private detective, Antoine falls for his employers' seductive wife, Fabienne, and finds that he must choose between the older woman and Christine.
## 2208 John Wick is forced out of retirement by a former associate looking to seize control of a shadowy international assassins’ guild. Bound by a blood oath to aid him, Wick travels to Rome and does battle against some of the world’s most dangerous killers.
## 2209 New Jersey car mechanic Stacie Andree and her police detective girlfriend Laurel Hester both battle to secure Hester's pension benefits after she was diagnosed with a terminal illness.
## 2210 A town—where everyone seems to be named Johnson—stands in the way of the railroad. In order to grab their land, robber baron Hedley Lemar sends his henchmen to make life in the town unbearable. After the sheriff is killed, the town demands a new sheriff from the Governor, so Hedley convinces him to send the town the first black sheriff in the west.
## 2211 A middle-aged couple suspects foul play when their neighbor's wife suddenly drops dead.
## 2212 As the president of a trashy TV channel, Max Renn is desperate for new programming to attract viewers. When he happens upon "Videodrome," a TV show dedicated to gratuitous torture and punishment, Max sees a potential hit and broadcasts the show on his channel. However, after his girlfriend auditions for the show and never returns, Max investigates the truth behind Videodrome and discovers that the graphic violence may not be as fake as he thought.
## 2213 Johnny and his young nephew forge a tenuous but transformational relationship when they embark on a cross-country trip to see life away from Los Angeles.
## 2214 A widow with three children hires a handyman to fix her house during a major storm. When not doing home repairs, he shares his philosophy of believing in the power of the universe to deliver what we want.
## 2215 A young woman's desperate search for her abducted boyfriend draws her into the infamous Colonia Dignidad, a sect nobody ever escaped from.
## 2216 Before Charles Xavier and Erik Lensherr took the names Professor X and Magneto, they were two young men discovering their powers for the first time. Before they were arch-enemies, they were closest of friends, working together with other mutants (some familiar, some new), to stop the greatest threat the world has ever known.
## 2217 Everyone abuses and humiliates a downtrodden orphan until he befriends an old man, who turns out to be the last master of the snake fist fighting style. Jackie becomes the old man's student and finds himself in battle with the master of the eagle's claw style, who has vowed to destroy the snake fist clan.
## 2218 The owner of a seedy small-town Texas bar discovers that one of his employees is having an affair with his wife. A chaotic chain of misunderstandings, lies and mischief ensues after he devises a plot to have them murdered.
## 2219 Upon reaching the train station to death, a dejected soul is informed that he is lucky and will have another chance at life. He is placed in the body of a 14-year-old boy named Kobayashi Makoto, who has just committed suicide. Watched over by a neutral spirit named Purapura, the soul must figure out what his greatest sin and mistake in his former life was, before his time limit in Makoto's body runs out. He also has a number of other lesser duties he must complete, such as understanding what led Makoto to commit suicide in the first place and learning how to enjoy his second chance at life.
## 2220 The story of acerbic 1960s comic Lenny Bruce, whose groundbreaking, no-holds-barred style and social commentary was often deemed by the establishment as too obscene for the public.
## 2221 Set during a long, hot summer on the Thamesmead Estate in Southeast London, three teenagers edge towards adulthood.
## 2222 A cameraman is knocked over during a football game. His brother-in-law, as the king of the ambulance-chasing lawyers, starts a suit while he's still knocked out. The cameraman is against it until he hears that his ex-wife will be coming to see him. He pretends to be injured to get her back, but also sees what the strain is doing to the football player who injured him.
## 2223 When decorated soldier Captain Colter Stevens wakes up in the body of an unknown man, he discovers he's part of a mission to find the bomber of a Chicago commuter train.
## 2224 After arriving in India, Indiana Jones is asked by a desperate village to find a mystical stone. He agrees – and stumbles upon a secret cult plotting a terrible plan in the catacombs of an ancient palace.
## 2225 Fourteen years after Third Impact, Shinji Ikari awakens to a world he does not remember. He hasn't aged. Much of Earth is laid in ruins, NERV has been dismantled, and people who he once protected have turned against him. Befriending the enigmatic Kaworu Nagisa, Shinji continues the fight against the angels and realizes the fighting is far from over, even when it could be against his former allies. The characters' struggles continue amidst the battles against the angels and each other, spiraling down to what could inevitably be the end of the world.
## 2226 A bravado period action film set at the end of Japan's feudal era in which a group of unemployed samurai are enlisted to bring down a sadistic lord and prevent him from ascending to the throne and plunging the country into a war-torn future.
## 2227 Yuddy, a Hong Kong playboy known for breaking girls' hearts, tries to find solace and the truth after discovering the woman who raised him isn't his mother.
## 2228 When 43-year-old hairdresser Suze Trappet finds out that she's seriously ill, she decides to go looking for a child she was forced to abandon when she was only 15. On her madcap bureaucratic quest she crosses paths with JB, a 50-year-old man in the middle of a burnout, and Mr. Blin, a blind archivist prone to overenthusiasm. The unlikely trio set off on a hilarious and poignant helterskelter journey across the city in search of Suze's long-lost child.
## 2229 Zero is a brilliant scientist, but unfortunate because 20 years ago was publicly humiliated and lost in college Helena the love of his life. One day, an accidental experience with one of his inventions makes him travel in time, more precisely, to the past. After the chance to change his story, Zero returns to this totally changed.
## 2230 Based on the true story of a Russian serial killer who, over many years, claimed victim to over 50 people. His victims were mostly under the age of 17. In what was then a communists state, the police investigations were hampered by bureaucracy, incompetence and those in power. The story is told from the viewpoint of the detective in charge of the case.
## 2231 "Stalingrad" follows the progress of a German Platoon through the brutal fighting of the Battle of Stalingrad. After having half their number wiped out and after being placed under the command of a sadistic Captain, the Lieutenant of the platoon leads his men to desert. The men of the platoon attempt to escape from the city which is now surrounded by the Soviet Army.
## 2232 When his helicopter goes down during his fourth tour of duty in Afghanistan, Marine Sam Cahill is presumed dead. Back home, brother Tommy steps in to look over Sam’s wife, Grace, and two children. Sam’s surprise homecoming triggers domestic mayhem.
## 2233 When Madame Adelaide Bonfamille leaves her fortune to Duchess and her children—Bonfamille’s beloved family of cats—the butler plots to steal the money and kidnaps the legatees, leaving them out on a country road. All seems lost until the wily Thomas O’Malley Cat and his jazz-playing alley cats come to the aristocats’ rescue.
## 2234 With his eye on a lovely aristocrat, a gifted illusionist named Eisenheim uses his powers to win her away from her betrothed, a crown prince. But Eisenheim's scheme creates tumult within the monarchy and ignites the suspicion of a dogged inspector.
## 2235 A Spanish orchestra conductor deals with the mysterious disappearance of his girlfriend.
## 2236 In 1890s India, an arrogant British commander challenges the harshly taxed residents of Champaner to a high-stakes cricket match.
## 2237 In 9th century China, a corrupt government wages war against a rebel army called the Flying Daggers. A romantic warrior breaks a beautiful rebel out of prison to help her rejoin her fellows, but things are not what they seem.
## 2238 Two popular teen boys, best friends since childhood, discover their lives, families, and girlfriends dramatically upended after an unexpected incident occurs on the night of a 17th birthday party.
## 2239 A team of rag-tag girls with their own agenda form Team India competing for international fame in field hockey. Their coach, the ex-men's Indian National team captain, returns from a life of shame after being unjustly accused of match fixing in his last match. Can he give the girls the motivation required to win, while dealing with the shadows of his own past?
## 2240 After refusing big and prestigious awards all over the world, Mr. Mantovani, Literature Nobel Prize winner, accepts an invitation to visit his hometown in Argentina, which has been the inspiration for all of his books. It turns out that accepting this invitation is the worse idea of his life. Expect the unexpected when you have used real people as characters in your novels!
## 2241 In Memphis, Tennessee, over the course of a single night, the Arcade Hotel, run by an eccentric night clerk and a clueless bellboy, is visited by a young Japanese couple traveling in search of the roots of rock; an Italian woman in mourning who stumbles upon a fleeing charlatan girl; and a comical trio of accidental thieves looking for a place to hide.
## 2242 French secret service agent Josselin Beaumont is dispatched to take down African warlord N'Jala. But when his assignment is canceled, he's shocked to learn that his government is surrendering him to local authorities. He is given a mock trial and sentenced to 20 years of hard labor. But Beaumont escapes from prison and vows not only to avenge himself against his betrayers but also to finish his original assignment.
## 2243 When rich Mr. Benjamin Ballon's Spanish driver is found shot dead, Inspector Jacques Clouseau is the first official on the scene. All evidence suggests Maria Gambrelli, the maid, to be the murderer. But Clouseau, being attracted to the beautiful girl, is convinced that she is hiding something. So, he has her released from jail and secretly tries to follow her. Things do not work out the way the inspector wants and people keep ending up murdered, and every time, innocent Maria seems to be the killer. But with someone important wanting Clouseau and nobody else to cover this case, his tolerance-challenged boss Charles Dreyfuss is close to losing his mind when casualties keep turning up. And Clouseau keeps on causing trouble without knowing it...
## 2244 In the near future, Cameron Turner is diagnosed with a terminal illness. Presented with an experimental solution to shield his wife and son from grief, he grapples with altering their fate.
## 2245 The love story between a pampered Cocker Spaniel named Lady and a streetwise mongrel named Tramp. Lady finds herself out on the street after her owners have a baby and is saved from a pack by Tramp, who tries to show her to live her life footloose and collar-free.
## 2246 The crew of a horror web series travels to an abandoned asylum for a live broadcast, but they encounter much more than expected as they move deeper inside the nightmarish old building.
## 2247 Lorraine and Ed Warren travel to north London to help a single mother raising four children alone in a house plagued by malicious spirits.
## 2248 Spain, 1939. In the last days of the Spanish Civil War, the young Carlos arrives at the Santa Lucía orphanage, where he will make friends and enemies as he follows the quiet footsteps of a mysterious presence eager for revenge.
## 2249 A wealthy playboy named Bruce Wayne and a Chicago cop named Jim Gordon both return to Gotham City where their lives unexpectedly intersect.
## 2250 With one coin to make a wish at the piazza fountain, a peasant girl encounters two competing street performers who'd prefer the coin find its way into their tip jars. The little girl, Tippy, is caught in the middle as a musical duel ensues between the one-man-bands.
## 2251 Shallow, rich and socially successful Cher is at the top of her Beverly Hills high school's pecking scale. Seeing herself as a matchmaker, Cher first coaxes two teachers into dating each other. Emboldened by her success, she decides to give hopelessly klutzy new student Tai a makeover. When Tai becomes more popular than she is, Cher realizes that her disapproving ex-stepbrother was right about how misguided she was -- and falls for him.
## 2252 Aspiring pop star Erica ends up as the entertainment at her ex-fiancé’s wedding after reluctantly taking a gig at a luxurious island resort while in the wake of a music career meltdown.
## 2253 Cyborg detective Batou is assigned to investigate a series of murders committed by gynoids—doll-like cyborgs, which all malfunctioned, killed, then self-destructed afterwards. The brains of the gynoids initialize in order to protect their manufacturer's software, but in one gynoid, which Batou himself neutralized, one file remains: a voice speaking the phrase "Help me."
## 2254 With King Richard off to the Crusades, Prince John and his slithering minion, Sir Hiss, set about taxing Nottingham's citizens with support from the corrupt sheriff - and staunch opposition by the wily Robin Hood and his band of merry men.
## 2255 In a violent, near-apocalyptic Detroit, evil corporation Omni Consumer Products wins a contract from the city government to privatize the police force. To test their crime-eradicating cyborgs, the company leads street cop Alex Murphy into an armed confrontation with crime lord Boddicker so they can use his body to support their untested RoboCop prototype. But when RoboCop learns of the company's nefarious plans, he turns on his masters.
## 2256 When Tony Stark tries to jumpstart a dormant peacekeeping program, things go awry and Earth’s Mightiest Heroes are put to the ultimate test as the fate of the planet hangs in the balance. As the villainous Ultron emerges, it is up to The Avengers to stop him from enacting his terrible plans, and soon uneasy alliances and unexpected action pave the way for an epic and unique global adventure.
## 2257 A highly intelligent chimpanzee named Caeser has been living a peaceful suburban life ever since he was born. But when he gets taken to a cruel primate facility, Caeser decides to revolt against those who have harmed him.
## 2258 Three juvenile delinquents arrive at a correctional center and are put under the care of an experienced guard.
## 2259 The lone inhabitants of an abandoned police station are under attack by the overwhelming numbers of a seemingly unstoppable street gang.
## 2260 Elsa, Anna, Kristoff and Olaf head far into the forest to learn the truth about an ancient mystery of their kingdom.
## 2261 When Shaggy inherits an old Southern estate from an uncle, he and his sleuthing hounds take a road trip. But they don't even make it to the mansion before the haunting starts. Amid headless horsemen, walking skeletons, and a menacing butler, Scooby, Scrappy, and Shaggy get majorly spooked.
## 2262 Based on the real-life experiences of Ed Horman. A conservative American businessman travels to Chile to investigate the sudden disappearance of his son after a military takeover. Accompanied by his son's wife he uncovers a trail of cover-ups that implicate the US State department which supports the dictatorship.
## 2263 The boy Mowgli makes his way to the man-village with Bagheera, the wise panther. Along the way he meets jazzy King Louie, the hypnotic snake Kaa and the lovable, happy-go-lucky bear Baloo, who teaches Mowgli "The Bare Necessities" of life and the true meaning of friendship.
## 2264 Jesse Aarons trained all summer to become the fastest runner in school, so he's very upset when newcomer Leslie Burke outruns him and everyone else. Despite this and other differences, including that she's rich, he's poor, and she's a city girl, he's a country boy, the two become fast friends. Together, they create Terabithia, a land of monsters, trolls, ogres, and giants and rule as king and queen.
## 2265 Wounded and branded an outlaw, a young accountant named William Blake flees gunmen and travels the frontier. Nobody, an outcast Native American, aides Blake along a journey beyond the frailty of life as his physical existence grows thin.
## 2266 As a young New York couple goes from college romance to marriage and the birth of their first child, the unexpected twists of their journey create reverberations that echo over continents and through lifetimes.
## 2267 The alienating and repetitive life of a group of heroin junkies in 1980s Rome.
## 2268 Geremia, an aging tailor/money lender, is a repulsive, mean, stingy man who lives alone in his shabby house with his scornful, bedridden mother. He has a morbid, obsessive relationship with money and he uses it to insinuate himself into other people's affairs, pretending to be the "family friend". One day he is asked by a man to lend him money for the wedding of Rosalba, his daughter. Geremia falls in love at first sight with the bewitching creature and and soon indulges in a "beauty and the beast" relationship...
## 2269 Two drifters, one a gentle but slow giant, try to make money working the fields during the Depression so they can fulfill their dreams.
## 2270 An endearing light comedy about a woman who spontaneously becomes a resident of Venice after her family left her begin. While enjoying the wonderful people she meets she achieves a new life and the first time independent of her family.
## 2271 Hud Bannon is a ruthless young man who tarnishes everything and everyone he touches. Hud represents the perfect embodiment of alienated youth, out for kicks with no regard for the consequences. There is bitter conflict between the callous Hud and his stern and highly principled father, Homer. Hud's nephew Lon admires Hud's cheating ways, though he soon becomes too aware of Hud's reckless amorality to bear him anymore. In the world of the takers and the taken, Hud is a winner. He's a cheat, but, he explains, "I always say the law was meant to be interpreted in a lenient manner."
## 2272 Carrie White, a shy and troubled teenage girl who is tormented by her high school peers and her fanatically religious mother, begins to use her powers of telekinesis to exact revenge upon them.
## 2273 A husband is on trial for the attempted murder of his wife, in what is seemingly an open/shut case for the ambitious district attorney trying to put him away. However, there are surprises for both around every corner, and, as a suspenseful game of cat-and-mouse is played out, each must manipulate and outwit the other.
## 2274 Construction worker Douglas Quaid's obsession with the planet Mars leads him to visit Recall, a company who manufacture memories. Something goes wrong during his memory implant turning Doug's life upside down and even to question what is reality and what isn't.
## 2275 An investigator from the War Crimes Commission travels to Connecticut to find an infamous Nazi, who may be hiding out in a small town in the guise of a distinguished professor engaged to the Supreme Court Justice’s daughter.
## 2276 The story revolves around a Basque Roman Catholic priest dedicated to committing as many sins as possible, a death metal salesman from Carabanchel, and the Italian host of a TV show on the occult. These go on a literal "trip" through Christmas-time Madrid to hunt for and prevent the reincarnation of the Antichrist.
## 2277 Starship C57D travels to planet Altair 4 in search of the crew of spaceship "Bellerophon," a scientific expedition that has been missing for 20 years, only to find themselves unwelcome by the expedition's lone survivor and warned of destruction by an invisible force if they don't turn back immediately.
## 2278 The true story of Marine Corporal Megan Leavey, who forms a powerful bond with an aggressive combat dog, Rex. While deployed in Iraq, the two complete more than 100 missions and save countless lives, until an IED explosion puts their faithfulness to the test.
## 2279 An ex-fighter pilot forced to take over the controls of an airliner when the flight crew succumbs to food poisoning.
## 2280 A widowed farmer and his son warily take in a mysterious, injured man with a satchel of cash. When a posse of men claiming to be the law come for the money, the farmer must decide who to trust. Defending a siege of his homestead, the farmer reveals a talent for gun-slinging that surprises everyone calling his true identity into question.
## 2281 Deformed since birth, a bitter man known only as the Phantom lives in the sewers underneath the Paris Opera House. He falls in love with the obscure chorus singer Christine, and privately tutors her while terrorizing the rest of the opera house and demanding Christine be given lead roles. Things get worse when Christine meets back up with her childhood acquaintance Raoul and the two fall in love
## 2282 Jack Beauregard, an ageing gunman of the Old West, only wants to retire in peace and move to Europe. But a young gunfighter, known as "Nobody", who idolizes Beauregard, wants him to go out in a blaze of glory. So he arranges for Jack to face the 150-man gang known as The Wild Bunch and earn his place in history.
## 2283 Two troubled men face their terrible destinies and events of their past as they join together on a mission to find the Holy Grail and thus to save themselves.
## 2284 Markus returns home to care for his daughter when his wife dies in a tragic train accident. However, when a survivor of the wreck surfaces and claims foul play, Markus suspects his wife was murdered and embarks on a mission to find those responsible.
## 2285 In this animated musical, a girl builds a rocket ship and blasts off, hoping to meet a mythical moon goddess.
## 2286 The Cobol Job is a fourteen-minute animated prequel to Christopher Nolan’s award-winning movie: Inception, detailing the heist on Mr. Kaneda's mind by Nash, Cobb, Arthur, and several Cobol Engineering thugs.
## 2287 A strange family: 17-year-old Phil lives with his mother and twin sister in an old mansion on the outskirts of town. When he returns from summer camp, the mood in the mansion has soured somehow. Phil doesn’t worry about it, hanging out with his best friend Kat instead. When he starts to feel attracted to a mysterious new student at school, Phil is plunged into emotional turmoil only exacerbated by the trouble at home.
## 2288 Unfounded suspicions lead a married couple to begin divorce proceedings, whereupon they start undermining each other's attempts to find new romance.
## 2289 Jimmy Rabbitte, just a tick out of school, gets a brilliant idea: to put a soul band together in Barrytown, his slum home in north Dublin. First he needs musicians and singers: things slowly start to click when he finds three fine-voiced females virtually in his back yard, a lead singer (Deco) at a wedding, and, responding to his ad, an aging trumpet player, Joey "The Lips" Fagan.
## 2290 Stockholm, the fifties. Though academically bright, violent pupil Erik Ponti is expelled from his state school with the headmaster’s words “there’s only one word for people like you – evil… what you need is a good thrashing, and more”. In fact already Erik frequently receives a ‘good’ thrashing at the hands of his sadistic stepfather – so he is packed off by his mother to boardingschool
## 2291 Once a rising star of the rodeo circuit, and a gifted horse trainer, young cowboy Brady is warned that his riding days are over after a horse crushed his skull at a rodeo. In an attempt to regain control of his own fate, Brady undertakes a search for a new identity and what it means to be a man in the heartland of the United States.
## 2292 The film takes place one year after the events of Captain America: The First Avenger, in which Agent Carter, a member of the Strategic Scientific Reserve, is in search of the mysterious Zodiac.
## 2293 A black and white silent movie, based on the Snow White fairy tale, that is set in a romantic version of 1920s Seville and centered on a female bullfighter.
## 2294 A serial-killer frightens Paris by phoning young ladies at night, telling them insults about their lives. Minos, as he calls himself, wants to prevent the world from free women and he targets at first these ones. Commissaire Letellier is given the investigation and he has hard work with the maniac.
## 2295 Veteran buttoned-down LAPD detective Roger Murtaugh is partnered with unhinged cop Martin Riggs, who -- distraught after his wife's death -- has a death wish and takes unnecessary risks with criminals at every turn. The odd couple embark on their first homicide investigation as partners, involving a young woman known to Murtaugh with ties to a drug and prostitution ring.
## 2296 New York Times reporters Megan Twohey and Jodi Kantor break one of the most important stories in a generation — a story that helped launch the #MeToo movement and shattered decades of silence around the subject of sexual assault in Hollywood.
## 2297 An upper middle-class French family celebrates a birthday in a restaurant. In one evening and during one meal, family history, tensions, collective and separate grudges, delights, and memories both clash and coalesce.
## 2298 The story of Usnavi, a bodega owner who has mixed feelings about closing his store and retiring to the Dominican Republic or staying in Washington Heights.
## 2299 Lady Bird McPherson, a strong willed, deeply opinionated, artistic 17 year old comes of age in Sacramento. Her relationship with her mother and her upbringing are questioned and tested as she plans to head off to college.
## 2300 After four years apart, Ahmad returns to his wife Marie in Paris in order to progress their divorce. During his brief stay, he cannot help noticing the strained relationship between Marie and her daughter Lucie. As he attempts to improve matters between mother and daughter Ahmad unwittingly lifts the lid on a long buried secret...
## 2301 When teen Sarah is forced to babysit Toby, her baby stepbrother, she summons Jareth the Goblin King to take him away. When he is actually kidnapped, Sarah is given just thirteen hours to solve a labyrinth and rescue him.
## 2302 The true story of Harvey Milk, the first openly gay man ever elected to public office. In San Francisco in the late 1970s, Harvey Milk becomes an activist for gay rights and inspires others to join him in his fight for equal rights that should be available to all Americans.
## 2303 Tita is passionately in love with Pedro, but her controlling mother forbids her from marrying him. When Pedro marries her sister, Tita throws herself into her cooking and discovers she can transfer her emotions through the food she prepares, infecting all who eat it with her intense heartbreak.
## 2304 Thurgood Marshall, the first African-American Supreme Court Justice, battles through one of his career-defining cases.
## 2305 As the Iranian revolution reaches a boiling point, a CIA 'exfiltration' specialist concocts a risky plan to free six Americans who have found shelter at the home of the Canadian ambassador.
## 2306 While the Saiyan Paragus persuades Vegeta to rule a new planet, King Kai alerts Goku of the South Galaxy's destruction by an unknown Super Saiyan.
## 2307 Ning Tsai-Shen, a humble tax collector, arrives in a small town to carry out his work. No one is willing to give him shelter for the night, so he ends up in the haunted Lan Ro temple. There, he meets Taoist Swordsman Yen Che-Hsia, and the beautiful Nieh Hsiao-Tsing, with whom he falls in love.
## 2308 The story of Bobby Sands, the IRA member who led the 1981 hunger strike during The Troubles in which Irish Republican prisoners tried to win political status.
## 2309 As adults, best friends Julien and Sophie continue the odd game they started as children -- a fearless competition to outdo one another with daring and outrageous stunts. While they often act out to relieve one another's pain, their game might be a way to avoid the fact that they are truly meant for one another.
## 2310 Ash, a handsome, shotgun-toting, chainsaw-armed department store clerk, is time warped backwards into England's Dark Ages, where he romances a beauty and faces legions of the undead.
## 2311 An American Ambassador is killed during an attack at a U.S. compound in Libya as a security team struggles to make sense out of the chaos.
## 2312 Forced out of their apartment due to dangerous works on a neighboring building, Emad and Rana move into a new flat in the center of Tehran. An incident linked to the previous tenant will dramatically change the young couple’s life.
## 2313 Tom, greeting-card writer and hopeless romantic, is caught completely off-guard when his girlfriend, Summer, suddenly dumps him. He reflects on their 500 days together to try to figure out where their love affair went sour, and in doing so, Tom rediscovers his true passions in life.
## 2314 The story of the life and career of eccentric avant-garde comedian, Andy Kaufman.
## 2315 Yuri Orlov is a globetrotting arms dealer and, through some of the deadliest war zones, he struggles to stay one step ahead of a relentless Interpol agent, his business rivals and even some of his customers who include many of the world's most notorious dictators. Finally, he must also face his own conscience.
## 2316 South Africa, 1978. Tim Jenkin and Stephen Lee, two white political activists from the African National Congress imprisoned by the apartheid regime, put a plan in motion to escape from the infamous Pretoria Prison.
## 2317 The historical recreation of the 1942 Wannsee Conference, in which Nazi and SS leaders gathered in a Berlin suburb to discuss the "Final Solution to the Jewish Question". Led by SS-General Reinhard Heydrich, this group of high ranking German officials came to the historic and far reaching decision that the Jews of Europe were to be exterminated in what would come to be known as the Holocaust.
## 2318 Writer Paul Benjamin is nearly hit by a bus when he leaves Auggie Wren's smoke shop. Stranger Rashid Cole saves his life, and soon middle-aged Paul tells homeless Rashid that he wouldn't mind a short-term housemate. Still grieving over his wife's murder, Paul is moved by both Rashid's quest to reconnect with his father and Auggie's discovery that a woman who might be his daughter is about to give birth.
## 2319 The activities of rampaging, indiscriminate serial killer Ben are recorded by a willingly complicit documentary team, who eventually become his accomplices and active participants. Ben provides casual commentary on the nature of his work and arbitrary musings on topics of interest to him, such as music or the conditions of low-income housing, and even goes so far as to introduce the documentary crew to his family. But their reckless indulgences soon get the better of them.
## 2320 Sophie, a quiet and shy maid working for an upper-class French family, finds a friend in the energetic and uncompromising postmaster Jeanne, who encourages her to stand up against her bourgeois employers.
## 2321 Ben Sanderson, an alcoholic Hollywood screenwriter who lost everything because of his drinking, arrives in Las Vegas to drink himself to death. There, he meets and forms an uneasy friendship and non-interference pact with prostitute Sera.
## 2322 Gritty adaption of William Shakespeare's play about the English King's bloody conquest of France.
## 2323 A Coca-Cola bottle dropped from an airplane raises havoc among a normally peaceful tribe of African bushmen who believe it to be a utensil of the gods.
## 2324 What happened to the children who lived through the Pandemic? Stan, Kyle, Cartman and Kenny survived but will never be the same Post Covid.
## 2325 Barbie and her sisters, Skipper, Stacie and Chelsea, and their adorable new puppy friends find unexpected mystery and adventure when they return to their hometown of Willows. While going through mementos in Grandma's attic, the sisters discover an old map, believed to lead to a long-lost treasure buried somewhere in the town. With their puppy pals in tow, the four girls go on an exciting treasure hunt, along the way discovering that the greatest treasure of all is the love and laughter they share as sisters!
## 2326 Columbus has made a habit of running from what scares him. Tallahassee doesn't have fears. If he did, he'd kick their ever-living ass. In a world overrun by zombies, these two are perfectly evolved survivors. But now, they're about to stare down the most terrifying prospect of all: each other.
## 2327 Four Harlem friends -- Bishop, Q, Steel and Raheem -- dabble in petty crime, but they decide to go big by knocking off a convenience store. Bishop, the magnetic leader of the group, has the gun. But Q has different aspirations. He wants to be a DJ and happens to have a gig the night of the robbery. Unfortunately for him, Bishop isn't willing to take no for answer in a game where everything's for keeps.
## 2328 Dr. Henry Jekyll believes that there are two distinct sides to men - a good and an evil side. He believes that by separating the two, man can become liberated. He succeeds in his experiments with chemicals to accomplish this and transforms into Hyde to commit horrendous crimes. When he discontinues use of the drug, it is already too late.
## 2329 Pierre is 25 when he returns from Wyoming to his fiancée and take over the family farm. Twenty years later, the farm expanded and so did the family.
## 2330 Two young Chicago hoodlums, Tom Powers and Matt Doyle, rise up from their poverty-stricken slum life to become petty thieves, bootleggers and cold-blooded killers. But with street notoriety and newfound wealth, the duo feels the heat from the cops and rival gangsters both. Despite his ruthless criminal reputation, Tom tries to remain connected to his family, however, gang warfare and the need for revenge eventually pull him away.
## 2331 William Thacker is a London bookstore owner whose humdrum existence is thrown into romantic turmoil when famous American actress Anna Scott appears in his shop. A chance encounter over spilled orange juice leads to a kiss that blossoms into a full-blown affair. As the average bloke and glamorous movie star draw closer and closer together, they struggle to reconcile their radically different lifestyles in the name of love.
## 2332 When the grim reaper comes to collect the soul of megamogul Bill Parrish, he arrives with a proposition: Host him for a "vacation" among the living in trade for a few more days of existence. Parrish agrees, and using the pseudonym Joe Black, Death begins taking part in Parrish's daily agenda and falls in love with the man's daughter. Yet when Black's holiday is over, so is Parrish's life.
## 2333 Ângela Cristina, mother of teenager Maria de Lourdes, has to deal with the difficulties and delights of guiding her daughter during one of the most complicated stages of life.
## 2334 A boy imagines a monster that helps him deal with his difficult life and see the world in a different way.
## 2335 For generations, two rival French villages, Longueverne and Velrans, have been at war. But this is no ordinary conflict, for the on-going hostilities are between two armies of young schoolboys. When he is beaten by his father for having lost his buttons, the leader of the Longueverne army, Lebrac, has an idea which will give his side the advantage: next time, he and his brave soldiers will go in battle without their clothes...
## 2336 After being bitten by a genetically altered spider at Oscorp, nerdy but endearing high school student Peter Parker is endowed with amazing powers to become the superhero known as Spider-Man.
## 2337 A woman in her sixties embarks on a journey through the western United States after losing everything in the Great Recession, living as a van-dwelling modern-day nomad.
## 2338 A depressed musician reunites with his lover in the desolate streets of Detroit. Though their romance has endured several centuries, it is tested by the arrival of her capricious and unpredictable younger sister.
## 2339 Two drag queens and a transgender woman contract to perform a drag show at a resort in Alice Springs, a town in the remote Australian desert. As they head west from Sydney aboard their lavender bus, Priscilla, the three friends come to the forefront of a comedy of errors, encountering a number of strange characters, as well as incidents of homophobia, whilst widening comfort zones and finding new horizons.
## 2340 In 1978, two rival groups at Camp Nightwing must band together to solve a terrifying mystery when horrors from their towns' history come alive.
## 2341 As Emily struggles to fit in at home and at school, she discovers a small red puppy who is destined to become her best friend. When Clifford magically undergoes one heck of a growth spurt, becomes a gigantic dog and attracts the attention of a genetics company, Emily and her Uncle Casey have to fight the forces of greed as they go on the run across New York City. Along the way, Clifford affects the lives of everyone around him and teaches Emily and her uncle the true meaning of acceptance and unconditional love.
## 2342 Secret agent OSS 117 foils Nazis, beds local beauties, and brings peace to the Middle East.
## 2343 In 18th century France, Marquise de Merteuil asks her ex-lover Vicomte de Valmont to seduce the future wife of another ex-lover of hers in return for one last night with her. Yet things don’t go as planned.
## 2344 When Ellen, the matriarch of the Graham family, passes away, her daughter's family begins to unravel cryptic and increasingly terrifying secrets about their ancestry.
## 2345 Louis C.K. muses on religion, eternal love, giving dogs drugs, email fights, teachers and more in a live performance from Washington, D.C.
## 2346 Based on true events about the foot soldiers of the early feminist movement who were forced underground to evade the State.
## 2347 Eddie Murphy delights, shocks and entertains with dead-on celebrity impersonations, observations on '80s love, sex and marriage, a remembrance of Mom's hamburgers and much more.
## 2348 The legendary true story of the Red Dog who united a disparate local community while roaming the Australian outback in search of his long lost master.
## 2349 Cal Weaver is living the American dream. He has a good job, a beautiful house, great children and a beautiful wife, named Emily. Cal's seemingly perfect life unravels, however, when he learns that Emily has been unfaithful and wants a divorce. Over 40 and suddenly single, Cal is adrift in the fickle world of dating. Enter, Jacob Palmer, a self-styled player who takes Cal under his wing and teaches him how to be a hit with the ladies.
## 2350 Dolores Claiborne was accused of killing her abusive husband twenty years ago, but the court's findings were inconclusive and she was allowed to walk free. Now she has been accused of killing her employer, Vera Donovan, and this time there is a witness who can place her at the scene of the crime. Things look bad for Dolores when her daughter Selena, a successful Manhattan magazine writer, returns to cover the story.
## 2351 A man receives a mysterious e-mail appearing to be from his wife, who was murdered years earlier. As he frantically tries to find out whether she's alive, he finds himself being implicated in her death.
## 2352 A fairy godmother helps a princess disguise herself so she won't have to marry her father.
## 2353 Bunny and Naina meet when they graduate from college and again in their late 20s.
## 2354 A mysterious group of ninjas makes a surprise attack on the Konohagakure, which takes great damage. The nightmare of another Shinobi World War could become a reality. Sasuke, who was still a missing nin from Konoha trying to kill his brother, Itachi, appears for the second time in front of Naruto at an unknown location to prevent it from happening.
## 2355 A French illusionist travels to Scotland to work. He meets a young woman in a small village. Their ensuing adventure in Edinburgh changes both their lives forever.
## 2356 A struggling female soprano finds work playing a male female impersonator, but it complicates her personal life.
## 2357 Bo Peep explains what happened to herself and her sheep between the events of Toy Story 2 and Toy Story 4.
## 2358 The story of the life of comedienne Fanny Brice, from her early days in the Jewish slums of the Lower East Side, to the height of her career with the Ziegfeld Follies, including her marriage to and eventual divorce from her second husband, Nick Arnstein.
## 2359 Based on the story of Jesse Owens, the athlete whose quest to become the greatest track and field athlete in history thrusts him onto the world stage of the 1936 Olympics, where he faces off against Adolf Hitler's vision of Aryan supremacy.
## 2360 When an impulsive boy named Kenai is magically transformed into a bear, he must literally walk in another's footsteps until he learns some valuable life lessons. His courageous and often zany journey introduces him to a forest full of wildlife, including the lovable bear cub Koda, hilarious moose Rutt and Tuke, woolly mammoths and rambunctious rams.
## 2361 Geeky teenager David and his popular twin sister, Jennifer, get sucked into the black-and-white world of a 1950s TV sitcom called "Pleasantville," and find a world where everything is peachy keen all the time. But when Jennifer's modern attitude disrupts Pleasantville's peaceful but boring routine, she literally brings color into its life.
## 2362 Zachary, 17 years old, gets out of jail. Rejected by his mother, he hangs out in the mean streets of Marseille. He falls in love with Shéhérazade, a young prostitute of whom he becomes the pimp without realizing it...
## 2363 Anna, a young novitiate in 1960s Poland, is on the verge of taking her vows when she discovers a family secret dating back to the years of the German occupation.
## 2364 During the Iraq War, a Sergeant recently assigned to an army bomb squad is put at odds with his squad mates due to his maverick way of handling his work.
## 2365 Five oddball criminals planning a bank robbery rent rooms on a cul-de-sac from an octogenarian widow under the pretext that they are classical musicians.
## 2366 A surreal comedy depicting a diverse cast of characters and the changes they undergo as the German tourist Jasmin interacts with each of them at a remote truck stop in the middle of the Mojave desert.
## 2367 Sam Bowden is a small-town corporate attorney. Max Cady is a tattooed, cigar-smoking, Bible-quoting, psychotic rapist. What do they have in common? 14 years ago, Sam was a public defender assigned to Max Cady's rape trial, and he made a serious error: he hid a document from his illiterate client that could have gotten him acquitted. Now, the cagey Cady has been released, and he intends to teach Sam Bowden and his family a thing or two about loss.
## 2368 After a magical night together, Adri voluntarily turns himself into the psychiatric institution where Carla lives.
## 2369 The movie tells the story about a girl who has to hide and survive from a right wing terrorist while looking for her little sister during the terrorist attacks in Norway on the island Utøya, July 22nd.
## 2370 Peshwa Bajirao married to Kashibai, falls in love with Mastani, a warrior princess in distress. They struggle to make their love triumph amid opposition from his conservative family.
## 2371 The Boat That Rocked is an ensemble comedy, where the romance is between the young people of the 60s, and pop music. It's about a band of DJs that captivate Britain, playing the music that defines a generation and standing up to a government that wanted control of popular culture via the British Broadcasting Corporation. Loosely based on the events in Britain in the 60's when the Labour government of Harold Wilson, wanted to bring the pirate radio stations under control, enough to see the passage of the Marine Broadcasting Offences Act on 15 August 1967. Also known as "Pirate Radio".
## 2372 An aging, reclusive Southern belle plagued by a horrifying family secret descends into madness after the arrival of a lost relative.
## 2373 Harold Crick is a lonely IRS agent whose mundane existence is transformed when he hears a mysterious voice narrating his life.
## 2374 A young girl overcomes her disadvantaged upbringing in the slums of Uganda to become a Chess master.
## 2375 Gretta, a budding songwriter, finds herself alone after her boyfriend Dave ditches her. Her life gains purpose when Dan, a record label executive, notices her talent.
## 2376 At the turn of the century in a Welsh mining village, the Morgans (he stern, she gentle) raise coal-mining sons and hope their youngest will find a better life.
## 2377 Lawyer Richard Goodwin discovers that 'Twenty-One', a successful TV quiz show, is rigged and decides to expose the team behind the show.
## 2378 A teenager who's lived a sheltered life because she's allergic to everything, falls for the boy who moves in next door.
## 2379 Young princess Anna of Arendelle dreams about finding true love at her sister Elsa’s coronation. Fate takes her on a dangerous journey in an attempt to end the eternal winter that has fallen over the kingdom. She's accompanied by ice delivery man Kristoff, his reindeer Sven, and snowman Olaf. On an adventure where she will find out what friendship, courage, family, and true love really means.
## 2380 A young photographer Thun and his girlfriend Jane discover mysterious shadows in their photographs after fleeing the scene of an accident. As they investigate the phenomenon, they find other photographs contain similar supernatural images, that Thun's best friends are being haunted as well, and Jane discovers that her boyfriend has not told her everything. It soon becomes clear that you can not escape your past.
## 2381 A man convicted of murdering his wife escapes from prison and works with a woman to try and prove his innocence.
## 2382 After being wrongfully expelled from Harvard University, American Matt Buckner flees to his sister's home in England. Once there, he is befriended by her charming and dangerous brother-in-law, Pete Dunham, and introduced to the underworld of British football hooliganism. Matt learns to stand his ground through a friendship that develops against the backdrop of this secret and often violent world. 'Green Street Hooligans' is a story of loyalty, trust and the sometimes brutal consequences of living close to the edge.
## 2383 When teenager Elle's first kiss leads to a forbidden romance with the hottest boy in high school, she risks her relationship with her best friend.
## 2384 An other-worldly story, set against the backdrop of Cold War era America circa 1962, where a mute janitor working at a lab falls in love with an amphibious man being held captive there and devises a plan to help him escape.
## 2385 Former cop Brian O'Conner partners with ex-con Dom Toretto on the opposite side of the law. Since Brian and Mia Toretto broke Dom out of custody, they've blown across many borders to elude authorities. Now backed into a corner in Rio de Janeiro, they must pull one last job in order to gain their freedom.
## 2386 Tired of the crime overrunning the streets of Boston, Irish Catholic twin brothers Conner and Murphy are inspired by their faith to cleanse their hometown of evil with their own brand of zealous vigilante justice. As they hunt down and kill one notorious gangster after another, they become controversial folk heroes in the community. But Paul Smecker, an eccentric FBI agent, is fast closing in on their blood-soaked trail.
## 2387 When two poor Greasers, Johnny and Ponyboy, are assaulted by a vicious gang, the Socs, and Johnny kills one of the attackers, tension begins to mount between the two rival gangs, setting off a turbulent chain of events.
## 2388 This animated short revolves around the events causing an electrical systems failure on the west coast of the US. According to Blade Runner 2049’s official timeline, this failure leads to cities shutting down, financial and trade markets being thrown into chaos, and food supplies dwindling. There’s no proof as to what caused the blackouts, but Replicants — the bio-engineered robots featured in the original Blade Runner, are blamed.
## 2389 On the night of an astronomical anomaly, eight friends at a dinner party experience a troubling chain of reality bending events.
## 2390 Blind traveler Zatoichi is a master swordsman and a masseur with a fondness for gambling on dice games. When he arrives in a village torn apart by warring gangs, he sets out to protect the townspeople.
## 2391 A young writer begins an affair with an older woman from France whose open marriage to a diplomat dictates that they can meet only between the hours of 5 p.m. to 7 p.m.
## 2392 Whether we’re young or forever young at heart, the Hundred Acre Wood calls to that place in each of us that still believes in magic. Join pals Pooh, Piglet, Kanga, Roo, Owl, Rabbit, Tigger and Christopher Robin as they enjoy their days together and sing their way through adventures.
## 2393 The story of Oakland Athletics general manager Billy Beane's successful attempt to put together a baseball team on a budget, by employing computer-generated analysis to draft his players.
## 2394 It's no accident when wealthy Charles falls for Jean. Jean is a con artist with her sights set on Charles' fortune. Matters complicate when Jean starts falling for her mark. When Charles suspects Jean is a gold digger, he dumps her. Jean, fixated on revenge and still pining for the millionaire, devises a plan to get back in Charles' life. With love and payback on her mind, she re-introduces herself to Charles, this time as an aristocrat named Lady Eve Sidwich.
## 2395 A young woman with a mysterious past lands in Southport, North Carolina where her bond with a widower forces her to confront the dark secret that haunts her.
## 2396 Ninjas with bloodline limits begin disappearing in all the countries and blame points toward the fire nation. By Tsunade's order, Kakashi is sacrificed to prevent an all out war. After inheriting charms left by Kakashi, Naruto fights through friends and foes to prevent his death while changing the minds of those who've inherited the will of fire.
## 2397 Wart is a young boy who aspires to be a knight's squire. On a hunting trip he falls in on Merlin, a powerful but amnesiac wizard who has plans for him beyond mere squiredom. He starts by trying to give him an education, believing that once one has an education, one can go anywhere. Needless to say, it doesn't quite work out that way.
## 2398 Charlie is a former classical pianist who has changed his name and now plays jazz in a grimy Paris bar. When Charlie's brothers, Richard and Chico, surface and ask for Charlie's help while on the run from gangsters they have scammed, he aids their escape. Soon Charlie and Lena, a waitress at the same bar, face trouble when the gangsters arrive, looking for his brothers.
## 2399 In Knockemstiff, Ohio and its neighboring backwoods, sinister characters converge around young Arvin Russell as he fights the evil forces that threaten him and his family.
## 2400 Taking over Leeds United, Brian Clough's abrasive approach and his clear dislike of the players' dirty style of play make it certain there is going to be friction. Glimpses of his earlier career help explain both his hostility to previous manager Don Revie and how much he is missing right-hand man Peter Taylor.
## 2401 An emotionally scarred highway drifter shoots a sadistic trick who rapes her, and ultimately becomes the United States' first female serial killer.
## 2402 The glittering Gran Tesoro, a city of entertainment beyond the laws of the government, is a sanctuary for the world’s most infamous pirates, Marines, and filthy rich millionaires. Drawn by dreams of hitting the jackpot, Captain Luffy and his crew sail straight for the gold. But behind the gilded curtains lies a powerful king whose deep pockets and deeper ambitions spell disaster for the Straw Hats and the New World alike.
## 2403 Munich, Germany, 1923. Two years have passed since Edward Elric was dragged from his own world to ours, leaving behind his country, his friends and his younger brother, Alphonse. Stripped of his alchemical powers, he has been all this time researching rocketry together with Alphonse Heiderich, a young man who resembles his own brother, hoping to one day find a way back home. His efforts so far had proven fruitless, but after lending a hand to a troubled gipsy girl, Edward is thrown in a series of events that can wreak havoc in both worlds. Meanwhile, at his own world, Alphonse Elric ventures deeper into the mysteries of alchemy in search for a way to reunite with his older brother.
## 2404 In 1850 Oregon, when a backwoodsman brings a wife home to his farm, his six brothers decide that they want to get married too.
## 2405 Ti, a really poor construction worker that struggles to keep his son, Dicky, in private school, mistakes an orb he finds in a junkjard for a toy which proves to be much, much more once the young boy starts to play with it.
## 2406 In a countryside town bordering on a magical land, a young man makes a promise to his beloved that he'll retrieve a fallen star by venturing into the magical realm. His journey takes him into a world beyond his wildest dreams and reveals his true identity.
## 2407 After Rocky goes the distance with champ Apollo Creed, both try to put the fight behind them and move on. Rocky settles down with Adrian but can't put his life together outside the ring, while Creed seeks a rematch to restore his reputation. Soon enough, the "Master of Disaster" and the "Italian Stallion" are set on a collision course for a climactic battle that is brutal and unforgettable.
## 2408 Retreating from life after a tragedy, a man questions the universe by writing to Love, Time and Death. Receiving unexpected answers, he begins to see how these things interlock and how even loss can reveal moments of meaning and beauty.
## 2409 A drama centered on a rebellious girl who is sent to a Southern beach town for the summer to stay with her father. Through their mutual love of music, the estranged duo learn to reconnect.
## 2410 Naruto is thrilled when he is sent on a mission to protect his favorite actress, Yukie Fujikaze, on the set of her new movie, The Adventures of Princess Gale. But when the crew ventures out to film in the icy, foreboding Land of Snow, Yukie mysteriously flees! Naruto and his squad set off to find her... unaware that three Snow Ninja lie in wait, with a sinister purpose that will force Yukie to face her hidden past!
## 2411 Paris, Kingdom of France, August 18, 1572. To avoid the outbreak of a religious war, the Catholic princess Marguerite de Valois, sister of the feeble King Charles IX, marries the Huguenot King Henry III of Navarre.
## 2412 New York detective John McClane is back and kicking bad-guy butt in the third installment of this action-packed series, which finds him teaming with civilian Zeus Carver to prevent the loss of innocent lives. McClane thought he'd seen it all, until a genius named Simon engages McClane, his new "partner" -- and his beloved city -- in a deadly game that demands their concentration.
## 2413 Now aged 17, Antoine Doinel works in a factory which makes records. At a music concert, he meets a girl his own age, Colette, and falls in love with her. Later, Antoine goes to extraordinary lengths to please his new girlfriend and her parents, but Colette still only regards him as a casual friend. First segment of “Love at Twenty” (1962).
## 2414 Following the death of his wife, Ip Man travels to San Francisco to ease tensions between the local kung fu masters and his star student, Bruce Lee, while searching for a better future for his son.
## 2415 Ophelia comes of age as lady-in-waiting for Queen Gertrude, and her singular spirit captures Hamlet's affections. As lust and betrayal threaten the kingdom, Ophelia finds herself trapped between true love and controlling her own destiny.
## 2416 Ferdinand, a little bull, prefers sitting quietly under a cork tree just smelling the flowers versus jumping around, snorting, and butting heads with other bulls. As Ferdinand grows big and strong, his temperament remains mellow, but one day five men come to choose the "biggest, fastest, roughest bull" for the bullfights in Madrid and Ferdinand is mistakenly chosen. Based on the classic 1936 children's book by Munro Leaf.
## 2417 A young restorer is commissioned to save a fresco representing the suffering of St. Sebastiano, which was painted on the wall of a local church by a mysterious, long-dead artist.
## 2418 Paloma is a serious and highly articulate but deeply bored 11-year-old who has decided to kill herself on her 12th birthday. Fascinated by art and philosophy, she questions and documents her life and immediate circle, drawing trenchant and often hilarious observations on the world around her. But as her appointment with death approaches, Paloma finally meets some kindred spirits in her building's grumpy janitor and an enigmatic, elegant neighbor, both of whom inspire Paloma to question her rather pessimistic outlook on life.
## 2419 A French housekeeper with a mysterious past brings quiet revolution in the form of one exquisite meal to a circle of starkly pious villagers in late 19th century Denmark.
## 2420 After a failed swindle, two con-men end up with a map to El Dorado, the fabled "city of gold," and an unintended trip to the New World. Much to their surprise, the map does lead the pair to the mythical city, where the startled inhabitants promptly begin to worship them as gods. The only question is, do they take the worshipful natives for all they're worth, or is there a bit more to El Dorado than riches?
## 2421 Richard Martin buys a gift, a new NDR-114 robot. The product is named Andrew by the youngest of the family's children. "Bicentennial Man" follows the life and times of Andrew, a robot purchased as a household appliance programmed to perform menial tasks. As Andrew begins to experience emotions and creative thought, the Martin family soon discovers they don't have an ordinary robot.
## 2422 An Amazon princess comes to the world of Man in the grips of the First World War to confront the forces of evil and bring an end to human conflict.
## 2423 After a bleak childhood, Jane Eyre goes out into the world to become a governess. As she lives happily in her new position at Thornfield Hall, she meet the dark, cold, and abrupt master of the house, Mr. Rochester. Jane and her employer grow close in friendship and she soon finds herself falling in love with him. Happiness seems to have found Jane at last, but could Mr. Rochester's terrible secret be about to destroy it forever?
## 2424 The Naked City portrays the police investigation that follows the murder of a young model. A veteran cop is placed in charge of the case and he sets about, with the help of other beat cops and detectives, finding the girl's killer.
## 2425 A woman’s lover and her ex-boyfriend take justice into their own hands after she becomes the victim of a rapist.
## 2426 A noir thriller set in Miami, the film follows an enforcer who discovers his femme fatale boss has branched out into cyber sex trafficking, putting a young runaway he’s befriended at risk. He sacrifices everything to save the young girl from the deadly organization he’s spent his life building.
## 2427 A mysterious new villain known only as Hush uses a gallery of villains to destroy Batman's crime-fighting career as well as Bruce Wayne's personal life, which has been further complicated by a relationship with Selina Kyle/Catwoman.
## 2428 The unconventional life of Dr. William Marston, the Harvard psychologist and inventor who helped invent the modern lie detector test and created Wonder Woman in 1941.
## 2429 This is a story of a man in free fall. On the road to redemption, darkness lights his way. Connected with the afterlife, Uxbal is a tragic hero and father of two who's sensing the danger of death. He struggles with a tainted reality and a fate that works against him in order to forgive, for love, and forever.
## 2430 An irritable marketing executive, Neal Page, is heading home to Chicago for Thanksgiving when a number of delays force him to travel with a well meaning but overbearing shower ring curtain salesman, Del Griffith.
## 2431 A young Jewish American man endeavors—with the help of eccentric, distant relatives—to find the woman who saved his grandfather during World War II—in a Ukrainian village which was ultimately razed by the Nazis.
## 2432 After learning that his terminally ill wife has six months to live, a man welcomes the support of his best friend who moves into their home to help out.
## 2433 Four young men want to leave their dystopian world behind and go to a distant paradise to execute a money robbery, a daring act that will have unexpected consequences.
## 2434 When siblings Judy and Peter discover an enchanted board game that opens the door to a magical world, they unwittingly invite Alan -- an adult who's been trapped inside the game for 26 years -- into their living room. Alan's only hope for freedom is to finish the game, which proves risky as all three find themselves running from giant rhinoceroses, evil monkeys and other terrifying creatures.
## 2435 A young couple travels to a remote island to eat at an exclusive restaurant where the chef has prepared a lavish menu, with some shocking surprises.
## 2436 The true story of British intelligence whistleblower Katharine Gun who—prior to the 2003 Iraq invasion—leaked a top-secret NSA memo exposing a joint US-UK illegal spying operation against members of the UN Security Council. The memo proposed blackmailing member states into voting for war.
## 2437 Barbie stars as Merliah, a surfer who learns a shocking secret: she's a mermaid! She and her dolphin friend set out for an undersea adventure to rescue her mother, the queen of Oceana.
## 2438 In post-Sept. 11 Los Angeles, tensions erupt when the lives of a Brentwood housewife, her district attorney husband, a Persian shopkeeper, two cops, a pair of carjackers and a Korean couple converge during a 36-hour period.
## 2439 Captain Barbossa, long believed to be dead, has come back to life and is headed to the edge of the Earth with Will Turner and Elizabeth Swann. But nothing is quite as it seems.
## 2440 Kate is a young woman who has a habit of making bad decisions, and her last date with disaster occurs after she accepts work as Santa's elf for a department store. However, after she meets Tom there, her life takes a new turn.
## 2441 In a small town in Maine, seven children known as The Losers Club come face to face with life problems, bullies and a monster that takes the shape of a clown called Pennywise.
## 2442 The film tells the story of Malony and his education as he grows from a six-year-old into an 18-year-old. A minors’ judge and a caseworker work tirelessly to try to save the young offender.
## 2443 A deeply religious black ex-con thwarts the suicide attempt of an asocial white college professor who tries to throw himself in front of an oncoming subway train, 'The Sunset Limited.' As the one attempts to connect on a rational, spiritual and emotional level, the other remains steadfast in his hard-earned despair. Locked in a philosophical debate, both passionately defend their personal credos and try to convert the other.
## 2444 Short film to a song of love lost and rediscovered, a woman sees and undergoes surreal transformations. Her lover's face melts off, she dons a dress from the shadow of a bell and becomes a dandelion, ants crawl out of a hand and become Frenchmen riding bicycles. Not to mention the turtles with faces on their backs that collide to form a ballerina, or the bizarre baseball game.
## 2445 A former world-famous conductor of the Bolshoï orchestra, known as "The Maëstro", Andreï Filipov had seen his career publicly broken by Leonid Brezhnev for hiring Jewish musicians and now works cleaning the concert hall where he once directed. One day, he intercepts an official invitation from the prestigious Théâtre du Châtelet. Through a series of mad antics, he reunites his old orchestra, now composed of old alcoholic musicians, and flies to perform in Paris and complete the Tchaikovsky concerto interrupted 30 years earlier. For the concerto, he engages a young violin soloist with whom he has an unexpected connection.
## 2446 A British medical doctor fights a cholera outbreak in a small Chinese village, while also being trapped at home in a loveless marriage to an unfaithful wife.
## 2447 A graduate student and obsessive runner in New York is drawn into a mysterious plot involving his brother, a member of the secretive Division.
## 2448 Based on the best selling autobiography by Irish expat Frank McCourt, Angela's Ashes follows the experiences of young Frankie and his family as they try against all odds to escape the poverty endemic in the slums of pre-war Limerick. The film opens with the family in Brooklyn, but following the death of one of Frankie's siblings, they return home, only to find the situation there even worse. Prejudice against Frankie's Northern Irish father makes his search for employment in the Republic difficult despite his having fought for the IRA, and when he does find money, he spends the money on drink.
## 2449 Charles Duchemin, a well-known gourmet and publisher of a famous restaurant guide, is waging a war against fast food entrepreneur Tri- catel to save the French art of cooking. After having agreed to appear on a talk show to show his skills in naming food and wine by taste, he is confronted with two disasters: his son wants to become a clown rather than a restaurant tester and he, the famous Charles Duchemin, has lost his taste!
## 2450 16-year old Rhiannon falls in love with a mysterious spirit named “A” that inhabits a different body every day. Feeling an unmatched connection, Rhiannon and “A” work each day to find each other, not knowing what the next day will bring.
## 2451 An enterprising Saudi girl signs on for her school's Quran recitation competition as a way to raise the remaining funds she needs in order to buy the green bicycle that has captured her interest.
## 2452 A gambler and a prostitute become business partners in a remote Old West mining town, and their enterprise thrives until a large corporation arrives on the scene.
## 2453 On the mystical island of Themyscira, a proud and fierce warrior race of Amazons have raised a daughter of untold beauty, grace and strength: Princess Diana. When an Army fighter pilot, Steve Trevor, crash-lands on the island, the rebellious and headstrong Diana defies Amazonian law by accompanying Trevor back to civilization.
## 2454 A collection of Monty Python's Flying Circus skits from the first two seasons of their British TV series.
## 2455 Peter Parker is going through a major identity crisis. Burned out from being Spider-Man, he decides to shelve his superhero alter ego, which leaves the city suffering in the wake of carnage left by the evil Doc Ock. In the meantime, Parker still can't act on his feelings for Mary Jane Watson, a girl he's loved since childhood. A certain anger begins to brew in his best friend Harry Osborn as well...
## 2456 An episode in the life of Nikander, a garbage man, involving the death of a co-worker, an affair and much more.
## 2457 A hunt for a lost sheep turns into a competition between Hiccup and friends as they compete to become the first Dragon Racing champion of Berk.
## 2458 Clue finds six colorful dinner guests gathered at the mansion of their host, Mr. Boddy -- who turns up dead after his secret is exposed: He was blackmailing all of them. With the killer among them, the guests and Boddy's chatty butler must suss out the culprit before the body count rises.
## 2459 Operation Market Garden, September 1944. The Allies attempt to capture several strategically important bridges in the Netherlands in the hope of breaking the German lines.
## 2460 An insurance investigator begins discovering that the impact a horror writer's books have on his fans is more than inspirational.
## 2461 Louis, a terminally ill writer, returns home after a long absence to tell his family that he is dying.
## 2462 Deckard Shaw seeks revenge against Dominic Toretto and his family for his comatose brother.
## 2463 A boy in New York is taken in by a wealthy family after his mother is killed in a bombing at the Metropolitan Museum of Art. In a rush of panic, he steals 'The Goldfinch', a painting that eventually draws him into a world of crime.
## 2464 McCall believes he has put his mysterious past behind him and dedicated himself to beginning a new, quiet life. But when he meets Teri, a young girl under the control of ultra-violent Russian gangsters, he can’t stand idly by – he has to help her. Armed with hidden skills that allow him to serve vengeance against anyone who would brutalize the helpless, McCall comes out of his self-imposed retirement and finds his desire for justice reawakened. If someone has a problem, if the odds are stacked against them, if they have nowhere else to turn, McCall will help. He is The Equalizer.
## 2465 In Italy, small-town newlyweds Wanda and Ivan Cavalli embark on their honeymoon in the big city of Rome. Ivan dutifully wants to keep appointments with family and church, but Wanda is only interested in meeting her favorite photo-strip star known as "The White Sheik". While Wanda impetuously sneaks away to locate the object of her affections, disconsolate Ivan tries his hardest to keep up appearances with the couple's relatives.
## 2466 During the Japanese colonial era, roughly 400 Korean people, who were forced onto Battleship Island (‘Hashima Island’) to mine for coal, attempt to escape.
## 2467 The magical tale of a mouse who sets foot on a woodland adventure in search of a nut. Encountering predators who all wish to eat him - Fox, Owl and Snake - the brave mouse creates a terrifying, imaginary monster to frighten them away. But what will the mouse do when he meets this frightful monster for real?
## 2468 A lackadaisical handyman and aspiring novelist tries to support his younger girlfriend as she slowly succumbs to madness.
## 2469 A pregnant Colombian teenager becomes a drug mule to make some desperately needed money for her family.
## 2470 In response to a global rise in demonic possessions, the Catholic Church reopens exorcism schools to train priests in the Rite of Exorcism. On this spiritual battlefield, an unlikely warrior rises: a young nun, Sister Ann. Thrust onto the spiritual frontline with fellow student Father Dante, Sister Ann finds herself in a battle for the soul of a young girl and soon realizes the Devil has her right where he wants her.
## 2471 Follows Moses leading and conducting the Hebrew people from the slavery of Egypt to the freedom towards the Promised Land according to the Ancient Testament Bible book of the Exodus. The story told like never before is faithful to the Scriptures.
## 2472 An ancient myth of a massive creature sparks the curiosity of Tinker Bell and her good friend Fawn, an animal fairy who’s not afraid to break the rules to help an animal in need. But this creature is not welcome in Pixie Hollow — and the scout fairies are determined to capture the mysterious beast, who they fear will destroy their home. Fawn must convince her fairy friends to risk everything to rescue the NeverBeast.
## 2473 High school student Shun Takahata is bored. Bored with the day-to-day monotony of school and life, he prays for change, for something exciting. Suddenly, he and his classmates are forced to play deadly children's games and facing terrifying creatures from a talking Daruma doll to a sharp-clawed lucky cat.
## 2474 The story of Joseph, a man plagued by violence and a rage that is driving him to self-destruction. As Joseph's life spirals into turmoil a chance of redemption appears in the form of Hannah, a Christian charity shop worker. Their relationship develops to reveal that Hannah is hiding a secret of her own with devastating results on both of their lives.
## 2475 A biopic of 20-year-old Francis Ouimet who defeated his golfing idol and 1900 US Open Champion, Harry Vardon.
## 2476 When Isabelle and Theo invite Matthew to stay with them, what begins as a casual friendship ripens into a sensual voyage of discovery and desire in which nothing is off limits and everything is possible.
## 2477 Set in the thick of the Cold War, Red Son introduces us to a Superman who landed in the USSR during the 1950s and grows up to become a Soviet symbol that fights for the preservation of Stalin’s brand of communism.
## 2478 A young woman dealing with anorexia meets an unconventional doctor who challenges her to face her condition and embrace life.
## 2479 In this Dickens adaptation, orphan Pip discovers through lawyer Mr. Jaggers that a mysterious benefactor wishes to ensure that he becomes a gentleman. Reunited with his childhood patron, Miss Havisham, and his first love, the beautiful but emotionally cold Estella, he discovers that the elderly spinster has gone mad from having been left at the altar as a young woman, and has made her charge into a warped, unfeeling heartbreaker.
## 2480 The Earnshaws are Yorkshire farmers during the early 19th Century. One day, Mr. Earnshaw returns from a trip to the city, bringing with him a ragged little boy called Heathcliff. Earnshaw's son, Hindley, resents the child, but Heathcliff becomes companion and soulmate to Hindley's sister, Catherine. After her parents die, Cathy and Heathcliff grow up wild and free on the moors and despite the continued enmity between Hindley and Heathcliff they're happy -- until Cathy meets Edgar Linton, the son of a wealthy neighbor.
## 2481 Set in the late 1920s, The Age of Shadows follows the cat-and-mouse game that unfolds between a group of resistance fighters trying to bring in explosives from Shanghai to destroy key Japanese facilities in Seoul, and Japanese agents trying to stop them.
## 2482 The film centers on Asuna, a young girl who spends her solitary days listening to the mysterious music emanating from the crystal radio she received from her late father as a memento. One day while walking home she is attacked by a fearsome monster and saved mysterious boy named Shun. However, Shun disappears and Asuna embarks on a journey of adventure to the land of Agartha with her teacher Mr. Morisaki to meet a Shun again. Through her journey she comes to know the cruelty and beauty of the world, as well as loss.
## 2483 A woman brings her family back to her childhood home, which used to be an orphanage, intent on reopening it. Before long, her son starts to communicate with a new invisible friend.
## 2484 Raoul Duke and his attorney Dr. Gonzo drive a red convertible across the Mojave desert to Las Vegas with a suitcase full of drugs to cover a motorcycle race. As their consumption of drugs increases at an alarming rate, the stoned duo trash their hotel room and fear legal repercussions. Duke begins to drive back to L.A., but after an odd run-in with a cop, he returns to Sin City and continues his wild drug binge.
## 2485 Unhappy after his new baby sister displaces him, four-year-old Kun begins meeting people and pets from his family's history in their unique house in order to help him become the big brother he was meant to be.
## 2486 A serial killer reappears 15 years after his murder spree with a book detailing his crimes. The resentful cop who failed to catch him before is assigned to protect him. The families of the victims plan revenge. And as the media circus spirals out of control, a masked man called "J" appears claiming to be the real killer.
## 2487 Happy young married couple Paige and Leo are, well, happy. Then a car accident puts Paige into a life-threatening coma. Upon awakening she has lost the previous five years of memories, including those of her beloved Leo, her wedding, a confusing relationship with her parents, or the ending of her relationship with her ex-fiance. Despite these complications, Leo endeavors to win her heart again and rebuild their marriage.
## 2488 An accomplished headhunter risks everything to obtain a valuable painting owned by a former mercenary.
## 2489 In occupied Paris, an actress married to a Jewish theater owner must keep him hidden from the Nazis while doing both of their jobs.
## 2490 A 19-year-old searches for her twin brother after he runs away from home, following a fight with their father.
## 2491 Parisian everyman Antoine Doinel has married his sweetheart Christine Darbon, and the newlyweds have set up a cozy domestic life of selling flowers and giving violin lessons while Antoine fitfully works on his long-gestating novel. As Christine becomes pregnant with the couple's first child, Antoine finds himself enraptured with a young Japanese beauty. The complications change the course of their relationship forever.
## 2492 During the Cold War, the Soviet Union captures U.S. pilot Francis Gary Powers after shooting down his U-2 spy plane. Sentenced to 10 years in prison, Powers' only hope is New York lawyer James Donovan, recruited by a CIA operative to negotiate his release. Donovan boards a plane to Berlin, hoping to win the young man's freedom through a prisoner exchange. If all goes well, the Russians would get Rudolf Abel, the convicted spy who Donovan defended in court.
## 2493 Giuseppe Tornatore traces three generations of a Sicilian family in in the Sicilian town of Bagheria (known as Baarìa in the local Sicilian dialect), from the 1930s to the 1980s, to tell the story of the loves, dreams and delusions of an unusual community.
## 2494 Villainous Gru lives up to his reputation as a despicable, deplorable and downright unlikable guy when he hatches a plan to steal the moon from the sky. But he has a tough time staying on task after three orphans land in his care.
## 2495 Leaving the safety of their nursery behind, Wendy, Michael and John follow Peter Pan to a magical world where childhood lasts forever. But while in Neverland, the kids must face Captain Hook and foil his attempts to get rid of Peter for good.
## 2496 The story of 14th century Czech icon and warlord Jan Zizka who defeated armies of the Teutonic Order and the Holy Roman Empire.
## 2497 When the incompetent Lieutenant Frank Drebin seeks the ruthless killer of his partner, he stumbles upon an attempt to assassinate Queen Elizabeth II.
## 2498 Shrek, Fiona and Donkey set off to Far, Far Away to meet Fiona's mother and father. But not everyone is happy. Shrek and the King find it hard to get along, and there's tension in the marriage. The fairy godmother discovers that Shrek has married Fiona instead of her Son Prince Charming and sets about destroying their marriage.
## 2499 Two introverted people find out by pure chance that they share the same dream every night. They are puzzled, incredulous, a bit frightened. As they hesitantly accept this strange coincidence, they try to recreate in broad daylight what happens in their dream.
## 2500 An Innuit hunter races his sled home with a fresh-caught halibut. This fish pervades the entire film, in real and imaginary form. Meanwhile, Axel tags fish in New York as a naturalist's gofer. He's happy there, but a messenger arrives to bring him to Arizona for his uncle's wedding. It's a ruse to get Axel into the family business. In Arizona, Axel meets two odd women: vivacious, needy, and plagued by neuroses and familial discord. He gets romantically involved with one, while the other, rich but depressed, plays accordion tunes to a gaggle of pet turtles
## 2501 A fictionalized account of the first major successful sexual harassment case in the United States -- Jenson vs. Eveleth Mines, where a woman who endured a range of abuse while working as a miner filed and won the landmark 1984 lawsuit.
## 2502 A biopic depicting the life of filmmaker and aviation pioneer Howard Hughes from 1927 to 1947, during which time he became a successful film producer and an aviation magnate, while simultaneously growing more unstable due to severe obsessive-compulsive disorder.
## 2503 Tessa finds herself struggling with her complicated relationship with Hardin; she faces a dilemma that could change their lives forever.
## 2504 A grieving father in a downward spiral stumbles across a box of his recently deceased son's demo tapes and lyrics. Shocked by the discovery of this unknown talent, he forms a band in the hope of finding some catharsis.
## 2505 Mona Bergeron is dead, her frozen body found in a ditch in the French countryside. From this, the film flashes back to the weeks leading up to her death. Through these flashbacks, Mona gradually declines as she travels from place to place, taking odd jobs and staying with whomever will offer her a place to sleep. Mona is fiercely independent, craving freedom over comfort, but it is this desire to be free that will eventually lead to her demise.
## 2506 When the Valley of Peace is threatened, lazy Po the panda discovers his destiny as the "chosen one" and trains to become a kung fu hero, but transforming the unsleek slacker into a brave warrior won't be easy. It's up to Master Shifu and the Furious Five -- Tigress, Crane, Mantis, Viper and Monkey -- to give it a try.
## 2507 The story of an old Jewish widow named Daisy Werthan and her relationship with her black chauffeur, Hoke. From an initial mere work relationship grew in 25 years a strong friendship between the two very different characters in a time when those types of relationships where shunned.
## 2508 In late 19th Century Hong Kong the British may rule the land, but the pirates rule the waters. One Coast Guard officer is Dragon Ma, who is determined that his beloved Coast Guard will not be made a fool of.
## 2509 A coffin-dragging gunslinger and a half-breed prostitute become embroiled in a bitter feud between a merciless masked clan and a band of Mexican revolutionaries.
## 2510 Peter Rabbit runs away from his human family when he learns they are going to portray him in a bad light in their book. Soon, he crosses paths with an older rabbit who ropes him into a heist.
## 2511 Two unlikely companions must smuggle four suitcases filled with contraband pork across Nazi-occupied Paris.
## 2512 In the early 1900s, Miranda attends a girls boarding school in Australia. One Valentine's Day, the school's typically strict headmistress treats the girls to a picnic field trip to an unusual but scenic volcanic formation called Hanging Rock. Despite rules against it, Miranda and several other girls venture off. It's not until the end of the day that the faculty realizes the girls and one of the teachers have disappeared mysteriously.
## 2513 This is the extraordinary tale of two brothers named Moses and Ramses, one born of royal blood, and one an orphan with a secret past. Growing up the best of friends, they share a strong bond of free-spirited youth and good-natured rivalry. But the truth will ultimately set them at odds, as one becomes the ruler of the most powerful empire on earth, and the other the chosen leader of his people! Their final confrontation will forever change their lives and the world.
## 2514 Women enter and exit a science fiction author's life over the course of a few years after the author loses the woman he considers his one true love.
## 2515 When Bond's latest assignment goes gravely wrong, agents around the world are exposed and MI6 headquarters is attacked. While M faces challenges to her authority and position from Gareth Mallory, the new Chairman of the Intelligence and Security Committee, it's up to Bond, aided only by field agent Eve, to locate the mastermind behind the attack.
## 2516 Lucy is a young gallery assistant who collects mementos from her relationships. She discovers that she must let go of her past to move forward, and comes up with a lovely, artistic way to help herself and others who have suffered heartbreak.
## 2517 In 1666, a colonial town is gripped by a hysterical witch-hunt that has deadly consequences for centuries to come, and it's up to teenagers in 1994 to finally put an end to their town's curse, before it's too late.
## 2518 King Louis XIV's quest for immortality leads him to capture and steal a mermaid's life force, a move that is further complicated by his illegitimate daughter's discovery of the creature.
## 2519 The Z Warriors discover an unopenable music box and are told to open it with the Dragon Balls. The contents turn out to be a warrior named Tapion who had sealed himself inside along with a monster called Hildegarn. Goku must now perfect a new technique to defeat the evil monster.
## 2520 As the only legitimate heir of England's King William, teenage Victoria gets caught up in the political machinations of her own family. Victoria's mother wants her to sign a regency order, while her Belgian uncle schemes to arrange a marriage between the future monarch and Prince Albert, the man who will become the love of her life.
## 2521 An American priest working in Mexico is considered a saint by many local parishioners. However, due to a botched exorcism, he carries a secret that’s eating him alive until he gets an opportunity to face his demon one final time.
## 2522 A contemporary musical version of the classic Cinderella story in which the servant step daughter hope to compete in a musical competition for a famous pop star.
## 2523 The life of Al Roberts, a pianist in a New York nightclub, turns into a nightmare when he decides to hitchhike to Los Angeles to visit his girlfriend.
## 2524 In this prequel to the original, a rebel policeman sets up the infiltration of Triad gangs and tries bring down a corrupt cop working for the Triad boss.
## 2525 Video game bad guy Ralph and fellow misfit Vanellope von Schweetz must risk it all by traveling to the World Wide Web in search of a replacement part to save Vanellope's video game, Sugar Rush. In way over their heads, Ralph and Vanellope rely on the citizens of the internet — the netizens — to help navigate their way, including an entrepreneur named Yesss, who is the head algorithm and the heart and soul of trend-making site BuzzzTube.
## 2526 It's Christmastime, and the Griswolds are preparing for a family seasonal celebration. But things never run smoothly for Clark, his wife Ellen, and their two kids. Clark's continual bad luck is worsened by his obnoxious family guests, but he manages to keep going, knowing that his Christmas bonus is due soon.
## 2527 After a botched bank robbery lands his younger brother in prison, Connie Nikas embarks on a twisted odyssey through New York City's underworld to get his brother Nick out of jail.
## 2528 Kowalski works for a car delivery service, and takes delivery of a 1970 Dodge Challenger to drive from Colorado to San Francisco. Shortly after pickup, he takes a bet to get the car there in less than 15 hours.
## 2529 The legendary true story of a small band of soldiers who sacrificed their lives in hopeless combat against a massive army in order to prevent a tyrant from smashing the new Republic of Texas.
## 2530 Renowned musician Lydia Tár is days away from recording the symphony that will elevate her career. However, Lydia's elaborate facade begins to unravel, revealing dirty secrets and the corrosive nature of power.
## 2531 Jesus, a humble Judean carpenter beginning to see that he is the son of God, is drawn into revolutionary action against the Roman occupiers by Judas -- despite his protestations that love, not violence, is the path to salvation. The burden of being the savior of mankind torments Jesus throughout his life, leading him to doubt.
## 2532 A virtually plotless, gaudy, impressionistic portrait of Rome through the eyes of one of its most famous citizens.
## 2533 Halla declares a one-woman-war on the local aluminium industry. She is prepared to risk everything to protect the pristine Icelandic Highlands she loves… Until an orphan unexpectedly enters her life.
## 2534 Four independent stories set in modern China about random acts of violence.
## 2535 Corinne (Barbie) is a young country girl who heads to Paris to pursue her big dream – to become a female musketeer! Never could she imagine she would meet three other girls who secretly share the same dream! Using their special talents, the girls work together as a team to foil a plot and save the prince. It's all for one and one for all!
## 2536 A Hollywood studio executive is being sent death threats by a writer whose script he rejected - but which one?
## 2537 Bruce Wayne is missing. Alfred covers for him while Nightwing and Robin patrol Gotham City in his stead and a new player, Batwoman, investigates Batman's disappearance.
## 2538 A diamond advocate is attempting to steal a collection of diamonds, yet troubles arise when he realizes that he is not the only one after the diamonds.
## 2539 Batman must face his most ruthless nemesis when a deformed madman calling himself "The Joker" seizes control of Gotham's criminal underworld.
## 2540 A promising teenage dancer enrolls at a prestigious ballet school while grappling with her gender dysphoria.
## 2541 The Blind Man has been hiding out for several years in an isolated cabin and has taken in and raised a young girl orphaned from a devastating house fire. Their quiet life together is shattered when a group of criminals kidnap the girl, forcing the Blind Man to leave his safe haven to save her.
## 2542 Copenhagen, Denmark, 2018. A frightening discovery is made in an old apartment. The subsequent investigation of Department Q members leads them to an infamous institution for girls that was suddenly closed in the early sixties.
## 2543 When the four boys see an R-rated movie featuring Canadians Terrance and Philip, they are pronounced "corrupted", and their parents pressure the United States to wage war against Canada.
## 2544 Two co-dependent high school seniors are forced to deal with separation anxiety after their plan to stage a booze-soaked party goes awry.
## 2545 The story of a poor young woman, separated by prejudice from her husband and baby, is interwoven with tales of intolerance from throughout history.
## 2546 A pair of teenage girls in rural Pennsylvania travel to New York City to seek out medical help after an unintended pregnancy.
## 2547 When Alita awakens with no memory of who she is in a future world she does not recognize, she is taken in by Ido, a compassionate doctor who realizes that somewhere in this abandoned cyborg shell is the heart and soul of a young woman with an extraordinary past.
## 2548 A cooler-than-ever Bruce Wayne must deal with the usual suspects as they plan to rule Gotham City, while discovering that he has accidentally adopted a teenage orphan who wishes to become his sidekick.
## 2549 Nando Moriconi is a young Italian living in the early '50s Roma. He is completely crazy for everything that comes from the States. He tries to speak American-English (the most funny ever), to wear like he thinks Americans do, to walk like John Wayne, trying to eat cornflakes with ketchup... His life is a complete parody of the real American way of life, which he couldn't ever get.
## 2550 A detective breaks all rules of ethical conduct while investigating a colleague’s involvement in drug pushing and Yakuza activities.
## 2551 A young prosecutor in postwar West Germany investigates a massive conspiracy to cover up the Nazi pasts of prominent public figures.
## 2552 An American writer living in Rome witnesses an attempted murder that is connected to an ongoing killing spree in the city, and conducts his own investigation despite himself and his girlfriend being targeted by the killer.
## 2553 Irena, a Ukrainian woman coming to Italy looking for a job as a maid. She does everything she can to become a beloved nanny for an adorable little girl, Thea. However, that is just the very beginning of her unknown journey.
## 2554 Lionel Twain invites the world's five greatest detectives to a 'dinner and murder'. Included are a blind butler, a deaf-mute maid, screams, spinning rooms, secret passages, false identities and more plot turns and twists than are decently allowed.
## 2555 What starts out as a fun road trip for the Toy Story gang takes an unexpected turn for the worse when the trip detours to a roadside motel. After one of the toys goes missing, the others find themselves caught up in a mysterious sequence of events that must be solved before they all suffer the same fate in this Toy Story of Terror.
## 2556 A boy, obsessed with comparing himself with those less fortunate, experiences a different life at the home of his aunt and uncle in 1959 Sweden.
## 2557 "Loro", in two parts, is a period movie that chronicles, as a fiction story, events likely happened in Italy (or even made up) between 2006 and 2010. "Loro" wants to suggest in portraits and glimps, through a composite constellation of characters, a moment in history, now definitively ended, which can be described in a very summary picture of the events as amoral, decadent but extraordinarily alive. Additionally, "Loro" wishes to tell the story of some Italians, fresh and ancient people at the same time: souls from a modern imaginary Purgatory who, moved by heterogeneous intents like ambition, admiration, affection, curiosity, personal interests, establish to try and orbit around the walking Paradise that is the man named Silvio Berlusconi.
## 2558 A single mother becomes Ariel Castro's first kidnapping victim, and finds herself trapped in his home with two other women for 11 years.
## 2559 In 1988, Chilean military dictator Augusto Pinochet, due to international pressure, is forced to call a plebiscite on his presidency. The country will vote ‘Yes’ or ‘No’ to Pinochet extending his rule for another eight years. Opposition leaders for the ‘No’ vote persuade a brash young advertising executive, René Saavedra, to spearhead their campaign. Against all odds, with scant resources and while under scrutiny by the despot’s minions, Saavedra and his team devise an audacious plan to win the election and set Chile free.
## 2560 A series of 30 sketches, following the hilarious antics of various characters from a galaxy, far, far away.
## 2561 Dan Evans, a small time farmer, is hired to escort Ben Wade, a dangerous outlaw, to Yuma. As Evans and Wade wait for the 3:10 train to Yuma, Wade's gang is racing to free him.
## 2562 SG-1 searches for an ancient weapon which could help them defeat the Ori, and discover it may be in the Ori's own home galaxy. As the Ori prepare to send ships through to the Milky Way to attack Earth, SG-1 travels to the Ori galaxy aboard the Odyssey. The International Oversight committee have their own plans and SG-1 finds themselves in a distant galaxy fighting two powerful enemies.
## 2563 In a small English village everyone suddenly falls unconscious. When they awake every woman of child bearing age is pregnant. The resulting children have the same strange blond hair, eyes and a strong connection to each other.
## 2564 A comedy that chronicles a chance encounter between Robert and a Chinese named Jun who wanders lost through the city of Buenos Aires in search of his uncle after being assaulted by a taxi driver and his henchmen.
## 2565 Los Angeles teenager Ritchie Valens becomes an overnight rock 'n' roll success in 1958, thanks to a love ballad called "Donna" that he wrote for his girlfriend. But as his star rises, Valens has conflicts with his jealous brother, Bob, and becomes haunted by a recurring nightmare of a plane crash just as he begins his first national tour alongside Buddy Holly.
## 2566 A newly married couple who, in the process of starting a family, learn many of life's important lessons from their trouble-loving retriever, Marley. Packed with plenty of laughs to lighten the load, the film explores the highs and lows of marriage, maturity and confronting one's own mortality, as seen through the lens of family life with a dog.
## 2567 Barbie plays Rosella in this new musical film. Shipwrecked as a child, Rosella grows up on the island under the watchful eyes of her loving animal friends. The arrival of Prince Antonio leads Rosella and her furry pals to explore civilization and ultimately save the kingdom by uncovering a secret plot.
## 2568 World War II vet Paul Sutton falls for a pregnant and unwed woman who persuades him -- during their first encounter -- to pose as her husband so she can face her family.
## 2569 Julie Kohler is prevented from suicide by her mother. She leaves the town. She will track down, charm and kill five men who do not know her. What is her goal? What is her purpose?
## 2570 The infamous story of Benjamin Barker, a.k.a Sweeney Todd, who sets up a barber shop down in London which is the basis for a sinister partnership with his fellow tenant, Mrs. Lovett. Based on the hit Broadway musical.
## 2571 Architect Walter Craig, seeking the possibility of some work at a country farmhouse, soon finds himself once again stuck in his recurring nightmare. Dreading the end of the dream that he knows is coming, he must first listen to all the assembled guests' own bizarre tales.
## 2572 A hapless talent manager named Danny Rose, by helping a client, gets dragged into a love triangle involving the mob. His story is told in flashback, an anecdote shared amongst a group of comedians over lunch at New York's Carnegie Deli. Rose's one-man talent agency represents countless incompetent entertainers, including a one-legged tap dancer, and one slightly talented one: washed-up lounge singer Lou Canova (Nick Apollo Forte), whose career is on the rebound.
## 2573 British estate agent Renfield travels to Transylvania to meet with the mysterious Count Dracula, who is interested in leasing a castle in London and is, unbeknownst to Renfield, a vampire. After Dracula enslaves Renfield and drives him to insanity, the pair sail to London together, and as Dracula begins preying on London socialites, the two become the subject of study for a supernaturalist professor, Abraham Van Helsing.
## 2574 Nory and her best friend Reina enter the Sage Academy for Magical Studies, where Nory’s unconventional powers land her in a class for those with wonky, or “upside-down,” magic. Undaunted, Nory sets out to prove that that upside-down magic can be just as powerful as right-side-up.
## 2575 After an accident at the hair salon, Violet realizes she's not living life to the fullest. A soulful barber helps her put the pieces back together.
## 2576 In Greenwich Village in the early 1960s, gifted but volatile folk musician Llewyn Davis struggles with money, relationships, and his uncertain future.
## 2577 Selling author, Antoine Brisebard is a victim of a blackmailer, Jo, which threatens to jeopardize his reputation by revealing the past of his wife Sylvia. While the latter must pass the same night to take possession of the money required, Brisebard accidentally kills ...
## 2578 A young beautician, newly arrived in a small Louisiana town, finds work at the local salon, where a small group of women share a close bond of friendship and welcome her into the fold.
## 2579 A cargo aircraft crashes in a sandstorm in the Sahara with less than a dozen men on board. One of the passengers is an airplane designer who comes up with the idea of ripping off the undamaged wing and using it as the basis for a replacement aircraft they will build to escape before their food and water run out.
## 2580 Sam Wheat is a banker, Molly Jensen is an artist, and the two are madly in love. However, when Sam is murdered by his friend and corrupt business partner Carl Bruner over a shady business deal, he is left to roam the earth as a powerless spirit. When he learns of Carl's betrayal, Sam must seek the help of psychic Oda Mae Brown to set things right and protect Molly from Carl and his goons.
## 2581 Armed with only one word - Tenet - and fighting for the survival of the entire world, the Protagonist journeys through a twilight world of international espionage on a mission that will unfold in something beyond real time.
## 2582 Like a young bird yet to find the courage to lift its wings, Fúsi (43) lives alone with his mother, where they've always lived.
## 2583 When a rare phenomenon gives police officer John Sullivan the chance to speak to his father, 30 years in the past, he takes the opportunity to prevent his dad's tragic death. After his actions inadvertently give rise to a series of brutal murders he and his father must find a way to fix the consequences of altering time.
## 2584 The true, harrowing story of a young Jewish girl who, with her family and their friends, is forced into hiding in an attic in Nazi-occupied Amsterdam.
## 2585 Tragedy strikes the Batman's life again when Robin Jason Todd tracks down his birth mother only to run afoul of the Joker. An adaptation of the 1988 comic book storyline of the same name.
## 2586 A rag doll fights a monster that has been stealing the souls of his people.
## 2587 Peppino is an aging taxidermist constantly ridiculed for being short and somewhat creepy. He meets Valerio, a handsome young man fascinated by Peppino's work. Peppino, in turn, becomes entranced by Valerio and offers him a large salary to come work as his assistant. But when Valerio meets Deborah, their fledgling romance is threatened by an insanely jealous third wheel.
## 2588 When struggling, out of work actor Michael Dorsey secretly adopts a female alter ego - Dorothy Michaels - in order to land a part in a daytime drama, he unwittingly becomes a feminist icon and ends up in a romantic pickle.
## 2589 Cab driver Max picks up a man who offers him $600 to drive him around. But the promise of easy money sours when Max realizes his fare is an assassin.
## 2590 Many loosely connected characters cross paths in this film, based on the stories of Raymond Carver. Waitress Doreen Piggot accidentally runs into a boy with her car. Soon after walking away, the child lapses into a coma. While at the hospital, the boy's grandfather tells his son, Howard, about his past affairs. Meanwhile, a baker starts harassing the family when they fail to pick up the boy's birthday cake.
## 2591 In Scotland 1874, Jack is born on the coldest day ever. Because of the extreme cold, his heart stops beating. The responsible midwife in Edinburgh finds a way to save him by replacing his heart with a clock. So he lives and remains under the midwife's protective care. But he must not get angry or excited because that endangers his life by causing his clock to stop working. Worse than that, when he grows up, he has to face the fact he cannot fall in love because that too could stop his delicate heart.
## 2592 The true story of a brilliant but politically radical debate team coach who uses the power of words to transform a group of underdog African-American college students into a historical powerhouse that took on the Harvard elite.
## 2593 My Mother's Castle (Le chateau de ma mere) is a sequel and companion piece to My Father's Glory (La Gloire de Mon Pere), both based on the childhood recollections of Marcel Pagnol. Like its predecessor, the movie explores the adventures of the young Marcel during his summers at the family summer home in Provence.
## 2594 Twenty-eight days after a killer virus was accidentally unleashed from a British research facility, a small group of London survivors are caught in a desperate struggle to protect themselves from the infected. Carried by animals and humans, the virus turns those it infects into homicidal maniacs -- and it's absolutely impossible to contain.
## 2595 Dominic Toretto and his crew battle the most skilled assassin and high-performance driver they've ever encountered: his forsaken brother.
## 2596 Tony is admitted to a rehabilitation center after a serious ski accident. Dependent on the medical staff and pain relievers, she takes time to look back on a turbulent relationship that she experienced with Georgio.
## 2597 A woman subject to mental, physical, and sexual abuse on a remote island seeks a way out.
## 2598 The Yowie Yahoo starts kidnapping musicians at a concert attended by Scooby and the gang in Vampire Rock, Australia.
## 2599 A gangster sets out to fulfill his father's dream of becoming a doctor.
## 2600 An original mix of fiction and reality illuminates the life of comic book hero everyman Harvey Pekar.
## 2601 An ad executive and a fashion designer-blogger don't believe in love, so they place a bet to make the other fall head over heels - with unusual tactics.
## 2602 It’s the dawn of a new age of heroes, and Metropolis has just met its first. But as Daily Planet intern Clark Kent – working alongside reporter Lois Lane – secretly wields his alien powers of flight, super-strength and x-ray vision in the battle for good, there’s even greater trouble on the horizon.
## 2603 In 1980s East Germany, Barbara is a Berlin doctor banished to a country medical clinic for applying for an exit visa. Deeply unhappy with her reassignment and fearful of her co-workers as possible Stasi informants, Barbara stays aloof, especially from the good natured clinic head, Andre.
## 2604 Two young men, one rich, one middle class, both in love with the same woman, become US Air Corps fighter pilots and, eventually, heroic flying aces during World War I. Devoted best friends, their mutual love of the girl eventually threatens their bond. Meanwhile, a hometown girl who's the lovestruck lifelong next door neighbor of one of them, pines away.
## 2605 Eccentric consulting detective Sherlock Holmes and Doctor John Watson battle to bring down a new nemesis and unravel a deadly plot that could destroy England.
## 2606 In Arizona in the late 1800s, infamous outlaw Ben Wade and his vicious gang of thieves and murderers have plagued the Southern Railroad. When Wade is captured, Civil War veteran Dan Evans, struggling to survive on his drought-plagued ranch, volunteers to deliver him alive to the "3:10 to Yuma", a train that will take the killer to trial.
## 2607 In the 1970s, a foundling lass, Patrick "Kitten" Braden, comes of age by leaving her Irish town for London, in part to look for her mother and in part because her transgender nature is beyond the town's understanding.
## 2608 The Crawley family goes on a grand journey to the south of France to uncover the mystery of the dowager countess's newly inherited villa.
## 2609 A new dark force threatens Ponyville, and the Mane 6 – Twilight Sparkle, Applejack, Rainbow Dash, Pinkie Pie, Fluttershy and Rarity – embark on an unforgettable journey beyond Equestria where they meet new friends and exciting challenges on a quest to use the magic of friendship and save their home.
## 2610 70-year-old widower Ben Whittaker has discovered that retirement isn't all it's cracked up to be. Seizing an opportunity to get back in the game, he becomes a senior intern at an online fashion site, founded and run by Jules Ostin.
## 2611 Two sisters find their already strained relationship challenged as a mysterious new planet threatens to collide with Earth.
## 2612 A film poem inspired by the Peruvian poet César Vallejo. A story about our need for love, our confusion, greatness and smallness and, most of all, our vulnerability. It is a story with many characters, among them a father and his mistress, his youngest son and his girlfriend. It is a film about big lies, abandonment and the eternal longing for companionship and confirmation.
## 2613 Three short tales of supernatural horror. In “The Telephone,” a woman is plagued by threatening phone calls. In "The Wurdalak,” a family is preyed upon by vampiric monsters. In “The Drop of Water,” a deceased medium wreaks havoc on the living.
## 2614 Four black women, all of whom have suffered for lack of money and at the hands of the majority, undertake to rob banks. While initially successful, a policeman who was involved in shooting one of the women's brothers is on their trail. As the women add to the loot, their tastes and interests begin to change and their suspicions of each other increase on the way to a climactic robbery.
## 2615 A former gunslinger is forced to take up arms again when he and his cattle crew are threatened by a corrupt lawman.
## 2616 While hiding from bullies in his school's attic, a young boy discovers the extraordinary land of Fantasia, through a magical book called The Neverending Story. The book tells the tale of Atreyu, a young warrior who, with the help of a luck dragon named Falkor, must save Fantasia from the destruction of The Nothing.
## 2617 The Mystery Gang goes to Hawaii for the Big Kahuna of Hanahuna Surfing Contest. However, the gang and the locals find the island invaded by the vengeful Wiki Tiki spirit and his demons.
## 2618 Abortionist Vera Drake finds her beliefs and practices clash with the mores of 1950s Britain – a conflict that leads to tragedy for her family.
## 2619 When trucker Jack Burton agreed to take his friend, Wang Chi, to pick up his fiancee at the airport, he never expected to get involved in a supernatural battle between good and evil. Wang's fiancee has emerald green eyes, which make her a perfect target for immortal sorcerer Lo Pan—who must marry a girl with green eyes so he can regain his physical form.
## 2620 Robert Neville is a scientist who was unable to stop the spread of the terrible virus that was incurable and man-made. Immune, Neville is now the last human survivor in what is left of New York City and perhaps the world. For three years, Neville has faithfully sent out daily radio messages, desperate to find any other survivors who might be out there. But he is not alone.
## 2621 A tailor gains special powers after being struck by lightning but must take down an unexpected foe if he is to become the superhero his hometown in Kerala needs.
## 2622 Brigsby Bear Adventures is a children's TV show produced for an audience of one: James. When the show abruptly ends, James's life changes forever, and he sets out to finish the story himself.
## 2623 Set in 1879 Paris. An orphan girl dreams of becoming a ballerina and flees her rural Brittany for Paris, where she passes for someone else and accedes to the position of pupil at the Grand Opera house.
## 2624 It's the ultimate fairytale musical! Barbie stars as Alexa, a shy princess who discovers a secret door in her kingdom and enters a whimsical land filled with magical creatures and surprises. Inside, Alexa meets Romy and Nori, a mermaid and a fairy, who explain that a spoiled ruler named Malucia is trying to take all the magic in the land. To her surprise, Alexa has magical powers in this world, and her new friends are certain that only she can restore their magic. Discover what happens when Alexa finds the courage to stand up for what's right and learns that the power of friendship is far more precious than magic.
## 2625 An eight-year-old boy is willing to do whatever it takes to end World War II so he can bring his father home. The story reveals the indescribable love a father has for his little boy and the love a son has for his father.
## 2626 Best friends Sophie and Agatha navigate an enchanted school for young heroes and villains — and find themselves on opposing sides of the battle between good and evil.
## 2627 While leading a police investigation of a massacre in a public school at the border of Mexico and U.S.A, special Agent Emanuel Ritter links this strange case to the coming and rising of the ancient demon Belzebuth. But in order to stop the trail of upcoming infanticides, Ritter shall have to confront himself before dealing with the forces of good and evil.
## 2628 A group of former high school classmates meets for a reunion 15 years after graduation, only to discover that any innocence or friendship is long lost.
## 2629 Young Haru rescues a cat from being run over, but soon learns it's no ordinary feline; it happens to be the Prince of the Cats.
## 2630 In 1964, a Catholic school nun questions a priest's ambiguous relationship with a troubled young student, suspecting him of abuse. He denies the charges.
## 2631 Chen is a city boy who moves with his cousins to work at an ice factory. He does this with a family promise never to get involved in any fight. However, when members of his family begin disappearing after meeting the management of the factory, the resulting mystery and pressures force him to break that vow and take on the villainy of the Big Boss.
## 2632 Rootless Hungarian émigré Willie, his pal Eddie, and visiting sixteen-year-old cousin Eva always manage to make the least of any situation, whether aimlessly traversing the drab interiors and environs of New York City, Cleveland, or an anonymous Florida suburb.
## 2633 After a wonderful time in Hungary Sissi falls extremely ill and must retreat to a Mediterranean climate to rest. The young empress’ mother takes her from Austria to recover in Madeira.
## 2634 Thirteen-year-old Kayla endures the tidal wave of contemporary suburban adolescence as she makes her way through the last week of middle school — the end of her thus far disastrous eighth grade year — before she begins high school.
## 2635 From childhood to fatherhood, Piero learns things the hard way while growing up in a working-class neighborhood of Livorno.
## 2636 Matthew Bennell notices that several of his friends are complaining that their close relatives are in some way different. When questioned later they themselves seem changed, as they deny everything or make lame excuses. As the invaders increase in number they become more open and Bennell, who has by now witnessed an attempted 'replacement', realises that he and his friends must escape or suffer the same fate.
## 2637 An accountant embezzles $15 million of mob money, jumps bail and is chased by bounty hunters, the FBI, and the Mafia.
## 2638 A snobbish investor and a wily street con-artist find their positions reversed as part of a bet by two callous millionaires.
## 2639 Doug MacRay is a longtime thief, who, smarter than the rest of his crew, is looking for his chance to exit the game. When a bank job leads to the group kidnapping an attractive branch manager, he takes on the role of monitoring her – but their burgeoning relationship threatens to unveil the identities of Doug and his crew to the FBI Agent who is on their case.
## 2640 When a US Naval captain shows signs of mental instability that jeopardize his ship, the first officer relieves him of command and faces court martial for mutiny.
## 2641 BELLE is inspired by the true story of Dido Elizabeth Belle, the illegitimate mixed race daughter of a Royal Navy Admiral. Raised by her aristocratic great-uncle Lord Mansfield and his wife, Belle's lineage affords her certain privileges, yet the color of her skin prevents her from fully participating in the traditions of her social standing. Left to wonder if she will ever find love, Belle falls for an idealistic young vicar's son bent on change who, with her help, shapes Lord Mansfield's role as Lord Chief Justice to end slavery in England
## 2642 Batman discovers a mysterious teen-aged girl with superhuman powers and a connection to Superman. When the girl comes to the attention of Darkseid, the evil overlord of Apokolips, events take a decidedly dangerous turn.
## 2643 The lives of six German-Turkish immigrants are drawn together by circumstance: An old man and a prostitute forging a partnership, a young scholar reconciling his past, two young women falling in love, and a mother putting the shattered pieces of her life back together.
## 2644 On the east coast of New Zealand, the Whangara people believe their presence there dates back a thousand years or more to a single ancestor, Paikea, who escaped death when his canoe capsized by riding to shore on the back of a whale. From then on, Whangara chiefs, always the first-born, always male, have been considered Paikea's direct descendants. Pai, an 11-year-old girl in a patriarchal New Zealand tribe, believes she is destined to be the new chief. But her grandfather Koro is bound by tradition to pick a male leader. Pai loves Koro more than anyone in the world, but she must fight him and a thousand years of tradition to fulfill her destiny.
## 2645 It's the 23rd century, and a mysterious alien power is threatening Earth by evaporating the oceans and destroying the atmosphere. In a frantic attempt to save mankind, Kirk and his crew must time travel back to 1986 San Francisco where they find a world of punk, pizza and exact-change buses that are as alien as anything they've ever encountered in the far reaches of the galaxy. A thrilling, action-packed Star Trek adventure!
## 2646 Batman, Batgirl and Robin forge an alliance with the Teenage Mutant Ninja Turtles to fight against the Turtles' sworn enemy, The Shredder, who has apparently teamed up with Ra's Al Ghul and The League of Assassins.
## 2647 Damian Wayne is having a hard time coping with his father's "no killing" rule. Meanwhile, Gotham is going through hell with threats such as the insane Dollmaker, and the secretive Court of Owls.
## 2648 Join Barbie in a colourful, modern-day fairytale filled with fashion, friends and fun! Barbie and her dog Sequin jet off to visit her Aunt's amazing fashion house in Paris, and much to her surprise it's about to be shut down forever. After she discovers three enchanting Flairies with sparkle-magic powers, Barbie comes up with a brilliant idea to save the business. She even inspires Alice, a shy fashion designer, and together they create a dazzling runway fashion show. Barbie shows that magic happens when you believe in yourself.
## 2649 Workaholic Thomas Johnson dies in an auto accident and comes back to life as a dog. Remembering some of who he was, he returns to his wife and son to protect them from the man who caused his accident. But, as time goes by, he remembers more of his life, and realizes he wasn't such a good husband and father.
## 2650 Every year in the ruins of what was once North America, the nation of Panem forces each of its twelve districts to send a teenage boy and girl to compete in the Hunger Games. Part twisted entertainment, part government intimidation tactic, the Hunger Games are a nationally televised event in which “Tributes” must fight with one another until one survivor remains. Pitted against highly-trained Tributes who have prepared for these Games their entire lives, Katniss is forced to rely upon her sharp instincts as well as the mentorship of drunken former victor Haymitch Abernathy. If she’s ever to return home to District 12, Katniss must make impossible choices in the arena that weigh survival against humanity and life against love. The world will be watching.
## 2651 Nick Naylor is a charismatic spin-doctor for Big Tobacco who'll fight to protect America's right to smoke -- even if it kills him -- while still remaining a role model for his 12-year old son. When he incurs the wrath of a senator bent on snuffing out cigarettes, Nick's powers of "filtering the truth" will be put to the test.
## 2652 Ryota is an unpopular writer although he won a literary award 15 years ago. Now, Ryota works as a private detective. He is divorced from his ex-wife Kyoko and he has an 11-year-old son Shingo. His mother Yoshiko lives alone at her apartment. One day, Ryota, his ex-wife Kyoko, and son Shingo gather at Yoshiko's apartment. A typhoon passes and the family must stay there all night long.
## 2653 A wanna-be director is given 48 hours by a producer to find the best groan of pain, worthy of an Oscar, as the only condition to back his film.
## 2654 Put in charge of his young son, Ali leaves Belgium for Antibes to live with his sister and her husband as a family. Ali's bond with Stephanie, a killer whale trainer, grows deeper after Stephanie suffers a horrible accident.
## 2655 Newly elected President Nelson Mandela knows his nation remains racially and economically divided in the wake of apartheid. Believing he can bring his people together through the universal language of sport, Mandela rallies South Africa's rugby team as they make their historic run to the 1995 Rugby World Cup Championship match.
## 2656 Prot is a patient at a mental hospital who claims to be from a far away planet. His psychiatrist tries to help him, only to begin to doubt his own explanations.
## 2657 Professor James Murray begins work compiling words for the first edition of the Oxford English Dictionary in the mid 19th century, and receives over 10,000 entries from a patient at Broadmoor Criminal Lunatic Asylum, Dr. William Minor.
## 2658 Ali leaves behind a troubled life and follows her dreams to Los Angeles, where she lands a job as a cocktail waitress at the Burlesque Lounge, a once-majestic theater that houses an inspired musical revue. Vowing to perform there, she makes the leap from bar to stage, helping restore the club's former glory.
## 2659 A drop-out from upper-class America picks up work along the way on oil-rigs when his life isn't spent in a squalid succession of bars, motels, and other points of interest.
## 2660 A freewheeling Detroit cop pursuing a murder investigation finds himself dealing with the very different culture of Beverly Hills.
## 2661 The story of two teenagers trapped in an endless time loop who set out to find all the tiny things that make that one day perfect.
## 2662 A young man and his three younger siblings are plagued by a sinister presence in the sprawling manor in which they live.
## 2663 The drama tells the story of John Lennon's teenage years in Liverpool and the start of his journey to becoming a successful musician. The story also examines the impact on his early life and personality of the two dominant females in his childhood.
## 2664 Bilal is 17 years old, a Kurdish boy from Iraq. He sets off on an adventure-filled journey across Europe. He wants to get to England to see his love who lives there. Bilal finally reaches Calais, but how do you cover 32 kilometers of the English Channel when you can't swim? The boy soon discovers that his trip won't be as easy as he imagined... The community of struggling illegal aliens in Calais
## 2665 The story of sex, violence, race and rock and roll in 1950s Chicago, and the exciting but turbulent lives of some of America's musical legends, including Muddy Waters, Leonard Chess, Little Walter, Howlin' Wolf, Etta James and Chuck Berry.
## 2666 A supposedly idyllic weekend trip to the countryside turns into a never-ending nightmare of traffic jams, revolution, cannibalism and murder as French bourgeois society starts to collapse under the weight of its own consumer preoccupations.
## 2667 A young widow discovers that her late husband has left her 10 messages intended to help ease her pain and start a new life.
## 2668 Four undying warriors who've secretly protected humanity for centuries become targeted for their mysterious powers just as they discover a new immortal.
## 2669 Travis and Gabby first meet as neighbors in a small coastal town and wind up in a relationship that is tested by life's most defining events.
## 2670 A dramatization of the Montreal Massacre of 1989 where several female engineering students were murdered by an unstable misogynist.
## 2671 On a golden afternoon, young Alice follows a White Rabbit, who disappears down a nearby rabbit hole. Quickly following him, she tumbles into the burrow - and enters the merry, topsy-turvy world of Wonderland! Memorable songs and whimsical escapades highlight Alice's journey, which culminates in a madcap encounter with the Queen of Hearts - and her army of playing cards!
## 2672 A petty thief posing as an actor is brought to Los Angeles for an unlikely audition and finds himself in the middle of a murder investigation along with his high school dream girl and a detective who's been training him for his upcoming role...
## 2673 Playboy songwriter Brad Allen's succession of romances annoys his neighbor, interior designer Jan Morrow, who shares a telephone party line with him and hears all his breezy routines. After Jan unsuccessfully lodges a complaint against him, Brad sets about to seduce her in the guise of a sincere and upstanding Texas rancher. When mutual friend Jonathan discovers that his best friend is moving in on the girl he desires, however, sparks fly.
## 2674 Jean Valjean, a Frenchman imprisoned for stealing bread, must flee a police officer named Javert. The pursuit consumes both men's lives, and soon Valjean finds himself in the midst of the student revolutions in France.
## 2675 Growing up poor in Madras, India, Srinivasa Ramanujan Iyengar earns admittance to Cambridge University during WWI, where he becomes a pioneer in mathematical theories with the guidance of his professor, G.H. Hardy.
## 2676 Straight from the creators of the groundbreaking Matrix trilogy, this collection of short animated films from the world's leading anime directors fuses computer graphics and Japanese anime to provide the background of the Matrix universe and the conflict between man and machines. The shorts include Final Flight of the Osiris, The Second Renaissance, Kid's Story, Program, World Record, Beyond, A Detective Story and Matriculated.
## 2677 The comedic adventures of an introverted boy left on the doorstep of a pair of reluctant, eccentric great-uncles, whose exotic remembrances stir the boy's spirit and re-ignite the men's lives.
## 2678 North Face tells the story of two German climbers Toni Kurz and Andreas Hinterstoisser and their attempt to scale the deadly North Face of the Eiger.
## 2679 Falsely accused for cheating in a martial arts competition, two boyhood friends are banished from their Shaolin Temple and go their separate ways. As adults, they join opposing sides in a civil war. When one betrays the other, they settle their differences mano-a-mano.
## 2680 A young and impatient stockbroker is willing to do anything to get to the top, including trading on illegal inside information taken through a ruthless and greedy corporate raider whom takes the youth under his wing.
## 2681 Out of Africa tells the story of the life of Danish author Karen Blixen, who at the beginning of the 20th century moved to Africa to build a new life for herself. The film is based on the autobiographical novel by Karen Blixen from 1937.
## 2682 The film follows a man with an unwanted gift for healing who meets a teenager with cancer who helps him to find himself.
## 2683 Based on the 1973 rock opera album of the same name by The Who, this is the story of 60s teenager Jimmy. At work he slaves in a dead-end job. While after, he shops for tailored suits and rides his scooter as part of the London Mod scene.
## 2684 Inspired by a true story. A petty criminal sent to Alcatraz in the 1930s is caught attempting to make an escape. As punishment he is put in solitary confinement. The maximum stay is supposed to be 19 days, but Henri spends years alone, cold and in complete darkness, only to emerge a madman and soon to be a murderer. The story follows a rookie lawyer attempting to prove that Alcatraz was to blame.
## 2685 The feel-good story of Michael 'Eddie' Edwards, an unlikely but courageous British ski-jumper who never stopped believing in himself—even as an entire nation was counting him out. With the help of a rebellious and charismatic coach, Eddie takes on the establishment and wins the hearts of sports fans around the world by making an improbable and historic showing at the 1988 Calgary Winter Olympics.
## 2686 After 11-year-old Zachary Cowan strikes his classmate across the face with a stick after an argument, the victim's parents invite Zachary's parents to their Brooklyn apartment to deal with the incident in a civilized manner.
## 2687 A paranoia-fueled action thriller about an unsuccessful writer whose life is transformed by a top-secret "smart drug" that allows him to use 100% of his brain and become a perfect version of himself. His enhanced abilities soon attract shadowy forces that threaten his new life in this darkly comic and provocative film.
## 2688 Pat Garrett is hired as a lawman on behalf of a group of wealthy New Mexico cattle barons to bring down his old friend Billy the Kid.
## 2689 Complete strangers stranded at a remote desert motel during a raging storm soon find themselves the target of a deranged murderer. As their numbers thin out, the travelers begin to turn on each other, as each tries to figure out who the killer is.
## 2690 London. A mysterious serial killer brutally murders young blond women by stalking them in the night fog. One foggy, sinister night, a young man who claims his name is Jonathan Drew arrives at the guest house run by the Bunting family and rents a room.
## 2691 Shahid Khan is exiled after impersonating the legendary Sultana Daku in order to rob British trains. Now outcast, Shahid becomes a worker at Ramadhir Singh's colliery, only to spur a revenge battle that passes on to generations. At the turn of the decade, Shahid's son, the philandering Sardar Khan vows to get his father's honor back, becoming the most feared man of Wasseypur.
## 2692 Orphaned and alone except for an uncle, Hugo Cabret lives in the walls of a train station in 1930s Paris. Hugo's job is to oil and maintain the station's clocks, but to him, his more important task is to protect a broken automaton and notebook left to him by his late father. Accompanied by the goddaughter of an embittered toy merchant, Hugo embarks on a quest to solve the mystery of the automaton and find a place he can call home.
## 2693 Captivated by the lure of sudden wealth, the quiet rural lives of two brothers erupt into conflicts of greed, paranoia and distrust when over $4 million in cash is discovered at the remote site of a downed small airplane. Their simple plan to retain the money while avoiding detection opens a Pandora's box when the fear of getting caught triggers panicked behavior and leads to virulent consequences.
## 2694 Loving but irresponsible dad Daniel Hillard, estranged from his exasperated spouse, is crushed by a court order allowing only weekly visits with his kids. When Daniel learns his ex needs a housekeeper, he gets the job -- disguised as a British nanny. Soon he becomes not only his children's best pal but the kind of parent he should have been from the start.
## 2695 College student Danielle must cover her tracks when she unexpectedly runs into her sugar daddy at a shiva - with her parents, ex-girlfriend and family friends also in attendance.
## 2696 When Rex finds himself left behind in the bathroom, he puts his limbs to use by getting a bath going for a bunch of new toy friends.
## 2697 On December 12, 1969, a bomb kills 17 people and injures many more at a major national bank in Milan, marking the beginning of the Years of Lead. Local anarchists are scapegoated for the massacre by police and the media, but an investigator uncovers a larger subversive project made of far-right fringe groups, corrupt secret services, and other interests that seek to undermine democracy.
## 2698 On July 19–21, 2001, over 200,000 people took to the streets of Genoa to protest against the ongoing G8 summit. Anti-globalization activists clashed with the police, with 23-year-old protester Carlo Giuliani shot dead after confronting a police vehicle. In the aftermath, the police organized a night raid on the Diaz high school, where a hundred unarmed people between protesters—mostly students—and independent reporters who documented the police brutality during the protests had took shelter. What happened next would be called by Amnesty International "the most serious breach of civil liberties in a democratic Western country since World War II."
## 2699 Young, impulsive Rosetta lives a hard and stressful life as she struggles to support herself and her alcoholic mother. Refusing all charity, she is desperate to maintain a dignified job.
## 2700 Milo is aging, he is planning his daughter's 25th birthday, and his shipment of heroin turns out to be 10,000 pills of ecstasy. When Milo tries to sell the pills anyway, all Hell breaks loose and his only chance is to ask for help from his ex-henchman and old friend Radovan.
## 2701 Cady Heron is a hit with The Plastics, the A-list girl clique at her new school, until she makes the mistake of falling for Aaron Samuels, the ex-boyfriend of alpha Plastic Regina George.
## 2702 Ethan and team take on their most impossible mission yet—eradicating 'The Syndicate', an International and highly-skilled rogue organization committed to destroying the IMF.
## 2703 A fateful day pushes an aimless college dropout to stop wasting his time and finally engage with life.
## 2704 A dark comedy centering on the lives of a Neapolitan based family whose father, a fish merchant, is so infatuated with the reality TV show "Grande Fratello" (the Italian version of "Big Brother") he starts living his life as if he were on it.
## 2705 After a police chase with an otherworldly being, a New York City cop is recruited as an agent in a top-secret organization established to monitor and police alien activity on Earth: the Men in Black. Agent Kay and new recruit Agent Jay find themselves in the middle of a deadly plot by an intergalactic terrorist who has arrived on Earth to assassinate two ambassadors from opposing galaxies.
## 2706 An average family is thrust into the spotlight after the father commits a seemingly self-defense murder at his diner.
## 2707 Two high school girls are best friends until one dates the other's older brother, who is totally his sister's nemesis.
## 2708 13 years after the King Injo Revolt, the Chosun Dynasty is attacked by the Chung Dynasty of China. A young man named Na-mi leaves his demolished village to find his young sister, Ja-in, and her finance Su-koon, who were to wed on the very day of the attack. While on his mission to rescue her, he is being traced by Jushinta, a fierce Chung Warrior, and his band of malicious men who are out to stop him. Na-mi has but a day to rescue his sister before she is taken away to be a slave. When Na-mi finally finds his sister, Jushinta comes between them and a fierce battle between two of the finest warriors unfolds.
## 2709 When the warren belonging to a community of rabbits is threatened, a brave group led by Fiver, Bigwig, Blackberry and Hazel leave their homeland in a search of a safe new haven.
## 2710 After a group of friends graduate from Delhi University, they listlessly haunt their old campus, until a British filmmaker casts them in a film she's making about freedom fighters under British rule. Although the group is largely apolitical, the tragic death of a friend owing to local government corruption awakens their patriotism. Inspired by the freedom fighters they represent in the film, the friends collectively decide to avenge the killing.
## 2711 A manager of an orphanage in India is sent to Copenhagen, Denmark, where he discovers a life-altering family secret.
## 2712 In the midst of the wedding princess Miroslava is kidnapped by a dragon and carried away into his castle on the remote island. Mira left everything behind in the past - family, friends and groom. Now the only things she had were a stone cage and a mysterious young man named Arman ... but who is he and what is he doing on that island? Miroslava will know the truth too late: loving a dragon will reveal the bitter truth - love is scary.
## 2713 Two talented song-and-dance men team up after the war to become one of the hottest acts in show business. In time they befriend and become romantically involved with the beautiful Haynes sisters who comprise a sister act.
## 2714 Professional daredevil and white-suited hero, The Great Leslie, convinces turn-of-the-century auto makers that a race from New York to Paris (westward across America, the Bering Straight and Russia) will help to promote automobile sales. Leslie's arch-rival, the mustached and black-attired Professor Fate vows to beat Leslie to the finish line in a car of Fate's own invention.
## 2715 A boy with a massive facial skull deformity and biker gang mother attempts to live as normal a life as possible under the circumstances.
## 2716 Set in late 19th century Canton, this martial arts film depicts the stance taken by the legendary martial arts hero Wong Fei-Hung against foreign forces' plundering of China.
## 2717 A waitress, desperate to fulfill her dreams as a restaurant owner, is set on a journey to turn a frog prince back into a human being, but she has to face the same problem after she kisses him.
## 2718 Tom Ripley is a calculating young man who believes it's better to be a fake somebody than a real nobody. Opportunity knocks in the form of a wealthy U.S. shipbuilder who hires Tom to travel to Italy to bring back his playboy son, Dickie. Ripley worms his way into the idyllic lives of Dickie and his girlfriend, plunging into a daring scheme of duplicity, lies and murder.
## 2719 Pregnant and alone in the city of Kolkata, a woman begins a relentless search for her missing husband, only to find that nothing is what it seems.
## 2720 A family man convicted of killing an intruder must cope with life afterward in the violent penal system.
## 2721 In a world where families are limited to one child due to overpopulation, a set of identical septuplets must avoid being put to a long sleep by the government and dangerous infighting while investigating the disappearance of one of their own.
## 2722 A lawyer conducts business from the back of his Lincoln town car while representing a high-profile client in Beverly Hills.
## 2723 Two former Olympians, one a figure skater and the other a hockey player, pin their hopes of one last shot at Olympic glory on one another. That is, of course, if they can keep from killing each other in the process...
## 2724 After serving prison time for a juvenile offense, Freddo gathers his old buddies Libano and Dandi and embarks on a crime spree that makes the trio the most powerful gangsters in Rome. Libano loves their new status, and seeks to spread their influence throughout the underworld, while the other two pursue more fleshly desires. For decades, their gang perpetrates extravagant crimes, until paranoia threatens to split the friends apart.
## 2725 In stifling Edwardian London, Wendy Darling mesmerizes her brothers every night with bedtime tales of swordplay, swashbuckling and the fearsome Captain Hook. But the children become the heroes of an even greater story, when Peter Pan flies into their nursery one night and leads them over moonlit rooftops through a galaxy of stars and to the lush jungles of Neverland.
## 2726 A television reporter and cameraman follow emergency workers into a dark apartment building and are quickly locked inside with something terrifying.
## 2727 The story of two radically different men thrown together in a Latin American prison cell. One is Valentin, a journalist being tortured for his political beliefs. The other is Molina, a gay window-dresser who fills their lonely nights by spinning romantic fantasies drawn from memories of old movies.
## 2728 Daniel, a fatherless teenager, arrives in Los Angeles and becomes the object of bullying by a gang of karate students when he strikes up a relationship with Ali, the gang leader’s ex-girlfriend, so Daniel asks Miyagi, a master of martial arts, to help him learn karate.
## 2729 In the 1930s, Count Almásy is a Hungarian map maker employed by the Royal Geographical Society to chart the vast expanses of the Sahara Desert along with several other prominent explorers. As World War II unfolds, Almásy enters into a world of love, betrayal, and politics.
## 2730 Sophomore year has been a nightmare for Jessica Burns. Relentlessly harassed by her former friend Avery Keller, Jessica doesn't know what she did to deserve the abuse from one of South Brookdale High's most popular and beautiful students. But when a shocking event changes both of their lives, a documentary film crew, a hidden digital camera, and the attention of a reeling community begin to reveal the powerful truth about A Girl Like Her.
## 2731 Widowed Welsh mother Anna Loenowens becomes a governess and English tutor to the wives and many children of the stubborn King Mongkut of Siam. Anna and the King have a clash of personalities as she works to teach the royal family about the English language, customs and etiquette, and rushes to prepare a party for a group of European diplomats who must change their opinions about the King.
## 2732 During World War II, a secret agent must seduce then assassinate an official who works for the Japanese puppet government in Shanghai. Her mission becomes clouded when she finds herself falling in love with the man she is assigned to kill.
## 2733 The story of the ascension to the throne and the early reign of Queen Elizabeth the First, the endless attempts by her council to marry her off, the Catholic hatred of her and her romance with Lord Robert Dudley.
## 2734 A man who lost his family in the September 11 attack on New York City runs into his old college roommate. Rekindling the friendship is the one thing that appears able to help the man recover from his grief.
## 2735 In Babel, a tragic incident involving an American couple in Morocco sparks a chain of events for four families in different countries throughout the world. In the struggle to overcome isolation, fear, and displacement, each character discovers that it is family that ultimately provides solace. In the remote sands of the Moroccan desert, a rifle shot rings out detonating a chain of events that will link an American tourist couples frantic struggle to survive, two Moroccan boys involved in an accidental crime, a nanny illegally crossing into Mexico with two American children and a Japanese teen rebel whose father is sought by the police in Tokyo. Separated by clashing cultures and sprawling distances, each of these four disparate groups of people are nevertheless hurtling towards a shared destiny of isolation and grief.
## 2736 Marnie is a thief, a liar, and a cheat. When her new boss, Mark Rutland, catches on to her routine kleptomania, she finds herself being blackmailed.
## 2737 Set in a post-apocalyptic world, young Thomas is deposited in a community of boys after his memory is erased, soon learning they're all trapped in a maze that will require him to join forces with fellow “runners” for a shot at escape.
## 2738 Tonny is released from prison - again. This time he has his mind set on changing his broken down life, but that is easier said than done
## 2739 A family of Irish immigrants adjusts to life on the mean streets of Hell's Kitchen while also grieving the death of a child.
## 2740 A World War II submarine commander finds himself stuck with a damaged sub, a con-man executive officer, and a group of army nurses.
## 2741 Nick is the director of a low-budget indie film. He tries to keep everything together as his production is plagued with an insecure actress, a megalomaniac star, a pretentious, beret-wearing director of photography, and lousy catering.
## 2742 Siblings Kate and Teddy try to prove Santa Claus is real, but when they accidentally cause his sleigh to crash, they have to save Christmas.
## 2743 Pooh gets confused when Christopher Robin leaves him a note to say that he has gone back to school after the holidays. So Pooh, Piglet, Tigger, Eeyore and Rabbit go in search of Christopher Robin which leads to a big adventure.
## 2744 As America's stock of athletic young men is depleted during World War II, a professional all-female baseball league springs up in the Midwest, funded by publicity-hungry candy maker Walter Harvey. Competitive sisters Dottie Hinson and Kit Keller spar with each other, scout Ernie Capadino and grumpy has-been coach Jimmy Dugan on their way to fame.
## 2745 Behrani, an Iranian immigrant buys a California bungalow, thinking he can fix it up, sell it again, and make enough money to send his son to college. However, the house is the legal property of former drug addict Kathy. After losing the house in an unfair legal dispute with the county, she is left with nowhere to go. Wanting her house back, she hires a lawyer and befriends a police officer. Neither Kathy nor Behrani have broken the law, so they find themselves involved in a difficult moral dilemma.
## 2746 Failed architect, engineer and vicious murderer Jack narrates the details of some of his most elaborately orchestrated crimes, each of them a towering piece of art that defines his life's work as a serial killer for twelve years.
## 2747 Francis is a young gay man, Marie is a young straight woman and the two of them are best friends -- until the day the gorgeous Nicolas walks into a Montreal coffee shop. The two friends, instantly and equally infatuated, compete for Nicolas' indeterminate affections, a conflict that climaxes when the trio visit the vacation home of Nicolas' mother. The frothy comedy unfolds through narrative, fantasy sequences and confessional monologues.
## 2748 When a woman attempts to kill her uncaring husband, prosecutor Adam Bonner gets the case. Unfortunately for him his wife Amanda (who happens to be a lawyer too) decides to defend the woman in court. Amanda uses everything she can to win the case and Adam gets mad about it. As a result, their perfect marriage is disturbed by everyday quarrels.
## 2749 Based on the incredible true story, The Express follows the inspirational life of college football hero Ernie Davis, the first African-American to win the Heisman Trophy.
## 2750 Corporate billionaire Edward Cole and working class mechanic Carter Chambers are worlds apart. At a crossroads in their lives, they share a hospital room and discover they have two things in common: a desire to spend the time they have left doing everything they ever wanted to do and an unrealized need to come to terms with who they are. Together they embark on the road trip of a lifetime, becoming friends along the way and learning to live life to the fullest, with insight and humor.
## 2751 Based on Frank Miller's graphic novel, "300" is very loosely based the 480 B.C. Battle of Thermopylae, where the King of Sparta led his army against the advancing Persians; the battle is said to have inspired all of Greece to band together against the Persians, and helped usher in the world's first democracy.
## 2752 In the United States for the first time, an Indian housewife with a limited command of English turns Manhattan into her personal language school.
## 2753 A mysterious preacher protects a humble prospector village from a greedy mining company trying to encroach on their land.
## 2754 Deadpool sees an opportunity to save the day, but it doesn't go entirely as planned.
## 2755 Chris Neilson dies to find himself in a heaven more amazing than he could have ever dreamed of. There is one thing missing: his wife. After he dies, his wife, Annie killed herself and went to hell. Chris decides to risk eternity in hades for the small chance that he will be able to bring her back to heaven.
## 2756 Corky, a tough female ex-convict working on an apartment renovation in a Chicago building, meets a couple living next door, Caesar, a paranoid mobster, and Violet, his seductive girlfriend, who is immediately attracted to her.
## 2757 The Autobots must stop a colossal planet-consuming robot who goes after the Autobot Matrix of Leadership. At the same time, they must defend themselves against an all-out attack from the Decepticons.
## 2758 Two American astronomers attempt to warn humankind about an approaching comet that will wipe out life on planet Earth.
## 2759 A bomb disposal expert becomes bitter and lonely and is unable to fall in love until he is forced to deal with his past.
## 2760 Tinkerbell wanders into the forbidden Winter woods and meets Periwinkle. Together they learn the secret of their wings and try to unite the warm fairies and the winter fairies to help Pixie Hollow.
## 2761 When a litter of dalmatian puppies are abducted by the minions of Cruella De Vil, the parents must find them before she uses them for a diabolical fashion statement.\n In a Disney animation classic, Dalmatian Pongo is tired of his bachelor-dog life. He spies lovely Perdita and maneuvers his master, Roger, into meeting Perdita's owner, Anita. The owners fall in love and marry, keeping Pongo and Perdita together too. After Perdita gives birth to a litter of 15 puppies, Anita's old school friend Cruella De Vil wants to buy them all. Roger declines her offer, so Cruella hires the criminal Badun brothers to steal them -- so she can have a fur coat.
## 2762 Stéphane decides to move to the beautiful mountains of Cantal in order to reconnect with his 8-year-old daughter, Victoria, who has been silent since her mother's disappearance. During a walk in the forest, a shepherd gives Victoria a puppy named "Mystery" who will gradually give her a taste for life. But very quickly, Stéphane discovers that the animal is in reality a wolf… Despite the warnings and the danger of this situation, he cannot bring himself to separate his daughter from this seemingly harmless ball of hair.
## 2763 Nearly 5,000 years after he was bestowed with the almighty powers of the Egyptian gods—and imprisoned just as quickly—Black Adam is freed from his earthly tomb, ready to unleash his unique form of justice on the modern world.
## 2764 The story of Jody, a misguided, 20-year-old African-American who is really just a baby boy finally forced-kicking and screaming to face the commitments of real life. Streetwise and jobless, he has not only fathered two children by two different women-Yvette and Peanut but still lives with his own mother. He can't seem to strike a balance or find direction in his chaotic life.
## 2765 Three American brothers who have not spoken to each other in a year set off on a train voyage across India with a plan to find themselves and bond with each other -- to become brothers again like they used to be. Their "spiritual quest", however, veers rapidly off-course (due to events involving over-the-counter pain killers, Indian cough syrup, and pepper spray).
## 2766 A poet falls in love with an art student, who gravitates to his bohemian lifestyle — and his love of heroin. Hooked as much on one another as they are on the drug, their relationship alternates between states of oblivion, self-destruction, and despair.
## 2767 On 15 January 2009, the world witnessed the 'Miracle on the Hudson' when Captain 'Sully' Sullenberger glided his disabled plane onto the Hudson River, saving the lives of all 155 souls aboard. However, even as Sully was being heralded by the public and the media for his unprecedented feat of aviation skill, an investigation was unfolding that threatened to destroy his reputation and career.
## 2768 A young girl is raised in a dysfunctional family constantly on the run from the FBI. Living in poverty, she comes of age guided by her drunkard, ingenious father who distracts her with magical stories to keep her mind off the family's dire state, and her selfish, nonconformist mother who has no intention of raising a family, along with her younger brother and sister, and her other older sister. Together, they fend for each other as they mature in an unorthodox journey that is their family life.
## 2769 One evening, Hammer gives a ride to Christina, an attractive hitchhiker on a lonely country road, who has escaped from the nearby lunatic asylum. Thugs waylay them and force his car to crash. When Hammer returns to semi-consciousness, he hears Christina being tortured until she dies. Hammer, both for vengeance and in hopes that "something big" is behind it all, decides to pursue the case.
## 2770 England, 15th century. Hal, a capricious prince who lives among the populace far from court, is forced by circumstances to reluctantly accept the throne and become Henry V.
## 2771 Germany, 1945. Soldier Willi Herold, a deserter of the German army, stumbles into a uniform of Nazi captain abandoned during the last and desperate weeks of the Third Reich. Newly emboldened by the allure of a suit that he has stolen only to stay warm, Willi discovers that many Germans will follow the leader, whoever he is.
## 2772 Fourteen years after the events of the first film, a series of encounters between people in Britain reminds us that in these different times Love, actually exists.
## 2773 Tom Ripley, an American who deals in forged art, is slighted at an auction in Hamburg by picture framer Jonathan Zimmerman. When Ripley is asked by gangster Raoul Minot to kill a rival, he suggests Zimmerman, and the two, exploiting Zimmerman's terminal illness, coerce him into being a hitman.
## 2774 From a riddle-speaking butterfly, a unicorn learns that she is supposedly the last of her kind, all the others having been herded away by the Red Bull. The unicorn sets out to discover the truth behind the butterfly's words. She is eventually joined on her quest by Schmendrick, a second-rate magician, and Molly Grue, a now middle-aged woman who dreamed all her life of seeing a unicorn. Their journey leads them far from home, all the way to the castle of King Haggard.
## 2775 The Driver specializes in driving getaway cars for robberies. His exceptional talent has prevented him from being caught yet. After another successful flight from the police a self-assured detective makes it his primary goal to catch the Driver. He promises pardons to a gang if they help to convict him in a set-up robbery. The Driver seeks help from The Player to mislead the detective.
## 2776 A timid magazine photo manager who lives life vicariously through daydreams embarks on a true-life adventure when a negative goes missing.
## 2777 Dr. Markway, doing research to prove the existence of ghosts, investigates Hill House, a large, eerie mansion with a lurid history of violent death and insanity.
## 2778 New York detective Ichabod Crane is sent to Sleepy Hollow to investigate a series of mysterious deaths in which the victims are found beheaded. Locals believe the culprit to be none other than the legendary Headless Horseman.
## 2779 Austrian mountaineer, Heinrich Harrer journeys to the Himalayas without his family to head an expedition in 1939. But when World War II breaks out, the arrogant Harrer falls into Allied forces' hands as a prisoner of war. He escapes with a fellow detainee and makes his way to Llaso, Tibet, where he meets the 14-year-old Dalai Lama, whose friendship ultimately transforms his outlook on life.
## 2780 Tessa Young is a dedicated student, dutiful daughter and loyal girlfriend to her high school sweetheart. Entering her first semester of college, Tessa's guarded world opens up when she meets Hardin Scott, a mysterious and brooding rebel who makes her question all she thought she knew about herself -- and what she wants out of life.
## 2781 The Minions fight over a delicious banana... but is that all they want?!
## 2782 After proving himself on the field of battle in the French and Indian War, Benjamin Martin wants nothing more to do with such things, preferring the simple life of a farmer. But when his son Gabriel enlists in the army to defend their new nation, America, against the British, Benjamin reluctantly returns to his old life to protect his son.
## 2783 The staff of an American magazine based in France puts out its last issue, with stories featuring an artist sentenced to life imprisonment, student riots, and a kidnapping resolved by a chef.
## 2784 Dr. Ryan Stone, a brilliant medical engineer on her first Shuttle mission, with veteran astronaut Matt Kowalsky in command of his last flight before retiring. But on a seemingly routine spacewalk, disaster strikes. The Shuttle is destroyed, leaving Stone and Kowalsky completely alone-tethered to nothing but each other and spiraling out into the blackness of space. The deafening silence tells them they have lost any link to Earth and any chance for rescue. As fear turns to panic, every gulp of air eats away at what little oxygen is left. But the only way home may be to go further out into the terrifying expanse of space.
## 2785 An unattractive 7th grader struggles to cope with suburban life as the middle child with inattentive parents and bullies at school.
## 2786 Harry Caine, a blind writer, reaches this moment in time when he has to heal his wounds from 14 years back. He was then still known by his real name, Mateo Blanco, and directing his last movie.
## 2787 Three activists cobble together a kidnapping plot after they encounter a businessman in his home.
## 2788 A gravity-defying boy raised in seclusion matures into an extraordinary man -- and an international celebrity -- who longs for human connection.
## 2789 Freddie, a volatile, heavy-drinking veteran who suffers from post-traumatic stress disorder, finds some semblance of a family when he stumbles onto the ship of Lancaster Dodd, the charismatic leader of a new "religion" he forms after World War II.
## 2790 Dave, nineteen, has just graduated high school, with his 3 friends, The comical Cyril, the warm hearted but short-tempered Moocher, and the athletic, spiteful but good-hearted Mike. Now, Dave enjoys racing bikes and hopes to race the Italians one day, and even takes up the Italian culture, much to his friends and parents annoyance.
## 2791 Alexandre lives in Lyon with his wife and children. One day, he discovered by chance that the priest who abused him to scouts always officiates with children. He then starts a fight, quickly joined by François and Emmanuel, also victims of the priest, to "release their word" on what they suffered.
## 2792 The Raccoons of the Tama Hills are being forced from their homes by the rapid development of houses and shopping malls. As it becomes harder to find food and shelter, they decide to band together and fight back. The Raccoons practice and perfect the ancient art of transformation until they are even able to appear as humans in hilarious circumstances.
## 2793 Virgil Starkwell is intent on becoming a notorious bank robber. Unfortunately for Virgil and his not-so-budding career, he is completely incompetent.
## 2794 A 17-year old Missouri teen discovers she has gotten pregnant, a development that threatens to end her dreams of matriculating at an Ivy League college, and the career that could follow.
## 2795 Austrian farmer Franz Jägerstätter faces the threat of execution for refusing to fight for the Nazis during World War II.
## 2796 Irish Commandant Pat Quinlan leads a stand off with troops against French and Belgian Mercenaries in the Congo during the early 1960s.
## 2797 This is the story of 1970s African-American action legend Black Dynamite. The Man killed his brother, pumped heroin into local orphanages, and flooded the ghetto with adulterated malt liquor. Black Dynamite was the one hero willing to fight The Man all the way from the blood-soaked city streets to the hallowed halls of the Honky House...
## 2798 High school football coach, Harold Jones befriends Radio, a mentally-challenged man who becomes a student at T.L. Hanna High School in Anderson, South Carolina. Their friendship extends over several decades, where Radio transforms from a shy, tormented man into an inspiration to his community.
## 2799 With help from his friends, a Memphis pimp in a mid-life crisis attempts to become a successful hip-hop emcee.
## 2800 During the Vietnam War, a soldier finds himself the outsider of his own squad when they unnecessarily kidnap a female villager.
## 2801 In 1935, when his train is stopped by deep snow, detective Hercule Poirot is called on to solve a murder that occurred in his car the night before.
## 2802 In 1825, Clare, a 21-year-old Irish convict, chases a British soldier through the rugged Tasmanian wilderness, bent on revenge for a terrible act of violence he committed against her family. She enlists the services of an Aboriginal tracker who is also marked by trauma from his own violence-filled past.
## 2803 When the boss' unlucky daughter is missing in South America, Campana is sent to watch the boss' most unlucky employee who is sent as a private detective in hopes he can duplicate the daughter's mistakes.
## 2804 In 208 A.D., in the final days of the Han Dynasty, shrewd Prime Minster Cao convinced the fickle Emperor Han the only way to unite all of China was to declare war on the kingdoms of Xu in the west and East Wu in the south. Thus began a military campaign of unprecedented scale. Left with no other hope for survival, the kingdoms of Xu and East Wu formed an unlikely alliance.
## 2805 After the Cold War, a breakaway Russian republic with nuclear warheads becomes a possible worldwide threat. U.S. submarine Capt. Frank Ramsey signs on a relatively green but highly recommended Lt. Cmdr. Ron Hunter to the USS Alabama, which may be the only ship able to stop a possible Armageddon. When Ramsay insists that the Alabama must act aggressively, Hunter, fearing they will start rather than stop a disaster, leads a potential mutiny to stop him.
## 2806 Senator Walter Chalmers is aiming to take down mob boss Pete Ross with the help of testimony from the criminal's hothead brother Johnny, who is in protective custody in San Francisco under the watch of police lieutenant Frank Bullitt. When a pair of mob hitmen enter the scene, Bullitt follows their trail through a maze of complications and double-crosses. This thriller includes one of the most famous car chases ever filmed.
## 2807 A kidnapped Fred Savage is forced to endure Deadpool's PG-13 rendition of Deadpool 2 as a Princess Bride-esque story that's full of magic, wonder & zero F's.
## 2808 Marcus and Mike are forced to confront new threats, career changes, and midlife crises as they join the newly created elite team AMMO of the Miami police department to take down the ruthless Armando Armas, the vicious leader of a Miami drug cartel.
## 2809 Sissi is now the empress of Austria and attempts to learn etiquette. While she is busy being empress she also has to deal with her difficult new mother-in-law, while the arch-duchess Sophie is trying to tell the emperor how to rule and also Sissi how to be a mother.
## 2810 While on a forgettable first date together in Ohio, a black man and a black woman are pulled over for a minor traffic infraction. The situation escalates, with sudden and tragic results.
## 2811 The beloved Crawleys and their intrepid staff prepare for the most important moment of their lives. A royal visit from the King and Queen of England will unleash scandal, romance and intrigue that will leave the future of Downton hanging in the balance.
## 2812 Several friends travel to Sweden to study as anthropologists a summer festival that is held every ninety years in the remote hometown of one of them. What begins as a dream vacation in a place where the sun never sets, gradually turns into a dark nightmare as the mysterious inhabitants invite them to participate in their disturbing festive activities.
## 2813 Riley, now 12, who is hanging out with her parents at home when potential trouble comes knocking. Mom's and Dad's Emotions find themselves forced to deal with Riley going on her first "date."
## 2814 A bureaucratic snafu sends Marco Tullio Sperelli, a portly, middle-aged northern Italian, to teach third grade in a poor town outside Naples
## 2815 The story of three Korean outlaws in 1930s Manchuria and their dealings with the Japanese army and Chinese and Russian bandits. The Good (a bounty hunter), the Bad (a hitman), and the Weird (a thief) battle the army and the bandits in a race to use a treasure map to uncover the riches of legend.
## 2816 Natalie is high school royalty, but her queen bee status falls apart when she falls for the new guy at school. Although Keith ignores her at first, they soon become friends -- even though Natalie suspects that Keith has something to hide. As the free-spirited Keith shows Natalie how to embrace what life offers, they grow closer -- until a secret tests the bounds of their relationship
## 2817 Bill, an idle, unemployed aspiring writer, walks the crowded streets of London following randomly chosen strangers, a seemingly innocent entertainment that becomes dangerous when he crosses paths with a mysterious character.
## 2818 Vignettes weaving together the stories of six individuals in the old West at the end of the Civil War. Following the tales of a sharp-shooting songster, a wannabe bank robber, two weary traveling performers, a lone gold prospector, a woman traveling the West to an uncertain future, and a motley crew of strangers undertaking a carriage ride.
## 2819 Ollie and Stan deceive their wives into thinking they are taking a medically necessary cruise when they are really going to a lodge convention.
## 2820 Inspired by a true story, a comedy centered on a 27-year-old guy who learns of his cancer diagnosis and his subsequent struggle to beat the disease.
## 2821 Broadway producer, Max Bialystock and his accountant, Leo Bloom plan to make money by charming little old ladies to invest in a production many times over what it will actually cost, and then put on a sure-fire flop, so nobody will ask for their money back – and what can be a more certain flop than a tasteless musical celebrating Hitler.
## 2822 A prepubescent chess prodigy refuses to harden himself in order to become a champion like the famous but unlikable Bobby Fischer.
## 2823 Extremely shy Lars finds it impossible to make friends or socialize. His brother and sister-in-law worry about him, so when he announces that he has a girlfriend he met on the Internet, they are overjoyed. But Lars' new lady is a life-size plastic woman. On the advice of a doctor, his family and the rest of the community go along with his delusion.
## 2824 Things go badly for a small film crew shooting a low-budget zombie movie when they are attacked by real zombies.
## 2825 The career of screenwriter Dalton Trumbo is halted by a witch hunt in the late 1940s when he defies the anti-communist HUAC committee and is blacklisted.
## 2826 Caesar and his apes are forced into a deadly conflict with an army of humans led by a ruthless Colonel. After the apes suffer unimaginable losses, Caesar wrestles with his darker instincts and begins his own mythic quest to avenge his kind. As the journey finally brings them face to face, Caesar and the Colonel are pitted against each other in an epic battle that will determine the fate of both their species and the future of the planet.
## 2827 Tori is a blonde princess who is bored of living her royal life, and has dreams of becoming a popstar. Keira, on the other hand, is a brunette popstar who dreams of being a princess. When the two meet, they magically trade places, but after realising it is best to be themselves.
## 2828 A hot-shot lawyer is hired by a Hong Kong chemical plant to dispose of opposition to their polluting ways. But when he falls for a beautiful woman out to stop the plant, he is torn in a conflict of interest and asks his trusty friends Samo and Biao to help out at least until they discover the true purpose of the plant.
## 2829 Ten-year-old Gabe was just a normal kid growing up in Manhattan until Rosemary Telesco walked into his life, actually into his karate class. But before Gabe can tell Rosemary how he feels, she tells him she will not be going to public school any more. Gabe has a lot more to learn about life, love, and girls.
## 2830 Elliot, a successful gynecologist, works at the same practice as his identical twin, Beverly. Elliot is attracted to many of his patients and has affairs with them. When he inevitably loses interest, he will give the woman over to Beverly, the meeker of the two, without the woman knowing the difference. Beverly falls hard for one of the patients, Claire, but when she inadvertently deceives him, he slips into a state of madness.
## 2831 Young and ambitious Captain Vivés has just been appointed group leader at the Grenoble Criminal Squad when Clara's murder case lands on his desk. Vivés and his team investigate Clara's complex life and relations, but what starts as a professional and methodical immersion into the victim's life soon turns into a haunting obsession.
## 2832 A Pulitzer-winning writer grapples with being a widower and father after a mental breakdown, while, 27 years later, his grown daughter struggles to forge connections of her own.
## 2833 The escape of Bubber Reeves from prison affects the inhabitants of a small Southern town.
## 2834 Jackie is a divorced mother of two. Isabel is the career minded girlfriend of Jackie’s ex-husband Luke, forced into the role of unwelcome stepmother to their children. But when Jackie discovers she is ill, both women realise they must put aside their differences to find a common ground and celebrate life to the fullest, while they have the chance.
## 2835 In 1943, as Hitler continues to wage war across Europe, a group of college students mount an underground resistance movement in Munich. Dedicated expressly to the downfall of the monolithic Third Reich war machine, they call themselves the White Rose. One of its few female members, Sophie Scholl is captured during a dangerous mission to distribute pamphlets on campus with her brother Hans. Unwavering in her convictions and loyalty to the White Rose, her cross-examination by the Gestapo quickly escalates into a searing test of wills as Scholl delivers a passionate call to freedom and personal responsibility.
## 2836 Alessandro and Arturo have been together for over 15 years and, despite the feeling they still have for each other, their relationship is now at crisis. When Alessandro’s best friend, out of the blue, asks them to take care of her two kids for a few days, something changes in their daily routine and love will drive them to a crazy and unexpected turn in their life.
## 2837 In the horror of 1944 Auschwitz, a prisoner forced to burn the corpses of his own people finds moral survival trying to save from the flames the body of a boy he takes for his son.
## 2838 Gwen has just discovered, that she's the final member of the secret time-traveling Circle of Twelve. Now she has to juggle with constant trips to the past, her relationships with Gideon and figuring out dark secrets surrounding the Circle.
## 2839 When a young boy makes a wish at a carnival machine to be big—he wakes up the following morning to find that it has been granted and his body has grown older overnight. But he is still the same 13-year-old boy inside. Now he must learn how to cope with the unfamiliar world of grown-ups including getting a job and having his first romantic encounter with a woman.
## 2840 Two seemingly unconnected souls from different corners of the United States make a telepathic bond that allows them to see, hear and feel the other's experiences, creating a bond that apparently can't be broken.
## 2841 A nobleman with a literary flair, the Marquis de Sade lives in a madhouse where a beautiful laundry maid smuggles his erotic stories to a printer, defying orders from the asylum's resident priest. The titillating passages whip all of France into a sexual frenzy, until a fiercely conservative doctor tries to put an end to the fun.
## 2842 Craig and Smokey are two guys in Los Angeles hanging out on their porch on a Friday afternoon, smoking and drinking, looking for something to do.
## 2843 Young-goon, mentally deranged and frequently electro-charging herself with a transistor radio, has been admitted into a mental institution. Firmly believing herself to be a cyborg, she refuses to consume like a human being. Il-soon is another patient, who catches the eye of Young-goon and soon becomes a close friend. Il-soon is now confronted with the biggest task: to cure Young-goon's mental problem and have her eat real food.
## 2844 Steve Freeling lives with his wife, Diane, and their three children, Dana, Robbie, and Carol Anne, in Southern California where he sells houses for the company that built the neighborhood. It starts with just a few odd occurrences, such as broken dishes and furniture moving around by itself. However, when he realizes that something truly evil haunts his home, Steve calls in a team of parapsychologists led by Dr. Lesh to help before it's too late.
## 2845 Legendary Space Ranger Buzz Lightyear embarks on an intergalactic adventure alongside a group of ambitious recruits and his robot companion Sox.
## 2846 The story of the Battle of Midway, and the leaders and soldiers who used their instincts, fortitude and bravery to overcome massive odds.
## 2847 Still irrevocably scarred by the trauma he endured as a child at the Overlook, Dan Torrance has fought to find some semblance of peace. But that peace is shattered when he encounters Abra, a courageous teenager with her own powerful extrasensory gift, known as the 'shine'. Instinctively recognising that Dan shares her power, Abra has sought him out, desperate for his help against the merciless Rose the Hat and her followers.
## 2848 A loan shark is forced to reconsider his violent lifestyle after the arrival of a mysterious woman claiming to be his long-lost mother.
## 2849 An extraordinarily intelligent young girl from a cruel and uncaring family discovers she possesses telekinetic powers and is sent off to a school headed by a tyrannical principal.
## 2850 When a lottery winner dies of shock, his fellow townsfolk attempt to claim the money.
## 2851 When young dockworker Jude leaves Liverpool to find his estranged father in the United States, he is swept up by the waves of change that are re-shaping the nation. Jude falls in love with Lucy, who joins the growing anti-war movement. As the body count in Vietnam rises, political tensions at home spiral out of control and the star-crossed lovers find themselves in a psychedelic world gone mad.
## 2852 Buddy is a young boy on the cusp of adolescence, whose life is filled with familial love, childhood hijinks, and a blossoming romance. Yet, with his beloved hometown caught up in increasing turmoil, his family faces a momentous choice: hope the conflict will pass or leave everything they know behind for a new life.
## 2853 Molly Bloom, a young skier and former Olympic hopeful becomes a successful entrepreneur (and a target of an FBI investigation) when she establishes a high-stakes, international poker game.
## 2854 The kingdom is in a festive mood as everyone gathers for the royal wedding of Rapunzel and Flynn. However, when Pascal and Maximus, as flower chameleon and ring bearer, respectively, lose the gold bands, a frenzied search and recovery mission gets underway. As the desperate duo tries to find the rings before anyone discovers that they’re missing, they leave behind a trail of comical chaos that includes flying lanterns, a flock of doves, a wine barrel barricade and a very sticky finale. Will Maximus and Pascal save the day and make it to the church in time? And will they ever get Flynn’s nose right?
## 2855 Four friends gather at a villa with the intention of eating themselves to death.
## 2856 Hallie Parker and Annie James are identical twins separated at a young age because of their parents' divorce. Unknowingly to their parents, the girls are sent to the same summer camp where they meet, discover the truth about themselves, and then plot with each other to switch places.
## 2857 In Scooby-Doo’s greatest adventure yet, see the never-before told story of how lifelong friends Scooby and Shaggy first met and how they joined forces with young detectives Fred, Velma, and Daphne to form the famous Mystery Inc. Now, with hundreds of cases solved, Scooby and the gang face their biggest, toughest mystery ever: an evil plot to unleash the ghost dog Cerberus upon the world. As they race to stop this global “dogpocalypse,” the gang discovers that Scooby has a secret legacy and an epic destiny greater than anyone ever imagined.
## 2858 Frank is an expert professional safecracker, specialized in high-profile diamond heists. He plans to use his ill-gotten income to retire from crime and build a nice life for himself complete with a home, wife and kids. To accelerate the process, he signs on with a top gangster for a big score.
## 2859 After young playwright, David Shayne obtains funding for his play from gangster Nick Valenti, Nick's girlfriend Olive miraculously lands the role of a psychiatrist—but not only is she a bimbo who could never pass for a psychiatrist—she's a dreadful actress. David puts up with the leading man who is a compulsive eater, the grand dame who wants her part jazzed up, and Olive's interfering hitman/bodyguard—but, eventually he must decide whether art or life is more important.
## 2860 As Hercule Poirot enjoys a luxurious cruise down the Nile, a newlywed heiress is found murdered on board. Can Poirot identify the killer before the ship reaches the end of its journey?
## 2861 Task Force X targets a powerful mystical object that they will risk their lives to steal.
## 2862 Five years after meeting her three fathers, Sophie Sheridan prepares to open her mother’s hotel. In 1979, young Donna Sheridan meets the men who each could be Sophie’s biological father.
## 2863 In an alternate universe, very different versions of DC's Trinity fight against the government after they are framed for an embassy bombing.
## 2864 In 1953, an innocent man named Christopher Emmanuel "Manny" Balestrero is arrested after being mistaken for an armed robber.
## 2865 The true story of João Guilherme Estrella ("Johnny"), a young middle-class bon vivant who became a big-time cocaine dealer in Rio de Janeiro in the early 1990s.
## 2866 A rich farmer is well known for being very unkind. He's misanthropic, misogynous and cantankerous. Until he meets by chance a gorgeous girl...
## 2867 A grotesquely disfigured composer known as "The Phantom" haunts Paris' opera house, where he's secretly grooming Christine Daae to be an opera diva. Luring her to his remote underground lair, The Phantom declares his love. But Christine loves Raoul de Chagny and plans to elope with him. When The Phantom learns this, he abducts Christine.
## 2868 A philistine in the art film business, Jeremy Prokosch is a producer unhappy with the work of his director. Prokosch has hired Fritz Lang to direct an adaptation of "The Odyssey," but when it seems that the legendary filmmaker is making a picture destined to bomb at the box office, he brings in a screenwriter to energize the script. The professional intersects with the personal when a rift develops between the writer and his wife.
## 2869 Two former geeks become 1980s punks, then party and go to concerts while deciding what to do with their lives.
## 2870 David Sumner, a mild-mannered academic from the United States, marries Amy, an Englishwoman. In order to escape a hectic stateside lifestyle, David and his wife relocate to the small town in rural Cornwall where Amy was raised. There, David is ostracized by the brutish men of the village, including Amy's old flame, Charlie. Eventually the taunts escalate, and two of the locals rape Amy. This sexual assault awakes a shockingly violent side of David.
## 2871 While doing a series of reports on alternative energy sources, opportunistic reporter Kimberly Wells witnesses an accident at a nuclear power plant. Wells is determined to publicize the incident, but soon finds herself entangled in a sinister conspiracy to keep the full impact of the incident a secret.
## 2872 Two years have passed since the final battle with Sephiroth. Though Midgar, city of mako, city of prosperity, has been reduced to ruins, its people slowly but steadily walk the road to reconstruction. However, a mysterious illness called Geostigma torments them. With no cure in sight, it brings death to the afflicted, one after another, robbing the people of their fledgling hope.
## 2873 Portland, Oregon, 1971. Bob Hughes is the charismatic leader of a peculiar quartet, formed by his wife, Dianne, and another couple, Rick and Nadine, who skillfully steal from drugstores and hospital medicine cabinets in order to appease their insatiable need for drugs. But neither fun nor luck last forever.
## 2874 USSR, June 1985. After contact with the Salyut 7 space station is lost, cosmonauts Vladimir Dzhanibekov and Viktor Savinykh dock with the empty, frozen craft, and bring her back to life. Based on actual events.
## 2875 A young cattle farmer is approached by an unscrupulous veterinarian to make a shady deal with a notorious beef trader.
## 2876 In the future, the government maintains control of public opinion by outlawing literature and maintaining a group of enforcers, known as “firemen,” to perform the necessary book burnings. Fireman Montag begins to question the morality of his vocation…
## 2877 The powerful story of Jackie Robinson, the legendary baseball player who broke Major League Baseball’s color barrier when he joined the roster of the Brooklyn Dodgers. The film follows the innovative Dodgers’ general manager Branch Rickey, the MLB executive who first signed Robinson to the minors and then helped to bring him up to the show.
## 2878 A college professor travels to New York City to attend a conference and finds a young couple living in his apartment.
## 2879 When a feisty little fox named Tod is adopted into a farm family, he quickly becomes friends with a fun and adorable hound puppy named Copper. Life is full of hilarious adventures until Copper is expected to take on his role as a hunting dog -- and the object of his search is his best friend!
## 2880 A political activist is convinced that her guest is a man who once tortured her for the government.
## 2881 When Cecilia's abusive ex takes his own life and leaves her his fortune, she suspects his death was a hoax. As a series of coincidences turn lethal, Cecilia works to prove that she is being hunted by someone nobody can see.
## 2882 Cosmo Vittelli, the proprietor of a sleazy, low-rent Hollywood cabaret, has a real affection for the women who strip in his peepshows and the staff who keep up his dingy establishment. He also has a major gambling problem that has gotten him in trouble before. When Cosmo loses big-time at an underground casino run by mobster Mort, he isn't able to pay up. Mort then offers Cosmo the chance to pay back his debt by knocking off a pesky, Mafia-protected bookie.
## 2883 A Japanese Yakuza gangster’s deadly existence in his homeland gets him exiled to Los Angeles, where he is taken in by his little brother and his brother’s gang.
## 2884 Scotland, 11th century. Driven by the twisted prophecy of three witches and the ruthless ambition of his wife, warlord Macbeth, bold and brave, but also weak and hesitant, betrays his good king and his brothers in arms and sinks into the bloody mud of a path with no return, sown with crime and suspicion.
## 2885 During the 1972 Olympic Games in Munich, eleven Israeli athletes are taken hostage and murdered by a Palestinian terrorist group known as Black September. In retaliation, the Israeli government recruits a group of Mossad agents to track down and execute those responsible for the attack.
## 2886 When foreman Frank shows new employee Freddy a secret military experiment in a supply warehouse in Louisville, Kentucky, the two klutzes accidentally release a gas that reanimates corpses into flesh-eating zombies. As the epidemic spreads throughout the town, and the creatures satisfy their hunger in gory and outlandish ways, Frank and Freddy fight to survive with the help of their boss and a mysterious mortician.
## 2887 "Dirty" Harry Callahan is a San Francisco Police Inspector on the trail of a group of rogue cops who have taken justice into their own hands. When shady characters are murdered one after another in grisly fashion, only Dirty Harry can stop them.
## 2888 When record store owner and compulsive list-compiler Rob Gordon gets dumped by his long-time girlfriend, Laura, because he hasn't changed since they met, he revisits his top five breakups of all time in order to figure out what went wrong. As he examines his failed attempts at romance and happiness, the process finds him being dragged, kicking and screaming, into adulthood.
## 2889 The Secret Magic Control Agency sends its two best agents, Hansel and Gretel, to fight against the witch of the Gingerbread House.
## 2890 With new friends in a new kingdom, Barbie learns what it means to be herself when she trades places with a royal lookalike in this musical adventure.
## 2891 November 1944. On the flooded isle of Walcheren, Zeeland, thousands of Allied soldiers are battling the German army. Three young lives become inextricably connected. A Dutch boy fighting for the Germans, an English glider pilot and a girl from Zeeland connected to the resistance against her will, are forced to make crucial choices that impact both their own freedom and the freedom of others.
## 2892 A charismatic New York City jeweler always on the lookout for the next big score makes a series of high-stakes bets that could lead to the windfall of a lifetime. Howard must perform a precarious high-wire act, balancing business, family, and encroaching adversaries on all sides in his relentless pursuit of the ultimate win.
## 2893 In the summer of 1941, the United States and Japan seem on the brink of war after constant embargos and failed diplomacy come to no end. "Tora! Tora! Tora!", named after the code words use by the lead Japanese pilot to indicate they had surprised the Americans, covers the days leading up to the attack on Pearl Harbor, which plunged America into the Second World War.
## 2894 An ordinary man makes an extraordinary discovery when a train accident leaves his fellow passengers dead — and him unscathed. The answer to this mystery could lie with the mysterious Elijah Price, a man who suffers from a disease that renders his bones as fragile as glass.
## 2895 In year 1250 B.C. during the late Bronze age, two emerging nations begin to clash. Paris, the Trojan prince, convinces Helen, Queen of Sparta, to leave her husband Menelaus, and sail with him back to Troy. After Menelaus finds out that his wife was taken by the Trojans, he asks his brother Agamemnom to help him get her back. Agamemnon sees this as an opportunity for power. So they set off with 1,000 ships holding 50,000 Greeks to Troy. With the help of Achilles, the Greeks are able to fight the never before defeated Trojans.
## 2896 Renowned oceanographer Steve Zissou has sworn vengeance upon the rare shark that devoured a member of his crew. In addition to his regular team, he is joined on his boat by Ned, a man who believes Zissou to be his father, and Jane, a journalist pregnant by a married man. They travel the sea, all too often running into pirates and, perhaps more traumatically, various figures from Zissou's past, including his estranged wife, Eleanor.
## 2897 When the four Willoughby children are abandoned by their selfish parents, they must learn how to adapt their Old-Fashioned values to the contemporary world in order to create something new: The Modern Family.
## 2898 Red, Chuck, Bomb and the rest of their feathered friends are surprised when a green pig suggests that they put aside their differences and unite to fight a common threat. Aggressive birds from an island covered in ice are planning to use an elaborate weapon to destroy the fowl and swine.
## 2899 Dr. Raichi is one of the only survivors of the Tuffles, a race that once lived on Planet Plant before the coming of the Saiyans. The Saiyans not only massacred the entire Tuffle race, but also stole their technology and conquered the planet, renaming it Planet Vegeta in honor of their king. Raichi managed to escape with a capsule and found refuge on the Dark Planet, a world at the end of the universe. His only wish is to eradicate the last remaining Saiyans.
## 2900 A bored young man meets with his former girlfriend, now a cabaret dancer and single mother, and soon finds himself falling back in love with her.
## 2901 Following the events of “Guardians of the Galaxy Vol. 1,” Baby Groot is finally ready to try taking his first steps out of his pot—only to learn you have to walk before you can run.
## 2902 In 1944, a courageous group of Russian soldiers managed to escape from German captivity in a half-destroyed legendary T-34 tank. Those were the times of unforgettable bravery, fierce fighting, unbreakable love, and legendary miracles.
## 2903 Despite a traumatic event, a group of friends decide to go ahead with their annual beach vacation. Their relationships, convictions, sense of guilt and friendship are sorely tested. They are finally forced to own up to the little white lies they've been telling each other.
## 2904 A soldier returns home to his small town and exacts a deadly revenge on the thugs who tormented his dimwitted brother while he was away.
## 2905 After being estranged for 15 years, flamboyant actress Becky del Paramo re-enters her daughter Rebeca's life when she comes to perform a concert. Rebeca, she finds, is now married to one of Becky's ex-lovers, Manuel. The mother and daughter begin making up for lost time, when suddenly, a murder occurs...
## 2906 Just as Tessa's life begins to become unglued, nothing is what she thought it would be. Not her friends nor her family. The only person that she should be able to rely on is Hardin, who is furious when he discovers the massive secret that she's been keeping. Before Tessa makes the biggest decision of her life, everything changes because of revelations about her family.
## 2907 Romulus and Remus, two shepherds and loyal brothers, end up taking part to a journey that will lead one of them to be the founder of the greatest nation ever seen. However, the fate of the chosen one will pass from killing his own brother.
## 2908 Annie, a bright young student, is facing an unwanted pregnancy in 1960s France, where abortion is illegal.
## 2909 John Garrity, his estranged wife and their young son embark on a perilous journey to find sanctuary as a planet-killing comet hurtles toward Earth. Amid terrifying accounts of cities getting levelled, the Garritys experience the best and worst in humanity. As the countdown to the global apocalypse approaches zero, their incredible trek culminates in a desperate and last-minute flight to a possible safe haven.
## 2910 Mary Smith, a young girl who lives with her great-aunt in the countryside, follows a mysterious cat into the nearby forest where she finds a strange flower and an old broom, none of which is as ordinary as it seems.
## 2911 Simba idolizes his father, King Mufasa, and takes to heart his own royal destiny. But not everyone in the kingdom celebrates the new cub's arrival. Scar, Mufasa's brother—and former heir to the throne—has plans of his own. The battle for Pride Rock is ravaged with betrayal, tragedy and drama, ultimately resulting in Simba's exile. With help from a curious pair of newfound friends, Simba will have to figure out how to grow up and take back what is rightfully his.
## 2912 A two-hour Battlestar Galactica special that tells the story of the Battlestar Pegasus several months prior to it finding the Galactica.
## 2913 The lives of two Danish families cross each other, and an extraordinary but risky friendship comes into bud. But loneliness, frailty and sorrow lie in wait.
## 2914 Three stories set in summer Rome, three characters all played by Verdone: an awkward young man meets a Spanish tourist; another one plans a trip towards East with a suitcase full of stockings and biro pens; a hippie is visited by his father, who tries to convince him to get back home.
## 2915 A Hollywood agent persuades Kermit the Frog to pursue a career in Hollywood. On his way there he meets his future muppet crew while being chased by the desperate owner of a frog-leg restaurant!
## 2916 Wong Fei-Hung faces the White Lotus Society, a fanatical cult seeking to drive the Europeans out of China through violence, even attacking Chinese who follow Western ways. Wong must also defend Dr. Sun Yat Sen, a revolutionary, from the military.
## 2917 Two tigers are separated as cubs and taken into captivity, only to be reunited years later as enemies by an explorer (Pearce) who inadvertently forces them to fight each other.
## 2918 Two childhood best friends are asked to share a kiss for the purposes of a student short film. Soon, a lingering doubt sets in, confronting both men with their preferences, threatening the brotherhood of their social circle, and, eventually, changing their lives.
## 2919 A cosmic case of flying saucers, intergalactic intrigue and out-of-this-world romance launches Scooby-Doo and the Mystery Inc. Gang into their most unearthly adventure ever.
## 2920 In this film based on a Neil Simon play, newlyweds Corie, a free spirit, and Paul Bratter, an uptight lawyer, share a sixth-floor apartment in Greenwich Village. Soon after their marriage, Corie tries to find a companion for mother, Ethel, who is now alone, and sets up Ethel with neighbor Victor. Inappropriate behavior on a double date causes conflict, and the young couple considers divorce.
## 2921 At the beginning of chaos, the first demon in the world was born, named Yuandi, and it was worshipped as the ancestor of demons. Thousands of years later, the former demon king Sun Wukong is rescued from the Five Elements Mountain by Monk Tang, who promises to protect him and go to the West to get the scriptures.
## 2922 A lonely, down-on-her-luck waitress meets a handsome, quirky jewelry store clerk and thinks that maybe, finally, she's met Mr. Right. The more Molly gets to know Gus, the more she's intrigued by him. But she's also mystified. Gus is absent-minded, preoccupied. Is he hiding something? The short answer is: yes. He's reluctant to share with her that since suffering a brain aneurysm, he's totally lost his short-term memory. Every day is a brand new day, his life starts anew. Every day he sees Molly he struggles to remember who she is and what she represents. Every day, he has to fall in love with her all over again.
## 2923 Princess Annika escapes the clutches of the evil wizard, explores the wonders of Cloud Kingdom, and teams up with a magnificent winged horse - who turns out to be her sister, Princess Brietta - to defeat the wizard and break the spells that imprisoned her family.
## 2924 Manuel, a Spanish politician whose high-class lifestyle is based on nefarious and illegal business threatens to break his entire party after a newspaper exposes him to the public eye. Rather than admit to any wrongdoing, he decides to sell out his whole party in an effort to avoid jail time. It's a decision that will put many lives at risk.
## 2925 In the menacing inferno of the old North-American West, Liz is a genuine survivor who is hunted by a vengeful preacher for a crime she didn’t commit.
## 2926 When Prince Ahmad is blinded and cast out of Bagdad by the nefarious Jaffar, he joins forces with the scrappy thief Abu to win back his royal place, as well as the heart of a beautiful princess.
## 2927 Veronica is brilliant, gifted and beautiful, but the handsome aristocrat she loves, Marco Venier, cannot marry her because she is penniless and of questionable family. So Veronica's mother, Paola, teaches her to become a courtesan, one of the exotic companions favored by the richest and most powerful Venetian men. Veronica courageously uses her charms to change destiny -- and to give herself a chance at true love.
## 2928 A socially awkward and volatile small business owner meets the love of his life after being threatened by a gang of scammers.
## 2929 After a serial killer strangles several women with a necktie, London police identify a suspect—but he claims vehemently to be the wrong man.
## 2930 Nelly has just lost her grandmother and is helping her parents clean out her mother's childhood home. She explores the house and the surrounding woods. One day she meets a girl her same age building a treehouse.
## 2931 A crime-drama, about the cultural aversion of a group of punk rockers in a conservative Texas town. Their ongoing battle with a rival, more-affluent clique leads to a controversial hate crime that questions the morality of American justice.
## 2932 Whatever Works explores the relationship between a crotchety misanthrope, Boris and a naïve, impressionable young runaway from the south, Melody. When Melody's uptight parents arrive in New York to rescue her, they are quickly drawn into wildly unexpected romantic entanglements. Everyone discovers that finding love is just a combination of lucky chance and appreciating the value of "whatever works."
## 2933 Everybody needs some alone time to relax and wash up, but things go quite differently when you’re a Flora Colossi toddler.
## 2934 In Norway, on 22 July 2011, neo-Nazi terrorist Anders Behring Breivik murdered 77 young people attending a Labour Party Youth Camp on Utøya Island outside of Oslo. This three-part story will focus on the survivors of the attacks, the political leadership of Norway, and the lawyers involved.
## 2935 A mathematical genius discovers a link between numbers and reality, and thus believes he can predict the future.
## 2936 Leonard is an English tailor who used to craft suits on London’s world-famous Savile Row. After a personal tragedy, he’s ended up in Chicago, operating a small tailor shop in a rough part of town where he makes beautiful clothes for the only people around who can afford them: a family of vicious gangsters.
## 2937 Shy, straight-A student Ellie is hired by sweet but inarticulate jock Paul, who needs help wooing the most popular girl in school. But their new and unlikely friendship gets tricky when Ellie discovers she has feelings for the same girl.
## 2938 Phillip is a wealthy quadriplegic who needs a caretaker to help him with his day-to-day routine in his New York penthouse. He decides to hire Dell, a struggling parolee who's trying to reconnect with his ex and his young son. Despite coming from two different worlds, an unlikely friendship starts to blossom.
## 2939 A kindhearted street urchin named Aladdin embarks on a magical adventure after finding a lamp that releases a wisecracking genie while a power-hungry Grand Vizier vies for the same lamp that has the power to make their deepest wishes come true.
## 2940 After spending eight months in a mental institution, a former teacher moves back in with his parents and tries to reconcile with his ex-wife.
## 2941 In this action comedy the French boxer Jo Cavalier is charmed on the train to Berlin for the Olympics in Hitler's Germany by the little boy Simon Rosenblum who asks his autograph; when it turns out his adorable young fan is a Jewish orphan in danger of persecution, he risks his one shot at Olympic glory to save Simon and his family, helped only by a German officer-gentleman who became his friend in World War I, by an adventurous escape to Switzerland, Nazi troops on their heals and braving impossible odds in roller coaster-style.
## 2942 There is a new criminal mastermind at large (Professor Moriarty) and not only is he Holmes’ intellectual equal, but his capacity for evil and lack of conscience may give him an advantage over the detective.
## 2943 Afflicted with a terminal illness John Bernard Brooks, the last of the legendary gunfighters, quietly returns to Carson City for medical attention from his old friend Dr. Hostetler. Aware that his days are numbered, the troubled man seeks solace and peace in a boarding house run by a widow and her son. However, it is not Brooks' fate to die in peace, as he becomes embroiled in one last valiant battle.
## 2944 Sent into a drunken tailspin when his entire unit is killed by a gang of thrill-seeking punks, disgraced Hong Kong police inspector Wing needs help from his new rookie partner, with a troubled past of his own, to climb out of the bottle and track down the gang and its ruthless leader.
## 2945 Novalee Nation is a 17-year-old Tennessee transient who has to grow up in a hurry when she's left pregnant and abandoned by her boyfriend on a roadside, and takes refuge in the friendly aisles of Wal-Mart. Eventually, some eccentric but kindly strangers 'adopt' Novalee and her infant daughter, helping them buck the odds and build a new life.
## 2946 A Woman's island getaway with her boyfriend is thrown for a loop when he forgets to take his prescription medications along.
## 2947 Set against the backdrop of a beautiful garden in the heart of London, this contemporary fairy tale revolves around the unlikely friendship between a reclusive young woman and a cantankerous old widower. Bella Brown is a beautifully quirky young woman who dreams of writing and illustrating a successful children’s book. After she is forced by her landlord to deal with her neglected garden or face eviction, she meets her match, nemesis, and unlikely mentor in Alfie Stephenson, a grumpy, loveless, old man who lives next door who happens to be an amazing horticulturalist.
## 2948 Shy 14-year-old Duncan goes on summer vacation with his mother, her overbearing boyfriend, and her boyfriend's daughter. Having a rough time fitting in, Duncan finds an unexpected friend in Owen, manager of the Water Wizz water park.
## 2949 A writer of pulp fiction imagines himself as the dashing hero and his English neighbor as his love interest.
## 2950 On another planet in the distant past, a Gelfling embarks on a quest to find the missing shard of a magical crystal and restore order to his world, before the grotesque race of Skeksis find and use the crystal for evil.
## 2951 A real-time account of the events on United Flight 93, one of the planes hijacked on 9/11 that crashed near Shanksville, Pennsylvania when passengers foiled the terrorist plot.
## 2952 Three teenagers are confined to an isolated country estate that could very well be on another planet. The trio spend their days listening to endless homemade tapes that teach them a whole new vocabulary. Any word that comes from beyond their family abode is instantly assigned a new meaning. Hence 'the sea' refers to a large armchair and 'zombies' are little yellow flowers. Having invented a brother whom they claim to have ostracized for his disobedience, the uber-controlling parents terrorize their offspring into submission.
## 2953 French top secret agent, Hubert Bonisseur de la Bath, is sent to Rio to buy microfilms from a running nazi. To do so, he has to team up with Mossad secret services.
## 2954 Bruno and Sonia, a young couple living off her benefit and the thefts committed by his gang, have a new source of money: their newborn son.
## 2955 In the late 1960s, the Beach Boys' Brian Wilson stops touring, produces "Pet Sounds" and begins to lose his grip on reality. By the 1980s, Wilson, under the sway of a controlling therapist, finds a savior in Melinda Ledbetter.
## 2956 Set in Brazil, three kids who make a discovery in a garbage dump soon find themselves running from the cops and trying to right a terrible wrong.
## 2957 When his son dies while hiking the famed Camino de Santiago pilgrimage route in the Pyrenees, Tom flies to France to claim the remains. Looking for insights into his estranged child’s life, he decides to complete the 500-mile mountain trek to Spain. Tom soon joins up with other travelers and realizes they’re all searching for something.
## 2958 A high school swim champion with a troubled past enrolls in the U.S. Coast Guard's 'A' School, where legendary rescue swimmer, Ben Randall teaches him some hard lessons about loss, love, and self-sacrifice.
## 2959 An investigation into one woman’s memory as she‘s forced to re-examine her first sexual relationship and the stories we tell ourselves in order to survive.
## 2960 In the late 1970s, Cockney crime boss Harold Shand, a gangster trying to become a legitimate property mogul, has big plans to get the American Mafia to bankroll his transformation of a derelict area of London into the possible venue for a future Olympic Games. However, a series of bombings targets his empire on the very weekend the Americans are in town. Shand is convinced there is a traitor in his organization, and sets out to eliminate the rat in typically ruthless fashion.
## 2961 The story of the first major battle of the American phase of the Vietnam War and the soldiers on both sides that fought it.
## 2962 A second-rate journalist from the US tries his luck in El Salvador during the military dictatorship in the 1980s.
## 2963 When the crew of a space junk collector ship called The Victory discovers a humanoid robot named Dorothy that's known to be a weapon of mass destruction, they get involved in a risky business deal which puts their lives at stake.
## 2964 An inspirational speaker becomes reinvigorated after meeting a lively woman who shakes up his mundane existence.
## 2965 Two Jesuit priests travel to seventeenth century Japan which has, under the Tokugawa shogunate, banned Catholicism and almost all foreign contact.
## 2966 Abandoned by his father, a young boy is left in the hands of an unqualified childcare provider.
## 2967 Unable, due to the seal of the confessional, to be forthcoming with information that would serve to clear himself during a murder investigation, a priest becomes the prime suspect.
## 2968 A movie star helps a young singer-actress find fame, even as age and alcoholism send his own career into a downward spiral.
## 2969 Murderesses Velma Kelly and Roxie Hart find themselves on death row together and fight for the fame that will keep them from the gallows in 1920s Chicago.
## 2970 Siblings Lucy, Edmund, Susan and Peter step through a magical wardrobe and find the land of Narnia. There, they discover a charming, once peaceful kingdom that has been plunged into eternal winter by the evil White Witch, Jadis. Aided by the wise and magnificent lion, Aslan, the children lead Narnia into a spectacular, climactic battle to be free of the Witch's glacial powers forever.
## 2971 For Jimmy Smith, Jr., life is a daily fight just to keep hope alive. Feeding his dreams in Detroit's vibrant music scene, Jimmy wages an extraordinary personal struggle to find his own voice - and earn a place in a world where rhymes rule, legends are born and every moment… is another chance.
## 2972 The US President and the UK Prime Minister are planning on launching a war in the Middle East, but—behind the scenes—government officials and advisers are either promoting the war or are trying to prevent it.
## 2973 After his brother's death, Larry Talbot returns home to his father and the family estate. Events soon take a turn for the worse when Larry is bitten by a werewolf.
## 2974 El Topo decides to confront warrior Masters on a trans-formative desert journey he begins with his 6 year old son, who must bury his childhood totems to become a man.
## 2975 Two con men try to settle their rivalry by betting on who can be the first to swindle a young American heiress out of $50,000.
## 2976 In Los Angeles, a gang of bank robbers who call themselves The Ex-Presidents commit their crimes while wearing masks of Reagan, Carter, Nixon and Johnson. Believing that the members of the gang could be surfers, the F.B.I. sends young agent Johnny Utah to the beach undercover to mix with the surfers and gather information.
## 2977 Middle-class housewife Kay Miniver deals with petty problems. She and her husband Clem watch her Oxford-educated son Vin court Carol Beldon, the charming granddaughter of the local nobility as represented by Lady Beldon. Then the war comes and Vin joins the RAF.
## 2978 Jason, a fearless sailor and explorer, returns to his home land of Thessaly after a long voyage to claim his rightful throne. He learns, however, that he must first find the magical Golden Fleece. To do so, he must embark on an epic quest fraught with fantastic monsters and terrible perils.
## 2979 She is almost deaf and she lip-reads. He is an ex-convict. She wants to help him. He thinks no one can help except himself.
## 2980 An aspiring actor in Hollywood meets an enigmatic stranger by the name of Tommy Wiseau, the meeting leads the actor down a path nobody could have predicted; creating the worst movie ever made.
## 2981 After being threatened during a confession, a good-natured priest must battle the dark forces closing in around him.
## 2982 Gia Carangi travels to New York City with dreams of becoming a fashion model. Within minutes of arriving, she meets Wilhelmina Cooper, a wise and high-powered agent who takes Gia under her wing. With Cooper's help and her own natural instincts, Gia quickly shoots to the top of the modeling world. When Cooper dies of lung cancer, however, Gia turns to drugs – and both she and her career begin to spiral out of control.
## 2983 Heidi, is an eight-year-old Swiss orphan who is given by her aunt to her mountain-dwelling grandfather. She is then stolen back by her aunt from her grandfather to live in the wealthy Sesemann household in Frankfurt, Germany as a companion to Klara, a sheltered, disabled girl in a wheelchair. Heidi is unhappy but makes the best of the situation, always longing for her grandfather.
## 2984 Dave Lizewski is an unnoticed high school student and comic book fan who one day decides to become a super-hero, even though he has no powers, training or meaningful reason to do so.
## 2985 Ba'al travels back in time and prevents the Stargate program from being started. SG-1 must somehow restore history.
## 2986 A beautiful felon, sentenced to life in prison for the murder of a policeman, is given a second chance - as a secret political assassin controlled by the government.
## 2987 Ray Kinsella is an Iowa farmer who hears a mysterious voice telling him to turn his cornfield into a baseball diamond. He does, but the voice's directions don't stop -- even after the spirits of deceased ballplayers turn up to play.
## 2988 Mild-mannered Clark Kent works as a reporter at the Daily Planet alongside his crush, Lois Lane. Clark must summon his superhero alter-ego when the nefarious Lex Luthor launches a plan to take over the world.
## 2989 Eugenie has a unique gift: she hears and sees the dead. When her family discovers her secret, at the end of the 19th century, she is taken by her father and brother to the neurological clinic at La Pitié Salpêtrière with no possibility of escaping her fate. Her destiny becomes entwined with that of Geneviève, a nurse at the hospital.
## 2990 When a straight-laced couple that has fun with a rowdy couple on vacation in Mexico return to the States, they discover that the crazy couple they met in Mexico followed them back home and decide to play tricks on them.
## 2991 All the rules are broken as a sect of lawless marauders decides that the annual Purge does not stop at daybreak and instead should never end as they chase a group of immigrants who they want to punish because of their harsh historical past.
## 2992 A koala named Buster recruits his best friend to help him drum up business for his theater by hosting a singing competition.
## 2993 While playing outside one day, nine-year-old Michele discovers Filippo, who is chained to the ground at the bottom of a hole. Michele witnesses town baddie Felice nearby and suspects something bad is happening. Michele is unsure whom he should tell about his discovery, eventually spilling the beans to his closest friend. Michele's parents learn of his discovery and warn him to forget what he saw
## 2994 Thomas leads his group of escaped Gladers on their final and most dangerous mission yet. To save their friends, they must break into the legendary Last City, a WCKD-controlled labyrinth that may turn out to be the deadliest maze of all. Anyone who makes it out alive will get answers to the questions the Gladers have been asking since they first arrived in the maze.
## 2995 Left on the doorstep of a monastery as an infant, Marcelino was raised by the monks. He was well-cared for but lonely and missed having a mother. One day he found a special friend in the forbidden attic, hanging on a cross. A friend that would repay Marcelino's kindness by granting him one heart-felt wish.
## 2996 When the creator of the world, Arceus, comes to pass judgement on humanity for the theft of the legendary Jewel of Life, Ash and his friends are sent back in time to possibly reverse the events that led to Arceus' vendetta.
## 2997 Wealthy, sheltered Lina McLaidlaw is swept off her feet by charming ne'er-do-well Johnnie Aysgarth. Though warned that Johnnie is little more than a fortune hunter, Lina marries him anyway and remains loyal to her irresponsible husband as he plows his way from one disreputable business scheme to another. Gradually Lina comes to the conclusion that Johnnie intends to kill her in order to collect her inheritance.
## 2998 Urbane professor Humbert Humbert marries a New England widow to be near her nymphet daughter.
## 2999 A court-martialed general rallies together 1200 inmates to rise against the system that put him away.
## 3000 A small-time hood must choose from among love, friendship and the chance to rise within the mob.
## 3001 The four sons of Katie Elder reunite in their Hometown of Clearwater, Texas for their Mother's funeral, and discover that the family ranch is now in the hands of Morgan Hastings, the town's gunsmith.
## 3002 The wicked Blue Meanies take over Pepperland, eliminating all color and music. As the only survivor, the Lord Admiral escapes in the yellow submarine and journeys to Liverpool to enlist the help of the Beatles.
## 3003 An arrogant Texas millionaire hires four adventurers to rescue his kidnapped wife from a notorious Mexican bandit.
## 3004 Two identical twin sisters, separated at birth by their parents' divorce, are reunited years later at a summer camp, where they scheme to bring their parents back together. The girls, one of whom has been living with their mother and the other with their father, switch places after camp and go to work on their plan, the first objective being to scare off a gold-digger pursuing their father.
## 3005 A fearless Secret Service agent will stop at nothing to bring down the counterfeiter who killed his partner.
## 3006 A lonely 40-ish man, likely to remain a bachelor, has a chance to find the love of his life when he falls for a vivacious young woman.
## 3007 This outrageous time-travel comedy follows the misadventures of a wacky medieval knight (Jean Reno) and his faithful servant when they are accidentally transported to contemporary times by a senile sorcerer. Mayhem rules as these 12th-century visitors try adapting to the wildly confusing modern world. To avoid being stuck here for good, however, they soon begin an all-out cosmic assault on their former castle -- now a luxury hotel -- in their quest to return to the past.
## 3008 Anthropology student Daria, who's helping a property developer build a village in the Los Angeles desert, and dropout Mark, who's wanted by the authorities for allegedly killing a policeman during a student riot, accidentally encounter each other in Death Valley and soon begin an unrestrained romance.
## 3009 When their ocean liner capsizes, a group of passengers struggle to survive and escape.
## 3010 A beautiful girl, Snow White, takes refuge in the forest in the house of seven dwarfs to hide from her stepmother, the wicked Queen. The Queen is jealous because she wants to be known as "the fairest in the land," and Snow White's beauty surpasses her own.
## 3011 An impoverished teen seeking to escape the clutches of a human trafficker must weigh living up to his moral code against his struggle to survive.
## 3012 Prince Amleth is on the verge of becoming a man when his father is brutally murdered by his uncle, who kidnaps the boy's mother. Two decades later, Amleth is now a Viking who's on a mission to save his mother, kill his uncle and avenge his father.
## 3013 When an unlikely ally enters the Bloom family's world in the form of an injured baby magpie they name Penguin, the bird’s arrival makes a profound difference in the struggling family’s life.
## 3014 Malcolm is carefully surviving life in a tough neighborhood in Los Angeles while juggling college applications, academic interviews, and the SAT. A chance invitation to an underground party leads him into an adventure that could allow him to go from being a geek, to being dope, to ultimately being himself.
## 3015 When Chef Carl Casper suddenly quits his job at a prominent Los Angeles restaurant after refusing to compromise his creative integrity for its controlling owner, he is left to figure out what's next. Finding himself in Miami, he teams up with his ex-wife, his friend and his son to launch a food truck. Taking to the road, Chef Carl goes back to his roots to reignite his passion for the kitchen -- and zest for life and love.
## 3016 A tale about a strange young man, Bulcsú, and the fellow ticket inspectors on his team who work aboard the subterranean Budapest Metro. A tale about racing along the tracks, and about a mysterious serial killer. And a tale about love.
## 3017 Down-and-out private detective Harry Angel is ordered by the mysterious Louis Cyphre to go on a mission to find a missing person. His routine failure soon leads to a bloody spar with himself, as he goes on a supernatural journey into his own soul.
## 3018 Washed-up MMA fighter Cole Young, unaware of his heritage, and hunted by Emperor Shang Tsung's best warrior, Sub-Zero, seeks out and trains with Earth's greatest champions as he prepares to stand against the enemies of Outworld in a high stakes battle for the universe.
## 3019 Dragon is now transferred to be the police head of Sai Wan district, and has to contend with a gangster kingpin, anti-Manchu revolutionaries, some runaway pirates, Manchu Loyalists and a corrupt police superintendent.
## 3020 A Marine travels to Louisiana after serving three tours in Iraq and searches for the unknown woman he believes was his good luck charm during the war.
## 3021 When she learns she's in danger of losing her visa status and being deported, overbearing book editor Margaret Tate forces her put-upon assistant, Andrew Paxton, to marry her.
## 3022 Set in post-WWII Leningrad as two female soldiers return from war and attempt to rebuild their lives in the ravaged city.
## 3023 Young dancers gather in a remote and empty school building to rehearse on a cold and wintry night. The all-night celebration soon turns into a hallucinatory nightmare when they learn that their sangria is laced with LSD.
## 3024 In a coffee shop, nine seemingly unrelated strangers meet with a mysterious man who seems to have the power to grant all their wishes, in return for which they must carry out any task he decides to assign them.
## 3025 A runaway couple go on an unforgettable journey from Boston to Key West, recapturing their passion for life and their love for each other on a road trip that provides revelation and surprise right up to the very end.
## 3026 A creative and driven teenager is desperate to escape his hometown and the haunting memories of his turbulent childhood.
## 3027 A present-day idyllic kingdom where the benevolent teenage son of King Adam and Queen Belle offers a chance of redemption for the troublemaking offspring of Disney's classic villains: Cruella De Vil (Carlos), Maleficent (Mal), the Evil Queen (Evie) and Jafar (Jay).
## 3028 A widower and two of his sons become infatuated by their beautiful housekeeper, and all three set out to seduce her using their own unique methods.
## 3029 Calvin is a young novelist who achieved phenomenal success early in his career but is now struggling with his writing – as well as his romantic life. Finally, he makes a breakthrough and creates a character named Ruby who inspires him. When Calvin finds Ruby, in the flesh, sitting on his couch about a week later, he is completely flabbergasted that his words have turned into a living, breathing person.
## 3030 A group of covert CIA operatives trailing a potential new energy source are double-crossed by corrupt agent Morgan, who causes a helicopter crash in remote South Africa. The sole survivor, suffering severe amnesia, is nursed to recovery by a kindly native tribe who call him "Whoami" after the question he keeps asking. With the help of a mysterious reporter Christine, Whoami pieces together his past and tracks the turncoat agent and his criminal cohorts.
## 3031 Angelino is just one of thousands of deadbeats living in Dark Meat City. But an otherwise unremarkable scooter accident caused by a beautiful, mysterious stranger is about to transform his life... into a waking nightmare! He starts seeing monstrous forms prowling around all over the city... Is Angelino losing his mind, or could an alien invasion really be happening this quietly...?
## 3032 An orphaned brontosaurus named Littlefoot sets off in search of the legendary Great Valley. A land of lush vegetation where the dinosaurs can thrive and live in peace. Along the way he meets four other young dinosaurs, each one a different species, and they encounter several obstacles as they learn to work together in order to survive.
## 3033 A wife questions her life choices as she travels to Stockholm with her husband, where he is slated to receive the Nobel Prize for Literature.
## 3034 Newly transferred to the bustling port city of Marseille to assist with a crackdown on organized crime, energetic young magistrate Pierre Michel is given a rapid-fire tutorial on the ins and outs of an out-of-control drug trade. Pierre's wildly ambitious mission is to take on the French Connection, a highly organized operation that controls the city's underground heroin economy and is overseen by the notorious —and reputedly untouchable— Gaetan Zampa. Fearless, determined and willing to go the distance, Pierre plunges into an underworld world of insane danger and ruthless criminals.
## 3035 A murder in 1944 draws together the great poets of the beat generation: Allen Ginsberg, Jack Kerouac and William Burroughs.
## 3036 An absurd black comedy that cunningly reverses the conventions of the crime thriller to comment on the alienating and dehumanizing effects of contemporary urban life. Alphonse Tram is unwittingly involved in several murders despite having no memory of committing the crimes. His confusion lead him to confess to his neighbour, Inspector Morvandieu. Alphonse and Morvandieu become the axis around which murders occur.
## 3037 In an English boys' boarding school, social hierarchy reigns supreme and power remains in the hands of distanced and ineffectual teachers and callously vicious prefects in the Upper Sixth. But three Lower Sixth students, leader Mick Travis, Wallace and Johnny decide on a shocking course of action to redress the balance of privilege once and for all.
## 3038 Lady, a golden cocker spaniel, meets up with a mongrel dog who calls himself the Tramp. He is obviously from the wrong side of town, but happenings at Lady's home make her decide to travel with him for a while.
## 3039 Los Angeles SWAT cop Jack Traven is up against bomb expert Howard Payne, who's after major ransom money. First it's a rigged elevator in a very tall building. Then it's a rigged bus--if it slows, it will blow, bad enough any day, but a nightmare in LA traffic. And that's still not the end.
## 3040 The true story of how Ray Kroc, a salesman from Illinois, met Mac and Dick McDonald, who were running a burger operation in 1950s Southern California. Kroc was impressed by the brothers’ speedy system of making the food and saw franchise potential. He maneuvered himself into a position to be able to pull the company from the brothers and create a billion-dollar empire.
## 3041 After they meet at their parent's engagement party, Mia and Frida are intrigued by and attracted to one another, despite Mia's own upcoming engagement to Tim. Mia must decide whether to continue her life with Tim or to follow her heart with Frida.
## 3042 Still reeling from a heartbreaking family event and his parents' subsequent divorce, Tyler Hawkins discovers a fresh lease on life when he meets Ally Craig, a gregarious beauty who witnessed her mother's death. But as the couple draws closer, the fallout from their separate tragedies jeopardizes their love.
## 3043 The story of the famous and influential 1960s rock band and its lead singer and composer, Jim Morrison.
## 3044 After an abrupt and violent encounter with a French warship inflicts severe damage upon his ship, a captain of the British Royal Navy begins a chase over two oceans to capture or destroy the enemy, though he must weigh his commitment to duty and ferocious pursuit of glory against the safety of his devoted crew, including the ship's thoughtful surgeon, his best friend.
## 3045 A recently released patient from a mental institution returns home with her sister, only to face disturbing events between her stepmother and the ghosts haunting their house- all of which are connected to a dark past in the family's history.
## 3046 A strait-laced French student moves into an apartment in Barcelona with a cast of six other characters from all over Europe. Together, they speak the international language of love and friendship.
## 3047 Recently deceased, a white-sheeted ghost returns to his suburban home to console his bereft wife, only to find that in his spectral state he has become unstuck in time, forced to watch passively as the life he knew and the woman he loves slowly slip away.
## 3048 Lonely toymaker Geppetto has his wishes answered when the Blue Fairy arrives to bring his wooden puppet Pinocchio to life. Before becoming a real boy, however, Pinocchio must prove he's worthy as he sets off on an adventure with his whistling sidekick and conscience, Jiminy Cricket.
## 3049 In Bangkok, the young Kham was raised by his father in the jungle with elephants as members of their family. When his old elephant and the baby Kern are stolen by criminals, Kham finds that the animals were sent to Sidney. He travels to Australia, where he locates the baby elephant in a restaurant owned by the evil Madame Rose, the leader of an international Thai mafia. With the support of the efficient Thai sergeant Mark, who was involved in a conspiracy, Kham fights to rescue the animal from the mobsters.
## 3050 Two quirky, cynical teenaged girls try to figure out what to do with their lives after high school graduation. After they play a prank on an eccentric, middle aged record collector, one of them befriends him, which causes a rift in the girls' friendship.
## 3051 Eight London couples try to deal with their relationships in different ways. Their tryst with love makes them discover how complicated relationships can be.
## 3052 Air Force Colonel Kenneth Penmark and his wife, Christine, dote on their daughter, Rhoda -- as does their lonely landlady, Monica Breedlove. But self-centered Rhoda has a secret tendency for selfishness and loves to accumulate gifts, whether given or stolen, in her room. Christine keeps her knowledge of her daughter's darker side to herself, but when a schoolmate of Rhoda's dies mysteriously, her self-deception unravels.
## 3053 Clark Griswold is on a quest to take his family on a quest to Walley World theme park for a vacation, but things don't go exactly as planned.
## 3054 In 1798, a feral boy is discovered outside the town of Aveyron, France. Diagnosed as mentally impaired, he is relegated to an asylum. A young doctor named Jean Itard becomes convinced that the boy has normal mental capacity, but that his development was hindered by lack of contact with society. He brings the boy home and begins an arduous attempt at education over several years.
## 3055 A veteran high school teacher befriends a younger art teacher, who is having an affair with one of her 15-year-old students. However, her intentions with this new "friend" also go well beyond platonic friendship.
## 3056 CIA employee Edward Snowden leaks thousands of classified documents to the press.
## 3057 Denmark, 2013. Police officers Carl Mørck and Hafez el-Assad, sole members of Department Q, which is focused on closing cold cases, investigate the disappearance of politician Merete Lynggaard, vanished when she and her brother were traveling aboard a ferry five years ago.
## 3058 Billy is released after five years in prison. In the next moment, he kidnaps teenage student Layla and visits his parents with her, pretending she is his girlfriend and they will soon marry.
## 3059 John Quincy Archibald is a father and husband whose son is diagnosed with an enlarged heart and then finds out he cannot receive a transplant because HMO insurance will not cover it. Therefore, he decides to take a hospital full of patients hostage until the hospital puts his son's name on the donor's list.
## 3060 Two hapless freight handlers find themselves encountering Dracula, the Frankenstein Monster and the Wolf Man.
## 3061 Several ordinary high school students go through their daily routine as two others prepare for something more malevolent.
## 3062 Three families end up in the same rented house. Throughout the summer, they become friends and rediscover how to enjoy life.
## 3063 A private eye investigates the apparent suicide of a fading porn star in 1970s Los Angeles and uncovers a conspiracy.
## 3064 Controversy and legal problems follow Dr. Jack Kevorkian as he advocates assisted suicide.
## 3065 Freed after a lengthy term in a juvenile detention center, convicted child killer Jack Burridge (Andrew Garfield) finds work as a deliveryman and begins dating co-worker Michelle (Katie Lyons). While out on the road one day, the young Englishman notices a distressed child, and, after reuniting the girl with her family, becomes a local celebrity. But, when a local newspaper unearths his past, Jack must cope with the anger of citizens who fear for the safety of their children.
## 3066 When a son and mother move to Seattle in hopes for a better life, the mother meets a seemingly polite man. Things go south when the man turns out to be abusive, endangering their lives. As the mother struggles to maintain hope in an impossible situation, the son has plans to escape.
## 3067 When two brothers organize the robbery of their parents' jewelry store, the job goes horribly wrong, triggering a series of events that send them and their family hurtling towards a shattering climax.
## 3068 World-famous detective Benoit Blanc heads to Greece to peel back the layers of a mystery surrounding a tech billionaire and his eclectic crew of friends.
## 3069 Salamanca, Spain, 1936. In the early days of the military rebellion that began the Spanish Civil War (1936-39), writer Miguel de Unamuno supports the uprising in the hope that the prevailing political chaos will end. But when the confrontation becomes bloody, Unamuno must question his initial position.
## 3070 The story of a child star attempting to mend his relationship with his law-breaking, alcohol-abusing father over the course of a decade, loosely based on Shia LaBeouf’s life.
## 3071 David, who gets by doing odd jobs, meets Léna, who has just moved up to Paris, and falls in love. But soon after, his life is brutally interrupted by the sudden death of his sister. Beyond the shock, and the pain, David now finds himself alone with his young niece Amanda to care for.
## 3072 While traveling with his father, young Alec becomes fascinated by a mysterious Arabian stallion that is brought on board and stabled in the ship he is sailing on. When it tragically sinks both he and the horse survive only to be stranded on a deserted island. He befriends it, so when finally rescued both return to his home where they soon meet Henry Dailey, a once successful trainer. Together they begin training the horse to race against the fastest ones in the world.
## 3073 A young boy whose parents just divorced finds an unlikely friend and mentor in the misanthropic, bawdy, hedonistic, war veteran who lives next door.
## 3074 Åmål is a small insignificant town where nothing ever happens, where the latest trends are out of date when they get there. Young Elin has a bit of a bad reputation when it comes to guys, but the fact is that she has never done it. Another girl in her school, Agnes, is in love with her but is too shy to do anything about it. For different reasons, Elin ends up at Agnes' birthday party as the only guest. They have a girl's night out together but after that Elin desperately avoids Agnes, refusing to even consider her own homosexuality.
## 3075 When a man is diagnosed with terminal cancer, he takes custody of his misanthropic teenage son, for whom quality time means getting high, engaging in small-time prostitution, and avoiding his father.
## 3076 Andrew returns to his hometown for the funeral of his mother, a journey that reconnects him with past friends. The trip coincides with his decision to stop taking his powerful antidepressants. A chance meeting with Sam - a girl also suffering from various maladies - opens up the possibility of rekindling emotional attachments, confronting his psychologist father, and perhaps beginning a new life.
## 3077 Naruto Uzumaki, Kakashi Hatake, Sakura Haruno, and Rock Lee are assigned to protect the prince of the Land of the Moon, Michiru, during his world trip; other escorts had been hired, but quit due to being treated poorly. The Land of the Moon is a very wealthy nation, so Michiru tends to buy whatever he wants, and has a very materialistic worldview. His Hikaru, also acts in much the same manner.
## 3078 After fierce Roman commander Marcus Vinicius becomes infatuated with beautiful Christian hostage Lygia, he begins to question the tyrannical leadership of the despotic emperor Nero.
## 3079 At the urging of his gargoyle pals, Quasimodo leaves Notre Dame tower against the wishes of his guardian, the evil Judge Claude Frollo. He ventures out to the Festival of Fools and finds his first true friend, a Romani woman named Esmeralda, who entrusts him with a secret. When the secret is revealed, Quasi soon finds himself fighting to save the people and city he loves.
## 3080 A recently released ex-convict and his loyal wife go on the run after a heist goes wrong.
## 3081 A group of male friends become obsessed with five mysterious sisters who are sheltered by their strict, religious parents.
## 3082 A week in the life of Paterson, a poet bus driver, and his wife Laura, a very creative artist, who live in Paterson, New Jersey, hometown of many famous poets and artists.
## 3083 A dog that helped soldiers in Afghanistan returns to the U.S. and is adopted by his handler's family after suffering a traumatic experience.
## 3084 On a dark and somber night, a secret cabal of monster hunters emerge from the shadows and gather at the foreboding Bloodstone Temple following the death of their leader. In a strange and macabre memorial to the leader’s life, the attendees are thrust into a mysterious and deadly competition for a powerful relic—a hunt that will ultimately bring them face to face with a dangerous monster.
## 3085 The Addams get tangled up in more wacky adventures and find themselves involved in hilarious run-ins with all sorts of unsuspecting characters.
## 3086 Ruka is a young girl whose parents are separated and whose father works in an aquarium. When two boys, Umi and Sora, who were raised in the sea by dugongs, are brought to the aquarium, Ruka feels drawn to them and begins to realize that she has the same sort of supernatural connection to the ocean that they do. Umi and Sora's special power seems to be connected to strange events that have been occurring more and more frequently, such as the appearance of sea creatures far from their home territory and the disappearance of aquarium animals around the world. However, the exact nature of the boys' power and of the abnormal events is unknown, and Ruka gets drawn into investigating the mystery that surrounds her new friends.
## 3087 19-year-old Eric, arrogant and ultra-violent, is prematurely transferred to the same adult prison facility as his estranged father. As his explosive temper quickly finds him enemies in both prison authorities and fellow inmates — and his already volatile relationship with his father is pushed past breaking point — Eric is approached by a volunteer psychotherapist, who runs an anger management group for prisoners. Torn between gang politics, prison corruption, and a glimmer of something better, Eric finds himself in a fight for his own life, unsure if his own father is there to protect him or join in punishing him.
## 3088 During a harsh Montréal winter, an elementary-school class is left reeling after its teacher commits suicide. Bachir Lazhar, a charismatic Algerian immigrant, steps in as the substitute teacher for the classroom of traumatized children. All the while, he must keep his personal life tucked away: the fact that he is seeking political refuge in Québec – and that he, like the children, has suffered an appalling loss.
## 3089 The picaresque and touching story of the politically incorrect, fully lived life of the impulsive, irascible and fearlessly blunt Barney Panofsky.
## 3090 Two young men are seriously affected by the Vietnam war. One of them has always been obsessed with birds - but now believes he really is a bird, and has been sent to a mental hospital. Can his friend help him pull through?
## 3091 When vengeful General Francis X. Hummel seizes control of Alcatraz Island and threatens to launch missiles loaded with deadly chemical weapons into San Francisco, only a young FBI chemical weapons expert and notorious Federal prisoner have the stills to penetrate the impregnable island fortress and take him down.
## 3092 Kenichi and his detective uncle, Shunsaku Ban, leave Japan to visit Metropolis, in search of the criminal, Dr. Laughton. However, when they finally find Dr. Laughton, Kenichi and Shunsaku find themselves seperated and plunged into the middle of a larger conspiracy. While Shunsaku searches for his nephew and explanations, Kenichi tries to protect Tima (a mysterious young girl), from Duke Red and his adopted son Rock, both of whom have very different reasons for wanting to find her.
## 3093 In 1856, two women forge a close connection despite their isolation on the American frontier.
## 3094 A killer is released from prison and breaks into a remote home to kill a woman, her handicapped son and her pretty daughter.
## 3095 Seven years after the death of his wife, widower Shigeharu seeks advice on how to find a new wife from a colleague. Taking advantage of their position as a film company, they stage an audition. Interviewing a series of women, Shigeharu is enchanted by the quiet Asami. But soon things take a twisted turn as Asami isn’t what she seems to be.
## 3096 Jimmie Fails dreams of reclaiming the Victorian home his grandfather built in the heart of San Francisco. Joined on his quest by his best friend Mont, Jimmie searches for belonging in a rapidly changing city that seems to have left them behind.
## 3097 In the wake of The Death of Supermen, the world is still mourning the loss of the Man of Steel following his fatal battle with the monster Doomsday. However, no sooner as his body been laid to rest than do four new bearers of the Superman shield come forward to take on the mantle. The Last Son of Krypton, Superboy, Steel, and the Cyborg Superman all attempt to fill the vacuum left by the world's greatest champion. Meanwhile, Superman's death has also signaled to the universe that Earth is vulnerable. Can these new Supermen and the rest of the heroes prove them wrong?
## 3098 A beautiful, pure-hearted young woman, Maleficent has an idyllic life growing up in a peaceable forest kingdom, until one day when an invading army threatens the harmony of the land. Maleficent rises to be the land's fiercest protector, but she ultimately suffers a ruthless betrayal – an act that begins to turn her heart into stone. Bent on revenge, Maleficent faces an epic battle with the invading King's successor and, as a result, places a curse upon his newborn infant Aurora. As the child grows, Maleficent realizes that Aurora holds the key to peace in the kingdom – and to Maleficent's true happiness as well.
## 3099 As World War I rages, brave and youthful Australians Archy and Frank—both agile runners—become friends and enlist in the Australian and New Zealand Army Corps together. They later find themselves part of the Dardanelles Campaign on the Gallipoli peninsula, a brutal eight-month conflict which pit the British and their allies against the Ottoman Empire and left over 500,000 men dead.
## 3100 High school basketball is king in small-town Indiana, and the 1954 Hickory Huskers are all hope and no talent. But their new coach -- abrasive, unlikable Norman Dale -- whips the team into shape ... while also inciting controversy.
## 3101 Marina's life is thrown into turmoil following the death of her partner. Mourning the loss of the man she loved, she finds herself under intense scrutiny from those with no regard for her privacy.
## 3102 A lighthouse keeper and his wife living off the coast of Western Australia raise a baby they rescue from an adrift rowboat.
## 3103 At the height of the Cold War, a mysterious criminal organization plans to use nuclear weapons and technology to upset the fragile balance of power between the United States and Soviet Union. CIA agent Napoleon Solo and KGB agent Illya Kuryakin are forced to put aside their hostilities and work together to stop the evildoers in their tracks. The duo's only lead is the daughter of a missing German scientist, whom they must find soon to prevent a global catastrophe.
## 3104 Mickey, Minnie, and their famous friends Goofy, Donald, Daisy and Pluto gather together to reminisce about the love, magic and surprises in three wonder-filled stories of Christmas past.
## 3105 Madame Jouve, the narrator, tells the tragedy of Bernard and Mathilde. Bernard was living happily with his wife Arlette and his son Thomas. One day, a couple, Philippe and Mathilde Bauchard, moves into the next house. This is the accidental reunion of Bernard and Mathilde, who had a passionate love affair years ago. The relationship revives... A somber study of human feelings.
## 3106 A story of broken humanity following the invasion of a technologically superior alien species. Bleak, harrowing, and unrelenting, the humans must find enough courage to go on fighting.
## 3107 In December 1941, Czech soldiers Jozef Gabčík and Jan Kubiš parachute into their occupied homeland to assassinate Nazi officer Reinhard Heydrich.
## 3108 A dramatic thriller based on the incredible true David vs. Goliath story of American immigrant Dr. Bennet Omalu, the brilliant forensic neuropathologist who made the first discovery of CTE, a football-related brain trauma, in a pro player and fought for the truth to be known. Omalu's emotional quest puts him at dangerous odds with one of the most powerful institutions in the world.
## 3109 On the day of her birthday, eleven-year-old Angeliki jumps off the balcony and falls to her death with a smile on her face. While the police and Social Services try to discover the reason for this apparent suicide, Angeliki's family keep insisting that it was an accident. What is the secret that young Angeliki took with her? Why does her family persist in trying to "forget" her and to move on with its life?
## 3110 Einar, brutal son of Ragnar and future heir to his throne, tangles with Eric, a wily slave, for the hand of a beautiful English maiden.
## 3111 A chronicle of the life of infamous classical composer Ludwig van Beethoven and his painful struggle with hearing loss. Following Beethoven's death in 1827, his assistant, Schindler, searches for an elusive woman referred to in the composer's love letters as "immortal beloved." As Schindler solves the mystery, a series of flashbacks reveal Beethoven's transformation from passionate young man to troubled musical genius.
## 3112 A black comedy featuring two butchers, Svend "Sweat" and Bjarne, who start their own shop to get away from their arrogant boss. Cannibalism is soon introduced to the plot, and further complications arise due to the reappearance of Bjarne's intellectually disabled twin brother Eigil.
## 3113 Gus Van Sant tells the story of a young African American man named Jamal who confronts his talents while living on the streets of the Bronx. He accidentally runs into an old writer named Forrester who discovers his passion for writing. With help from his new mentor Jamal receives a scholarship to a private school.
## 3114 A prison drama where an old mobster and a prison guard must find a way to coexist so that imprisonment can become less so, and perhaps reveal the paradox that is behind the very concept of captivity.
## 3115 Tells the incredible true story of Amberley Snyder, a nationally ranked rodeo barrel racer who defies the odds after barely surviving a car accident that leaves her paralyzed from the waist down.
## 3116 A widower suspects that his seemingly perfect adolescent daughter is a heartless killer.
## 3117 In 1894, French Captain Alfred Dreyfus is wrongfully convicted of treason and sentenced to life imprisonment at the Devil's Island penal colony.
## 3118 The Alps, late 19th century. Greider, a mysterious lone rider who claims to be a photographer, arrives at an isolated lumber village, despotically ruled by a family clan, asking for winter accommodation.
## 3119 Life on a shelf as a snowman trapped in a snow-globe blizzard can become wearing, especially when you're surrounded by knickknacks from sunnier locales. When the jaded snowman finally breaks free of his glass house, his vacation plans are cut short.
## 3120 A teenager journeys through a series of foster homes after her mother goes to prison for committing a crime of passion.
## 3121 Susannah Cahalan, an up-and-coming journalist at the New York Post becomes plagued by voices in her head and seizures, causing a rapid descent into insanity.
## 3122 After trying to cover up a car accident that left a man dead, a crooked homicide detective is stalked by a mysterious man claiming to have witnessed the event.
## 3123 A scorned ex-convict forces himself into the lives of the couple who put him behind bars.
## 3124 Julio Blanco is the proprietor of Básculas Blanco, a Spanish company producing industrial scales in a provincial Spanish town, which awaits the imminent visit from a committee that will decide if they merit a local Business Excellence award: everything has to be perfect when the time comes. Working against the clock, Blanco pulls out all the stops to address and resolve issues with his employees, crossing every imaginable line in the process.
## 3125 A teenage girl living with schizophrenia begins to suspect her neighbor has kidnapped a child. Her parents try desperately to help her live a normal life, without exposing their own tragic secrets, and the only person who believes her is Caleb – a boy she isn’t even sure exists.
## 3126 A woman adjusting to life after a loss contends with a feisty bird that's taken over her garden — and a husband who's struggling to find a way forward.
## 3127 The story frames on 7-year-old Maisie, caught in a custody battle between her mother – a rock and roll icon – and her father. What Maisie Knew is an evocative portrayal of the chaos of adult life seen entirely from a child’s point of view.
## 3128 The discovery that she has a terminal illness prompts introverted department store saleswoman Georgia Byrd to reflect on what she realizes has been an overly cautious life. With weeks to live, she withdraws her life savings, sells all her possessions and jets off to Europe where she lives it up at a posh hotel. Upbeat and passionate, Georgia charms everybody she meets, including renowned Chef Didier. The only one missing from her new life is her longtime crush Sean Matthews.
## 3129 In this belated sequel to 'The Decline of the American Empire', 50-something Montreal college professor, Remy, learns that he is dying of liver cancer. He decides to make amends meet to his friends and family before he dies. He first tries to made peace with his ex-wife Louise, who asks their estranged son Sebastian, a successful businessman living in London, to come home. Sebastian makes the impossible happen, using his contacts and disrupting the entire Canadian system in every way possible to help his father fight his terminal illness to the bitter end, while he also tries to reunite his former friends, Pierre, Alain, Dominique, Diane, and Claude to see their old friend before he passes on.
## 3130 The radical true story behind three teenage surfers from Venice Beach, California, who took skateboarding to the extreme and changed the world of sports forever. Stacy Peralta, Tony Alva and Jay Adams are the Z-Boys, a bunch of nobodies until they create a new style of skateboarding that becomes a worldwide phenomenon. But when their hobby becomes a business, the success shreds their friendship.
## 3131 When Billy Peltzer is given a strange but adorable pet named Gizmo for Christmas, he inadvertently breaks the three important rules of caring for a Mogwai, and unleashes a horde of mischievous gremlins on a small town.
## 3132 Toc Toc follows the adventures and misadventures of a group of patients with OCD dated at the same time.
## 3133 In a bad neighborhood, on his way to a laundromat to do his laundry, Frank Castle witnesses a ruthless street gang harassing several people.
## 3134 After her sister and brother-in-law's tragic deaths, an American woman who is the guardian for her young niece and nephew is invited to a royal European castle for Christmas by her late brother-in-law's father, the Duke of Castlebury. Feeling out of place as a commoner, she is determined to give her family a merry Christmas and surprises herself when she falls for a handsome prince.
## 3135 High school loser (Cannon) pays a cheerleader (Milian) to pose as his girlfriend so he can be considered cool. Remake of 1987's Can't Buy Me Love, starring Patrick Dempsey.
## 3136 The story of journalist Edward R. Murrow's stand against Senator Joseph McCarthy's anti-communist witch-hunts in the early 1950s.
## 3137 The lives of two lovelorn spouses from separate marriages, a registered sex offender, and a disgraced ex-police officer intersect as they struggle to resist their vulnerabilities and temptations.
## 3138 A cross-country trip to sell drugs puts two hippie bikers on a collision course with small-town prejudices.
## 3139 Armed with the astonishing ability to shrink in scale but increase in strength, master thief Scott Lang must embrace his inner-hero and help his mentor, Doctor Hank Pym, protect the secret behind his spectacular Ant-Man suit from a new generation of towering threats. Against seemingly insurmountable obstacles, Pym and Lang must plan and pull off a heist that will save the world.
## 3140 The ambitious police officer Cruchot is transferred to St. Tropez. He's struggling with crimes such as persistent nude swimming, but even more with his teenage daughter, who's trying to impress her rich friends by telling them her father was a millionaire and owned a yacht in the harbor.
## 3141 When virtually all of the residents of Piedmont, New Mexico, are found dead after the return to Earth of a space satellite, the head of the US Air Force's Project Scoop declares an emergency. A group of eminent scientists led by Dr. Jeremy Stone scramble to a secure laboratory and try to first isolate the life form while determining why two people from Piedmont - an old alcoholic and a six-month-old baby - survived. The scientists methodically study the alien life form unaware that it has already mutated and presents a far greater danger in the lab, which is equipped with a nuclear self-destruct device designed to prevent the escape of dangerous biological agents.
## 3142 When brash Texas border officer Mike Norton wrongfully kills and buries the friend and ranch hand of Pete Perkins, the latter is reminded of a promise he made to bury his friend, Melquiades Estrada, in his Mexican home town. He kidnaps Norton and exhumes Estrada's corpse, and the odd caravan sets out on horseback for Mexico.
## 3143 A young man raised by scientists on Mars returns to Earth to find his father.
## 3144 On Christmas Eve, Kelly is reluctant to go to a Christmas Eve ball, so Barbie tells her the story of Eden Starling, a glamourous singing diva in the Victorian England and the owner of a theatre house. However, Eden is self-centred and loves only herself. She is frequently accompanied by her snooty cat, Chuzzlewit. She does not believe in Christmas and orders all her employees to work on Christmas.
## 3145 When the head of a statue sacred to a village is stolen, a young martial artist goes to the big city and finds himself taking on the underworld to retrieve it.
## 3146 In 1961, a 60 year old taxi driver stole Goya’s portrait of the Duke of Wellington from the National Gallery in London. It was the first (and remains the only) theft in the Gallery’s history. What happened next became the stuff of legend.
## 3147 An up-and-coming journalist finds his world and faith increasingly challenged when he's granted the interview of a lifetime – with someone who claims to be God.
## 3148 Aurora, a finicky woman, is in search of true love while her daughter faces marital issues. Together, they help each other deal with problems and find reasons to live a joyful life.
## 3149 A woman falls victim to a dominant mafia boss, who imprisons her and gives her one year to fall in love with him.
## 3150 The film mainly follows the famous 1597 Battle of Myeongryang during the Japanese invasion of Korea 1592-1598, where the iconic Joseon admiral Yi Sun-sin managed to destroy a total of 133 Japanese warships with only 13 ships remaining in his command. The battle, which took place in the Myeongryang Strait off the southwest coast of the Korean Peninsula, is considered one of the greatest victories of Yi.
## 3151 The story of the five-day interview between Rolling Stone reporter David Lipsky and acclaimed novelist David Foster Wallace, which took place right after the 1996 publication of Wallace's groundbreaking epic novel, 'Infinite Jest.'
## 3152 Adèle's life is changed when she meets Emma, a young woman with blue hair, who will allow her to discover desire, to assert herself as a woman and as an adult. In front of others, Adele grows, seeks herself, loses herself, finds herself.
## 3153 A naive business graduate is installed as president of a manufacturing company as part of a stock scam.
## 3154 A squad of the Jiaolong Commando Unit - Sea Dragon, a spec ops team of the Chinese Navy, carries out a hostage rescue operation in the nation of Yewaire, on the Arabian Peninsula, and fiercely fights against local rebel groups and Zaka, a terrorist organization.
## 3155 Lovestruck conservatory student Ariane pretends to be just as much a cosmopolitan lover as the worldly mature Frank Flannagan hoping that l’amour will take hold.
## 3156 In the Swedish city of Lethe, people from different walks of life take part in a series of short, deadpan vignettes that rush past. Some are just seconds long, none longer than a couple of minutes. A young woman (Jessica Lundberg) remembers a fantasy honeymoon with a rock guitarist. A man awakes from a dream about bomber planes. A businessman boasts about success while being robbed by a pickpocket and so on. The absurdist collection is accompanied by Dixieland jazz and similar music.
## 3157 Journalists Ichiro Sakai and Junko cover the wreckage of a typhoon when an enormous egg is found and claimed by greedy entrepreneurs. Mothra's fairies arrive and are aided by the journalists in a plea for its return. As their requests are denied, Godzilla arises near Nagoya and the people of Infant Island must decide if they are willing to answer Japan's own pleas for help.
## 3158 A paraplegic computer engineer that moves in a wheelchair and works in his basement starts hearing noises and voices of bank-robbers.
## 3159 When college coach Herb Brooks is hired to helm the 1980 U.S. men's Olympic hockey team, he brings a unique and brash style to the ice. After assembling a team of hot-headed college all-stars, who are humiliated in an early match, Brooks unites his squad against a common foe: the heavily-favored Soviet team.
## 3160 Popular and dashing American singer Nick Rivers travels to East Germany to perform in a music festival. When he loses his heart to the gorgeous Hillary Flammond, he finds himself caught up in an underground resistance movement. Rivers joins forces with Agent Cedric and Flammond to attempt the rescue of her father, Dr. Paul, from the Germans, who have captured the scientist in hopes of coercing him into building a new naval mine.
## 3161 The story about the men who made the world of technology what it is today, their struggles during college, the founding of their companies, and the ingenious actions they took to build up the global corporate empires of Apple Computer Inc. and Microsoft Corporation.
## 3162 When Van Helsing's mysterious invention, the "Monsterfication Ray," goes haywire, Drac and his monster pals are all transformed into humans, and Johnny becomes a monster. In their new mismatched bodies, Drac and Johnny must team up and race across the globe to find a cure before it's too late, and before they drive each other crazy.
## 3163 Two victims of traumatized childhoods become lovers and serial murderers irresponsibly glorified by the mass media.
## 3164 In 1840s England, palaeontologist Mary Anning and a young woman sent by her husband to convalesce by the sea develop an intense relationship. Despite the chasm between their social spheres and personalities, Mary and Charlotte discover they can each offer what the other has been searching for: the realisation that they are not alone. It is the beginning of a passionate and all-consuming love affair that will defy all social bounds and alter the course of both lives irrevocably.
## 3165 An American-born Chinese economics professor accompanies her boyfriend to Singapore for his best friend's wedding, only to get thrust into the lives of Asia's rich and famous.
## 3166 Chosen the world’s protector against the Seven Deadly Enemies of Man – pride, envy, greed, hatred, selfishness, laziness and injustice – young Billy Batson accepts his destiny as Captain Marvel. Battling alongside Superman against nefarious Black Adam, Billy soon discovers the challenge super heroes ultimately face: is it revenge or justice?
## 3167 The epic tale of the development of the American West from the 1830s through the Civil War to the end of the century, as seen through the eyes of one pioneer family.
## 3168 A marksman living in exile is coaxed back into action after learning of a plot to kill the president. Ultimately double-crossed and framed for the attempt, he goes on the run to track the real killer and find out who exactly set him up, and why??
## 3169 An actress’s perception of reality becomes increasingly distorted as she finds herself falling for her co-star in a remake of an unfinished Polish production that was supposedly cursed.
## 3170 As a child, Jack believed the tender lie his parents told him, that Gio was a special being with superpowers, as in a comic book. Now that he is about to go to high school, however, Jack no longer believes that his brother is a superhero, in fact, he is almost ashamed of him, especially since he met Arianna, the first love of his life.
## 3171 Two youngsters from rival New York City gangs fall in love, but tensions between their respective friends build toward tragedy.
## 3172 When Betty Anne Waters' older brother Kenny is arrested for murder and sentenced to life in 1983, Betty Anne, a Massachusetts wife and mother of two, dedicates her life to overturning the murder conviction. Convinced that her brother is innocent, Betty Anne puts herself through high school, college and, finally, law school in an 18 year quest to free Kenny. With the help of best friend Abra Rice, Betty Anne pores through suspicious evidence mounted by small town cop Nancy Taylor, meticulously retracing the steps that led to Kenny's arrest. Belief in her brother - and her quest for the truth - pushes Betty Anne and her team to uncover the facts and utilize DNA evidence with the hope of exonerating Kenny.
## 3173 A married woman and a drifter fall in love, then plot to murder her husband.
## 3174 Department H sends in Wolverine to track down a mysterious beast known by the US Military as the Hulk, who is rampaging across the Canadian wilderness. Surveying the extent of the damage to a destroyed town, Wolverine notices a toxic scent as well as the smell of gunpowder. He is then deployed to the wilderness to resume tracking the creature.
## 3175 In the aftermath of Cassius Clay's defeat of Sonny Liston in 1964, the boxer meets with Malcolm X, Sam Cooke and Jim Brown to change the course of history in the segregated South.
## 3176 A mentally ill young woman finds her love in an eccentric man who models himself after Buster Keaton.
## 3177 Two emotionally unavailable men attempt a relationship.
## 3178 March 1965. In the heat of the Cold War, the USA and the USSR are competing for supremacy in space. What both superpowers aim for in this race, is to be the first to have a man walk in outer space. To accomplish that, no price is too high and no risk is too great. Now it’s up to the unlikely duo of a seasoned war veteran and a hot-headed test-pilot to fulfill this mission. Two men in a tiny spaceship, without proper testing, facing the complete unknown. They were supposed to do what no man has done before—and no man imagined what would happen next.
## 3179 Two drifters bum around, visit earthy women and discuss opening a car wash in Pittsburgh.
## 3180 A young Shaolin follower reunites with his discouraged brothers to form a soccer team using their martial art skills to their advantage.
## 3181 Two middle-aged men embark on a spiritual journey through Californian wine country. One is an unpublished novelist suffering from depression, and the other is only days away from walking down the aisle.
## 3182 Agent 007 is back in the second installment of the James Bond series, this time battling a secret crime organization known as SPECTRE. Russians Rosa Klebb and Kronsteen are out to snatch a decoding device known as the Lektor, using the ravishing Tatiana to lure Bond into helping them. Bond willingly travels to meet Tatiana in Istanbul, where he must rely on his wits to escape with his life in a series of deadly encounters with the enemy.
## 3183 As a filmmaker and his girlfriend return home from his movie premiere, smoldering tensions and painful revelations push them toward a romantic reckoning.
## 3184 In 1880s Australia, a lawman offers renegade Charlie Burns a difficult choice. In order to save his younger brother from the gallows, Charlie must hunt down and kill his older brother, who is wanted for rape and murder. Venturing into one of the Outback's most inhospitable regions, Charlie faces a terrible moral dilemma that can end only in violence.
## 3185 Best buddies Acerola and Laranjinha, about to turn 18, discover things about their missing fathers' pasts which will shatter their solid friendship, in the middle of a war between rival drug gangs from Rio's favelas.
## 3186 Two women, one from the United States and one from the United Kingdom, swap homes at Christmas time after bad breakups with their boyfriends. Each woman finds romance with a local man but realizes that the imminent return home may end the relationship.
## 3187 High School student David Lightman has a talent for hacking. But while trying to hack into a computer system to play unreleased video games, he unwittingly taps into the Defense Department's war computer and initiates a confrontation of global proportions. Together with his girlfriend and a wizardly computer genius, David must race against time to outwit his opponent and prevent a nuclear Armageddon.
## 3188 A music-mad 16-year-old outcast at a rugby-mad boarding school forms an unlikely friendship with his dashing new roommate.
## 3189 Al Caruso, John Gresco, and Jack Amoruso are three gangsters working for the Genovese family. After botching yet another hit and discovering that their boss wants to get rid of them, the trio comes up with a plan to sell him to the FBI. However, Al's short-term memory loss could be a problem...
## 3190 William Hundert is a passionate and principled Classics professor who finds his tightly-controlled world shaken and inexorably altered when a new student, Sedgewick Bell, walks into his classroom. What begins as a fierce battle of wills gives way to a close student-teacher relationship, but results in a life lesson for Hundert that will still haunt him a quarter of a century later.
## 3191 Lloyd, an eternal optimist, seeks to capture the heart of Diane, an unattainable high school beauty and straight-A student. He surprises just about everyone-including himself-when she returns the sentiment. But Diane's over-possessive, divorced Dad disapproves and it's going to take more than just the power of love to conquer all.
## 3192 Across different eras, a poor family, an anxious developer and a fed-up landlady become tied to the same mysterious house in this animated dark comedy.
## 3193 When a hip hop violinist busking in the New York subway encounters a classical dancer on scholarship at the Manhattan Conservatory of the Arts, sparks fly. With the help of a hip hop dance crew they must find a common ground while preparing for a competition that could change their lives forever.
## 3194 A true sports story that utterly defies the odds, Duguay’s film captures the wild ups and downs of the Olympics-bound career of legendary equine star Jappeloup and his troubled rider, locked in a tense relationship with his horseman father and forever uncertain of his own skills as an equestrian
## 3195 Inspired by the moving book “Só as Mães São Felizes”, by Lucinha Araújo, Cazuza's mother, the film covers a little more than 10 years of the singer’s crazy and brief life – from the beginning of his career in the Circo Voador venue, in 1981, to the huge success and the apotheosis of his shows with the Barão Vermelho band, his solo career, his relations with his parents, friends, lovers and passions, and the courage he had to face his final years, with HIV, until his death, in 1990.
## 3196 A married couple's life is turned upside down when the wife is accused of murdering her boss. Her husband John would spend the next few years trying to get her released, but there's no evidence that negates the evidence against her. When the strain of being separated from her husband and son gets to her, John decides to find a way to break her out.
## 3197 A sheltered Amish child is the sole witness of a brutal murder in a restroom at a Philadelphia train station, and he must be protected. The assignment falls to a taciturn detective who goes undercover in a Pennsylvania Dutch community. On the farm, he slowly assimilates despite his urban grit and forges a romantic bond with the child's beautiful mother.
## 3198 A married couple is terrorized by a series of videotapes planted on their front porch.
## 3199 A magazine writer poses as a Jew to expose anti-Semitism.
## 3200 Aspiring director Corky St. Clair and the marginally talented amateur cast of his hokey small-town musical production go overboard when they learn that Broadway theater agent Mort Guffman will be in attendance.
## 3201 With his family away for their annual summer holiday, a publishing executive decides to live a bachelor's life. The beautiful but ditzy blonde from the apartment above catches his eye and they soon start spending time together—maybe a little too much time!
## 3202 In 1942, Friedrich Weimer's boxing skills get him an appointment to a National Political Academy (NaPolA) – high schools that produce Nazi elite. Over his father's objections, Friedrich enrolls. During his year in seventh column,Friedrich encounters hazing, cruelty, death, and the Nazi code. His friendship with Albrecht, the ascetic son of the area's governor, is central to this education.
## 3203 Rocky Balboa proudly holds the world heavyweight boxing championship, but a new challenger has stepped forward: Drago, a six-foot-four, 261-pound fighter who has the backing of the Soviet Union.
## 3204 In this loose adaptation of Shakespeare's "Henry IV," Mike Waters is a gay hustler afflicted with narcolepsy. Scott Favor is the rebellious son of a mayor. Together, the two travel from Portland, Oregon to Idaho and finally to the coast of Italy in a quest to find Mike's estranged mother. Along the way they turn tricks for money and drugs, eventually attracting the attention of a wealthy benefactor and sexual deviant.
## 3205 When a massive, gilled monster emerges from the deep and tears through the city, the government scrambles to save its citizens. A rag-tag team of volunteers cuts through a web of red tape to uncover the monster's weakness and its mysterious ties to a foreign superpower. But time is not on their side - the greatest catastrophe to ever befall the world is about to evolve right before their very eyes.
## 3206 A young Peruvian bear travels to London in search of a new home. Finding himself lost and alone at Paddington Station, he meets the kindly Brown family.
## 3207 An exploration of the United States of America's war on drugs from multiple perspectives. For the new head of the Office of National Drug Control Policy, the war becomes personal when he discovers his well-educated daughter is abusing cocaine within their comfortable suburban home. In Mexico, a flawed, but noble policeman agrees to testify against a powerful general in league with a cartel, and in San Diego, a drug kingpin's sheltered trophy wife must learn her husband's ruthless business after he is arrested, endangering her luxurious lifestyle.
## 3208 In the future, crime is out of control and New York City's Manhattan is a maximum security prison. Grabbing a bargaining chip right out of the air, convicts bring down the President's plane in bad old Gotham. Gruff Snake Plissken, a one-eyed lone warrior new to prison life, is coerced into bringing the President, and his cargo, out of this land of undesirables.
## 3209 An up-and-coming poker player tries to prove himself in a high-stakes match against a long-time master of the game.
## 3210 A ship sent to investigate a wave of mysterious sinkings encounters the advanced submarine, the Nautilus, commanded by Captain Nemo.
## 3211 Hiccup and Toothless go on an exciting adventure and discover an island of new dragons.
## 3212 Outlaw Jesse James is rumored to be the 'fastest gun in the West'. An eager recruit into James' notorious gang, Robert Ford eventually grows jealous of the famed outlaw and, when Robert and his brother sense an opportunity to kill James, their murderous action elevates their target to near mythical status.
## 3213 A horrifying story of a shaman’s inheritance in the Isan region of Thailand. But the goddess that appears to have taken possession of a family member turns out not to be as benevolent as it first appears.
## 3214 An unlikely friendship between two neighbors becomes an unexpectedly emotional journey when the younger man is diagnosed with terminal cancer.
## 3215 In Justine’s family everyone is a vet and a vegetarian. At 16, she’s a gifted teen ready to take on her first year in vet school, where her older sister also studies. There, she gets no time to settle: hazing starts right away. Justine is forced to eat raw meat for the first time in her life. Unexpected consequences emerge as her true self begins to form.
## 3216 César, an unhappy concierge, maintains a peculiar relationship with the very diverse inhabitants of the upper-class apartment building where he works in Barcelona.
## 3217 Two minor characters from the play "Hamlet" stumble around unaware of their scripted lives and unable to deviate from them.
## 3218 A baby lamp finds a ball to play with and it's all fun and games until the ball bursts. Just when the elder Luxo thinks his kid will settle down for a bit, Luxo Jr. finds a ball ten times bigger.
## 3219 After accidentally crash-landing in 2022, time-traveling fighter pilot Adam Reed teams up with his 12-year-old self on a mission to save the future.
## 3220 Alien pods come to Earth and, naturally, start taking over Human Hosts. One such pod only manages to take over one human's, Shin Izumi, right arm. Together they grow and co-exist, all the while the other aliens are making meals of other humans; Shin feels he must put a stop to it all, but his alien, Migi, doesn't see why.
## 3221 A young man is confined in a mental hospital. Through a flashback we see that he was traumatized as a child, when he and his family were circus performers. Back in the present, he escapes and rejoins his surviving and armless mother.
## 3222 After 300 years of slumber, three sister witches are accidentally resurrected in Salem on Halloween night, and it is up to three kids and their newfound feline friend to put an end to the witches' reign of terror once and for all.
## 3223 A woman falls in love with a man who is somewhat unavailable.
## 3224 While investigating a young nun's rape, a corrupt New York City police detective, with a serious drug and gambling addiction, tries to change his ways and find forgiveness.
## 3225 Olivia and Matthew Grey, 18-year-old twins born into a world of privilege and high expectations. There are almost no boundaries between them - even their dreams are connected.
## 3226 In the fourth installment of the fighting franchise, Boyka is shooting for the big leagues when an accidental death in the ring makes him question everything he stands for. When he finds out the wife of the man he accidentally killed is in trouble, Boyka offers to fight in a series of impossible battles to free her from a life of servitude.
## 3227 The true story of mountain climber Aron Ralston's remarkable adventure to save himself after a fallen boulder crashes on his arm and traps him in an isolated canyon in Utah.
## 3228 In the hip Brooklyn neighborhood of Red Hook, single dad and record store owner Frank is preparing to send his hard-working daughter Sam off to college while being forced to close his vintage shop. Hoping to stay connected through their shared musical passions, Frank urges Sam to turn their weekly jam sessions into a father-daughter live act. After their first song becomes an internet breakout, the two embark on a journey of love, growing up and musical discovery.
## 3229 A passenger on a cruise ship develops an irresistible infatuation with an eccentric paraplegic's wife.
## 3230 The police try to arrest expert hostage negotiator Danny Roman, who insists he's being framed for his partner's murder in what he believes is an elaborate conspiracy. Thinking there's evidence in the Internal Affairs offices that might clear him, he takes everyone in the office hostage and demands that another well-known negotiator be brought in to handle the situation and secretly investigate the conspiracy.
## 3231 Fed up with being single on holidays, two strangers agree to be each other's platonic plus-ones all year long, only to catch real feelings along the way.
## 3232 Poland, 1945. Mathilde, a young French Red Cross doctor, is on a mission to help the war survivors. When a nun seeks for her help, she is brought to a convent where several pregnant sisters are hiding, unable to reconcile their faith with their pregnancy. Mathilde becomes their only hope.
## 3233 Two Navy men are ordered to bring a young offender to prison, but decide to show him one last good time along the way.
## 3234 When a young mother's home birth ends in unfathomable tragedy, she begins a year-long odyssey of mourning that fractures relationships with loved ones in this deeply personal story of a woman learning to live alongside her loss.
## 3235 A young single mother is held captive along with her two children by a violent ex and must plot their escape before it’s too late.
## 3236 Cold War spy Greville Wynne and his Russian source try to put an end to the Cuban Missile Crisis.
## 3237 Industrious high school senior Vee Delmonico has had it with living life on the sidelines. When pressured by friends to join the popular online game Nerve, Vee decides to sign up for just one dare in what seems like harmless fun. But as she finds herself caught up in the thrill of the adrenaline-fueled competition partnered with a mysterious stranger, the game begins to take a sinister turn with increasingly dangerous acts, leading her into a high stakes finale that will determine her entire future.
## 3238 A love potion works its devious charms on fairies, elves and the swamp-dwelling Bog King as they all try to possess the potion for themselves.
## 3239 After taking a bullet to the head, Salander is under close supervision in a hospital and is set to face trial for attempted murder on her eventual release. With the help of journalist Mikael Blomkvist and his researchers at Millennium magazine, Salander must prove her innocence. In doing this she plays against powerful enemies and her own past.
## 3240 A noted professor and his dim-witted apprentice fall prey to their inquiring vampires, while on the trail of the ominous damsel in distress.
## 3241 Jerry Mulligan is an exuberant American expatriate in Paris trying to make a reputation as a painter. His friend Adam is a struggling concert pianist who's a long time associate of a famous French singer, Henri Baurel. A lonely society woman, Milo Roberts, takes Jerry under her wing and supports him, but is interested in more than his art.
## 3242 Fired from his band and hard up for cash, guitarist and vocalist Dewey Finn finagles his way into a job as a fifth-grade substitute teacher at a private school, where he secretly begins teaching his students the finer points of rock 'n' roll. The school's hard-nosed principal is rightly suspicious of Finn's activities. But Finn's roommate remains in the dark about what he's doing.
## 3243 Bree is about to get a sex reassignment surgery that will finally allow her to actually be what she’s already been in her mind for a long time: a transitioned woman. Yet before this happens she suddenly runs into her son who ends up coming for the trip across the United States.
## 3244 A man entranced by his dreams and imagination is lovestruck with a French woman and feels he can show her his world.
## 3245 Set before the events of ‘Soul’, 22 refuses to go to Earth, enlisting a gang of 5 new souls in attempt of rebellion. However, 22’s subversive plot leads to a surprising revelation about the meaning of life.
## 3246 When a law-abiding woman gets indicted for murdering her husband, her lawyer soon realizes that a larger conspiracy may be at work.
## 3247 Set in the dazzling world of the LA music scene comes the story of Grace Davis, a superstar whose talent, and ego, have reached unbelievable heights. Maggie is Grace’s overworked personal assistant who’s stuck running errands, but still aspires to her childhood dream of becoming a music producer. When Grace’s manager presents her with a choice that could alter the course of her career, Maggie and Grace come up with a plan that could change their lives forever.
## 3248 Following a city councils decision, a women's shelter will soon be closed and social workers have only three months to accommodate the residents.
## 3249 The behind the scenes story of the life of A.A. Milne and the creation of the Winnie the Pooh stories inspired by his son Christopher Robin.
## 3250 Charlie, a 17-year-old girl tortured by doubt, is thrilled when she becomes friends with Sarah, but when Sarah tires of Charlie and looks for a new friend, their relationship takes an ominous turn.
## 3251 A respected priest volunteers for an experimental procedure that may lead to a cure for a deadly virus. He gets infected and dies, but a blood transfusion of unknown origin brings him back to life. Now, he’s torn between faith and bloodlust, and has a newfound desire for the wife of a childhood friend.
## 3252 A mother and her two teenage sons move to a seemingly nice and quiet small coastal California town yet soon find out that it's overrun by bike gangs and vampires. A couple of teenage friends take it upon themselves to hunt down the vampires that they suspect of a few mysterious murders and restore peace and calm to their town.
## 3253 A bride's wedding night takes a sinister turn when her eccentric new in-laws force her to take part in a terrifying game.
## 3254 Based on the literary classic by Thomas Hardy. Bathsheba Everdene, attracts three very different suitors: Gabriel Oak, a sheep farmer, captivated by her fetching willfulness; Frank Troy, a handsome and reckless Sergeant; and William Boldwood, a prosperous and mature bachelor. This timeless story of Bathsheba's choices and passions explores the nature of relationships and love – as well as the human ability to overcome hardships through resilience and perseverance.
## 3255 Posing for a portrait, Dorian Gray talks with Lord Henry Wotton, who says that men should pursue their sensual longings, but laments that only the young get to do so. Taken with the idea, Dorian imagines a scenario in which the painting will age as he stays youthful. His wish comes true, and his boyish looks aid him as he indulges his every whim. But when a stunning revelation forces him to see what he's become, Dorian faces some very dangerous questions.
## 3256 After his family is murdered by a notorious and ruthless bandit, a former police officer enlists the services of two outlaws to capture the bandit.
## 3257 Determined to hold on to the throne, Cleopatra seduces the Roman emperor Julius Caesar. When Caesar is murdered, she redirects her attentions to his general, Marc Antony, who vows to take power—but Caesar’s successor has other plans.
## 3258 The new warden of a small prison farm in Arkansas tries to clean it up of corruption after initially posing as an inmate.
## 3259 In the midst of a searing Florida heat wave, a woman convinces her lover, a small-town lawyer, to murder her rich husband.
## 3260 After being brutally murdered, 14-year-old Susie Salmon watches from heaven over her grief-stricken family -- and her killer. As she observes their daily lives, she must balance her thirst for revenge with her desire for her family to heal.
## 3261 For four years, the courageous crew of the NSEA protector - "Commander Peter Quincy Taggart" (Tim Allen), "Lt. Tawny Madison (Sigourney Weaver) and "Dr.Lazarus" (Alan Rickman) - set off on a thrilling and often dangerous mission in space...and then their series was cancelled! Now, twenty years later, aliens under attack have mistaken the Galaxy Quest television transmissions for "historical documents" and beam up the crew of has-been actors to save the universe. With no script, no director and no clue, the actors must turn in the performances of their lives.
## 3262 A man tries to make his wife fall in love with him again, after waking up in an alternate reality where she never knew him.
## 3263 After enjoying a holiday romance, high school students Danny and Sandy are unexpectedly reunited when she transfers to Rydell High, where she must contend with cynical Rizzo and the Pink Ladies.
## 3264 The Machine Empire defeats the Power Rangers in battle, destroying the Megazord. It is revealed that Earth's governments then negotiate a truce with the Machine Empire and the Power Rangers are disbanded. Years later, Rocky, the second Red Ranger has defected to the Machine Empire, is critical of Zordon's use of Power Rangers as child soldiers, and now sports a prosthetic leg. He interrogates a restrained Kimberly, the former Pink Ranger, about the location of Tommy Oliver, the former Green Ranger. He details the fates of the other Rangers in flashback.
## 3265 Denmark, 2014. A former police officer asks Carl Mørck, head of Department Q, to find out who brutally killed his young twins in 1994. Although a local inhabitant confessed and was convicted of murder, Carl and his partner Assad soon realize that there is something in the case resolution that is terribly wrong.
## 3266 We follow 24 hours in the life of a being moving from life to life like a cold and solitary assassin moving from hit to hit. In each of these interwoven lives, the being possesses an entirely distinct identity: sometimes a man, sometimes a woman, sometimes youthful, sometimes old. By turns murderer, beggar, company chairman, monstrous creature, worker, family man.
## 3267 A businessman finds himself trapped at a hotel and threatened by women en masse.
## 3268 Taisto Kasurinen is a Finnish coal miner whose father has just committed suicide and who is framed for a crime he did not commit. In jail, he starts to dream about leaving the country and starting a new life. He escapes from prison but things don't go as planned...
## 3269 In 1968, engineer Giorgio Rosa established the independent state called "The Isle of Roses" off the coast of Rimini, built on a platform outside the territorial waters, with Esperanto as the official language. The Italian authorities did not take it well because the micronation was seen as an expedient to not pay taxes on the revenues obtained thanks to the arrival of numerous tourists and curious people.
## 3270 In 1800s England, a well-meaning but selfish young woman meddles in the love lives of her friends.
## 3271 Plagued by a series of apocalyptic visions, a young husband and father questions whether to shelter his family from a coming storm, or from himself.
## 3272 An ethical Baltimore defense lawyer disgusted with rampant legal corruption is forced to defend a judge he despises in a rape trial under the threat of being disbarred.
## 3273 When a ruptured water main creates an enormous sinkhole right in front of Bob's Burgers, it blocks the entrance indefinitely and ruins the Belchers’ plans for a successful summer. While Bob and Linda struggle to keep the business afloat, the kids try to solve a mystery that could save their family's restaurant. As the dangers mount, these underdogs help each other find hope and fight to get back behind the counter, where they belong.
## 3274 George W. Bush picks Dick Cheney, the CEO of Halliburton Co., to be his Republican running mate in the 2000 presidential election. No stranger to politics, Cheney's impressive résumé includes stints as White House chief of staff, House Minority Whip and Defense Secretary. When Bush wins by a narrow margin, Cheney begins to use his newfound power to help reshape the country and the world.
## 3275 Ethan Hunt and his team are racing against time to track down a dangerous terrorist named Hendricks, who has gained access to Russian nuclear launch codes and is planning a strike on the United States. An attempt to stop him ends in an explosion causing severe destruction to the Kremlin and the IMF to be implicated in the bombing, forcing the President to disavow them. No longer being aided by the government, Ethan and his team chase Hendricks around the globe, although they might still be too late to stop a disaster.
## 3276 The Narrator tells us how the radio influenced his childhood in the days before TV. In the New York City of the late 1930s to the New Year's Eve 1944, this coming-of-age tale mixes the narrator's experiences with contemporary anecdotes and urban legends of the radio stars.
## 3277 Industrialist François Delambre is called late at night by his sister-in-law, Helene Delambre, who tells him that she has just killed her husband, André. Reluctant at first, she eventually explains to the police that André invented a matter transportation apparatus and, while experimenting on himself, a fly entered the chamber during the matter transference.
## 3278 A mysterious video has been linked to a number of deaths, and when an inquisitive journalist finds the tape and views it herself, she sets in motion a chain of events that puts her own life in danger.
## 3279 Two boys find a fugitive hiding out on an island in the Mississippi River and form a pact to help him reunite with his lover and escape.
## 3280 After ten years of doing nothing, Orel and Gringe are in their mid 30s and they struggle to finish their first rap album. Their texts are mostly sex jokes and booze stories and reflect the everyday life they have in a small town from France. The problem is that they never really finished a song and when their producers want to meet, they have to face a new challenge : finish their first song in the next 24h. Their old issues, the fear of failure, their alcoholic friends and annoying girlfriends won't help them to do so, or will they ?
## 3281 It’s the summer before Elle heads to college, and she has a secret decision to make. Elle has been accepted into Harvard, where boyfriend Noah is matriculating, and also Berkeley, where her BFF Lee is headed and has to decide if she should stay or not.
## 3282 A wealthy Italian household is turned upside down when a handsome stranger arrives, seduces every family member and then disappears. Each has an epiphany of sorts, but none can figure out who the seductive visitor was or why he came.
## 3283 Augusto and Michaela Odone are dealt a cruel blow by fate when their five-year-old son Lorenzo is diagnosed with a rare and incurable disease. But the Odones' persistence and faith leads to an unorthodox cure which saves their boy and re-writes medical history.
## 3284 The true story of teen surfer Bethany Hamilton, who lost her arm in a shark attack and courageously overcame all odds to become a champion again, through her sheer determination and unwavering faith.
## 3285 When the diabolical Professor Ratigan kidnaps London's master toymaker, the brilliant master of disguise Basil of Baker Street and his trusted sidekick Dawson try to elude the ultimate trap and foil the perfect crime.
## 3286 France asleep in the nineteenth century, governed by steam and Napoleon VI, where scientists vanish mysteriously, a girl, Avril, goes in search of her missing scientist parents.
## 3287 As a math savant uncooks the books for a new client, the Treasury Department closes in on his activities and the body count starts to rise.
## 3288 Mark Hunter, a lonely high school student, uses his shortwave radio to moonlight as the popular pirate DJ "Hard Harry." When his show gets blamed for a teen committing suicide, the students clash with high school faculty and the authorities.
## 3289 Disconnect interweaves multiple storylines about people searching for human connection in today’s wired world. Through poignant turns that are both harrowing and touching, the stories intersect with surprising twists that expose a shocking reality into our daily use of technology that mediates and defines our relationships and ultimately our lives.
## 3290 Dory is reunited with her friends Nemo and Marlin in the search for answers about her past. What can she remember? Who are her parents? And where did she learn to speak Whale?
## 3291 The students of Suzuran High compete for the King of School title. An ex-graduate yakuza is sent to kill the son of a criminal group, but he can't make himself do it as he reminds him of his youth.
## 3292 A couple of high school graduates spend one final night cruising the strip with their buddies before they go off to college.
## 3293 Reincarnated 30 years after being killed in a suspicious on-set fire, a small-time actor is determined to punish the person who ignited the blaze.
## 3294 Tommaso goes incredible lengths to win back the love of his former girlfriend Cecilia, but sometimes things change in the most unexpected way.
## 3295 A young country girl comes to town and works in a brothel in order to help her fiance get the money to start his own business. "Paprika" is the name given to her by the madam.
## 3296 When the skeleton of his murdered predecessor is found, Sheriff Sam Deeds unearths many other long-buried secrets in his Texas border town.
## 3297 Recounts the last days of Jesus Christ from the perspective of Judas Iscariot, his betrayer. As Jesus' following increases, Judas begins to worry that Jesus is falling for his own hype, forgetting the principles of his teachings and growing too close to the prostitute Mary Magdalene. After Jesus has an outburst in a temple, Judas turns on him.
## 3298 A saga of class relations and changing times in an Edwardian England on the brink of modernity, the film centers on liberal Margaret Schlegel, who, along with her sister Helen, becomes involved with two couples: wealthy, conservative industrialist Henry Wilcox and his wife Ruth, and the downwardly mobile working-class Leonard Bast and his mistress Jackie.
## 3299 After the train station clerk is assaulted and left bound and gagged, then the departing train and its passengers robbed, a posse goes in hot pursuit of the fleeing bandits.
## 3300 Two academic teenage superstars realize, on the eve of their high school graduation, that they should have worked less and played more. Determined to never fall short of their peers, the girls set out on a mission to cram four years of fun into one night.
## 3301 A young street-smart, Nathan Drake and his wisecracking partner Victor “Sully” Sullivan embark on a dangerous pursuit of “the greatest treasure never found” while also tracking clues that may lead to Nathan’s long-lost brother.
## 3302 A fearless, globe-trotting, terrorist-battling secret agent has his life turned upside down when he discovers his wife might be having an affair with a used car salesman while terrorists smuggle nuclear war heads into the United States.
## 3303 An epic journey of a young hero and her Spirit Guides, 'Dillo' a cute and humorous armadillo and "Vaca" a goofy oversized tapir, who embark on a quest to save their home in the spectacular Amazon Rainforest.
## 3304 When a 12-year-old boy goes missing, lead investigator Greg Harper struggles to balance the pressure of the investigation and troubles with his wife, Jackie. Facing a recent affair, great strain is put on the family that slowly gnaws away at Jackie's grip on reality. But after a malicious presence manifests itself in their home and puts their son, Connor, in mortal danger, the cold, hard truth about evil in the Harper household is finally uncovered.
## 3305 When a renowned architecture scholar falls suddenly ill during a speaking tour, his son Jin finds himself stranded in Columbus, Indiana - a small Midwestern city celebrated for its many significant modernist buildings. Jin strikes up a friendship with Casey, a young architecture enthusiast who works at the local library.
## 3306 A look at the life of the astronaut, Neil Armstrong, and the legendary space mission that led him to become the first man to walk on the Moon on July 20, 1969.
## 3307 After a tragic event happens, composer John Russell moves to Seattle to try to overcome it and build a new and peaceful life in a lonely big house that has been uninhabited for many years. But, soon after, the obscure history of such an old mansion and his own past begin to haunt him.
## 3308 Faced with an unplanned pregnancy, an offbeat young woman makes an unusual decision regarding her unborn child.
## 3309 An elite Navy SEAL uncovers an international conspiracy while seeking justice for the murder of his pregnant wife.
## 3310 Mr. Money is holding another World Martial Arts Tournament and Mr. Satan invites everyone in the world to join in. Little does he know that Bojack, an ancient villain who has escaped his prison, is competing. Since Goku is currently dead, it is up to Gohan, Vegeta, and Trunks to defeat Bojack and his henchman.
## 3311 The ten-year marriage of Mark and Joanna Wallace is on the rocks. In flashback they recall their first meeting, memorable moments in their courtship and early wedded life, their travels through Europe, their broken vow never to have children, and the increasing tensions that led to both of them having extra-marital affairs.
## 3312 A River Runs Through is a cinematographically stunning true story of Norman Maclean. The story follows Norman and his brother Paul through the experiences of life and growing up, and how their love of fly fishing keeps them together despite varying life circumstances in the untamed west of Montana in the 1920's.
## 3313 A boy is given the ability to become an adult superhero in times of need with a single magic word.
## 3314 British agent Alec Leamas refuses to come in from the Cold War during the 1960s, choosing to face another mission, which may prove to be his final one.
## 3315 David, a robotic boy—the first of his kind programmed to love—is adopted as a test case by a Cybertronics employee and his wife. Though he gradually becomes their child, a series of unexpected circumstances make this life impossible for David.
## 3316 After the events of Justice League: War, Ocean Master and Black Manta have declared a war against the surface in retaliation of the aftermath of Apokoliptian-tyrant Darkseid's planetary invasion. Queen Atlanna seeks out her other son, Ocean Master’s half-brother Arthur Curry, a half-human with aquatic powers with no knowledge of his Atlantean heritage, to restore balance. Living with powers he doesn’t understand and seeing the danger around him, Curry takes steps to embrace his destiny, joining the Justice League, and with his new teammates he battles to save Earth from total destruction.
## 3317 Batman learns he has a violent, unruly pre-teen son, secretly raised by the terrorist group known as The League of Assassins.
## 3318 In 1931, the Bondurant brothers of Franklin County, Virginia, run a multipurpose backwoods establishment that hides their true business — bootlegging. Middle brother Forrest is the brain of the operation; older Howard is the brawn, and younger Jack, the lookout. Though the local police have taken bribes and left the brothers alone, a violent war erupts when a sadistic lawman from Chicago arrives and tries to shut down the Bondurants operation.
## 3319 Maggie is an alluring free spirit who won't let anyone – or anything – tie her down. But she meets her match in Jamie, whose relentless and nearly infallible charm serves him well with the ladies and the cutthroat world of pharmaceutical sales. Maggie and Jamie's evolving relationship takes them both by surprise, as they find themselves under the influence of the ultimate drug: love.
## 3320 Owen Thursday sees his new posting to the desolate Fort Apache as a chance to claim the military honour which he believes is rightfully his. Arrogant, obsessed with military form and ultimately self-destructive, he attempts to destroy the Apache chief Cochise after luring him across the border from Mexico, against the advice of his subordinates.
## 3321 Charley Brewster, a high school student, accidentally discovers the true and creepy nature of Jerry Dandrige, his dashing and enigmatic new neighbor; but no one seems willing to believe him.
## 3322 When a down-to-earth Chicago baker and a soon-to-be princess discover they look like twins, they hatch a Christmastime plan to trade places.
## 3323 The evil Queen Bavmorda hunts the newborn princess Elora Danan, a child prophesied to bring about her downfall. When the royal infant is found by Willow, a timid farmer and aspiring sorcerer, he's entrusted with delivering her from evil.
## 3324 After serving prison time for a self-defense killing, Sailor Ripley reunites with girlfriend Lula Fortune. Lula's mother, Marietta, desperate to keep them apart, hires a hitman to kill Sailor. But he finds a whole new set of troubles when he and Bobby Peru, an old buddy who's also out to get Sailor, try to rob a store. When Sailor lands in jail yet again, the young lovers appear further than ever from the shared life they covet.
## 3325 A young boy wins a tour through the most magnificent chocolate factory in the world, led by the world's most unusual candy maker.
## 3326 Assigned on a mission to capture Mukade, a missing-nin, Naruto Uzumaki sets out for the once glorious historic ruins of "Ouran", where he pursues and corners the rouge ninja. Mukade's goal is revealed to be a dormant leyline within the ruins; he unleashes the power of the leyline, causing a light to envelop Naruto, sending him into the past, 20 years before the series began. When Naruto awakens, he comes into contact with the Fourth Hokage, Minato Namikaze.
## 3327 Offbeat Civil War drama in which a wounded Yankee soldier, after finding refuge in an isolated girls' school in the South towards the end of the war, becomes the object of the young women's sexual fantasies. The soldier manipulates the situation for his own gratification, but when he refuses to completely comply with the girls' wishes, they make it very difficult for him to leave.
## 3328 After a young woman suffers a brutal rape in a bar one night, a prosecutor assists in bringing the perpetrators to justice, including the ones who encouraged and cheered on the attack.
## 3329 Cinderella has faith her dreams of a better life will come true. With help from her loyal mice friends and a wave of her Fairy Godmother's wand, Cinderella's rags are magically turned into a glorious gown and off she goes to the Royal Ball. But when the clock strikes midnight, the spell is broken, leaving a single glass slipper... the only key to the ultimate fairy-tale ending!
## 3330 Set in a magnificent villa near a sun-drenched St. Tropez, lovers Jean-Paul and Marianne are spending a happy, lazy summer holiday. Their only concern is to gratify their mutual passion - until the day when Marianne invites her former lover and his beautiful teenage daughter to spend a few days with them. From the first moment, a certain uneasiness and tension begin to develop between the four, which soon escalates in a dangerous love-game.
## 3331 Each Christmas Eve, the Ghost of Christmas Present selects one dark soul to be reformed by a visit from three spirits. But this season, he picked the wrong Scrooge. Clint Briggs turns the tables on his ghostly host until Present finds himself reexamining his own past, present and future.
## 3332 Decades since their successful television series was canceled, Chip has succumbed to a life of suburban domesticity as an insurance salesman. Dale, meanwhile, has had CGI surgery and works the nostalgia convention circuit, desperate to relive his glory days. When a former cast mate mysteriously disappears, Chip and Dale must repair their broken friendship and take on their Rescue Rangers detective personas once again to save their friend’s life.
## 3333 Scooby-Doo and his pals win an all-expense paid vacation and embark on a trip of a lifetime to a tropical paradise. Their destination however, turns out to be Zombie Island. As soon as they arrive, they realize the place looks strangely familiar and is reminiscent of a trip they took years ago, in which they became wrapped up in a mystery involving zombies. The gang soon learns that their trip to paradise comes with a price when the zombies re-emerge and attack their hotel. Will Scooby-Doo and the Mystery Inc. gang finally solve the mystery behind Zombie Island?
## 3334 Scott has been a case of arrested development ever since his firefighter father died when he was seven. He's now reached his mid-20s having achieved little, chasing a dream of becoming a tattoo artist that seems far out of reach. As his ambitious younger sister heads off to college, Scott is still living with his exhausted ER nurse mother and spends his days smoking weed, hanging with the guys — Oscar, Igor and Richie — and secretly hooking up with his childhood friend Kelsey. But when his mother starts dating a loudmouth firefighter named Ray, it sets off a chain of events that will force Scott to grapple with his grief and take his first tentative steps toward moving forward in life.
## 3335 After a disease kills 98% of America's children, the surviving 2% develop superpowers and are placed in internment camps. A 16-year-old girl escapes her camp and joins a group of other teens on the run from the government.
## 3336 In the aftermath of an unspeakable act of terror, Police Sergeant Tommy Saunders joins courageous survivors, first responders and investigators in a race against the clock to hunt down the Boston Marathon bombers before they strike again.
## 3337 A UK-based military officer in command of a top secret drone operation to capture terrorists in Kenya discovers the targets are planning a suicide bombing and the mission escalates from “capture” to “kill.” As American pilot Steve Watts is about to engage, a nine-year old girl enters the kill zone, triggering an international dispute reaching the highest levels of US and British government over the moral, political, and personal implications of modern warfare.
## 3338 The love affair between poet Percy Shelley and Mary Wollstonecraft Godwin resulted in the creation of an immortal novel, “Frankenstein; or, The Modern Prometheus.”
## 3339 Blank-faced bug killer Bill Lee and his dead-eyed wife, Joan, like to get high on Bill's pest poisons while lounging with Beat poet pals. After meeting the devilish Dr. Benway, Bill gets a drug made from a centipede. Upon indulging, he accidentally kills Joan, takes orders from his typewriter-turned-cockroach, ends up in a constantly mutating Mediterranean city and learns that his hip friends have published his work -- which he doesn't remember writing.
## 3340 A young Finnish woman escapes an enigmatic love affair in Moscow by boarding a train to the arctic port of Murmansk. Forced to share the long ride and a tiny sleeping car with a larger than life Russian miner, the unexpected encounter leads the occupants of Compartment No. 6 to face major truths about human connection.
## 3341 Three sailors - Gabey, Chip and Ozzie - let loose on a 24-hour pass in New York and the Big Apple will never be the same! Gabey falls head over heels for "Miss Turnstiles of the Month" (he thinks she's a high society deb when she's really a 'cooch dancer at Coney Island); innocent Chip gets highjacked (literally) by a lady cab driver; and Ozzie becomes the object of interest of a gorgeous anthropologist who thinks he's the perfect example of a "prehistoric man". Wonderful music and terrific shots of New York at its best.
## 3342 Leela becomes an outlaw when she and a group of ecologically-minded feminists attempt to save an asteroid of primitive life forms and the Violet Dwarf star from being destroyed, while Fry joins a secret society and attempts to stop a mysterious species known as the "Dark Ones" from destroying all life in the universe.
## 3343 John Constantine has literally been to Hell and back. When he teams up with a policewoman to solve the mysterious suicide of her twin sister, their investigation takes them through the world of demons and angels that exists beneath the landscape of contemporary Los Angeles.
## 3344 Captain Etienne Navarre is a man on whose shoulders lies a cruel curse. Punished for loving each other, Navarre must become a wolf by night whilst his lover, Lady Isabeau, takes the form of a hawk by day. Together, with the thief Philippe Gaston, they must try to overthrow the corrupt Bishop and in doing so break the spell.
## 3345 The story of Gary Valentine and Alana Kane growing up, running around and going through the treacherous navigation of first love in the San Fernando Valley, 1973.
## 3346 Ouyang Feng is a heartbroken and cynical man who spends his days in the desert, connecting expert swordsmen with those seeking revenge and willing to pay for it. Throughout five seasons in exile, Ouyang spins tales of his clients' unrequited loves and unusual acts of bravery.
## 3347 Given a pardon from jail, Roy Earle gets back into the swing of things as he robs a swanky resort.
## 3348 A group of survivors take refuge in a shopping mall after the world is taken over by aggressive, flesh-eating zombies.
## 3349 When a childless couple of an ex-con and an ex-cop decide to help themselves to one of another family's quintuplets, their lives become more complicated than they anticipated.
## 3350 A continuation of the documentary spoof of what Thor and his roommate Darryl were up to during the events of "Captain America: Civil War". While Cap and Iron Man duke it out, Thor tries to pay Darryl his rent in Asgardian coins.
## 3351 Former federal agent Jack Bauer confronts African dictator Benjamin Juma, whose forces have been ordered to capture the children Bauer oversees for malicious military training.
## 3352 Santa Claus, Mickey Mouse and all his Disney pals star in an original movie about the importance of opening your heart to the true spirit of Christmas. Stubborn old Donald tries in vain to resist the joys of the season, and Mickey and Pluto learn a great lesson about the power of friendship.
## 3353 A lonely shoe salesman and an eccentric performance artist struggle to connect in this unique take on contemporary life.
## 3354 Jared, the son of a Baptist pastor in a small American town, is outed to his parents at age 19. Jared is faced with an ultimatum: attend a gay conversion therapy program – or be permanently exiled and shunned by his family, friends, and faith.
## 3355 When Jack and Sally announce that they're splitting up, this comes as a shock to their best friends Gabe and Judy. Maybe mostly because they also are drifting apart and are now being made aware of it. So while Jack and Sally try to go on and meet new people, the marriage of Gabe and Judy gets more and more strained, and they begin to find themselves being attracted to other people.
## 3356 A recently widowed American begins an anonymous sexual relationship with a young Parisian woman.
## 3357 Six months after the events depicted in The Matrix, Neo has proved to be a good omen for the free humans, as more and more humans are being freed from the matrix and brought to Zion, the one and only stronghold of the Resistance. Neo himself has discovered his superpowers including super speed, ability to see the codes of the things inside the matrix and a certain degree of pre-cognition. But a nasty piece of news hits the human resistance: 250,000 machine sentinels are digging to Zion and would reach them in 72 hours. As Zion prepares for the ultimate war, Neo, Morpheus and Trinity are advised by the Oracle to find the Keymaker who would help them reach the Source. Meanwhile Neo's recurrent dreams depicting Trinity's death have got him worried and as if it was not enough, Agent Smith has somehow escaped deletion, has become more powerful than before and has fixed Neo as his next target.
## 3358 A solitary scholar discovers an ancient bottle while on a trip to Istanbul and unleashes a djinn who offers her three wishes. Filled with reluctance, she is unable to come up with one, so the djinn tries to inspire her with his stories.
## 3359 The Spanish deep South, 1980. A series of brutal murders of adolescent girls in a remote and forgotten town bring together two disparate characters - both detectives in the homicide division - to investigate the cases. With deep divisions in their ideology, detectives Juan and Pedro must put aside their differences if they are to successfully hunt down a killer who for years has terrorized a community in the shadow of a general disregard for women rooted in a misogynistic past.
## 3360 Joe Toy, on the verge of adolescence, finds himself increasingly frustrated by his single father, Frank's attempts to manage his life. Declaring his freedom once and for all, he escapes to a clearing in the woods with his best friend, Patrick, and a strange kid named Biaggio. He announces that they are going to build a house there, free from responsibility and parents. Once their makeshift abode is finished, the three young men find themselves masters of their own destiny, alone in the woods.
## 3361 A look at the relationship between Mike and Sulley during their days at Monsters University — when they weren't necessarily the best of friends.
## 3362 Bad Boy Bubby is just that: a bad boy. So bad, in fact, that his mother has kept him locked in their house for his entire thirty years, convincing him that the air outside is poisonous. After a visit from his estranged father, circumstances force Bubby into the waiting world, a place which is just as unusual to him as he is to the world.
## 3363 When Lucy Honeychurch and chaperon Charlotte Bartlett find themselves in Florence with rooms without views, fellow guests Mr Emerson and son George step in to remedy the situation. Meeting the Emersons could change Lucy's life forever but, once back in England, how will her experiences in Tuscany affect her marriage plans?
## 3364 When a local man's corpse appears on a nearby hillside, no one is quite sure what happened to him. Many of the town's residents secretly wonder if they are responsible, including the man's ex-wife, Jennifer, and Capt. Albert Wiles, a retired seaman who was hunting in the woods where the body was found. As the no-nonsense sheriff gets involved and local artist Sam Marlowe offers his help, the community slowly unravels the mystery.
## 3365 When a man claiming to be long-lost Uncle Fester reappears after 25 years lost, the family plans a celebration to wake the dead. But the kids barely have time to warm up the electric chair before Morticia begins to suspect Fester is fraud when he can't recall any of the details of Fester's life.
## 3366 The story of Daniel Jones, lead investigator for the US Senate’s sweeping study into the CIA's Detention and Interrogation Program, which was found to be brutal, immoral and ineffective. With the truth at stake, Jones battled tirelessly to make public what many in power sought to keep hidden.
## 3367 Quiet, withdrawn 13-year-old Rynn Jacobs lives peacefully in her home in a New England beach town. Whenever the prying landlady inquires after Rynn's father, she politely claims that he's in the city on business. But when the landlady's creepy and increasingly persistent son, Frank, won't leave Rynn alone, she teams up with kindly neighbor boy Mario to maintain the dark family secret that she's been keeping to herself.
## 3368 The Bounty leaves Portsmouth in 1787. Its destination: to sail to Tahiti and load bread-fruit. Captain Bligh will do anything to get there as fast as possible, using any means to keep up a strict discipline. When they arrive at Tahiti, it is like a paradise for the crew, something completely different than the living hell aboard the ship. On the way back to England, officer Fletcher Christian becomes the leader of a mutiny.
## 3369 A dedicated student at a medical college and his girlfriend become involved in bizarre experiments centering around the re-animation of dead tissue when an odd new student arrives on campus.
## 3370 American professor John Holden arrives in London for a conference on parapsychology only to discover that the colleague he was supposed to meet was killed in a freak accident the day before. It turns out that the deceased had been investigating a cult lead by Dr. Julian Karswell. Though a skeptic, Holden is suspicious of the devil-worshiping Karswell. Following a trail of mysterious manuscripts, Holden enters a world that makes him question his faith in science.
## 3371 A restauranteur teams up with a police officer and his ex-con brother to avenge the death of a friend's daughter.
## 3372 Successful surgeon Tomas leaves Prague for an operation, meets a young photographer named Tereza, and brings her back with him. Tereza is surprised to learn that Tomas is already having an affair with the bohemian Sabina, but when the Soviet invasion occurs, all three flee to Switzerland. Sabina begins an affair, Tom continues womanizing, and Tereza, disgusted, returns to Czechoslovakia. Realizing his mistake, Tomas decides to chase after her.
## 3373 In a dystopian future, a totalitarian regime maintains peace by subduing the populace with a drug, and displays of emotion are punishable by death. A man in charge of enforcing the law rises to overthrow the system.
## 3374 For Lieutenant Pete 'Maverick' Mitchell and his friend and co-pilot Nick 'Goose' Bradshaw, being accepted into an elite training school for fighter pilots is a dream come true. But a tragedy, as well as personal demons, will threaten Pete's dreams of becoming an ace pilot.
## 3375 Cheese-loving eccentric Wallace and his cunning canine pal, Gromit, investigate a mystery in Nick Park's animated adventure, in which the lovable inventor and his intrepid pup run a business ridding the town of garden pests. Using only humane methods that turn their home into a halfway house for evicted vermin, the pair stumble upon a mystery involving a voracious vegetarian monster that threatens to ruin the annual veggie-growing contest.
## 3376 A drug squad attempts to take down a criminal organization and they must go undercover to do so, so they begin working at a chicken restaurant, that becomes famous for its delicious chicken. Due to the unexpected popularity, the detectives find themselves in a situation they never expected.
## 3377 A young man is afraid of asking for sex tips to his cousin, the sexologist.
## 3378 Suave, charming and volatile, Reggie Kray and his unstable twin brother Ronnie start to leave their mark on the London underworld in the 1960s. Using violence to get what they want, the siblings orchestrate robberies and murders while running nightclubs and protection rackets. With police Detective Leonard "Nipper" Read hot on their heels, the brothers continue their rapid rise to power and achieve tabloid notoriety.
## 3379 At the opening party of a colossal—but poorly constructed—skyscraper, a massive fire breaks out, threatening to destroy the tower and everyone in it.
## 3380 It's 1957, and James Whale's heyday as the director of "Frankenstein," "Bride of Frankenstein" and "The Invisible Man" is long behind him. Retired and a semi-recluse, he lives his days accompanied only by images from his past. When his dour housekeeper, Hannah, hires a handsome young gardener, the flamboyant director and simple yard man develop an unlikely friendship, which will change them forever.
## 3381 An LA girl, unlucky in love, falls for an East Coast guy on a dating app and decides to surprise him for Christmas, only to discover that she's been catfished. But the object of her affection actually lives in the same town, and the guy who duped her offers to set them up if she pretends to be his own girlfriend for the holidays.
## 3382 During a post-Christmas play date, the gang find themselves in uncharted territory when the coolest set of action figures ever turn out to be dangerously delusional. It's all up to Trixie, the triceratops, if the gang hopes to return to Bonnie's room in this Toy Story That Time Forgot.
## 3383 A colossal adventure odyssey that turns back the hands of time to the very beginning of man's existence. 80,000 years ago, when man roamed the earth, he was exposed to the many harsh elements of nature. Against the perilous atmosphere of rugged terrain, rival tribes and savage beasts, Quest for Fire examines a peaceful tribe's search for that all important element fire, and the knowledge to create it. Focusing on human dream as well as realistic insights into pre-historic man, the constant struggle for survival is vividly recreated in this sensational production.
## 3384 United States President Lex Luthor uses the oncoming trajectory of a Kryptonite meteor to frame Superman and declare a $1 billion bounty on the heads of the Man of Steel and his ‘partner in crime’, Batman. Heroes and villains alike launch a relentless pursuit of Superman and Batman, who must unite—and recruit help—to try and stave off the action-packed onslaught, stop the meteor Luthors plot.
## 3385 A hardened convict and a younger prisoner escape from a brutal prison in the middle of winter only to find themselves on an out-of-control train with a female railway worker while being pursued by the vengeful head of security.
## 3386 Trapped in a missile silo, a small team of scientists, civilians, and trigger-happy soldiers battle desperately to ensure the survival of the human race. However, the tension inside the base is reaching a breaking point, and the zombies are gathering outside.
## 3387 Los Angeles. A wealthy man, known as Mr. Fuller, discovers a shocking secret about the world he lives in. Fearing for his life, he leaves a desperate message for a friend of his in the most unexpected place.
## 3388 Noumouké, from the suburb of Paris, is about to decide which brother's foot steps to follow - the lawyer student Soulaymaan or the gangster Demba.
## 3389 Wonder Woman tries to help a troubled young girl who has fallen in with a deadly organization known as Villainy, Inc.
## 3390 Fed up with the cruelty and stupidity of American culture, an unlikely duo goes on a killing spree, killing reality TV stars, bigots and others they find repugnant.
## 3391 Three children evacuated from London during World War II are forced to stay with an eccentric spinster. The children's initial fears disappear when they find out she is in fact a trainee witch.
## 3392 A gay cabaret owner and his drag queen companion agree to put up a false straight front so that their son can introduce them to his fiancé's conservative moralistic parents.
## 3393 In a dystopian near future, single people, according to the laws of The City, are taken to The Hotel, where they are obliged to find a romantic partner in forty-five days or are transformed into animals and sent off into The Woods.
## 3394 April 24, 1993: it's the last broadcast of Radiofreccia, an independent radio station closing after 18 years, barely one minute before coming of age. Bruno, one of its founders, begins to tell its story, one of a group of friends—especially troubled Freccia's—and a period of their youth in a little Northern Italian town.
## 3395 Professor Charles Xavier and his team of genetically gifted superheroes face a rising tide of anti-mutant sentiment led by Col. William Stryker. Storm, Wolverine and Jean Grey must join their usual nemeses—Magneto and Mystique—to unhinge Stryker's scheme to exterminate all mutants.
## 3396 Dug is sent on foolish missions by Alpha, Beta, and Gamma so they can hunt for the Bird of Paradise Falls by themselves. Dug may find that where he belongs is not where he's been looking.
## 3397 Lawman Wyatt Earp and outlaw Doc Holliday form an unlikely alliance which culminates in their participation in the legendary Gunfight at the O.K. Corral.
## 3398 After years of war, the Federation and the Klingon empire find themselves on the brink of a peace summit when a Klingon ship is nearly destroyed by an apparent attack from the Enterprise. Both worlds brace for what may be their dealiest encounter.
## 3399 A pastor of a small church in upstate New York starts to spiral out of control after a soul-shaking encounter with an unstable environmental activist and his pregnant wife.
## 3400 Meeting by chance when they return to their tiny California hometown, two former high-school sweethearts reflect on their shared past.
## 3401 A man walks into a meticulously clean and sterile bathroom and proceeds to shave. When his face is clean, however, he only continues to shave until he pierces through his skin. Blood covers him and falls around him, the red contrasting the perfect spotlessness of the bathroom.
## 3402 A retired police commissioner recounts the most memorable case of his career, wherein he was informed about a bomb scare in Mumbai.
## 3403 When Rudy Baylor, a young attorney with no clients, goes to work for a seedy ambulance chaser, he wants to help the parents of a terminally ill boy in their suit against an insurance company. But to take on corporate America, Rudy and a scrappy paralegal must open their own law firm.
## 3404 The story of Rudy Ray Moore, who created the iconic big screen pimp character Dolemite in the 1970s.
## 3405 Jackie Chan stars as Asian Hawk, an Indiana Jones-style adventurer looking to make a fortune in exotic antiquities. After Hawk discovers a mysterious sword in Africa, a band of Satan-worshipping monks kidnap his ex-girlfriend Lorelei, demanding the sword as ransom as well as other pieces of the legendary Armour of God - a magical outfit dating back to the Crusades.
## 3406 A bored, retired rock star sets out to find his father's executioner, an ex-Nazi war criminal who is a refugee in the U.S.
## 3407 An Edinburgh professor and assorted colleagues follow an explorer's trail down an extinct Icelandic volcano to the earth's center.
## 3408 A psychoanalyst and his family go through profound emotional trauma when their son dies in a scuba diving accident.
## 3409 Five down-on-their luck strangers meet by chance while looking at a property in the country none of them are able to afford. They decide to join forces and risk everything to turn it into a B&B, only for the local mafia to show up demanding their "fair" share.
## 3410 A new member has joined Eli and the Shane Gang! Junjie, once the protector of the Eastern Caverns, is a master of the slugslinging art of Slug Fu! But even with the power of five slingers, the Shane Gang find themselves in over their heads as they race across The 99 Caverns in search of the Legendary Elemental Slugs. The five Elementals are ancient slugs of great power, and the forbearers of all slugs found in SlugTerra today. In the wrong hands, they could bring Slugterra to the brink of destruction. So when an evil alliance starts hunting down the Elementals, Eli and his friends — old and new — take off in pursuit of the greatest threat their world has ever faced!
## 3411 Blending lively music and brilliant animation, this sequel to the original 'Fantasia' restores 'The Sorcerer's Apprentice' and adds seven new shorts.
## 3412 Overburdened and stuck in a greying marriage, Giovanna takes to caring for a Jewish Holocaust survivor her husband brings home. As she begins to reflect on her life, she turns to the man who lives across from her.
## 3413 Mid-level gangster Wah falls in love with his beautiful cousin, but must also continue to protect his volatile partner-in-crime and friend, Fly.
## 3414 A chronicle of the crimes of Ted Bundy, from the perspective of his longtime girlfriend, Elizabeth Kloepfer, who refused to believe the truth about him for years.
## 3415 A comedy that follows an ex-con who lands a position at a school that sits over the spot where money from one of his earlier robberies was stashed.
## 3416 Dave, a high school senior, spends most of his time pining away over a girl he can’t have. Aubrey, a junior with artistic aspirations, has a hot boyfriend who doesn’t quite understand her or seem to care. Although they go to different schools, Dave and Aubrey find themselves at the same party. When both head outside to get some air, they meet. A casual conversation sparks an instant connection, and, over the course of a weekend, things turn magical, romantic, complicated, and funny as Aubrey and Dave discover what it's like to fall in love for the first time.
## 3417 Surfer Jay Moriarity sets out to ride the Northern California break known as Mavericks.
## 3418 Singer Tina Turner rises to stardom while mustering the courage to break free from her abusive husband Ike.
## 3419 In 1841, young Ishmael signs up for service abroad the Pequod, a whaler sailing out of New Bedford. The ship is under the command of Captain Ahab, a strict disciplinarian who exhorts his men to find Moby Dick, the great white whale. Ahab lost his his leg to that creature and is desperate for revenge. As the crew soon learns, he will stop at nothing to gain satisfaction.
## 3420 At a 1962 College, Dean Vernon Wormer is determined to expel the entire Delta Tau Chi Fraternity, but those troublemakers have other plans for him.
## 3421 An ambitious carnival man with a talent for manipulating people with a few well-chosen words hooks up with a female psychologist who is even more dangerous than he is.
## 3422 In the 1820s, a taciturn loner and skilled cook travels west to Oregon Territory, where he meets a Chinese immigrant also seeking his fortune. Soon the two team up on a dangerous scheme to steal milk from the wealthy landowner’s prized Jersey cow – the first, and only, in the territory.
## 3423 When dictator Joseph Stalin dies, his parasitic cronies square off in a frantic power struggle to become the next Soviet leader. As they bumble, brawl and back-stab their way to the top, the question remains — just who is running the government?
## 3424 Jack Carter is a small-time hood working in London. When word reaches him of his brother's death, he travels to Newcastle to attend the funeral. Refusing to accept the police report of suicide, Carter seeks out his brother’s friends and acquaintances to learn who murdered his sibling and why.
## 3425 Alex, an assassin-for-hire, finds that he's become a target after he refuses to complete a job for a dangerous criminal organization. With the crime syndicate and FBI in hot pursuit, Alex has the skills to stay ahead, except for one thing: he is struggling with severe memory loss, affecting his every move. Alex must question his every action and whom he can ultimately trust.
## 3426 Four children become friends during the summer holidays, and out of sight of the adults they discover they have hidden powers. While exploring their newfound abilities in the nearby forests and playgrounds, their innocent play takes a dark turn and strange things begin to happen.
## 3427 Ash Ketchum wakes up late one morning after having broken his alarm clock in his sleep. He eventually makes it to Professor Oak's lab, but is told that the three starter List of Pokémon (Bulbasaur, Squirtle, and Charmander) have already been taken by Trainers who were on time. However, Oak reveals that he has one more Pokémon, an Electric-type named Pikachu. Despite its volatile and feisty personality, as well as its refusal to get inside a Poké Ball, Ash happily takes Pikachu for his journey.
## 3428 Pop star Christopher Wilde has fame, fortune and a big-budget Hollywood movie awaiting him. But after meeting Jessica Olson, a down-to-earth girl from the Midwest, he is faced with following his heart or doing what's best for his career.
## 3429 An American bartender and his prostitute girlfriend go on a road trip through the Mexican underworld to collect a $1 million bounty on the head of a dead gigolo.
## 3430 Charlie's got a 'job' to do. Having just left prison he finds one of his friends has attempted a high-risk job in Torino, Italy, right under the nose of the mafia. Charlie's friend doesn't get very far, so Charlie takes over the 'job'. Using three Mini Coopers, a couple of Jaguars, and a bus, he hopes to bring Torino to a standstill, steal a fortune in gold and escape in the chaos.
## 3431 In the year before the 1904 St. Louis World's Fair, the four Smith daughters learn lessons of life and love, even as they prepare for a reluctant move to New York.
## 3432 Chinese narco-cops take their mission to the Golden Triangle following the Mekong River massacre of innocent fishermen by the region's drug lord.
## 3433 Picking up after the events of Never Back Down 2, former MMA champion Case Walker is on the comeback trail to become champion once again.
## 3434 A woman with a tragic past decides to start her new life by hiking for one thousand miles on the Pacific Crest Trail.
## 3435 When the Hulk's presence on Earth becomes too great a risk, the Illuminati trick him to board a shuttle destined for a planet where he will be able to live in peace, and launch it into space. The Hulk's struggle to escape causes the shuttle to malfunction and crash land on the planet Sakaar, however, where he is sold into slavery and trained as a gladiator.
## 3436 DCP DeSilva sees a way to bring to justice the feared head of a criminal empire by recruiting a man named Vijay, who looks exactly like the crime boss. The ruse works too well, and soon Vijay finds his life in danger when DeSilva, the only one who knows his true identity, dies.
## 3437 Ismael and Julie, who in the hope of sparking their stalled relationship, enter a playful yet emotionally laced threesome with Alice. When tragedy strikes, these young Parisians are forced to deal with the fragility of life and love. For Ismael, this means negotiating through the advances of Julie's sister and a young college student – one of which may offer him redemption.
## 3438 While attending a retrospect of his work, a filmmaker recalls his life and his loves: the inspirations for his films.
## 3439 Mirko and Manolo are best friends and live in the suburbs of Rome. They both live in poor conditions with their single parents, are still in school and struggle with occasional odd jobs to make ends meet. Together they share dreams of women, of sex and money, of a better life to come. Then, after killing a man in a hit-and-run one night, they get involved with the local mafia and their lives change dramatically.
## 3440 A young man paying the rent for himself and his lifelong friends at an apartment, ends up flat-broke and resorts to selling marijuana to pay the bills - only to get caught up in the dangerous world of drugs.
## 3441 In 1955 in Italy, race car driver Jed Cavalcanti suffers a mishap during the Molte Miglia rally and finds himself in a small town with a few familial surprises.
## 3442 Four unwitting heroes cross paths on their journey to the sleepy town of Silverado. Little do they know the town where their family and friends reside has been taken over by a corrupt sheriff and a murderous posse. It's up to the sharp-shooting foursome to save the day, but first they have to break each other out of jail, and learn who their real friends are.
## 3443 FBI Agent Will Graham, who retired after catching Hannibal Lecktor, returns to duty to engage in a risky cat-and-mouse game with Lecktor to capture a new killer.
## 3444 When a shadowy CIA agent uncovers damning agency secrets, he's hunted across the globe by a sociopathic rogue operative who's put a bounty on his head.
## 3445 Disillusioned with life in the city, feeling out of place in suburbia, and frustrated that her happily ever after hasn’t been so easy to find, Giselle turns to the magic of Andalasia for help. Accidentally transforming the entire town into a real-life fairy tale and placing her family’s future happiness in jeopardy, she must race against time to reverse the spell and determine what happily ever after truly means to her and her family.
## 3446 A strong-willed peasant girl is sent by her father to the estate of some local aristocrats to capitalize on a rumor that their families are from the same line, but is left traumatised from her experiences.
## 3447 Galo and the Burning Rescue Fire Department face off against BURNISH, a group of mutants who are able to control and wield flames, and the fire disaster they have unleashed on Earth.
## 3448 Dr. Steven Murphy is a renowned cardiovascular surgeon who presides over a spotless household with his wife and two children. Lurking at the margins of his idyllic suburban existence is Martin, a fatherless teen who insinuates himself into the doctor's life in gradually unsettling ways.
## 3449 U.S. soldier Frank Dux has come to Hong Kong to be accepted into the Kumite, a highly secret and extremely violent martial arts competition. While trying to gain access into the underground world of clandestine fighters, he also has to avoid military officers who consider him to be AWOL. After enduring a difficult training and beginning a romance with journalist Janice Kent, Frank is given the opportunity to fight. But can he survive?
## 3450 Coffee And Cigarettes is a collection of eleven films from cult director Jim Jarmusch. Each film hosts star studded cast of extremely unique individuals who all share the common activities of conversing while drinking coffee and smoking cigarettes.
## 3451 In order to foil a terrorist plot, an FBI agent undergoes facial transplant surgery and assumes the identity of a criminal mastermind. The plan turns sour when the criminal wakes up prematurely and seeks revenge.
## 3452 A Texan traveling across the wild West bringing the news of the world to local townspeople, agrees to help rescue a young girl who was kidnapped.
## 3453 In 1839, the slave ship Amistad set sail from Cuba to America. During the long trip, Cinque leads the slaves in an unprecedented uprising. They are then held prisoner in Connecticut, and their release becomes the subject of heated debate. Freed slave Theodore Joadson wants Cinque and the others exonerated and recruits property lawyer Roger Baldwin to help his case. Eventually, John Quincy Adams also becomes an ally.
## 3454 A Yorkshire coal mine is threatened with closure and the only hope is for the men to enter their Grimley Colliery Brass Band into a national competition. They believe they have no hope until Gloria appears carrying her Flugelhorn. At first mocked for being a woman, she soon becomes the only chance for the band to win.
## 3455 Set in the future, the story follows a young soldier named Johnny Rico and his exploits in the Mobile Infantry. Rico's military career progresses from recruit to non-commissioned officer and finally to officer against the backdrop of an interstellar war between mankind and an arachnoid species known as "the Bugs".
## 3456 Dolly Levi is a strong-willed matchmaker who travels to Yonkers, New York in order to see the miserly "well-known unmarried half-a-millionaire" Horace Vandergelder. In doing so, she convinces his niece, his niece's intended, and Horace's two clerks to travel to New York City.
## 3457 Johnny Smith is a schoolteacher with his whole life ahead of him but, after leaving his fiancee's home one night, is involved in a car crash which leaves him in a coma for 5 years. When he wakes, he discovers he has an ability to see into the past, present and future life of anyone with whom he comes into physical contact.
## 3458 The tale of an individualist proletarian in a time marked by the rise of mass political movements. In early 20th-century Italy, illiterate sailor Martin Eden seeks fame as a writer while torn between the love of a bourgeois girl and allegiance to his social class.
## 3459 An award-winning cynical journalist, Lloyd Vogel, begrudgingly accepts an assignment to write an Esquire profile piece on the beloved television icon Fred Rogers. After his encounter with Rogers, Vogel's perspective on life is transformed.
## 3460 A group of teens break into a blind man's home thinking they'll get away with the perfect crime. They're wrong.
## 3461 Musical adaptation of Charles Dickens' Oliver Twist, a classic tale of an orphan who runs away from the workhouse and joins up with a group of boys headed by the Artful Dodger and trained to be pickpockets by master thief Fagin.
## 3462 Akeelah is a precocious 11-year-old girl from south Los Angeles with a gift for words. Despite her mother's objections, Akeelah enters various spelling contests, for which she is tutored by the forthright Dr. Larabee, her principal Mr. Welch, and the proud residents of her neighborhood. Akeelah's aptitude earns her an opportunity to compete for a spot in the Scripps National Spelling Bee.
## 3463 Seth Gecko and his younger brother Richard are on the run after a bloody bank robbery in Texas. They escape across the border into Mexico and will be home-free the next morning, when they pay off the local kingpin. They just have to survive 'from dusk till dawn' at the rendezvous point, which turns out to be a Hell of a strip joint.
## 3464 Two single friends agree to be each others' respective plus one for each wedding they're invited to during a particularly busy nuptial period of their lives.
## 3465 Brave is set in the mystical Scottish Highlands, where Mérida is the princess of a kingdom ruled by King Fergus and Queen Elinor. An unruly daughter and an accomplished archer, Mérida one day defies a sacred custom of the land and inadvertently brings turmoil to the kingdom. In an attempt to set things right, Mérida seeks out an eccentric old Wise Woman and is granted an ill-fated wish. Also figuring into Mérida’s quest — and serving as comic relief — are the kingdom’s three lords: the enormous Lord MacGuffin, the surly Lord Macintosh, and the disagreeable Lord Dingwall.
## 3466 Hapless orchestra player becomes an unwitting pawn of rival factions within the French secret service after he is chosen as a decoy by being identified as a super secret agent.
## 3467 Former FBI Agent Will Graham, who was once almost killed by the savage Hannibal 'The Cannibal' Lecter, now has no choice but to face him again, as it seems Lecter is the only one who can help Graham track down a new serial killer.
## 3468 Sheffield, England. Gaz, a jobless steelworker in need of quick cash persuades his mates to bare it all in a one-night-only strip show.
## 3469 The toys throw Ken and Barbie a Hawaiian vacation in Bonnie's room.
## 3470 A young man who was sentenced to 7 years in prison for robbing a post office ends up spending 30 years in solitary confinement. During this time, his own personality is supplanted by his alter ego, Charles Bronson.
## 3471 A 14-year-old video enthusiast obsessed with violent films decides to make one of his own and show it to his parents, with tragic results.
## 3472 In the last days of 1999, ex-cop turned street hustler Lenny Nero receives a disc which contains the memories of the murder of a prostitute. With the help of bodyguard Mace, he starts to investigate and is pulled deeper and deeper in a whirl of murder, blackmail and intrigue. Can the pair live to see the new millennium?
## 3473 Long, long ago, in a time of magic and dragons, there lived a girl named Rapunzel who had the most beautiful radiant hair the world had ever seen. But Rapunzel's life was far from wonderful. She lived as a servant to Gothel, a jealous, scheming witch who kept her hidden deep in a forbidding forest, guarded by the enormous dragon Hugo and surrounded by an enchanted glass wall. However, in a twist of fate, Rapunzel's discovery of a magic paintbrush leads her on a journey that will unravel a web of deception, bring peace to two feuding kingdoms, and ultimately lead her to love with the help of Penelope(TM), the least intimidating of dragons!
## 3474 A young reformed gambler must return to playing big stakes poker to help a friend pay off loan sharks.
## 3475 Bambi's tale unfolds from season to season as the young prince of the forest learns about life, love, and friends.
## 3476 The extraordinary true story of eccentric British artist Louis Wain, whose playful, sometimes even psychedelic pictures helped to transform the public's perception of cats forever.
## 3477 Adriano wakes up in a hotel room next to the dead body of his lover, Laura. The door is locked from the inside and there is no evidence of anybody else in the room.
## 3478 A shy Greenwich Village book clerk is discovered by a fashion photographer and whisked off to Paris where she becomes a reluctant model.
## 3479 Homer is an orphan who was never adopted, becoming the favorite of orphanage director Dr. Larch. Dr. Larch imparts his full medical knowledge on Homer, who becomes a skilled, albeit unlicensed, physician. But Homer yearns for a self-chosen life outside the orphanage. What will Homer learn about life and love in the cider house? What of the destiny that Dr. Larch has planned for him?
## 3480 The Yamadas are a typical middle class Japanese family in urban Tokyo and this film shows us a variety of episodes of their lives. With tales that range from the humorous to the heartbreaking, we see this family cope with life's little conflicts, problems, and joys in their own way.
## 3481 After a painful breakup, Ben develops insomnia. To kill time, he starts working the late night shift at the local supermarket, where his artistic imagination runs wild.
## 3482 The film spans 30 years in Julieta’s life from a nostalgic 1985 where everything seems hopeful, to 2015 where her life appears to be beyond repair and she is on the verge of madness.
## 3483 Guests at a posh Berlin hotel struggle through worry, scandal, and heartache.
## 3484 Relaxing on a cozy beach, the Straw Hat Pirates are taking a rest from their quest. Right until Luffy noticed the Going Merry has been hijacked and sailed off from the beach. This leads them to search the ship and find the thief who took it from them. They ran into a duo named the Theif Brothers, who informed them that their ship was stolen by a group of pirates called the Trump Kyoudai. When they encountered the Trump Pirates, Nami ended up getting kidnapped as well as Luffy's hat. They tracked down the pirates to their base on Clockwork Island. Now Luffy, Zoro, Sanji, Usopp, and the Theif Brothers must reclaim the Going Merry, Save Nami, and get back Shank's straw hat.
## 3485 Zack Mayo is an aloof, taciturn man who aspires to be a navy pilot. Once he arrives at training camp for his 13-week officer's course, Mayo runs afoul of abrasive, no-nonsense drill Sergeant Emil Foley. Mayo is an excellent cadet, but a little cold around the heart, so Foley rides him mercilessly, sensing that the young man would be prime officer material if he weren't so self-involved. Zack's affair with a working girl is likewise compromised by his unwillingness to give of himself.
## 3486 A biopic of writer Truman Capote and his assignment for The New Yorker to write the non-fiction book "In Cold Blood".
## 3487 A woman learns about the death of her Orthodox Jewish father, a rabbi. She returns home and has romantic feelings rekindled for her best childhood friend, who is now married to her cousin.
## 3488 After experiencing a traumatic misfortune, Jasmine French, a wealthy woman from New York, moves to San Francisco to live with her foster sister Ginger and the firm purpose of getting a new life, but she will be haunted by anxiety and memories of the past.
## 3489 When accountant David, doctor Juliet and journalist Alex are searching for a fourth roommate for their trendy flat, they settle on the aloof Hugo. However, they soon find Hugo dead of a drug overdose, beside a large sum of cash. After some deliberation, the three others decide to keep the money and to dismember and bury Hugo's body. Soon, each roommate starts thinking about keeping all the money by scamming the others.
## 3490 True story of the undersized Depression-era racehorse whose victories lifted not only the spirits of the team behind it but also those of their nation.
## 3491 The overambitious pianist Andi and the more laid back Benno have one thing in common: They will both die soon. So the two of them decide to have the most awesome day before its too late.
## 3492 Denmark, 2016. A blurred note is found in a bottle that has traveled across the ocean for a long time. After deciphering the cryptic note, Department Q members follow a sinister trail that leads them to investigate a case that occurred in 2008. At the same time, new tragic events take place that test their faith and deepest beliefs.
## 3493 As the police launch a full-scale crackdown on organized crime, it ignites a national yakuza struggle between the Sanno of the East and Hanabishi of the West. What started as an internal strife in Outrage has now become a nationwide war in Outrage Beyond.
## 3494 While waiting for the brain surgery of his daughter Angela, victim of a motorcycle accident, the surgeon Timoteo recalls his torrid affair with and passion for Italia, a simple woman from slums in the periphery of the big city where he lives. The ghost of the beloved and sexual object of desire Italia chases him in his memories.
## 3495 Teenagers at a juvenile detention center, under the leadership of their counselor, gain self-esteem by playing football together.
## 3496 Tomás, who lives in Canada, travels to Madrid, Spain, to visit his old friend Julián. Both of them, accompanied by Truman, Julián's faithful dog, will share many surprising and emotional little moments, triggered by the hard situation Julián is going through, for just a few days.
## 3497 Narrowly avoiding jail, new dad Robbie vows to turn over a new leaf. A visit to a whisky distillery inspires him and his mates to seek a way out of their hopeless lives.
## 3498 After being double-crossed and left for dead, a mysterious man named Walker single-mindedly tries to retrieve the rather inconsequential sum of money that was stolen from him.
## 3499 Dumbo is a baby elephant born with over-sized ears and a supreme lack of confidence. But thanks to his even more diminutive buddy Timothy the Mouse, the pint-sized pachyderm learns to surmount all obstacles.
## 3500 In 19th century New York high society, a young lawyer falls in love with a woman separated from her husband, while he is engaged to the woman's cousin.
## 3501 In the film that launched the James Bond saga, Agent 007 battles mysterious Dr. No, a scientific genius bent on destroying the U.S. space program. As the countdown to disaster begins, Bond must go to Jamaica, where he encounters beautiful Honey Ryder, to confront a megalomaniacal villain in his massive island headquarters.
## 3502 A friendship with a top-secret robot turns a lonely girl's life into a thrilling adventure as they take on bullies, evil bots and a scheming madman.
## 3503 England, early 20th century. The future writer and philologist John Ronald Reuel Tolkien (1892-1973) and three of his schoolmates create a strong bond between them as they share the same passion for literature and art, a true fellowship that strengthens as they grow up, but the outbreak of World War I threatens to shatter it.
## 3504 The charismatic Sir Lionel Frost considers himself to be the world's foremost investigator of myths and monsters. Trouble is, none of his small-minded, high-society peers seems to recognize this. Hoping to finally gain acceptance from these fellow adventurers, Sir Lionel travels to the Pacific Northwest to prove the existence of a legendary creature known as the missing link.
## 3505 Neïla Salah grew up in Créteil, a tower block suburb on the outskirts of Paris, and dreams of becoming a lawyer. She has been accepted into a major university in Paris and on her first day there she is confronted by Pierre Mazard, a professor known for his provocative behavior and blunders.\n To make amends for an incident, he accepts to help Neïla prepare for a prestigious competition in courtroom eloquence. Both cynical and demanding, Pierre could become the mentor who she needs... But first both must overcome their prejudices.
## 3506 In the late 1950s and early '60s, artist Walter Keane achieves unbelievable fame and success with portraits of saucer-eyed waifs. However, no one realizes that his wife, Margaret, is the real painter behind the brush. Although Margaret is horrified to learn that Walter is passing off her work as his own, she is too meek to protest too loudly. It isn't until the Keanes' marriage comes to an end and a lawsuit follows that the truth finally comes to light.
## 3507 During a year, a very content couple approaching retirement are visited by friends and family less happy with their lives.
## 3508 After losing their baby, a married couple adopt 9-year old Esther, who may not be as innocent as she seems.
## 3509 After his impetuous musician girlfriend, Samantha, dies in an accident shortly after they had a fight (and nearly broke up), a grief-stricken British businessman, Ian Wyndham, living in London gets a chance to relive the day all over again, in the hope of changing the events that led up to her getting killed.
## 3510 When Hong Kong Inspector Lee is summoned to Los Angeles to investigate a kidnapping, the FBI doesn't want any outside help and assigns cocky LAPD Detective James Carter to distract Lee from the case. Not content to watch the action from the sidelines, Lee and Carter form an unlikely partnership and investigate the case themselves.
## 3511 When a Jamaican sprinter is disqualified from the Olympic Games, he enlists the help of a dishonored coach to start the first Jamaican bobsled team.
## 3512 After an attack renders her blind, Ellen withdraws from the world to recover. But soon she plunges into paranoia, unable to convince anyone that her assailant has returned to terrorize her by hiding in plain sight.
## 3513 Emerald Green is the stunning conclusion to Kerstin Gier's Ruby Red Trilogy, picking up where Sapphire Blue left off, reaching new heights of intrigue and romance as Gwen finally uncovers the secrets of the time-traveling society and learns her fate.
## 3514 In an effort to tap into his original talent, a wheelchair-bound author moves to a rural town, where he befriends a single mother and her three kids, who help reignite his passion for writing.
## 3515 The story of the Cuban Missile Crisis in 1962—the nuclear standoff with the USSR sparked by the discovery by the Americans of missile bases established on the Soviet-allied island of Cuba.
## 3516 The Hong Kong super-cop must stop a group of blackmailing bombers at the same time that the villains of the first Police Story are out for revenge.
## 3517 After Homer accidentally pollutes the town's water supply, Springfield is encased in a gigantic dome by the EPA and the Simpsons are declared fugitives.
## 3518 A mysterious place, an indescribable prison, a deep hole. An unknown number of levels. Two inmates living on each level. A descending platform containing food for all of them. An inhuman fight for survival, but also an opportunity for solidarity.
## 3519 Two young New Yorkers begin to fall in love over the course of a single day, as a series of potentially life-altering meetings loom over their heads - hers concerning her family’s deportation to Jamaica, and his concerning an education at Dartmouth.
## 3520 A cover-up that spanned four U.S. Presidents pushed the country's first female newspaper publisher and a hard-driving editor to join an unprecedented battle between journalist and government. Inspired by true events.
## 3521 When Shaun decides to take the day off and have some fun, he gets a little more action than he bargained for. A mix up with the Farmer, a caravan and a very steep hill lead them all to the Big City and it's up to Shaun and the flock to return everyone safely to the green grass of home.
## 3522 As sadomasochistic yakuza enforcer Kakihara searches for his missing boss he comes across Ichi, a repressed and psychotic killer who may be able to inflict levels of pain that Kakihara has only dreamed of.
## 3523 Justin Quayle is a low-level British diplomat who has always gone about his work very quietly, not causing any problems. But after his radical wife Tessa is killed he becomes determined to find out why, thrusting himself into the middle of a very dangerous conspiracy.
## 3524 Threats from sinister foreign nationals aren't the only thing to fear. Bedraggled college professor Michael Faraday has been vexed (and increasingly paranoid) since his wife's accidental death in a botched FBI operation. But all that takes a backseat when a seemingly all-American couple set up house next door.
## 3525 Wealthy and precocious teenager Juliet transfers from England to New Zealand with her family, and soon befriends the quiet, brooding Pauline through their shared love of fantasy and literature. When their parents begin to suspect that their increasingly intense and obsessive bond is becoming unhealthy, the girls hatch a dark plan for those who threaten to keep them apart.
## 3526 In the opening chase, Martin Riggs and Roger Murtaugh stumble across a trunk full of Krugerrands. They follow the trail to a South African diplomat who's using his immunity to conceal a smuggling operation. When he plants a bomb under Murtaugh's toilet, the action explodes!
## 3527 A clinically depressed teenager gets a new start after he checks himself into an adult psychiatric ward.
## 3528 The story of mime Marcel Marceau as he works with a group of Jewish boy scouts and the French Resistance to save the lives of ten thousand orphans during World War II.
## 3529 A Tokyo college student is attacked by a ghoul, a super-powered human who feeds on human flesh. He survives, but has become part ghoul and becomes a fugitive on the run.
## 3530 Max the terrier must cope with some major life changes when his owner gets married and has a baby. When the family takes a trip to the countryside, nervous Max has numerous run-ins with canine-intolerant cows, hostile foxes and a scary turkey. Luckily for Max, he soon catches a break when he meets Rooster, a gruff farm dog who tries to cure the lovable pooch of his neuroses.
## 3531 In 1950s Australia, beautiful, talented dressmaker Tilly returns to her tiny hometown to right wrongs from her past. As she tries to reconcile with her mother, she starts to fall in love while transforming the fashion of the town.
## 3532 A man accidentally gets into a time machine and travels back in time nearly an hour. Finding himself will be the first of a series of disasters of unforeseeable consequences.
## 3533 A phobic con artist and his protege are on the verge of pulling off a lucrative swindle when the con artist's teenage daughter arrives unexpectedly.
## 3534 Ten strangers are summoned to a remote island and while they are waiting for the mysterious host to appear, a recording levels serious accusations at each of the guests. Soon they start being murdered, one by one. As the survivors try to keep their wits, they reach a disturbing conclusion: one of them must be the killer.
## 3535 Paralyzed in the Vietnam war, Ron Kovic becomes an anti-war and pro-human rights political activist after feeling betrayed by the country he fought for.
## 3536 In 1965, passionate musician Glenn Holland takes a day job as a high school music teacher, convinced it's just a small obstacle on the road to his true calling: writing a historic opus. As the decades roll by with the composition unwritten but generations of students inspired through his teaching, Holland must redefine his life's purpose.
## 3537 Hell's Kitchen, New York. Terry Noonan returns home after a ten-year absence. He soon reconnects with Jackie, a childhood friend and member of the Irish mob, and rekindles his love affair with Jackie's sister Kathleen.
## 3538 The Eternals are a team of ancient aliens who have been living on Earth in secret for thousands of years. When an unexpected tragedy forces them out of the shadows, they are forced to reunite against mankind’s most ancient enemy, the Deviants.
## 3539 Debbie Ocean, a criminal mastermind, gathers a crew of female thieves to pull off the heist of the century at New York's annual Met Gala.
## 3540 Mia is a rebellious teenager on the verge of being kicked out of school. Her hard-partying mother, Joanne, neglects Mia's welfare in favor of her own, and her younger sister hangs out with a much older crowd. Sparks fly between Mia and Connor, Joanne's new boyfriend, and he encourages Mia to pursue her interest in dance. As the boundaries of the relationships become blurred, Mia and Joanne compete for Connor's affection.
## 3541 The staff of a Korean War field hospital use humor and hijinks to keep their sanity in the face of the horror of war.
## 3542 Marta may be an orphan, and she may be affected by a lethal illness, yet she is the most positive person one can meet. She wants a boy to fall for her. Not any boy - the most handsome of them all. One day, she may have found her match.
## 3543 Barbie as Odette, the young daughter of a baker, follows a unicorn into the Enchanted Forest and is transformed into a swan by an evil wizard intent on defeating the Fairy Queen.
## 3544 It is 300 years into the future. Earth's environment had been devastated by mankind's own foolish plans and humankind is beleaguered by the sentient forests which they have awoken. The world balance is tipped when a young boy named Agito stumbles across a machine that glowed in a strange blue hue inside a forbidden sanctuary.
## 3545 A group of strangers come across a man dying after a car crash who proceeds to tell them about the $350,000 he buried in California. What follows is the madcap adventures of those strangers as each attempts to claim the prize for himself.
## 3546 During World War II, Steve Rogers is a sickly man from Brooklyn who's transformed into super-soldier Captain America to aid in the war effort. Rogers must stop the Red Skull – Adolf Hitler's ruthless head of weaponry, and the leader of an organization that intends to use a mysterious device of untold powers for world domination.
## 3547 A young teenage rapper must use his musical talent to help his friend out and win the girl of his dreams by going through several events of betrayal, trust and agreement while his religious parents have strictly dislike his interests.
## 3548 Two mutants, Rogue and Wolverine, come to a private academy for their kind whose resident superhero team, the X-Men, must oppose a terrorist organization with similar powers.
## 3549 Dante journeys through the nine circles of Hell -- limbo, lust, gluttony, greed, anger, heresy, violence, fraud and treachery -- in search of his true love, Beatrice. An animated version of the video game of the same name.
## 3550 The European war was only beginning to erupt across national borders. Johnny Jones, an American crime reporter dispatched by his New York publisher to put a fresh spin on the drowsy dispatches emanating from overseas, has a nose for a good story—which promptly leads him to the crime of fascism and Nazi Germany's designs on European conquest. In attempting to learn more about a seemingly noble peace effort, Jones walks into the middle of an assassination, uncovers a spy ring and—not entirely coincidentally—falls in love.
## 3551 A father and his son walk alone through burned America. Nothing moves in the ravaged landscape save the ash on the wind and water. It is cold enough to crack stones, and, when the snow falls it is gray. The sky is dark. Their destination is the warmer south, although they don't know what, if anything, awaits them there.
## 3552 The story of Karen Silkwood, a metallurgy worker at a plutonium processing plant who was purposefully contaminated, psychologically tortured and possibly murdered to prevent her from exposing blatant worker safety violations at the plant.
## 3553 Two desperate people have a wonderful romance, but their political views and convictions drive them apart.
## 3554 A hotshot Washington criminal lawyer becomes the target of a rogue security executive videotaped in the act of murdering a congressman when the incriminating tape is surreptitiously slipped into his shopping bag by the videographer, who is fleeing the executive's assassins.
## 3555 An American private-eye arrives in Alphaville, a futuristic city on another planet which is ruled by an evil scientist named Von Braun, who has outlawed love and self-expression.
## 3556 Kurt Gerstein—a member of the Institute for Hygiene of the Waffen-SS—is horrified by what he sees in the death camps. he is then shocked to learn that the process he used to purify water for his troops by using Zyklon-B, is now used to kill people in gas chambers.
## 3557 Monsieur Hulot, Jacques Tati’s endearing clown, takes a holiday at a seaside resort, where his presence provokes one catastrophe after another. Tati’s masterpiece of gentle slapstick is a series of effortlessly well-choreographed sight gags involving dogs, boats, and firecrackers; it was the first entry in the Hulot series and the film that launched its maker to international stardom.
## 3558 On Christmas Eve at Tower Sky, an ultra-luxurious building complex, a White Christmas party is held to dazzle its equally high-end tenants and VIP guests. Dae-ho, the manager of the building and single father, is forced to cancel plans with his daughter Hana to work the event. His Christmas is saved when Yoon-hee, the food mall manager with a secret crush on Dae-ho, offers to babysit Hana during the party. Meanwhile, Young-ki the legendary fire chief of Yoido Station has finally promised his first holiday date night to his long suffering wife. The party is in full swing with the spectacular sight of two helicopters flying overhead just to spray snow on the partygoers and make everything perfect. When unthinkable disaster strikes, Dae-ho and Young-ki must summon all their strength and courage to save the lives of thousands but at what cost to themselves and their loved ones?
## 3559 Marcel Marx, a former bohemian and struggling author, has given up his literary ambitions and relocated to the port city Le Havre. He leads a simple life based around his wife Arletty, his favourite bar and his not too profitable profession as a shoeshiner. As Arletty suddenly becomes seriously ill, Marcel's path crosses with an underage illegal immigrant from Africa, who needs Marcel's help to hide from the police.
## 3560 Three half-brothers are reunited at their mother's funeral. After being told of their inheritance they quickly spend the money, only to find out that they will not receive it after all. The men grow closer while deciding how to proceed.
## 3561 Humanity final rids themselves of Godzilla, in-prisoning him in an icy tomb at the South Pole. All is peaceful until various monsters emerge to lay waste to Earth's cities. Overwhelmed, humanity is seemingly saved by a race of benevolent aliens known as Xiliens. But not all is what it seems with these bizarre visitors. If humanity wishes to survive they must reluctantly resurrect their most hated enemy, Godzilla.
## 3562 A restaurateur befriends a Syrian refugee who has recently arrived in Finland.
## 3563 For never-do-well compulsive gambler Fong, there's only one thing more fearsome than debtors at his doorstep - having to coax a crying baby. But what if the baby becomes his golden goose to fend off his debtors? Can he overcome his phobia of diapers, milk bottles, and cloying lullabies?
## 3564 Xixo is back again. This time, his children accidentally stow away on a fast-moving poachers' truck, unable to get off, and Xixo sets out to rescue them. Along the way, he encounters a couple of soldiers trying to capture each other and a pilot and passenger of a small plane, who are each having a few problems of their own.
## 3565 When a wandering mercenary named Hogan rescues a nun called Sister Sara from the unwanted attentions of a band of rogues on the Mexican plains, he has no idea what he has let himself in for. Their chance encounter results in the blowing up of a train and a French garrison, as well as igniting a spark between them that survives a shocking discovery.
## 3566 A poor French teenage girl engages in an illicit affair with a wealthy Chinese heir in 1920s Saigon. For the first time in her young life she has control, and she wields it deftly over her besotted lover throughout a series of clandestine meetings and torrid encounters.
## 3567 Frustrated by scrolling dating apps only to end up on lame, tedious dates, Noa takes a chance by giving her number to the awkwardly charming Steve after a produce-section meet-cute at the grocery store.
## 3568 When Francois, a journalist, tours a big store for an article, he is chosen by the son of the newspaper's owner, Rambal-Cochet, as his new toy. Needing money and unwilling to quit his job, Francois agrees to this ridiculous assignment. Gradually befriending the spoiled boy, he induces him to play at making a newspaper, unveiling publicly the tyrannical way of life of the father. The powerful emotional climax we experience with the child astonishes both men.
## 3569 A surreal adaptation of Sir Thomas Malory's "Le Morte d'Arthur", chronicling Arthur Pendragon's conception, his rise to the throne, the search by his Knights of the Round Table for the Holy Grail, and ultimately his death.
## 3570 Mute Hee-Jin is working as a clerk in a fishing resort in the Korean wilderness; selling baits, food and occasionally her body to the fishing tourists. One day she falls in love with Hyun-Shik, who is on the run from the police, and rescues him with a fish hook when he tries to commit suicide.
## 3571 David, an orderly at a hospital, tells his horrific story of being kidnapped and forced to play a vile game of survival.
## 3572 A vicious serial sex killer is on the loose, and landscape gardener and shop-window outfitter Loris is the prime suspect, thanks to his unfortunate habit of getting caught in compromising situations (for which there is always a totally innocent explanation that the police fail to spot). Undercover policewoman Jessica is assigned by eccentric police psychologist Taccone to follow Loris and ...
## 3573 In the Antarctic, after an expedition with Dr. Davis McClaren, the sled dog trainer Jerry Shepherd has to leave the polar base with his colleagues due to the proximity of a heavy snow storm. He ties his dogs to be rescued after, but the mission is called-off and the dogs are left alone at their own fortune. For six months, Jerry tries to find a sponsor for a rescue mission.
## 3574 Eight women gather to celebrate Christmas in a snowbound cottage, only to find the family patriarch dead with a knife in his back. Trapped in the house, every woman becomes a suspect, each having her own motive and secret.
## 3575 The daily life of a school located in Saint Denis.
## 3576 Harley Quinn joins forces with a singer, an assassin and a police detective to help a young girl who had a hit placed on her after she stole a rare diamond from a crime lord.
## 3577 When a small-town Irish cop with a crass personality is partnered with a straight-laced FBI agent to bust an international drug-trafficking ring, they must settle their differences in order to take down a dangerous gang.
## 3578 Bernie, a 30 years old orphan, decides to leave his orphanage and find his parents. After an investigation, he meets Marion, a young heroin addict and falls in love with her. He believes that his family was victim of a plot and this is why they deserted him.
## 3579 There's trouble brewing in Bikini Bottom. Someone has stolen King Neptune's crown, and it looks like Mr. Krab, SpongeBob's boss, is the culprit. Though he's just been passed over for the promotion of his dreams, SpongeBob stands by his boss, and along with his best pal Patrick, sets out on a treacherous mission to Shell City to reclaim the crown and save Mr. Krab's life.
## 3580 When legendary hunter Bob Rainsford is shipwrecked on the perilous reefs surrounding a mysterious island, he finds himself the guest of the reclusive and eccentric Count Zaroff. While he is very gracious at first, Zaroff eventually forces Rainsford and two other shipwreck survivors, brother and sister Eve and Martin Towbridge, to participate in a sadistic game of cat and mouse in which they are the prey and he is the hunter.
## 3581 Between personal obligations and training for his next big fight against an opponent with ties to his family's past, Adonis Creed is up against the challenge of his life.
## 3582 A couple's relationship is tested when uninvited guests arrive at their home, disrupting their tranquil existence.
## 3583 A look at the controversial riot cops unit, told through the stories of three veteran cops and a young recruit.
## 3584 West Point, New York, 1830. When a cadet at the burgeoning military academy is found hanged with his heart cut out, the top brass summons former New York City constable Augustus Landor to investigate. While attempting to solve this grisly mystery, the reluctant detective engages the help of one of the cadets: a strange but brilliant young fellow by the name of Edgar Allan Poe
## 3585 A couple who have known each other since 8 are destined to be together until death do them apart.
## 3586 Gotham City is terrorized not only by recent escapees Joker and Penguin, but by the original creature of the night, Dracula! Can Batman stop the ruthless vampire before he turns everyone in the city, including The Caped Crusader, Joker and Penguin, into his mindless minions?
## 3587 Ben Crane believes that a severely injured racehorse deserves another chance. He and his daughter Cale adopt the mare and save it from being sacrificed by the owner.
## 3588 A former Los Angeles drug dealer moves far away to Texas, making a new life for himself as a married architect in the suburbs. His old crime partner unexpectedly shows up with heroin and gangster business, attracting a slew of violent unsavory characters.
## 3589 With their golden era long behind them, comedy duo Stan Laurel and Oliver Hardy embark on a variety hall tour of Britain and Ireland. Despite the pressures of a hectic schedule, and with the support of their wives Lucille and Ida – a formidable double act in their own right – the pair's love of performing, as well as for each other, endures as they secure their place in the hearts of their adoring public
## 3590 A year after his father's death, Oskar, a troubled young boy, discovers a mysterious key he believes was left for him by his father and embarks on a scavenger hunt to find the matching lock.
## 3591 It is 1943, and the German army—ravaged and demoralised—is hastily retreating from the Russian front. In the midst of the madness, conflict brews between the aristocratic yet ultimately pusillanimous Captain Stransky and the courageous Corporal Steiner. Stransky is the only man who believes that the Third Reich is still vastly superior to the Russian army. However, within his pompous persona lies a quivering coward who longs for the Iron Cross so that he can return to Berlin a hero. Steiner, on the other hand is cynical, defiantly non-conformist and more concerned with the safety of his own men rather than the horde of military decorations offered to him by his superiors.
## 3592 An orphan bear cub hooks up with an adult male as they try to dodge human hunters.
## 3593 Nancy Stokes doesn’t know good sex. Whatever it may be, Nancy, a retired schoolteacher, is pretty sure she has never had it, but she is determined to finally do something about that. She even has a plan: It involves an anonymous hotel room, and a young sex worker who calls himself Leo Grande.
## 3594 When an attack on the Kingsman headquarters takes place and a new villain rises, Eggsy and Merlin are forced to work together with the American agency known as the Statesman to save the world.
## 3595 In a secluded valley in Iceland, Gummi and Kiddi live side by side, tending to their sheep. Their ancestral sheep-stock is considered one of the country’s best and the two brothers are repeatedly awarded for their prized rams who carry an ancient lineage. Although they share the land and a way of life, Gummi and Kiddi have not spoken to each other in four decades. When a lethal disease suddenly infects Kiddi’s sheep, the entire valley comes under threat. The authorities decide to cull all the animals in the area to contain the outbreak. But Gummi and Kiddi don’t give up so easily – and each brother tries to stave off the disaster in his own fashion: Kiddi by using his rifle and Gummi by using his wits.
## 3596 A chronicle of the decade-long hunt for al-Qaeda terrorist leader Osama bin Laden after the September 2001 attacks, and his death at the hands of the Navy S.E.A.L. Team 6 in May, 2011.
## 3597 A historical drama set in Roman Egypt, concerning philosopher Hypatia of Alexandria and her relationship with her slave Davus, who is torn between his love for her and the possibility of gaining his freedom by joining the rising tide of Christianity.
## 3598 Mikael Blomkvist, publisher of Millennium magazine, has made his living exposing the crooked and corrupt practices of establishment Swedish figures. So when a young journalist approaches him with a meticulously researched thesis about sex trafficking in Sweden and those in high office who abuse underage girls, Blomkvist immediately throws himself into the investigation.
## 3599 Rusty James, an absent-minded street thug, struggles to live up to his legendary older brother's reputation, and longs for the days when gang warfare was going on.
## 3600 A victim of the Boston Marathon bombing in 2013 helps the police track down the killers while struggling to recover from devastating trauma.
## 3601 Without warning a father comes to visit his daughter abroad. He believes that she lost her humor and therefore surprises her with a rampage of jokes.
## 3602 Four interwoven stories that occur on Halloween: an everyday high school principal has a secret life as a serial killer; a college virgin might have just met the one guy for her; a group of teenagers pull a mean prank, and a bitter old recluse receives an uninvited guest.
## 3603 Nerdy high schooler Ronald Miller rescues cheerleader Cindy Mancini from parental punishment after she accidentally destroys her mother's designer clothes. Ronald agrees to pay for the $1,000 outfit on one condition: that she will act as though they're a couple for an entire month. As the days pass, however, Cindy grows fond of Ronald, making him popular. But when Ronald's former best friend gets left behind, he realizes that social success isn't everything.
## 3604 Ex-safecracker Gal Dove has served his time behind bars and is blissfully retired to a Spanish villa paradise with a wife he adores. The idyll is shattered by the arrival of his nemesis Don Logan, intent on persuading Gal to return to London for one last big job.
## 3605 A low-ranking thug is entrusted by his boss to dispose of a gun that killed corrupt cops, but things spiral out of control when the gun ends up in wrong hands.
## 3606 A lonely doctor who once occupied an unusual lakeside home begins exchanging love letters with its former resident, a frustrated architect. They must try to unravel the mystery behind their extraordinary romance before it's too late.
## 3607 A queue at the ATM machine, a displaced family after a seismic shock that has half-washed their home, a tour within an art gallery, moments of everyday life that become the cues for the emergence of comic, farce, paradoxical situations – trademarks of one of the most successful Italian comic groups.
## 3608 A young Sicilian is swindled twice, but ends up rich; a man poses as a deaf-mute in a convent of curious nuns; a woman must hide her lover when her husband comes home early; a scoundrel fools a priest on his deathbed; three brothers take revenge on their sister's lover; a young girl sleeps on the roof to meet her boyfriend at night; a group of painters wait for inspiration; a crafty priest attempts to seduce his friend's wife; and two friends make a pact to find out what happens after death.
## 3609 A man confesses to an FBI agent his family's story of how his religious fanatic father's visions lead to a series of murders to destroy supposed 'demons'.
## 3610 Starting his new job as an instructor at a New England school for the deaf, James Leeds meets Sarah Norman, a young deaf woman who works at the school as a member of the custodial staff. In spite of Sarah's withdrawn emotional state, a romance slowly develops between the pair.
## 3611 Cristina, a journalist of Mexican origin, travels to her ancestral home in Veracruz to investigate a story of sorcery and healing. There, she is kidnapped by a group of locals who claim she's the devil incarnated.
## 3612 Samantha Kingston has everything. Then, everything changes. After one fateful night, she wakes up with no future at all. Trapped into reliving the same day over and over, she begins to question just how perfect her life really was.
## 3613 A businessman is reunited with the four lost souls who were his guardian angels during childhood, all with a particular purpose to joining the afterlife.
## 3614 In 1987, during the austere days of Thatcher’s Britain, a teenager learns to live life, understand his family, and find his own voice through the music of Bruce Springsteen.
## 3615 In rural 1977 Georgia, a misfit girl dreams of life in outer space. When a national competition offers her a chance at her dream, to be recorded on NASA’s Golden Record, she recruits a makeshift troupe of Birdie Scouts, forging friendships that last a lifetime and beyond.
## 3616 Husband and wife Gabe and Adelaide Wilson take their kids to their beach house expecting to unplug and unwind with friends. But as night descends, their serenity turns to tension and chaos when some shocking visitors arrive uninvited.
## 3617 Columbus, Tallahassee, Wichita, and Little Rock move to the American heartland as they face off against evolved zombies, fellow survivors, and the growing pains of the snarky makeshift family.
## 3618 After getting in a car accident, a woman is held in a shelter with two men, who claim the outside world is affected by a widespread chemical attack.
## 3619 Rosetta and new arrival Chloe band together to try to break the garden fairies' legendary losing streak in the Pixie Hollow Games, a sports spectacle filled with pixie pageantry, fantastic fairy events and hilarious surprises.
## 3620 A discarded silk top-hat becomes the focus of a struggle between a washed-up stage magician and a group of schoolchildren, after it magically brings a snowman to life. Realizing that newly-living Frosty will melt in spring unless he takes refuge in a colder climate, Frosty and Karen, a young girl who he befriends, stow away on a freight train headed for the north pole. Little do they know that the magician is following them, and he wants his hat back!
## 3621 Mick O'Brien is a young Chicago street thug torn between a life of petty crime and the love of his girlfriend. But when the heist of a local drug dealer goes tragically wrong Mick is sentenced to a brutal juvenile prison where violence is a rite of passage and respect is measured in vengeance.
## 3622 Elisabeth leaves her abusive and drunken husband Rolf, and goes to live with her brother, Göran. The year is 1975 and Göran lives in a commune called Together. Living in this leftist commune Elisabeth learns that the world can be viewed from different perspectives.
## 3623 Spanish photographer Francesc Boix, imprisoned in the Mauthausen-Gusen concentration camp, works in the SS Photographic Service. Between 1943 and 1945, he hides, with the help of other prisoners, thousands of negatives, with the purpose of showing the freed world the atrocities committed by the Nazis, exhaustively documented. He will be a key witness during the Nuremberg Trials.
## 3624 After her fiance is falsely imprisoned, a pregnant African-American woman sets out to clear his name and prove his innocence.
## 3625 Gwendolyn Shepherd is a normal 16-year-old, but her family holds a secret: A time-travel gene is expressed in the clan inherited, but not every member of the family is blessed with. Everyone is certain that Gwen's cousin Charlotte has the gene. However, someday Gwendolyn suddenly finds herself in London at the end of the 19th century and realizes that it is her, who was born a time traveler. While she is not very enthusiastic about it, she will do everything possible to solve the ancient mysteries of the red ruby.
## 3626 A group of Muslim men living in Sheffield hatch an inept plan to become suicide bombers.
## 3627 Monsieur Bosquier, the owner of a private school, is far from pleased when his eldest son, Philippe, fails his end of year exams. He decides to send his wayward offspring to England to improve his English. In exchange, Philippe’s host, a wealthy whisky distiller, Mac Farrel, will send his daughter, Shirley, to live with the Bosquiers in France. However, Philippe has already decided to spend the summer holidays on a yacht with his friends, so he sends a fellow student, Michonnet, to England in his place. The deception is soon discovered but things go from bad to worse when Philippe and Shirley fall in love and fly to Scotland to get married...
## 3628 When a band of brutal gangsters led by a crooked property developer make a play to take over the city, Master Ip is forced to take a stand.
## 3629 A boy named Griffin finds a valuable multi-million dollar baseball card. After accidentally selling the card for a million dollar loss, he enlists the help of his best friend Ben and his colleagues to regain the baseball card.
## 3630 An American girl on vacation in Italy finds an unanswered "letter to Juliet" -- one of thousands of missives left at the fictional lover's Verona courtyard, which are typically answered by the "secretaries of Juliet" -- and she goes on a quest to find the lovers referenced in the letter.
## 3631 Fresh off ripping space-time a new one at the end of "Bender's Big Score," the Planet Express crew is back to mend the tear in reality, or (hopefully) at least not make it worse. Beyond the tear, though, lurks a being of inconceivable...tentacularity. What will become of Earth, and indeed, our universe, when faced with the Beast with a Billion Backs?
## 3632 A chronicle of the life of 18th century aristocrat Georgiana, Duchess of Devonshire, who was reviled for her extravagant political and personal life.
## 3633 After working as a drug courier and getting into a brutal shootout with police, a former boxer finds himself at the mercy of his enemies as they force him to instigate violent acts that turn the prison he resides in into a battleground.
## 3634 With the help of his girlfriend Cathy and Dr. Fong, a psychiatrist, ambitious journalist Johnny Barrett poses as a madman in order to be admitted to a mental institution where a bloody murder has been committed.
## 3635 A man suffering from anterograde amnesia as a result of a violent attack in the past sets out to avenge his girlfriend's death with the aid of photographs, notes and tattoos all over his body.
## 3636 On a stormy night, young Jim, who transports a luxury car from Chicago to California to deliver it to its owner, feeling tired and sleepy, picks up a mysterious hitchhiker, who has appeared out of nowhere, thinking that a good conversation will help him not to fall asleep. He will have enough time to deeply regret such an unmeditated decision.
## 3637 A drug pusher grows increasingly desperate after a botched deal leaves him with a large debt to a ruthless drug lord.
## 3638 The Queen is an intimate behind the scenes glimpse at the interaction between HM Elizabeth II and Prime Minister Tony Blair during their struggle, following the death of Diana, to reach a compromise between what was a private tragedy for the Royal family and the public's demand for an overt display of mourning.
## 3639 Depressed single mom Adele and her son Henry offer a wounded, fearsome man a ride. As police search town for the escaped convict, the mother and son gradually learn his true story as their options become increasingly limited.
## 3640 Surf's up for Barbie as she returns as Merliah, the fun and fashionable surfing champion who's also a magical mermaid princess! In this exciting sea-quel, Merliah makes a splash when she heads to Australia for the ultimate surfing competition. When the evil mermaid Eris escapes from her whirlpool with plans to take over the throne of Oceana, Merliah and her sea friends dive in to stop her. It's a fresh new adventure where Merliah learns that anything is possible and she really can have the best of both worlds!
## 3641 A sinful martial arts expert wants to start a new tranquil life, only to be hunted by a determined detective and his former master.
## 3642 Mary Henry ends up the sole survivor of a fatal car accident through mysterious circumstances. Trying to put the incident behind her, she moves to Utah and takes a job as a church organist. But her fresh start is interrupted by visions of a fiendish man. As the visions begin to occur more frequently, Mary finds herself drawn to the deserted carnival on the outskirts of town. The strangely alluring carnival may hold the secret to her tragic past.
## 3643 When Ashtray moves to South Central L.A. to live with his father (who appears to be the same age he is) and grandmother (who likes to talk tough and smoke reefer), he falls in with his gang-banging cousin Loc Dog, who along with the requisite pistols and Uzi carries a thermo-nuclear warhead for self-defense. Will Ashtray be able to keep living the straight life?
## 3644 The world's most highly qualified crew of archaeologists and explorers is led by historian Milo Thatch as they board the incredible 1,000-foot submarine Ulysses and head deep into the mysteries of the sea. The underwater expedition takes an unexpected turn when the team's mission must switch from exploring Atlantis to protecting it.
## 3645 'Der Baader Meinhof Komplex' depicts the political turmoil in the period from 1967 to the bloody "Deutschen Herbst" in 1977. The movie approaches the events based on Stefan Aust's standard work on the Rote Armee Fraktion (RAF). The story centers on the leadership of the self named anti-fascist resistance to state violence: Andreas Baader, Ulrike Meinhof and Gudrun Ensslin.
## 3646 A young couple living in a Connecticut suburb during the mid-1950s struggle to come to terms with their personal problems while trying to raise their two children. Based on a novel by Richard Yates.
## 3647 Laura and John, grieved by a terrible loss, meet in Venice, where John is in charge of the restoration of a church, two mysterious sisters, one of whom gives them a message sent from the afterlife.
## 3648 A live-action adaptation of Disney's version of the classic tale of a cursed prince and a beautiful young woman who helps him break the spell.
## 3649 After her husband dies, Alice and her son, Tommy, leave their small New Mexico town for California, where Alice hopes to make a new life for herself as a singer. Money problems force them to settle in Arizona instead, where Alice takes a job as waitress in a small diner.
## 3650 In a Paris hotel room, Jack Whitman lies on a bed. His phone rings; it's a woman on her way to see him, a surprise. She arrives and the complications of their relationship emerge in bits and pieces. Will they make love? Is their relationship over? (A prequel to The Darjeeling Limited, 2007.)
## 3651 An interstellar teleportation device, found in Egypt, leads to a planet with humans resembling ancient Egyptians who worship the god Ra.
## 3652 A struggling writer finds a shortcut to fame, but a blackmailer threatens to ruin his perfect life.
## 3653 When Mr. Freeze kidnaps Barbara Gordon, as an involuntary organ donor to save his dying wife, Batman and Robin must find her before the operation can begin.
## 3654 During the final weeks of a presidential race, the President is accused of sexual misconduct. To distract the public until the election, the President's adviser hires a Hollywood producer to help him stage a fake war.
## 3655 In a world where people collect pocket-size monsters (Pokémon) to do battle, a boy comes across an intelligent monster who seeks to be a detective.
## 3656 The team of people who saved Winter's life reassemble in the wake of her surrogate mother's passing in order to find her a companion so she can remain at the Clearwater Marine Hospital.
## 3657 A childless couple bury a box in their backyard, containing all of their wishes for an infant. Soon, a child is born, though Timothy Green is not all that he appears.
## 3658 A small-time hood shoots his way to the top, but how long can he stay there?
## 3659 Following the dumping of gallons of toxic waste in the river, a giant mutated squid-like creature appears and begins attacking the populace. Gang-du's daughter Hyun-seo is snatched up by the creature; with his family to assist him, he sets off to find her.
## 3660 When photos of her at a party cause her to lose a scholarship, a student investigates whether something devastating happened to her that night.
## 3661 Stranded at a rest stop in the mountains during a blizzard, a recovering addict discovers a kidnapped child hidden in a car belonging to one of the people inside the building which sets her on a terrifying struggle to identify who among them is the kidnapper.
## 3662 A glimpse at the life of French singer Serge Gainsbourg, from growing up in 1940s Nazi-occupied Paris through his successful song-writing years in the 1960s to his death in 1991 at the age of 62.
## 3663 On behalf of "oppressed bugs everywhere," an inventive ant named Flik hires a troupe of warrior bugs to defend his bustling colony from a horde of freeloading grasshoppers led by the evil-minded Hopper.
## 3664 After being resurrected by a sinister entity, Art the Clown returns to Miles County where he must hunt down and destroy a teenage girl and her younger brother on Halloween night. As the body count rises, the siblings fight to stay alive while uncovering the true nature of Art's evil intent.
## 3665 Light Yagami finds the "Death Note," a notebook with the power to kill, and decides to create a Utopia by killing the world's criminals, and soon the world's greatest detective, "L," is hired to find the mysterious murderer. An all out battle between the two greatest minds on earth begins and the winner will control the world.
## 3666 Just when his time under house arrest is about to end, Scott Lang once again puts his freedom at risk to help Hope van Dyne and Dr. Hank Pym dive into the quantum realm and try to accomplish, against time and any chance of success, a very dangerous rescue mission.
## 3667 The Winter Feast is Po's favorite holiday. Every year he and his father hang decorations, cook together, and serve noodle soup to the villagers. But this year Shifu informs Po that as Dragon Warrior, it is his duty to host the formal Winter Feast at the Jade Palace. Po is caught between his obligations as the Dragon Warrior and his family traditions: between Shifu and Mr. Ping.
## 3668 At the dawn of WWII, several men escape from a Russian gulag—to take a perilous and uncertain journey to freedom as they cross deserts, mountains and several nations.
## 3669 Veteran Secret Service agent Frank Horrigan is a man haunted by his failure to save President Kennedy while serving protection detail in Dallas. Thirty years later, a man calling himself "Booth" threatens the life of the current President, forcing Horrigan to come back to protection detail to confront the ghosts from his past.
## 3670 The story of Ajatashatru Oghash Rathod, a fakir who tricks his local village in Rajasthan, India into believing he possesses special powers and into paying him to fly to Paris to buy a bed of nails from an Ikea store.
## 3671 In a world plagued by demons who cause great human suffering, young demon hunter Tang Sanzang must fight against monstrous demons, as well as contend with a beautiful demon hunting woman on his path to enlightenment.
## 3672 Based on the true childhood experiences of Noah Baumbach and his brother, The Squid and the Whale tells the touching story of two young boys dealing with their parents' divorce in Brooklyn in the 1980s.
## 3673 The story of Dian Fossey, a scientist who came to Africa to study the vanishing mountain gorillas, and later fought to protect them.
## 3674 Macbeth, the Thane of Glamis, receives a prophecy from a trio of witches that one day he will become King of Scotland. Consumed by ambition and spurred to action by his wife, Macbeth murders his king and takes the throne for himself.
## 3675 Megan is an all-American girl. A cheerleader. She has a boyfriend. But Megan doesn't like kissing her boyfriend very much. And she's pretty touchy with her cheerleader friends. Her conservative parents worry that she must be a lesbian and send her off to "sexual redirection" school, where she must, with other lesbians and gays learn how to be straight.
## 3676 An independent, single mother who owns a small hotel on a Greek island is about to marry off the spirited young daughter she's raised alone. But, the daughter has secretly invited three of her mother's ex-lovers in the hopes of finding her biological father.
## 3677 In 1931, three Aboriginal girls escape after being plucked from their homes to be trained as domestic staff, and set off on a trek across the Outback.
## 3678 England, 1600. Queen Elizabeth I promises Orlando, a young nobleman obsessed with poetry, that she will grant him land and fortune if he agrees to satisfy a very particular request.
## 3679 An ambitious Indian driver uses his wit and cunning to escape from poverty and rise to the top. An epic journey based on the New York Times bestseller.
## 3680 Max is a battle-weary veteran of the wedding-planning racket. His latest — and last — gig is a hell of a fête, involving stuffy period costumes for the caterers, a vain, hyper- sensitive singer who thinks he's a Gallic James Brown, and a morose, micromanaging groom determined to make Max's night as miserable as possible. But what makes the affair too bitter to endure is that Max's colleague and ostensible girlfriend, Joisette, seems to have written him off, coolly going about her professional duties while openly flirting with a much younger server. It's going to be a very long night… especially once the groom's aerial serenade gets underway.
## 3681 The story of French high-wire artist Philippe Petit's attempt to cross the Twin Towers of the World Trade Center in 1974.
## 3682 A down-on-his-luck coach is hired to prepare a team of the best American dancers for an international tournament that attracts all the best crews from around the world, but the Americans haven't won in fifteen years.
## 3683 Ever since she served on the jury during his trial, Nora has been convinced that Jacques Viguier is innocent, despite him being accused of murdering his wife. Following an appeal by the public prosecutor’s office, and fearing a miscarriage of justice, she convinces a leading lawyer to defend him during his second trial, on appeal. Together, they will put up a tenacious fight against injustice.
## 3684 A mother and daughter move to a small French town where they open a chocolate shop. The town, religious and morally strict, is against them, as they represent free-thinking and indulgence. When a group of Boat Gypsies float down the river, the prejudice of the Mayor leads to a crisis.
## 3685 A woman with a mysterious illness is forced into action when a group of terrorists attempt to hijack a transatlantic overnight flight. In order to protect her son she will have to reveal a dark secret, and unleash the inner monster she has fought to hide.
## 3686 Troubled teen Will Hawkins has a run-in with the law that puts him at an important crossroad: go to juvenile detention or attend a Christian summer camp. At first a fish-out-of-water, Will opens his heart, discovers love with a camp regular, and sense of belonging in the last place he expected to find it.
## 3687 Former Marine Louanne Johnson lands a gig teaching in a pilot program for bright but underachieving teens at a notorious inner-city high school. After having a terrible first day, she decides she must throw decorum to the wind. When Johnson returns to the classroom, she does so armed with a no-nonsense attitude informed by her military training and a fearless determination to better the lives of her students -- no matter what the cost.
## 3688 Teacher and novelist François Bégaudeau plays a version of himself as he negotiates a year with his racially mixed students from a tough Parisian neighborhood.
## 3689 After a remote diamond mine collapses in far northern Canada, an ice road driver must lead an impossible rescue mission over a frozen ocean to save the trapped miners.
## 3690 The true story of fraudulent Washington, D.C. journalist Stephen Glass, who rose to meteoric heights as a young writer in his 20s, becoming a staff writer at The New Republic for three years. Looking for a short cut to fame, Glass concocted sources, quotes and even entire stories, but his deception did not go unnoticed forever, and eventually, his world came crumbling down.
## 3691 The assassin Deathstroke tries to save his family from the wrath of H.I.V.E. and the murderous Jackal.
## 3692 There once was a pirate known as the Great Gold Pirate Woonan, who obtained almost one-third of the world's gold. Over the course of a few years, the pirate's existence faded, and a legend grew that he disappeared with his gold to a remote island, an island pirates continue to search for. Aboard the Going Merry, Luffy and his crew, starved and reckless, are robbed of their treasure. In an attempt to get it back, they wreck the getaway ship, guided by a young boy named Tobio, who's a captured part of El Drago's pirate crew. El Drago's love for gold has driven him to look for Woonan's island, and thanks to Woonan's treasure map, he finds it. During this time, Luffy's crew have been split up, and despite their own circumstances, they must find a way to stop El Drago from obtaining Woonan's gold.
## 3693 In the second installment of the Death Note film franchise, Light Yagami meets a second Kira and faithful follower Misa Amane and her Shinigami named Rem. Light attempts to defeat L along with Teru Mikami (a Kira follower) and Kiyomi Takada (another Kira follower) but in the end will Light win? or will a Shinigami named Ryuk make all the difference in Light's victory or his ultimate death?
## 3694 A race car driver tries to transport an illegal beer shipment from Texas to Atlanta in under 28 hours, picking up a reluctant bride-to-be on the way.
## 3695 Fifty years into the future, the sun is dying, and Earth is threatened by arctic temperatures. A team of astronauts is sent to revive the Sun — but the mission fails. Seven years later, a new team is sent to finish the mission as mankind’s last hope.
## 3696 A college student, who sees a UFO, uses his exceptional math skills to investigate the sighting with his friends while the FBI follows closely behind.
## 3697 An aging Latin lover gets dumped by his sugar mama and must fend for himself in a harsh world.
## 3698 Sam and Tusker, partners of 20 years, are traveling across England in their old RV visiting friends, family and places from their past. Since Tusker was diagnosed with early-onset dementia two years ago, their time together is the most important thing they have. As the trip progresses, however, their ideas for the future clash, secrets come out, and their love for each other is tested as never before. Ultimately, they must confront the question of what it means to love one another in the face of Tusker’s illness.
## 3699 A serial killer strikes fear in the hearts of residents of Hamburg during the early 1970s.
## 3700 A German soldier tries to determine if the Dutch resistance has planted a spy to infiltrate the home of Kaiser Wilhelm in Holland during the onset of World War II, but falls for a young Jewish Dutch woman during his investigation.
## 3701 Welcome to Hotel Transylvania, Dracula's lavish five-stake resort, where monsters and their families can live it up and no humans are allowed. One special weekend, Dracula has invited all his best friends to celebrate his beloved daughter Mavis's 118th birthday. For Dracula catering to all of these legendary monsters is no problem but the party really starts when one ordinary guy stumbles into the hotel and changes everything!
## 3702 A "metal fetishist", driven mad by the maggots wriggling in the wound he's made to embed metal into his flesh, runs out into the night and is accidentally run down by a Japanese businessman and his girlfriend. The pair dispose of the corpse in hopes of quietly moving on with their lives. However, the businessman soon finds that he is now plagued by a vicious curse that transforms his flesh into iron.
## 3703 Charlie Kenton is a washed-up fighter who retired from the ring when robots took over the sport. After his robot is trashed, he reluctantly teams up with his estranged son to rebuild and train an unlikely contender.
## 3704 Accomplished sailor Charlie St. Cloud has the adoration of his mother Claire and his little brother Sam, as well as a college scholarship that will lead him far from his sleepy Pacific Northwest hometown. But his bright future is cut short when a tragedy strikes and takes his dreams with it. After his high-school classmate Tess returns home unexpectedly, Charlie grows torn between honoring a promise he made four years earlier and moving forward with newfound love. And as he finds the courage to let go of the past for good, Charlie discovers the soul most worth saving is his own.
## 3705 Young Travis Coates is left to take care of the family ranch with his mother and younger brother while his father goes off on a cattle drive in the 1860s. When a yellow mongrel comes for an uninvited stay with the family, Travis reluctantly adopts the dog.
## 3706 When a huge snowstorm leaves everyone stranded, Mickey and all of his guests at the House of Mouse, including Pooh, Belle, Snow White, Cinderella, Ariel and many more of his old and new friends, break out the cookies and hot chocolate to help Donald mend his tattered Christmas spirit.
## 3707 Though Goofy always means well, his amiable cluelessness and klutzy pratfalls regularly embarrass his awkward adolescent son, Max. When Max's lighthearted prank on his high-school principal finally gets his longtime crush, Roxanne, to notice him, he asks her on a date. Max's trouble at school convinces Goofy that he and the boy need to bond over a cross-country fishing trip like the one he took with his dad when he was Max's age, which throws a kink in his son's plans to impress Roxanne.
## 3708 The tension is palpable, the excitement is mounting and the heady scent of competition is in the air as hundreds of eager contestants from across America prepare to take part in what is undoubtedly one of the greatest events of their lives -- the Mayflower Dog Show. The canine contestants and their owners are as wondrously diverse as the great country that has bred them.
## 3709 After a tragic accident, six friends reunite for a caving expedition. Their adventure soon goes horribly wrong when a collapse traps them deep underground and they find themselves pursued by bloodthirsty creatures. As their friendships deteriorate, they find themselves in a desperate struggle to survive the creatures and each other.
## 3710 Love never hurt so good for two co-workers who enter a contractual relationship as partners in consensual play, pleasure and pain.
## 3711 When Ethan Hunt, the leader of a crack espionage team whose perilous operation has gone awry with no explanation, discovers that a mole has penetrated the CIA, he's surprised to learn that he's the No. 1 suspect. To clear his name, Hunt now must ferret out the real double agent and, in the process, even the score.
## 3712 A motorcycle stunt rider considers committing a crime in order to provide for his wife and child, an act that puts him on a collision course with a cop-turned-politician.
## 3713 A story centered on the friendship between a boy and a dolphin whose tail was lost in a crab trap.
## 3714 Famous organist Anton Phibes is horribly disfigured in an automobile accident while rushing to the side of his sick wife and presumed to be dead. Once Phibes learns that his wife died on the operating table, he is convinced the doctors are responsible and begins exacting his revenge on all those involved.
## 3715 When a Russian mobster sets up a real estate scam that generates millions of pounds, various members of London's criminal underworld pursue their share of the fortune. Various shady characters, including Mr One-Two, Stella the accountant, and Johnny Quid, a druggie rock-star, try to claim their slice.
## 3716 Zia, distraught over breaking up with his girlfriend, decides to end it all. Unfortunately, he discovers that there is no real ending, only a run-down afterlife that is strikingly similar to his old one, just a bit worse. Discovering that his ex-girlfriend has also "offed" herself, he sets out on a road trip to find her.
## 3717 When average, law-abiding citizens suddenly turn to a life of hedonistic behavior and violent crime, Detective Tom Beck is tasked with helping young FBI agent Lloyd Gallagher determine the cause.
## 3718 In this Shakespearean farce, Hero and her groom-to-be, Claudio, team up with Claudio's commanding officer, Don Pedro, the week before their wedding to hatch a matchmaking scheme. Their targets are sharp-witted duo Benedick and Beatrice -- a tough task indeed, considering their corresponding distaste for love and each other. Meanwhile, meddling Don John plots to ruin the wedding.
## 3719 Larry Flynt is the hedonistically obnoxious, but indomitable, publisher of Hustler magazine. The film recounts his struggle to make an honest living publishing his girlie magazine and how it changes into a battle to protect the freedom of speech for all people.
## 3720 Like his father, Tom is a real estate agent who makes his money from dirty, and sometimes brutal, deals. But a chance encounter prompts him to take up the piano and become a concert pianist. He auditions with the help of a beautiful, young virtuoso pianist who cannot speak French - music is their only exchange. But pressures from the ugly world of his day job soon become more than he can handle...
## 3721 Two overworked and underpaid assistants come up with a plan to get their bosses off their backs by setting them up with each other.
## 3722 After 20 years abroad, Mark Renton returns to Scotland and reunites with his old friends Sick Boy, Spud and Begbie.
## 3723 In the town of Blithe Hollow, Norman Babcock can speak to the dead, but no one other than his eccentric new friend believes his ability is real. One day, Norman's eccentric uncle tells him of a ritual he must perform to protect the town from a curse cast by a witch centuries ago.
## 3724 Brandon, a thirty-something man living in New York, eludes intimacy with women but feeds his deepest desires with a compulsive addiction to sex. When his younger sister temporarily moves into his apartment, stirring up bitter memories of their shared painful past, Brandon's life, like his fragile mind, gets out of control.
## 3725 In Tuscany to promote his latest book, a middle-aged English writer meets a French woman who leads him to the village of Lucignano.
## 3726 Detective Sergeant Ma Jun, known for dispensing his own brand of justice during arrests, teams up with an undercover cop, Wilson, to try and bring down three merciless Vietnamese brothers running a smuggling ring in the months before mainland China's takeover of Hong Kong. Jun pursues the gang tirelessly, sometimes ignoring police protocols. A showdown is inevitable!
## 3727 After Custer and the 7th Cavalry are wiped out by Native Americans, everyone expects the worst. Capt. Nathan Brittles is ordered out on patrol but he's also required to take along Abby Allshard, wife of the Fort's commanding officer, and her niece Olivia Dandridge, who are being evacuated. Brittles is only a few days away from retirement and Olivia has caught the eye of two of the young officers in the Company. She's taken to wearing a yellow ribbon in her hair, a sign that she has a beau in the Cavalry, but refuses to say for whom she is wearing it.
## 3728 Siblings Wednesday and Pugsley Addams will stop at nothing to get rid of Pubert, the new baby boy adored by parents Gomez and Morticia. Things go from bad to worse when the new "black widow" nanny, Debbie Jellinsky, launches her plan to add Fester to her collection of dead husbands.
## 3729 After marrying a successful Parisian writer known commonly as Willy, Sidonie-Gabrielle Colette is transplanted from her childhood home in rural France to the intellectual and artistic splendor of Paris. Soon after, Willy convinces Colette to ghostwrite for him. She pens a semi-autobiographical novel about a witty and brazen country girl named Claudine, sparking a bestseller and a cultural sensation. After its success, Colette and Willy become the talk of Paris and their adventures inspire additional Claudine novels.
## 3730 In the not-too-distant future the aging gene has been switched off. To avoid overpopulation, time has become the currency and the way people pay for luxuries and necessities. The rich can live forever, while the rest try to negotiate for their immortality. A poor young man who comes into a fortune of time, though too late to help his mother from dying. He ends up on the run from a corrupt police force known as 'time keepers'.
## 3731 Several years after leaving the orphanage, to which her father never returned for her, Gabrielle Chanel finds herself working in a provincial bar. She's both a seamstress for the performers and a singer, earning the nickname Coco from the song she sings nightly with her sister. A liaison with Baron Balsan gives her an entree into French society and a chance to develop her gift for designing.
## 3732 It's Christmas Eve in Tinseltown and Sin-Dee is back on the block. Upon hearing that her pimp boyfriend hasn't been faithful during the 28 days she was locked up, the working girl and her best friend, Alexandra, embark on a mission to get to the bottom of the scandalous rumor. Their rip-roaring odyssey leads them through various subcultures of Los Angeles, including an Armenian family dealing with their own repercussions of infidelity.
## 3733 Noni Jean is a hot new rising star. But not all is what it seems, and the pressure causes Noni to nearly fall apart - until she meets Kaz Nicol, a promising young cop and aspiring politician who's been assigned to her detail. Can Kaz's love give Noni the courage to find her own voice and break free to become the artist she was meant to be?
## 3734 In this captivating Depression-era melodrama, impetuous veterinary student Jacob Jankowski joins a celebrated circus as an animal caretaker but faces a wrenching dilemma when he's transfixed by angelic married performer Marlena.
## 3735 When young Victor's pet dog Sparky (who stars in Victor's home-made monster movies) is hit by a car, Victor decides to bring him back to life the only way he knows how. But when the bolt-necked "monster" wreaks havoc and terror in the hearts of Victor's neighbors, he has to convince them (and his parents) that despite his appearance, Sparky's still the good loyal friend he's always been.
## 3736 Inspired by the true story of Vince Papale, a man with nothing to lose who ignored the staggering odds and made his dream come true. When the coach of Papale's beloved hometown football team hosted an unprecedented open tryout, the public consensus was that it was a waste of time – no one good enough to play professional football was going to be found this way.
## 3737 C.S. Lewis, a world-renowned writer and professor, leads a passionless life until he meets spirited poet Joy Gresham.
## 3738 Remake of the popular Disney classic, this time featuring some well known voices as two dogs and a cat trek across America encountering all sorts of adventures in the quest to be reunited with their owners.
## 3739 Martin Blank is a hitman for hire. When he starts to develop a conscience, he botches a couple of routine jobs. On the advice of his secretary and his psychiatrist, he decides to attend his ten-year high school reunion in Grosse Pointe, Michigan.
## 3740 A transit worker pulls commuter Peter off railway tracks after he's mugged, but—while he's in a coma—his family mistakenly thinks she's Peter's fiancée, and she doesn't correct them. Things get more complicated when she falls for his brother, who's not quite sure that she's who she claims to be.
## 3741 On the eve of her college graduation, Natalie's life diverges into two parallel realities: one in which she becomes pregnant and must navigate motherhood as a young adult in her Texas hometown, the other in which she moves to LA to pursue her career. In both journeys throughout her twenties, Natalie experiences life-changing love, devastating heartbreak and rediscovers herself.
## 3742 Suspicious that her colleague is responsible for a series of mysterious patient deaths, a nurse risks her own life to uncover the truth.
## 3743 International art dealer Ron Hall must befriend a dangerous homeless man in order to save his struggling marriage to his wife, a woman whose dreams will lead all three of them on the journey of their lives.
## 3744 A cattle herder and his family who reside in the dunes of Timbuktu find their quiet lives -- which are typically free of the Jihadists determined to control their faith -- abruptly disturbed. A look at the brief occupation of Timbuktu by militant Islamic rebels.
## 3745 Phineas and Ferb get trapped in an alternate dimension where the evil Doofenshmirtz rules the tri-state area. They must find a way back home with the help of their pet platypus named Perry, who they discover is a secret agent.
## 3746 Popular animated hero Asterix and his faithful sidekick Obelix travel to ancient Egypt to help Cleopatra build a new summer home. Cleopatra and Julius Caesar have made a bet, with Caesar wagering the project cannot be completed in a few weeks time. With the help of a magic potion, Asterix comes to the rescue of the Queen of the Nile as Caesar and an angry architect plot against them.
## 3747 Jerry Maguire used to be a typical sports agent: willing to do just about anything he could to get the biggest possible contracts for his clients, plus a nice commission for himself. Then, one day, he suddenly has second thoughts about what he's really doing. When he voices these doubts, he ends up losing his job and all of his clients, save Rod Tidwell, an egomaniacal football player.
## 3748 While participating in a rehabilitation program training wild mustangs, a convict at first struggles to connect with the horses and his fellow inmates, but he learns to confront his violent past as he soothes an especially feisty horse.
## 3749 Richard and Rachel, a couple in the throes of infertility, try to maintain their marriage as they descend deeper and deeper into the insular world of assisted reproduction and domestic adoption.
## 3750 Pennsylvania, 1993. After getting caught with another girl, teenager Cameron Post is sent to a conversion therapy center run by the strict Dr. Lydia Marsh and her brother, Reverend Rick, whose treatment consists in repenting for feeling “same sex attraction.” Cameron befriends fellow sinners Jane and Adam, thus creating a new family to deal with the surrounding intolerance.
## 3751 A small mountain community in Canada is devastated when a school bus accident leaves more than a dozen of its children dead. A big-city lawyer arrives to help the survivors' and victims' families prepare a class-action suit, but his efforts only seem to push the townspeople further apart. At the same time, one teenage survivor of the accident has to reckon with the loss of innocence brought about by a different kind of damage.
## 3752 Isi and Ossi couldn't be any more different: She's a billionaire's daughter from Heidelberg, he's a struggling boxer from the nearby town of Mannheim. But when Isi meets Ossi, the two quickly realize that they can take advantage of one another: She dates the broke boxer to provoke her parents and get them to fund a long-desired chef training in New York. He tries to rip off the rich daughter to finance his first professional boxing match. Their plans soon develop into emotional chaos that challenges everything the two believe to know about money, career and love.
## 3753 Two school kids strike up a friendship with an orphaned puppy named Benji. When danger befalls them and they end up kidnapped by robbers who are in over their heads, Benji and his scruffy sidekick come to the rescue.
## 3754 Phil Broker is a former DEA agent who has gone through a crisis after his action against a biker gang went horribly wrong and it cost the life of his boss' son. He is recently widowed and is left with a 9-years-old daughter, Maddy. He decides to quit the turbulent and demanding life of thrill for Maddy's sake and retires to a small town. His daughter fights off a boy who was bullying her at school and this sets in motion a round of events that end in his direct confrontation with the local Meth drug lord. His past history with the biker gang also enters the arena, making matters more complex. But he has a mission in his mind to protect his daughter and he is ready to pay any cost that it demands.
## 3755 Bumbling supervillain Megamind finally defeats his nemesis, the superhero Metro Man. But without a hero, he loses all purpose and must find new meaning to his life.
## 3756 The circle of life continues for Simba, now fully grown and in his rightful place as the king of Pride Rock. Simba and Nala have given birth to a daughter, Kiara who's as rebellious as her father was. But Kiara drives her parents to distraction when she catches the eye of Kovu, the son of the evil lioness, Zira. Will Kovu steal Kiara's heart?
## 3757 After a night of drinking, Adam Hutcherson stumbles out of the closet to his three straight buddies. A disruption to their dynamic which they now must try and overcome through alcohol, Tinder dates and forgiveness.
## 3758 British retirees travel to India to take up residence in what they believe is a newly restored hotel. Less luxurious than its advertisements, the Marigold Hotel nevertheless slowly begins to charm in unexpected ways as the residents find new purpose in their old age.
## 3759 This film focuses on contemporary 30- and 40-somethings trying to make sense of their lives in an age in which the old certainties have disappeared. Lorenzo and Davide make their lives together within a circle that includes Antonio and Angelica, married with children; Nerval and her policeman husband.
## 3760 The true story of William Wilberforce and his courageous quest to end the British slave trade. Along the way, Wilberforce meets intense opposition, but his minister urges him to see the cause through.
## 3761 A beautiful and mysterious woman helps an inept scam artist get his game together... but is their meeting purely coincidence?
## 3762 As the gang return to Jumanji to rescue one of their own, they discover that nothing is as they expect. The players will have to brave parts unknown and unexplored in order to escape the world’s most dangerous game.
## 3763 Set during the last days of the Ottoman Empire, a love triangle develops between Mikael, a brilliant medical student, the beautiful and sophisticated artist Ana, and Chris, a renowned American journalist based in Paris.
## 3764 On Manhattan's gilded Upper East Side, a young gay painter is torn between an obsession with his infamous best friend and a promising new romance with an older foreign pianist.
## 3765 A family discovers that dark spirits have invaded their home after their son inexplicably falls into an endless sleep. When they reach out to a professional for help, they learn things are a lot more personal than they thought.
## 3766 The story of a farmer forced into conscription, who has been looking to get out of the army ever since. His great chance arrives when he stumbles upon a wounded general from an enemy state, and he kidnaps him, intending to claim credit for the capture, which includes five "mu" of land, and most importantly, honorable discharge from the army.
## 3767 A look at President Richard M. Nixon—a man carrying the fate of the world on his shoulders while battling the self-destructive demands from within—spanning his troubled boyhood in California to the shocking Watergate scandal that would end his Presidency.
## 3768 Dean and Cindy live a quiet life in a modest neighborhood. They appear to have the world at their feet at the outset of the relationship. However, his lack of ambition and her retreat into self-absorption cause potentially irreversible cracks in their marriage.
## 3769 A successful farmyard revolution by the resident animals vs. the farmer goes horribly wrong when corrupt pigs hijack it for their personal gain. Based on the socialist George Orwell’s novel “Animal Farm”, a critique of Stalinist authoritarianism.
## 3770 Spanning over one thousand years, and three parallel stories, The Fountain is a story of love, death, spirituality, and the fragility of our existence in this world.
## 3771 Anna Fritz is a beautiful and famous actress. Suddenly her body is found in a hotel and the news of her death goes around the planet. The young, shy caretaker Pau works at the hospital where they carried the body of Anna Fritz. He and his friends decide to take pictures of the body of Anna Fritz. They decide they could make love to her and nobody would know. They are in front of Anna Fritz ... and can do with it what they want.
## 3772 A young man with Tourette's Syndrome embarks on a road trip with his recently-deceased mother's ashes.
## 3773 After being evicted from their old house by Tom's owner for causing major damage, cat and mouse Tom and Jerry enter a race entitled the "Fabulous Super Race" to win a mansion.
## 3774 A New York sculptor who opens a wax museum to showcase the likenesses of famous historical figures runs into trouble with his business partner, who demands that the exhibits become more extreme in order to increase profits.
## 3775 Is there love after death? After he dies suddenly, the hapless advertising executive Daniel Miller finds himself in Judgment City, a gleaming way station where the newly deceased must prove they lived a life of sufficient courage to advance in their journey through the universe. As the self-doubting Daniel struggles to make his case, a budding relationship with the uninhibited Julia offers him a chance to finally feel alive.
## 3776 A socially awkward but very bright 15-year-old girl being raised by a single mom discovers that she is the princess of a small European country because of the recent death of her long-absent father, who, unknown to her, was the crown prince of Genovia. She must make a choice between continuing the life of a San Francisco teen or stepping up to the throne.
## 3777 In order to finance his law studies, Martin starts as a night watchman in a mortuary. When the victims of a serial killer of prostitutes are deposited there, scary things begin to happen. Therefore and because of a strange bet with his fellow student Jens, the police begins to think he is the murderer. Police detective Wormer wants to help him but Martin is more and more suspected.
## 3778 In 1933, after leaving Dogville, Grace Margaret Mulligan sees a slave being punished at a cotton farm called Manderlay. Officially slavery is illegal and Grace stands up against the owners of the farm. She stays with some gangsters in Manderlay and tries to influence the situation. But when harvest time comes Grace sees the social and economic reality of Manderlay.
## 3779 The lifelong friendship between Rafe McCawley and Danny Walker is put to the ultimate test when the two ace fighter pilots become entangled in a love triangle with beautiful Naval nurse Evelyn Johnson. But the rivalry between the friends-turned-foes is immediately put on hold when they find themselves at the center of Japan's devastating attack on Pearl Harbor on Dec. 7, 1941.
## 3780 A hyper-repressed and schlubby accountant (Jonas Chernick) strikes a deal with a worldly but disorganized stripper (Emily Hampshire): he'll help her with her crushing debt if she helps him become a better lover.
## 3781 Po is now living his dream as The Dragon Warrior, protecting the Valley of Peace alongside his friends and fellow kung fu masters, The Furious Five - Tigress, Crane, Mantis, Viper and Monkey. But Po’s new life of awesomeness is threatened by the emergence of a formidable villain, who plans to use a secret, unstoppable weapon to conquer China and destroy kung fu. It is up to Po and The Furious Five to journey across China to face this threat and vanquish it. But how can Po stop a weapon that can stop kung fu? He must look to his past and uncover the secrets of his mysterious origins; only then will he be able to unlock the strength he needs to succeed.
## 3782 The everyday life of accountant Levante, his family and the other people of a small town in the Tuscan countryside is taken by storm by the serendipitous arrival of five beautiful flamenco dancers from Spain.
## 3783 During their Christmas break, a group of sorority girls are stalked by a stranger who leaves them threatening phone calls.
## 3784 While filing for a divorce, beautiful ex-stripper Roslyn Taber ends up meeting aging cowboy-turned-gambler Gay Langland and former World War II aviator Guido Racanelli. The two men instantly become infatuated with Roslyn and, on a whim, the three decide to move into Guido's half-finished desert home together. When grizzled ex-rodeo rider Perce Howland arrives, the unlikely foursome strike up a business capturing wild horses.
## 3785 Queen Victoria strikes up an unlikely friendship with a young Indian clerk named Abdul Karim.
## 3786 Young American dancer Susie Bannion arrives in 1970s Berlin to audition for the world-renowned Helena Markos Dance Company. When she vaults to the role of lead dancer, the woman she replaces breaks down and accuses the company's female directors of witchcraft. Meanwhile, an inquisitive psychotherapist and a member of the troupe uncover dark and sinister secrets as they probe the depths of the studio's hidden underground chambers.
## 3787 When a car hits young Victor's pet dog Sparky, Victor decides to bring him back to life the only way he knows how. But when the bolt-necked "monster" wreaks havoc and terror in the hearts of Victor's neighbors, he has to convince them that Sparky's still the good, loyal friend he was.
## 3788 Due to a genetic disorder, handsome librarian Henry DeTamble involuntarily zips through time, appearing at various moments in the life of his true love, the beautiful artist Clare Abshire.
## 3789 An account of Baron Munchausen's supposed travels and fantastical experiences with his band of misfits.
## 3790 A group of 12 teenagers from various backgrounds enroll at the American Ballet Academy in New York to make it as ballet dancers and each one deals with the problems and stress of training and getting ahead in the world of dance.
## 3791 Almost a decade has elapsed since Bowiesque glam-rock superstar Brian Slade escaped the spotlight of the London scene. Now, investigative journalist Arthur Stuart is on assignment to uncover the truth behind the enigmatic Slade. Stuart, himself forged by the music of the 1970s, explores the larger-than-life stars who were once his idols and what has become of them since the turn of the new decade.
## 3792 Bruce Wayne faces a deadly menace from his past, with the help of three former classmates: world-renowned martial artists Richard Dragon, Ben Turner and Lady Shiva.
## 3793 In the wake of his dramatic escape from captivity, Jesse Pinkman must come to terms with his past in order to forge some kind of future.
## 3794 The Swedish Björn Borg and the American John McEnroe, the best tennis players in the world, maintain a legendary duel during the 1980 Wimbledon tournament.
## 3795 A decade after the death of an American TV star, a young actor reminisces about the written correspondence he once shared with the former, as well as the impact those letters had on both their lives.
## 3796 A beautiful princess born in a faraway kingdom is destined by a terrible curse to prick her finger on the spindle of a spinning wheel and fall into a deep sleep that can only be awakened by true love's first kiss. Determined to protect her, her parents ask three fairies to raise her in hiding. But the evil Maleficent is just as determined to seal the princess's fate.
## 3797 Quan is a humble London businessman whose long-buried past erupts in a revenge-fueled vendetta when the only person left for him to love – his teenage daughter – dies in an Irish Republican Army car bombing. His relentless search to find the terrorists leads to a cat-and-mouse conflict with a British government official whose own past may hold the clues to the identities of the elusive killers.
## 3798 Barbie plays Lumina, a mermaid girl with the power to change the color of pearls. Cheerful and creative, Lumina finds herself working in a mermaid salon customizing fabulous hairstyles. And when Lumina has the chance to attend the royal ball, her friends adorn her with a gown fit for a princess. At the ball, villains try to seize power over the kingdom, and Lumina finds within herself an unexpected power that proves she is much more than a hair stylist.
## 3799 Slowed by age and failing eyesight, crack baseball scout Gus Lobel takes his grown daughter along as he checks out the final prospect of his career. Along the way, the two renew their bond, and she catches the eye of a young player-turned-scout.
## 3800 A soldier from Earth crashlands on an alien world after sustaining battle damage. Eventually he encounters another survivor, but from the enemy species he was fighting; they band together to survive on this hostile world. In the end the human finds himself caring for his enemy in a completely unexpected way.
## 3801 Dominic Toretto is a Los Angeles street racer suspected of masterminding a series of big-rig hijackings. When undercover cop Brian O'Conner infiltrates Toretto's iconoclastic crew, he falls for Toretto's sister and must choose a side: the gang or the LAPD.
## 3802 A paedophile returns to his hometown after 12 years in prison and attempts to start a new life.
## 3803 In this Oscar-nominated short from The Simpsons, Maggie must navigate an eventful first day in daycare. At the Ayn Rand School for Tots, Maggie is diagnosed with average intelligence. Barred from the gifted children, she longs to escape from her glue-guzzling classmates. But when a lonely caterpillar befriends her, she makes it her mission to save it from a ruthless butterfly smashing toddler
## 3804 Two Los Angeles homicide detectives are dispatched to a northern town where the sun doesn't set to investigate the methodical murder of a local teen.
## 3805 Jackie Justice is a mixed martial arts fighter who leaves the sport in disgrace. Down on her luck and simmering with rage and regret years after the fight, she's coaxed into a brutal underground fight by her manager and boyfriend Desi and grabs the attention of a fight league promoter who promises Jackie a life back in the Octagon. But the road to redemption becomes unexpectedly personal when Manny - the son she gave up as an infant - shows up at her doorstep. A triumphant story of a fighter who reclaims her power, in and out of the ring, when everyone has counted her out
## 3806 Alone on a tiny deserted island, Hank has given up all hope of ever making it home again. But one day everything changes when a dead body washes ashore, and he soon realizes it may be his last opportunity to escape certain death. Armed with his new “friend” and an unusual bag of tricks, the duo go on an epic adventure to bring Hank back to the woman of his dreams.
## 3807 The Rizzos, a family who doesn't share their habits, aspirations, and careers with one another, find their delicate web of lies disturbed by the arrival of a young ex-con brought home by Vince, the patriarch of the family, who is a corrections officer in real life, and a hopeful actor in private.
## 3808 After witnessing a mysterious woman brutally slay a homemaker, prostitute Liz Blake finds herself trapped in a dangerous situation. While the police thinks she is the murderer, the real killer is intent on silencing her only witness.
## 3809 Pocahontas, daughter of a Native American tribe chief, falls in love with an English soldier as colonists invade 17th century Virginia.
## 3810 Residents in a lonely gulch of inland California bear witness to an uncanny, chilling discovery.
## 3811 Lukas, a young farmer whose family is killed by savage raiders in the countryside, sets out on an epic quest for revenge, forming an unlikely trio with a majestic dragon and a swashbuckling, sword-fighting mercenary, Darius.
## 3812 Jim Hanson’s quiet life is suddenly disturbed by two people crossing the US/Mexico border – a woman and her young son – desperate to flee a Mexican cartel. After a shootout leaves the mother dead, Jim becomes the boy’s reluctant defender. He embraces his role as Miguel’s protector and will stop at nothing to get him to safety, as they go on the run from the relentless assassins.
## 3813 Belle and Sebastian is set high in the snowy Alps during the Second World War. The resourceful Sebastian is a lonely boy who tames and befriends a giant, wild mountain dog, Belle – even though the villagers believe her to be ‘the beast’ that has been killing their sheep.
## 3814 Despite her sheltered upbringing, Jenny is a teen with a bright future; she's smart, pretty, and has aspirations of attending Oxford University. When David, a charming but much older suitor, motors into her life in a shiny automobile, Jenny gets a taste of adult life that she won't soon forget.
## 3815 Brad Whitewood Jr. lives in rural Pennsylvania and has few prospects. Against his mother's wishes, he seeks out his estranged father, the head of a gang of thieves in a nearby town. Though his new girlfriend supports his criminal ambitions, Brad Jr. soon learns that his father is a dangerous man. Inspired by the real events that led to the end of the Johnston Gang, who operated in the northeastern United States in the 1970s.
## 3816 A briefcase with undisclosed contents – sought by Irish terrorists and the Russian mob – makes its way into criminals' hands. An Irish liaison assembles a squad of mercenaries, or 'ronin', and gives them the thorny task of recovering the case.
## 3817 Chan, an articulate senior detective nearing the end of his career, is taking care of the daughter of a witness killed by ruthless crime lord Po. Martial arts expert Ma is set to take over as head of the crime unit, replacing Chan who wants an early retirement.
## 3818 This film is a glimpse into the life, love and the unconquerable spirit of the legendary Bruce Lee. From a childhood of rigorous martial arts training, Lee realizes his dream of opening his own kung-fu school in America. Before long, he is discovered by a Hollywood producer and begins a meteoric rise to fame and an all too short reign as one the most charismatic action heroes in cinema history.
## 3819 After discovering he's not really black like the rest of his family, likable dimwit Navin Johnson runs off on a hilarious misadventure in this comedy classic that takes him from rags to riches and back to rags again. The slaphappy jerk strikes it rich, but life in the fast lane isn't all it's cracked up to be and, in the end, all that really matters to Johnson is his true love.
## 3820 The major sub-plot circles around the youngest Griffin, Stewie, who has a near-death experience at a pool when a lifeguard chair falls on him, but he survives. After having a vision of being in Hell, he decides to change his ways, but this doesn't last long. While watching television, he and Brian spot a man that looks like Stewie. Brian is convinced that he is Stewie's real father, until Stewie learns that the man is actually himself as an adult, taking a vacation from his own time period. Baby Stewie visits thirty years later to discover that his adult self, going by the name Stu, is a single blue-collar middle-aged virgin working at a Circuit City-type store. Meanwhile, Peter and Lois are trying to teach their two older kids, Meg and Chris, to date. In the future, Chris, who hasn't changed much, is working as a cop and is married to a foul-mouthed hustler named Vanessa. Meg is now called Ron, since she had a sex-change after college. Written by pepperann210
## 3821 In the winter of 1944, the Allied Armies stand ready to invade Germany at the coming of a New Year. To prevent it, Hitler orders an all-out offensive to re-take French territory and capture the major port city of Antwerp.
## 3822 A small, turbulent town in Texas obsesses over their high school football team to an unhealthy degree. When the star tailback, Boobie Miles, is seriously injured during the first game of the season, all hope is lost, and the town's dormant social problems begin to flare up. It is left to the inspiring abilities of new coach Gary Gaines to instill in the other team members -- and, by proxy, the town itself -- a sense of self-respect and honor.
## 3823 An independent group of researchers called the Godzilla Prediction Network (GPN) actively track Godzilla as he makes landfall in Nemuro. Matters are further complicated when a giant meteor is discovered in the Ibaragi Prefecture. The mysterious rock begins to levitate as it's true intentions for the world and Godzilla are revealed.
## 3824 When a seemingly straight-forward drug deal goes awry, XXXX has to break his die-hard rules and turn up the heat, not only to outwit the old regime and come out on top, but to save his own skin...
## 3825 In this classic story of love and devotion set against the backdrop of the American Civil War, a wounded Confederate soldier named W.P. Inman deserts his unit and travels across the South, aiming to return to his young wife, Ada, who he left behind to tend their farm. As Inman makes his perilous journey home, Ada struggles to keep their home intact with the assistance of Ruby, a mysterious drifter sent to help her by a kindly neighbor.
## 3826 The trademark of The Phantom, a renowned jewel thief, is a glove left at the scene of the crime. Inspector Clouseau, an expert on The Phantom's exploits, feels sure that he knows where The Phantom will strike next and leaves Paris for the Tyrolean Alps, where the famous Lugashi jewel 'The Pink Panther' is going to be. However, he does not know who The Phantom really is, or for that matter who anyone else really is...
## 3827 Two childhood friends are recruited for a suicide bombing in Tel Aviv.
## 3828 When students in their high school begin inexplicably exploding (literally), seniors Mara and Dylan struggle to survive in a world where each moment may be their last.
## 3829 Miles Monroe, a clarinet-playing health food store proprietor, is revived out of cryostasis 200 years into a future world in order to help rebels fight an oppressive government regime.
## 3830 A US Fighter pilot's epic struggle of survival after being shot down on a mission over Laos during the Vietnam War.
## 3831 In a peaceful little clearing, the remains of a hastily abandoned picnic sparks a battle between two tribes of ants. A bold young ladybug finds himself caught in the middle. He befriends the leader of the black ants, Mandible, and helps him save the anthill from the assault of the terrible red ant warriors, led by the fearful Butor. A fantastic journey at ground level.
## 3832 A gardener is watering his flowers, when a mischievous boy sneaks up behind his back, and puts a foot on the water hose. The gardener is surprised and looks into the nozzle to find out why the water has stopped coming. The boy then lifts his foot from the hose, whereby the water squirts up in the gardener's face. The gardener chases the boy, grips his ear and slaps him in his buttocks. The boy then runs away and the gardener continues his watering. Three separate versions of this film exist, this is the original, filmed by Louis Lumière.
## 3833 The true story about legendary explorer Thor Heyerdahl and his epic crossing of the Pacific on a balsa wood raft in 1947, in an effort to prove it was possible for South Americans to settle in Polynesia in pre-Columbian times.
## 3834 In 2035, where robots are commonplace and abide by the three laws of robotics, a technophobic cop investigates an apparent suicide. Suspecting that a robot may be responsible for the death, his investigation leads him to believe that humanity may be in danger.
## 3835 Inspired by the E.C. comics of the 1950s, George A. Romero and Stephen King bring five tales of terror to the screen.
## 3836 "Notorious" is the story of Christopher Wallace. Through raw talent and sheer determination, Wallace transforms himself from Brooklyn street hustler (once selling crack to pregnant women) to one of the greatest rappers of all time: The Notorious B.I.G. Follow his meteoric rise to fame and his refusal to succumb to expectations - redefining our notion of "The American Dream."
## 3837 A stranger mentors a young Reno gambler who weds a hooker and befriends a vulgar casino regular.
## 3838 As the devoutly single Don Johnston is dumped by his latest girlfriend, he receives an anonymous pink letter informing him that he has a son who may be looking for him.
## 3839 War photographer W. Eugene Smith travels back to Japan where he documents the devastating effect of mercury poisoning in coastal communities.
## 3840 Awkward, isolated and disapproving of most of the people around her, a precocious 19-year-old genius is challenged to put her convictions to the test by venturing out on to the NYC dating scene.
## 3841 When Tony Stark's world is torn apart by a formidable terrorist called the Mandarin, he starts an odyssey of rebuilding and retribution.
## 3842 Frank Hart is a pig. He takes advantage in the grossest manner of the women who work with him. When his three assistants manage to trap him in his own house they assume control of his department and productivity leaps, but just how long can they keep Hart tied up?
## 3843 When Jess sets sail on a yacht with a group of friends, she cannot shake the feeling that there is something wrong. Her suspicions are realized when the yacht hits a storm and the group is forced to board a passing ocean liner to get to safety, a ship Jess is convinced she’s been on before.
## 3844 A sexually repressed woman's husband is having an affair with her sister. The arrival of a visitor with a rather unusual fetish changes everything.
## 3845 Famed but tormented artist Vincent van Gogh spends his final years in Arles, France, painting masterworks of the natural world that surrounds him.
## 3846 When LeBron and his young son Dom are trapped in a digital space by a rogue A.I., LeBron must get them home safe by leading Bugs, Lola Bunny and the whole gang of notoriously undisciplined Looney Tunes to victory over the A.I.'s digitized champions on the court. It's Tunes versus Goons in the highest-stakes challenge of his life.
## 3847 The hunt, capture and trial of Guy Georges, one of France's most notorious serial killers.
## 3848 When reporter Jean Craddock interviews Bad Blake—an alcoholic, seen-better-days country music legend—they connect, and the hard-living crooner sees a possible saving grace in a life with Jean and her young son.
## 3849 When an alien with amazing powers crash-lands near Mossy Bottom Farm, Shaun the Sheep goes on a mission to shepherd the intergalactic visitor home before a sinister organization can capture her.
## 3850 Curmudgeonly old Frank lives by himself. His routine involves daily visits to his local library, where he has a twinkle in his eye for the librarian. His grown children are concerned about their father’s well-being and buy him a caretaker robot. Initially resistant to the idea, Frank soon appreciates the benefits of robotic support – like nutritious meals and a clean house – and eventually begins to treat his robot like a true companion. With his robot’s assistance, Frank’s passion for his old, unlawful profession is reignited, for better or worse.
## 3851 In the legendary past, before Poké Balls were invented, an aura-guiding hero Pokémon named Lucario sensed two groups of armies about to clash, and a threat of a massive war in front of Oldoran Castle in Kanto that would leave no survivors. He transferred this message to his master, the legendary hero Arlon, while he was being attacked by a violent group of Hellgar. During the battle, his sense of sight was lost and he was rendered unable to see. He used the detection of his Aura, and so with the offensive Wave Bomb, he eliminated them. Though by the threat, the queen of Rota, Lady Rin was resolute to die with her civilians, and so Arlon made a choice.
## 3852 Manchester, 1976. Tony Wilson is an ambitious but frustrated local TV news reporter looking for a way to make his mark. After witnessing a life-changing concert by a band known as the Sex Pistols, he persuades his station to televise one of their performances, and soon Manchester's punk groups are clamoring for him to manage them. Riding the wave of a musical revolution, Wilson and his friends create the legendary Factory Records label and The Hacienda club.
## 3853 Repulsed by the hypocrisy of adults and the irresponsibility of society, a boy refuses to grow older after his third birthday.
## 3854 September, 1945. Sebastian impatiently waits for the return of his friend Angelina, whom he has not seen for two years. When the plane carrying the young woman to her small village in the Alps is reported to have crashed in the mountains, Sebastian is convinced that Angelina is still alive. Along with his faithful dog Belle, Sebastian embarks on the most dangerous adventure of his life.
## 3855 Two French policemen, one investigating a grisly murder at a remote mountain college, the other working on the desecration of a young girl's grave by skinheads, are brought together by the clues from their respective cases. Soon after they start working together, more murders are committed, and the pair begin to discover just what dark secrets are behind the killings.
## 3856 A group of dated appliances, finding themselves stranded in a summer home that their family had just sold, decide to seek their young 8 year old "master".
## 3857 A young woman inherits an old hotel in Louisiana where, following a series of supernatural "accidents", she learns that the building was built over one of the entrances to Hell.
## 3858 Shortly after David Abbott moves into his new San Francisco digs, he has an unwelcome visitor on his hands: winsome Elizabeth Martinson, who asserts that the apartment is hers -- and promptly vanishes. When she starts appearing and disappearing at will, David thinks she's a ghost, while Elizabeth is convinced she's alive.
## 3859 Inspired by a true story of a family who believed they were possessed by spirits, this film follows a woman who must protect her child from a curse. WARNING: This is a cursed video, it might contain certain risks to watch. For those who dares to follow, please solve the puzzle of my daughter's curse with me.
## 3860 February 1976. Somalian rebels hijack a school bus carrying 21 French children and their teacher in Djibouti City. When the terrorists drive it to a no-man’s-land on the border between Somalia and French territory, the French Government sends out a newly formed elite squad to rescue the hostages. Within a few hours, the highly trained team arrives to the crisis area, where the Somalian National Army has taken position behind the barbed wire on the border. The French unit is left with very few options to rescue the hostages. As the volatile situation unravels, the French men quickly come up with a daring plan: carry out a simultaneous 5 men sniper attack to get the children and the teacher out safely. A true story.
## 3861 A spacecraft traveling to a distant colony planet and transporting thousands of people has a malfunction in its sleep chambers. As a result, two passengers are awakened 90 years early.
## 3862 On the day of his retirement, a veteran CIA agent learns that his former protégé has been arrested in China, is sentenced to die the next morning in Beijing, and that the CIA is considering letting that happen to avoid an international scandal.
## 3863 An upper middle-class housewife suffering from various unexplained symptoms of illness comes to believe that she is suffering from multiple chemical sensitivity and moves into a secluded facility to recover.
## 3864 This is the year 2022. Overcrowding, pollution, and resource depletion have reduced society’s leaders to finding food for the teeming masses. The answer is Soylent Green.
## 3865 Harassed by bullies because of his mild autism, teen Ben finds refuge in an online computer game, which leads him to his virtual dream girl, Scarlite. Together, the odd couple seeks revenge against Ben's tormentors.
## 3866 When timid bank clerk Stanley Ipkiss discovers a magical mask containing the spirit of the Norse god Loki, his entire life changes. While wearing the mask, Ipkiss becomes a supernatural playboy exuding charm and confidence which allows him to catch the eye of local nightclub singer Tina Carlyle. Unfortunately, under the mask's influence, Ipkiss also robs a bank, which angers junior crime lord Dorian Tyrell, whose goons get blamed for the heist.
## 3867 40-year-old Bertrand has been suffering from depression for the last two years and is barely able to keep his head above water. Despite the medication he gulps down all day, every day, and his wife's encouragement, he is unable to find any meaning in his life. Curiously, he will end up finding this sense of purpose at the swimming pool, by joining an all-male synchronised swimming team.
## 3868 This in-world short film takes place in the year 2036 and revolves around Jared Leto’s character, Niander Wallace. In this short, Wallace introduces a new line of “perfected” replicants called the Nexus 9, seeking to get the prohibition on replicants repealed. This no doubt has serious ramifications that will be crucial to the plot of Blade Runner 2049.
## 3869 When the Emperor of China issues a decree that one man per family must serve in the Imperial Chinese Army to defend the country from Huns, Hua Mulan, the eldest daughter of an honored warrior, steps in to take the place of her ailing father. She is spirited, determined and quick on her feet. Disguised as a man by the name of Hua Jun, she is tested every step of the way and must harness her innermost strength and embrace her true potential.
## 3870 In a California desert town, a short-order cook with clairvoyant abilities encounters a mysterious man with a link to dark, threatening forces.
## 3871 In a world divided into factions based on personality types, Tris learns that she's been classified as Divergent and won't fit in. When she discovers a plot to destroy Divergents, Tris and the mysterious Four must find out what makes Divergents dangerous before it's too late.
## 3872 The Man of Steel finds himself outshone by a new team of ruthless superheroes who hold his idealism in contempt.
## 3873 As a director and his crew shoot a controversial film about Christopher Columbus in Cochabamba, Bolivia, local people rise up against plans to privatize the water supply.
## 3874 An inventor of a secret process suddenly finds himself alone as both his friends and the corporation he works for turn against him.
## 3875 Hattie, a New Orleans prostitute, meets a photographer named Bellocq at her brothel one night and, after he photographs her, he befriends her 12-year-old daughter, Violet. When Violet is brought on as a working girl by her mother's madam and Hattie skips town to get married, Violet quickly loses her innocence and focuses on reuniting with Bellocq. But a life with Bellocq is compromised for Violet after her mother returns to town.
## 3876 A young boy named Luke and his grandmother go on vacation only to discover their hotel is hosting an international witch convention, where the Grand High Witch is unveiling her master plan to turn all children into mice. Will Luke fall victim to the witches' plot before he can stop them?
## 3877 A stuntman and a saxophonist stand in for two billionaires threatened by killers.
## 3878 An extraordinary young girl discovers her superpower and summons the remarkable courage, against all odds, to help others change their stories, whilst also taking charge of her own destiny. Standing up for what's right, she's met with miraculous results.
## 3879 A quiet teenage artist Rafe Katchadorian has a wild imagination and is sick of middle school and the rules that have been put before him. Rafe and his best friend Leo have come up with a plan: break every rule in the school hand book and as you expect trouble follows.
## 3880 Set high atop snow-capped mountains in the adrenaline-fueled world of competitive snowboarding, the Disney Channel Original Movie “Cloud 9″ tells the inspiring story of two snowboarders who must overcome self-doubt to learn that achieving their dreams is possible.
## 3881 A fast food restaurant mini variant of Buzz forcibly switches places with the real Buzz and his friends have to deal with the obnoxious impostor.
## 3882 A director and his crew attempt to make the transition from the small to the big screen.
## 3883 Katherine Watson is a recent UCLA graduate hired to teach art history at the prestigious all-female Wellesley College, in 1953. Determined to confront the outdated mores of society and the institution that embraces them, Katherine inspires her traditional students, including Betty and Joan, to challenge the lives they are expected to lead.
## 3884 Emily arrives in Miami with aspirations to become a professional dancer. She sparks with Sean, the leader of a dance crew whose neighborhood is threatened by Emily's father's development plans.
## 3885 Serbian fashion designer Irena Dubrovna and American marine engineer Oliver Reed meet in Central Park, fall in love, and marry after a brief courtship; but Irena won't consummate the union for fear that she will turn into a panther compelled to kill her lover, pursuant to a belief harbored by her home village.
## 3886 Two FBI agent brothers, Marcus and Kevin Copeland, accidentally foil a drug bust. To avoid being fired they accept a mission escorting a pair of socialites to the Hamptons--but when the girls are disfigured in a car accident, they refuse to go. Left without options, Marcus and Kevin decide to pose as the sisters, transforming themselves from black men into rich white women.
## 3887 After Doug picks up hitchhiking Rosco with his truck, they are mistaken for two bank robbers by the traffic police. They manage to escape only to be confused for two secret agents while trying to take a flight at the airport.
## 3888 Lucas, a 14-year-old boy inducted into the gang life in Washington D.C., is determined that his 10-year-old brother won't follow the same path. When an Afghanistan war veteran comes into the neighborhood, an opportunity arises.
## 3889 Rajputana, India, 13th century. The tyrannical usurper Alauddin Khilji, sultan of Delhi, becomes obsessed with Queen Padmavati, wife of King Ratan Singh of Mewar, and goes to great lengths to satisfy his greed for her.
## 3890 A newly-released prison gangster is forced by the leaders of his gang to orchestrate a major crime with a brutal rival gang on the streets of Southern California.
## 3891 While visiting Italy with her family, a young wizard accidentally creates an evil version of herself.
## 3892 On Haeundae Beach, a guilt-ridden fisherman takes care of a woman whose father accidentally got killed. A scientist reunites with his ex-wife and a daughter who doesn't even remember his face. And a poor rescue worker falls in love with a rich city girl. When they all find out a gigantic tsunami will hit the beach, they realize they only have 10 minutes to escape.
## 3893 After a terrible air disaster, survivor Max Klein emerges a changed person. Unable to connect to his former life or to wife Laura, he feels godlike and invulnerable. When psychologist Bill Perlman is unable to help Max, he has Max meet another survivor, Carla Rodrigo, who is wracked with grief and guilt since her baby died in the crash which she and Max survived.
## 3894 Navy Lt. Tom Farrell meets a young woman, Susan Atwell , and they share a passionate fling. Farrell then finds out that his superior, Defense Secretary David Brice, is also romantically involved with Atwell. When the young woman turns up dead, Farrell is put in charge of the murder investigation. He begins to uncover shocking clues about the case, but when details of his encounter with Susan surface, he becomes a suspect as well.
## 3895 A hardcore US racist skinhead who, because of his intelligence, leads a gang dedicated to fighting the enemy: the supposed American-Jewish conspiracy for domination. However, he's hiding a secret: he's Jewish-born, a brilliant scholar whose questioning of the tenets of his faith has left him angry and confused, turning against those who he thinks have a tragic history of their own making.
## 3896 Off-duty cop John McClane is gripped with a feeling of déjà vu when, on a snowy Christmas Eve in the nation’s capital, terrorists seize a major international airport, holding thousands of holiday travelers hostage. Renegade military commandos led by a murderous rogue officer plot to rescue a drug lord from justice and are prepared for every contingency except one: McClane’s smart-mouthed heroics.
## 3897 Two years after the fall of the alien ship, the life of a young woman from Moscow has been changed forever. Her growing powers are now at the focus of both human and celestial investigation: an alien force takes an interest in her, and will stop short of nothing, including an invasion. Can love and compassion save humanity, when faced with a much greater and more demanding test this time?
## 3898 Set in 1959, Diner shows how five young men resist their adulthood and seek refuge in their beloved Diner. The mundane, childish, and titillating details of their lives are shared. But the golden moments pass, and the men shoulder their responsibilities, leaving the Diner behind.
## 3899 An attempted robbery turns to be an unexpected recruitment when two unemployed men mistakenly break into a police office instead of a store.
## 3900 Cousins Thomas and David, owners of a mobile restaurant, team up with their friend Moby, a bumbling private detective, to save the beautiful Sylvia, a pickpocket.
## 3901 12-year-old David is accidentally knocked out in the forest near his home, but when he awakens eight years have passed. His family is overjoyed to have him back, but is just as perplexed as he is that he hasn't aged. When a NASA scientist discovers a UFO nearby, David gets the chance to unravel the mystery and recover the life he lost.
## 3902 A legendary Native American-hating Army captain nearing retirement in 1892 is given one last assignment: to escort a Cheyenne chief and his family through dangerous territory back to his Montana reservation.
## 3903 The whole Bélier family is deaf, except for sixteen year old Paula who is the important translator in her parents' day to day life especially when it comes to matters concerning the family farm. When her music teacher discovers she has a fantastic singing voice and she gets an opportunity to enter a big Radio France contest the whole family's future is set up for big changes.
## 3904 Though a childhood bout with polio left him dependent on an iron lung, Mark O'Brien maintains a career as a journalist and poet. A writing assignment dealing with sex and the disabled piques Mark's curiosity, and he decides to investigate the possibility of experiencing sex himself. When his overtures toward a caregiver scare her away, he books an appointment with sex surrogate Cheryl Green to lose his virginity.
## 3905 Shamoto runs a small tropical fish shop. When his daughter Mitsuko is caught shoplifting at a grocery store a man named Murata steps in to settle things between the girl and the store manager. Murata also runs a tropical fish shop and he and Shamoto soon become friendly. However Murata hides many dark secrets behind his friendly face.
## 3906 Geeky 14-year old Ethan is left to babysit his younger sister, Jane, with his best friend Benny but after Ethan inadvertently puts Jane in harm's way, his parents hire a professional babysitter, the beautiful yet mysterious 17-year-old Sarah who, unbeknownst to them, is actually a fledgling vampire.
## 3907 When a tough yakuza gangster is betrayed by his bosses, it means all out war. Bodies pile up as he takes out everyone in his way to the top in a brutal quest for revenge.
## 3908 An unknown middle-aged batter named Roy Hobbs with a mysterious past appears out of nowhere to take a losing 1930s baseball team to the top of the league.
## 3909 On the brink of separation, Ethan and Sophie escape to a beautiful vacation house for a weekend getaway in an attempt to save their marriage. What begins as a romantic and fun retreat soon becomes surreal, when an unexpected discovery forces the two to examine themselves, their relationship, and their future.
## 3910 Gru is recruited by the Anti-Villain League to help deal with a powerful new super criminal.
## 3911 The prehistoric Croods family live in a particularly dangerous moment in time. Patriarch Grug, his mate Ugga, teenage daughter Eep, son Thunk, and feisty Gran gather food by day and huddle together in a cave at night. When a more evolved caveman named Guy arrives on the scene, Grug is distrustful, but it soon becomes apparent that Guy is correct about the impending destruction of their world.
## 3912 Follows three social outcasts -- two geeks and a cynic -- as they attempt to navigate a time-travel conundrum in the middle of a British pub. Faris plays a girl from the future who sets the adventure in motion.
## 3913 Lisa and Julien are married and lead a happy uneventful life with their son Oscar. But their life radically changes one morning, when the police comes to arrest Lisa on murder charges. She's sentenced to 20 years of prison. Convinced of his wife's innocence, Julien decides to act. How far will he be willing to go for her?
## 3914 Waxing nostalgic about the bittersweet passage from childhood to puberty in this tender coming-of-age tale, four childhood girlfriends -- Teeny, Chrissy, Samantha and Roberta -- recall the magical summer of 1970. During their walk down memory lane, they reconcile experiences with boys, secrets, bullies and more.
## 3915 A beautiful, strong-willed young royal refuses to wed the cruel sociopath to whom she is betrothed and is kidnapped and locked in a remote tower of her father’s castle. With her scorned, vindictive suitor intent on taking her father’s throne, the princess must protect her family and save the kingdom.
## 3916 Spain, 1950s. Montse's agoraphobia keeps her locked in a sinister apartment in Madrid and her only link to reality is the little sister she lost her youth raising. But one day, a reckless young neighbor, Carlos, falls down the stairwell and drags himself to their door. Someone has entered the shrew's nest... perhaps he'll never leave.
## 3917 When reporter Rachel Armstrong writes a story that reveals the identity of a covert CIA operative, the government demands that Rachel reveal her source. She defies the special prosecutor and is thrown in jail. Meanwhile, her attorney, Albert Burnside argues her case all the way to the U.S. Supreme Court.
## 3918 After his wife is murdered by street punks, a pacifistic New York City architect becomes a one-man vigilante squad, prowling the streets for would-be muggers after dark.
## 3919 An LA vampire hunter has a week to come up with the cash to pay for his kid's tuition and braces. Trying to make a living these days just might kill him.
## 3920 Tom the cat and Jerry the mouse get kicked out of their home and relocate to a fancy New York hotel, where a scrappy employee named Kayla will lose her job if she can’t evict Jerry before a high-class wedding at the hotel. Her solution? Hiring Tom to get rid of the pesky mouse.
## 3921 As WWII looms, a wealthy widow hires an amateur archaeologist to excavate the burial mounds on her estate. When they make a historic discovery, the echoes of Britain's past resonate in the face of its uncertain future.
## 3922 Barbie and her best friends Teresa and Renee transform from hard-working gymnasts to undercover secret agents. When their amazing gymnastics skills catch the eye of a top-secret spy agency, the girls are soon following clues to a gem-stealing cat burglar, using high-tech gadgets, glam disguises and cute robo-pets to save the day.
## 3923 Deaf-mute Sergey enters a specialized boarding school for the deaf-and-dumb. In navigating through the school's hierarchy, he encounters a corrupt underbelly of criminality, known as The Tribe. By participating in several robberies, he gets propelled higher into the organization, when he meets one of the Chief’s concubines Anya, and unwittingly breaks all the unwritten rules of the group.
## 3924 In their new overseas home, an American family soon finds themselves caught in the middle of a coup, and they frantically look for a safe escape in an environment where foreigners are being immediately executed.
## 3925 Lore leads her four younger siblings across a war-torn Germany in 1945. Amidst the chaos she encounters a mysterious refugee who shatters her fragile reality with hatred and desire.
## 3926 Test pilot Hal Jordan finds himself recruited as the newest member of the intergalactic police force, The Green Lantern Corps.
## 3927 When Will decides to tell his daughter the story of how he met her mother, he discovers that a second look at the past might also give him a second chance at the future.
## 3928 Summertime on the coast of Maine, "In the Bedroom" centers on the inner dynamics of a family in transition. Matt Fowler is a doctor practicing in his native Maine and is married to New York born Ruth Fowler, a music teacher. His son is involved in a love affair with a local single mother. As the beauty of Maine's brief and fleeting summer comes to an end, these characters find themselves in the midst of unimaginable tragedy.
## 3929 A spin-off scenario taking place after the events of the TV special Dragon Ball Z: Bardock - The Father of Goku, in which Bardock survives the destruction of Planet Vegeta and is sent into the past, combating Frieza's ancestor Chilled and turning into a Super Saiyan.
## 3930 It is 1943 in Paris. Like so many others, the Bourbelle family's home has been taken over by the Germans and they now live in their cellar. Little do they know that the son, Guy-Hubert Bourdelle, is far from being the cowardly hairdresser he pretends. He is in truth the Germans’ most feared opponent: le super-résistant!
## 3931 After a distastrous first date for caterer Holly and network sports director Messer, all they have is common is a dislike for each other and their love for their goddaughter Sophie. But when they suddenly become all Sophie has in this world, Holly and Messer must set their differences aside. Juggling careers and social calendars, they'll have to find common ground while living under the same roof.
## 3932 When a princess is shrunken by an evil wizard, Sinbad must undertake a quest to an island of monsters to cure her and prevent a war.
## 3933 The sailor of legend is framed by the goddess Eris for the theft of the Book of Peace, and must travel to her realm at the end of the world to retrieve it and save the life of his childhood friend Prince Proteus.
## 3934 A farm boy reluctantly becomes a member of the undead when a girl he meets turns out to be part of a band of vampires who roam the highways in stolen cars.
## 3935 A juror on the inside and a woman on the outside manipulate a court trial involving a major gun manufacturer.
## 3936 When Duchess Margaret unexpectedly inherits the throne & hits a rough patch with Kevin, it’s up to Stacy to save the day before a new lookalike — party girl Fiona — foils their plans.
## 3937 Jean left his hometown ten years ago. When his father falls ill, he comes back and reunites with his sister Juliette and his brother Jérémie. As seasons go by around their vineyard, they'll have to trust each other again.
## 3938 An account of the revolutionary years of the legendary American journalist John Reed, who shared his adventurous professional life with his radical commitment to the socialist revolution in Russia, his dream of spreading its principles among the members of the American working class, and his troubled romantic relationship with the writer Louise Bryant.
## 3939 In town for a job interview, a young woman arrives at her Airbnb late at night only to find that it has been mistakenly double-booked and a strange man is already staying there. Against her better judgement, she decides to stay the night anyway.
## 3940 Following a fall during mistletoe picking, Druid Getafix decides that it is time to secure the future of the village. Accompanied by Asterix and Obelix, he undertakes to travel the Gallic world in search of a talented young druid to transmit the Secret of the Magic Potion.
## 3941 Dracula, Mavis, Johnny and the rest of the Drac Pack take a vacation on a luxury Monster Cruise Ship, where Dracula falls in love with the ship’s captain, Ericka, who’s secretly a descendant of Abraham Van Helsing, the notorious monster slayer.
## 3942 A bumbling government agent recruits a trucker whose gambling knowledge can help crack an illegal Florida operation.
## 3943 Lightning McQueen, a hotshot rookie race car driven to succeed, discovers that life is about the journey, not the finish line, when he finds himself unexpectedly detoured in the sleepy Route 66 town of Radiator Springs. On route across the country to the big Piston Cup Championship in California to compete against two seasoned pros, McQueen gets to know the town's offbeat characters.
## 3944 A small village in Huelva, Andalusia, Spain, 1936. Higinio and Rosa have been married only for a few months when the Civil War breaks out. Higinio, being afraid of possible reprisals from the rebel faction, decides to use a hole dug in his own house as a temporary hideout.
## 3945 A young social outcast in Australia steals money from her parents to finance a vacation where she hopes to find happiness, and perhaps love.
## 3946 A modern retelling of Shakespeare's classic comedy about two pairs of lovers with different takes on romance and a way with words.
## 3947 In a corrupt city, a small-time gangster and the estranged wife of a pot dealer find themselves thrown together in an escapade of love, money, drugs and danger.
## 3948 After being shipwrecked, the Robinson family is marooned on an island inhabited only by an impressive array of wildlife. In true pioneer spirit, they quickly make themselves at home but soon face a danger even greater than nature: dastardly pirates. A rousing adventure suitable for the whole family, this Disney adaptation of the classic Johann Wyss novel stars Dorothy McGuire and John Mills as Mother and Father Robinson.
## 3949 The latest battle in the eternal war between Good and Evil has come to New Jersey in the late, late 20th Century. Angels, demons, apostles and prophets (of a sort) walk among the cynics and innocents of America and duke it out for the fate of humankind.
## 3950 A priceless relic is stolen from identical royals Queen Margaret and Princess Stacy, who enlist the help of their sketchy look-alike cousin Fiona Pembroke to retrieve it.
## 3951 In 1630, a farmer relocates his family to a remote plot of land on the edge of a forest where strange, unsettling things happen. With suspicion and paranoia mounting, each family member's faith, loyalty and love are tested in shocking ways.
## 3952 A privileged girl and a charismatic boy's instant desire sparks a love affair made only more reckless by parents trying to keep them apart.
## 3953 Accompanied only by her faithful dog and four camels, an Australian satisfies her craving for solitude by embarking on a solo trip across the desert from Alice Springs to the Indian Ocean.
## 3954 During the Republican run of the 2008 Presidential election, candidate John McCain picks a relative unknown, Alaskan governor Sarah Palin, to be his running mate. As the campaign kicks into high gear, her lack of experience, in both political and media savvy, becomes a drain upon McCain and his strategists.
## 3955 A single mother's life is thrown into turmoil after her struggling, rarely-seen younger brother returns to town.
## 3956 The previously untold origins of Olaf, the innocent and insightful, summer-loving snowman are revealed as we follow Olaf’s first steps as he comes to life and searches for his identity in the snowy mountains outside Arendelle.
## 3957 Four years after the destruction of Isla Nublar, Biosyn operatives attempt to track down Maisie Lockwood, while Dr Ellie Sattler investigates a genetically engineered swarm of giant insects.
## 3958 The all-powerful Monkey King once roamed freely between Heaven and Earth, but after angering the Gods, he was imprisoned within an ice cage deep within the mountains. 500 years later, monsters attack a small village and a child flees to the mountains. Unknowingly, the child releases the Monkey King from his curse. With the help and encouragement from this special child, Monkey King saves the village from the evil monsters.
## 3959 Mariposa becomes the Royal Ambassador of Flutterfield, and is sent to bring peace between her fairy land and their rivals, the Crystal Fairies of Shimmervale. While Mariposa doesn't make a great first impression on the King, she becomes fast friends with his shy daughter, Princess Catania. However, a misunderstanding causes Mariposa to be banished from their fairy land. As Mariposa and Zee returns to Flutterfield, they encounter a dark fairy on her way to destroy Shimmervale. Mariposa rushes back and helps Princess Catania to save their fairy land and together, the two girls prove that the best way to make a friend, is to be a friend.
## 3960 Three inseparable childhood friends are just out of college. Nothing comes between them - until they each fall in love, and their wildly different approaches to relationships creates tension.
## 3961 Downtrodden writer Henry and distressed goddess Wanda aren't exactly husband and wife: they're wedded to their bar stools. But, they like each other's company—and Barfly captures their giddy, gin-soaked attempts to make a go of life on the skids.
## 3962 Katja's life collapses after a senseless act impacts her. After a time of mourning and injustice, she seeks revenge.
## 3963 Lex Luthor enacts his plan to rid the world of Superman, once and for all. Succeeding with solar radiation poisoning, the Man of Steel is slowly dying. With what little times remains, the Last Son of Krypton must confront the revealing of his secret identity to Lois Lane and face Luthor in a final battle.
## 3964 During her Christmas holidays with the royal family at the Sandringham estate in Norfolk, England, Diana decides to leave her marriage to Prince Charles.
## 3965 A duplicitous young man finds success in the dark world of social media smear tactics — but his virtual vitriol soon has violent real-life consequences.
## 3966 Sandra is a young woman who has only one weekend to convince her colleagues they must give up their bonuses in order for her to keep her job — not an easy task in this economy.
## 3967 The Tibetans refer to the Dalai Lama as 'Kundun', which means 'The Presence'. He was forced to escape from his native home, Tibet, when communist China invaded and enforced an oppressive regime upon the peaceful nation. The Dalai Lama escaped to India in 1959 and has been living in exile in Dharamsala ever since.
## 3968 After tinkering with a box he bought while abroad, sexual deviant Frank inadvertently opens a portal to hell, where fetish-demons led by Pinhead tear his body apart. When Frank’s brother and his wife move into his house, a skeletal Frank appears to his sister-in-law and asks her to supply him with corpses for his regeneration.
## 3969 After the death of his younger brother, a troubled 19-year-old street dancer from Los Angeles is able to bypass juvenile hall by enrolling in the historically black, Truth University in Atlanta, Georgia. But his efforts to get an education and woo the girl he likes are sidelined when he is courted by the top two campus fraternities, both of which want and need his fierce street-style dance moves to win the highly coveted national step show competition.
## 3970 Young businessman, Thomas Crown is bored and decides to plan a robbery and assigns a professional agent with the right information to the job. However, Crown is soon betrayed yet cannot blow his cover because he’s in love.
## 3971 A hardened CIA operative finds himself at the mercy of a precocious 9-year-old girl, having been sent undercover to surveil her family.
## 3972 A destitute young man, raised by racist skinheads and notorious among white supremacists, turns his back on hatred and violence to transform his life, with the help of a black activist and the woman he loves.
## 3973 Two lifelong friends bond whilst vacationing in a luxury Swiss Alps lodge as they ponder retirement. While Fred has no plans to resume his musical career despite the urging of his loving daughter Lena, Mick is intent on finishing the screenplay for what may be his last important film for his muse Brenda. And where will inspiration lead their younger friend Jimmy, an actor grasping to make sense of his next performance?
## 3974 On their home planet of Cybertron, the Autobots and Decepticons are involved in an explosive battle over the coveted AllSpark. With the fate of the universe at stake, the Autobots send it far from the reaches of the ruthless Megatron, leader of the Decepticons. But there are even more surprises in store when it crash-lands on Earth.
## 3975 When Leela is insulted by a group of space-rednecks (like regular rednecks, but in space) she enters the Planet Express ship in a demolition derby. She emerges victorious, but when she brings the damaged ship home and the Professor sees the fuel gauge, he's enraged by the hit he's going to take at the Dark Matter pump. Now the crew have to find a way to break Mom's stranglehold on starship fuel, even if they have to wade through a Lord of the Rings-inspired fantasy-land to do it!
## 3976 A terminally ill teen upsets her parents when she falls in love with a small-time drug dealer.
## 3977 During an ordinary day in Hundred Acre Wood, Winnie the Pooh sets out to find some honey. Misinterpreting a note from Christopher Robin, Owl convinces Pooh, Tigger, Rabbit, Piglet, Kanga, Roo, and Eeyore that their young friend has been captured by a creature named "Backson" and they set out to rescue him.
## 3978 A squad of National Guards on an isolated weekend exercise in the Louisiana swamp must fight for their lives when they anger local Cajuns by stealing their canoes. Without live ammunition and in a strange country, their experience begins to mirror the Vietnam experience.
## 3979 Once home to the most advanced civilization on Earth, Atlantis is now an underwater kingdom ruled by the power-hungry King Orm. With a vast army at his disposal, Orm plans to conquer the remaining oceanic people and then the surface world. Standing in his way is Arthur Curry, Orm's half-human, half-Atlantean brother and true heir to the throne.
## 3980 After starting at an upmarket boarding school, a teenage girl forms close friendships with her two older roommates. However, when she discovers that her new friends are lovers she finds herself caught in a complicated situation.
## 3981 Lt. Col. Kirby Yorke is posted on the Texas frontier to defend settlers against depredations of marauding Apaches. Col. Yorke is under considerable stress by a serious shortage of troops of his command. Tension is added when Yorke's son (whom he hasn't seen in fifteen years), Trooper Jeff Yorke, is one of 18 recruits sent to the regiment.
## 3982 When an alien takes the form of a young widow's husband and asks her to drive him from Wisconsin to Arizona, the government tries to stop them.
## 3983 A calamity at Dante and Randall's shops sends them looking for new horizons - but they ultimately settle at Mooby's, a fictional Disney-McDonald's-style fast-food empire.
## 3984 At the tense 1938 Munich Conference, former friends who now work for opposing governments become reluctant spies racing to expose a Nazi secret.
## 3985 Set in the beautiful high Pyrenees in south-west France, Damien lives with his mother Marianne, a doctor, while his father, a pilot, is on a tour of duty abroad with the French military. At school, Damien is bullied by Thomas, who lives in the farming community up in the mountains. The boys find themselves living together when Marianne invites Thomas to come and stay with them while his mother is ill in hospital. Damien must learn to live with the boy who terrorised him.
## 3986 An army major goes undercover as a college student. His mission is both professional and personal: to protect his general's daughter from a radical militant, and to find his estranged half-brother.
## 3987 Raised as a slave, Danny is used to fighting for his survival. In fact, his "master," Bart, thinks of him as a pet and goes as far as leashing him with a collar so they can make money in fight clubs, where Danny is the main contender. When Bart's crew is in a car accident, Danny escapes and meets a blind, kindhearted piano tuner who takes him in and uses music to free the fighter's long-buried heart.
## 3988 After a heroic job of successfully landing his storm-damaged aircraft in a war zone, a fearless pilot finds himself between the agendas of multiple militias planning to take the plane and its passengers hostage.
## 3989 Five people find themselves in a tomb. The Crypt keeper explains why they are there through a series of frightening stories. Based on the classic comic book.
## 3990 When Rachel Phelps inherits the Cleveland Indians from her deceased husband, she's determined to move the team to a warmer climate—but only a losing season will make that possible, which should be easy given the misfits she's hired. Rachel is sure her dream will come true, but she underestimates their will to succeed.
## 3991 He fought his first battle on the Scottish Highlands in 1536. He will fight his greatest battle on the streets of New York City in 1986. His name is Connor MacLeod. He is immortal.
## 3992 In a future where a failed global-warming experiment kills off most life on the planet, a class system evolves aboard the Snowpiercer, a train that travels around the globe via a perpetual-motion engine.
## 3993 Wounded in Africa during World War II, Nazi Col. Claus von Stauffenberg returns to his native Germany and joins the Resistance in a daring plan to create a shadow government and assassinate Adolf Hitler. When events unfold so that he becomes a central player, he finds himself tasked with both leading the coup and personally killing the Führer.
## 3994 After old enemies kill his family, a former mafia enforcer and his feisty daughter flee to Milan, where they hide out while plotting their revenge.
## 3995 BSAA Chris Redfield enlists the help of government agent Leon S. Kennedy and Professor Rebecca Chambers from Alexander Institute of Biotechnology to stop a death merchant with a vengeance from spreading a deadly virus in New York.
## 3996 While Yeung Kam Wing is trying to remove all connections between the mob and him, his actions are being carefully observed by Lau Kin Ming, who bears a personal grudge against him.
## 3997 Seymour Krelborn is a nerdy orphan working at Mushnik's, a flower shop in urban Skid Row. He harbors a crush on fellow co-worker Audrey Fulquard, and is berated by Mr. Mushnik daily. One day Seymour finds a very mysterious unidentified plant which he calls Audrey II. The plant seems to have a craving for blood and soon begins to sing for his supper.
## 3998 While Batman deals with a deformed man calling himself the Penguin, an employee of a corrupt businessman transforms into the Catwoman.
## 3999 Following the loss of their son, a retired sheriff and his wife leave their Montana ranch to rescue their young grandson from the clutches of a dangerous family living off the grid in the Dakotas.
## 4000 A detective suffering from a personal loss receives a call from his recently deceased niece. Being able to communicate across time, the two work together to try and stop the crime before it occurs.
## 4001 After defeating Frieza, Goku returns to Earth and goes on a camping trip with Gohan and Krillin. Everything is normal until Cooler - Frieza's brother - sends three henchmen after Goku. A long fight ensues between our heroes and Cooler, in which he transforms into the fourth stage of his evolution and has the edge in the fight... until Goku transforms into a Super Saiyan.
## 4002 After a scientific experiment leads to the creation of a Mew clone, he sets out to destroy the world.
## 4003 City of Warsaw, Poland, August 1st, 1944. Citizens have experienced inhuman acts of terror and violence during five long years of Nazi occupation. As the Soviet Army relentlessly approaches, the youngest and bravest among them rise up as one and face tyranny fighting street by street, but the price to pay will be high and hard the way to freedom…
## 4004 Mike discovers that being the top-ranking laugh collector at Monsters, Inc. has its benefits – in particular, earning enough money to buy a six-wheel-drive car that's loaded with gadgets. That new-car smell doesn't last long enough, however, as Sulley jump-starts an ill-fated road test that teaches Mike the true meaning of buyer's remorse.
## 4005 After finding a host body in investigative reporter Eddie Brock, the alien symbiote must face a new enemy, Carnage, the alter ego of serial killer Cletus Kasady.
## 4006 Charley Thompson, a teenager living with his single father, gets a summer job working for horse trainer Del Montgomery. Bonding with an aging racehorse named Lean on Pete, Charley is horrified to learn he is bound for slaughter, and so he steals the horse, and the duo embark on an odyssey across the new American frontier.
## 4007 Agent Matt Graver teams up with operative Alejandro Gillick to prevent Mexican drug cartels from smuggling terrorists across the United States border.
## 4008 Seven old college friends gather for a weekend reunion after the funeral of one of their own.
## 4009 Zarina, a smart and ambitious dust-keeper fairy who’s captivated by Blue Pixie Dust and its endless possibilities, flees Pixie Hollow and joins forces with the scheming pirates of Skull Rock, who make her captain of their ship. Tinker Bell and her friends must embark on an epic adventure to find Zarina, and together they go sword-to-sword with the band of pirates led by a cabin boy named James, who’ll soon be known as Captain Hook himself.
## 4010 Marion is a woman who has learned to shield herself from her emotions. She rents an apartment to work undisturbed on her new book, but by some acoustic anomaly she can hear all that is said in the next apartment in which a psychiatrist holds his office. When she hears a young woman tell that she finds it harder and harder to bear her life, Marion starts to reflect on her own life. After a series of events she comes to understand how her unemotional attitude towards the people around her affected them and herself.
## 4011 A cemetery man has the unusual problem of the dead rising from the grave. Himself and his assistant must end these creatures' lives again after they are reborn. Everything is going well until "She" comes along and stirs things up a bit.
## 4012 Mariachi plunges headfirst into the dark border underworld when he follows a trail of blood to the last of the infamous Mexican drug lords, Bucho, for an action-packed, bullet-riddled showdown. With the help of his best friend and a beautiful bookstore owner, the Mariachi tracks Bucho, takes on his army of desperados, and leaves a trail of blood of his own.
## 4013 When an engineer learns of a mysterious, impenetrable fortress hidden under The Bank of Spain, he joins a crew of master thieves who plan to steal the legendary lost treasure locked inside while the whole country is distracted by Spain's World Cup Final. With thousands of soccer fans cheering in the streets, and security forces closing in, the crew have just minutes to pull off the score of a lifetime.
## 4014 When a mysterious woman seduces Dom into the world of crime and a betrayal of those closest to him, the crew face trials that will test them as never before.
## 4015 A man named Seligman finds a fainted wounded woman in an alley and he brings her home. She tells him that her name is Joe and that she is nymphomaniac. Joe tells her life and sexual experiences with hundreds of men since she was a young teenager while Seligman tells about his hobbies, such as fly fishing, reading about Fibonacci numbers or listening to organ music.
## 4016 Ivan Locke has worked hard to craft a good life for himself. Tonight, that life will collapse around him. On the eve of the biggest challenge of his career, Ivan receives a phone call that sets in motion a series of events that will unravel his family, job, and soul.
## 4017 An illiterate and lonely man bonds with an older and well-read woman.
## 4018 The Cromwell clan live in the real world, except for their grandmother who lives in Halloweentown, a place where monsters go to escape reality. But now the son of the Cromwells' old enemy Kalabar has a plan to use the grandmother's book to turn Halloweentown into a grey dreary version of the real world, while transform the denizens of the real world into monsters.
## 4019 An aging, down-on-his-luck ex-minor leaguer coaches a team of misfits in an ultra-competitive California little league.
## 4020 When shadowy U.S. intelligence agents blackmail a reformed computer hacker and his eccentric team of security experts into stealing a code-breaking 'black box' from a Soviet-funded genius, they uncover a bigger conspiracy. Now, he and his 'sneakers' must save themselves and the world economy by retrieving the box from their blackmailers.
## 4021 Based on the true story of two young men, David Packouz and Efraim Diveroli, who won a $300 million contract from the Pentagon to arm America's allies in Afghanistan.
## 4022 A psychological thriller about a man who is sometimes controlled by his murder-and-mayhem-loving alter ego.
## 4023 A police officer faces a personal meltdown following a divorce and the death of his mother.
## 4024 After suspecting that their police officer neighbor is a serial killer, a group of teenage friends spend their summer spying on him and gathering evidence, but as they get closer to discovering the truth, things get dangerous
## 4025 When royal Princess Courtney trades places with famous rock star Erika, two worlds collide while both learn to appreciate new friends and experiences.
## 4026 A young wannabe musician who discovers he has bitten off more than he can chew when he joins an eccentric pop band led by the mysterious and enigmatic Frank.
## 4027 A military veteran goes on a journey into the future, where he can foresee his death and is left with questions that could save his life and those he loves.
## 4028 Michael Collins plays a crucial role in the establishment of the Irish Free State in the 1920s, but becomes vilified by those hoping to create a completely independent Irish republic.
## 4029 This time, the rivals team up to help a cowgirl and her brother save their homestead from a greedy land-grabber, and they’re going to need some help! Jerry’s three precocious nephews are all ready for action, and Tom is rounding up a posse of prairie dogs. But can a ragtag band of varmints defeat a deceitful desperado determined to deceive a damsel in distress? No matter what happens with Tom and Jerry in the saddle, it’ll be a rootin’ tootin’ good time!
## 4030 Lara Jean and Peter have just taken their romance from pretend to officially real when another recipient of one of her love letters enters the picture.
## 4031 The children of the Avengers hone their powers and go head to head with the very enemy responsible for their parents' demise.
## 4032 The mother of a severely traumatized daughter enlists the aid of a unique horse trainer to help the girl's equally injured horse.
## 4033 A small unit of U.S. soldiers, alone at the remote Combat Outpost Keating, located deep in the valley of three mountains in Afghanistan, battles to defend against an overwhelming force of Taliban fighters in a coordinated attack. The Battle of Kamdesh, as it was known, was the bloodiest American engagement of the Afghan War in 2009 and Bravo Troop 3-61 CAV became one of the most decorated units of the 19-year conflict.
## 4034 Harassed by classmates who won't accept his shocking appearance, a shy young man known as "Powder" struggles to fit in. But the cruel taunts stop when Powder displays a mysterious power that allows him to do incredible things. This phenomenon changes the lives of all those around him in ways they never could have imagined.
## 4035 When 9 first comes to life, he finds himself in a post-apocalyptic world. All humans are gone, and it is only by chance that he discovers a small community of others like him taking refuge from fearsome machines that roam the earth intent on their extinction. Despite being the neophyte of the group, 9 convinces the others that hiding will do them no good.
## 4036 An undocumented immigrant finds a human heart in one of the toilets of the west London hotel where he works with other undocumented immigrants.
## 4037 Jordan Sanders, a take-no-prisoners tech mogul, wakes up one morning in the body of her 13-year-old self right before a do-or-die presentation. Her beleaguered assistant April is the only one in on the secret that her daily tormentor is now trapped in an awkward tween body, just as everything is on the line.
## 4038 Gellert Grindelwald has escaped imprisonment and has begun gathering followers to his cause—elevating wizards above all non-magical beings. The only one capable of putting a stop to him is the wizard he once called his closest friend, Albus Dumbledore. However, Dumbledore will need to seek help from the wizard who had thwarted Grindelwald once before, his former student Newt Scamander, who agrees to help, unaware of the dangers that lie ahead. Lines are drawn as love and loyalty are tested, even among the truest friends and family, in an increasingly divided wizarding world.
## 4039 With the nation of Panem in a full scale war, Katniss confronts President Snow in the final showdown. Teamed with a group of her closest friends – including Gale, Finnick, and Peeta – Katniss goes off on a mission with the unit from District 13 as they risk their lives to stage an assassination attempt on President Snow who has become increasingly obsessed with destroying her. The mortal traps, enemies, and moral choices that await Katniss will challenge her more than any arena she faced in The Hunger Games.
## 4040 After a mysterious prisoner with only a few weeks left on his sentence breaks out of prison in Central City, the Elric brothers attempt to track him down. The search leads them to Table City in the southwestern country of Creta, where Alphonse rescues a young alchemist named Julia from the very man they are trying to capture. In the thick of the fight, they literally tumble into Julia's home turf, the slums of Milos Valley, and are embroiled in the grassroots rebellion of her people.
## 4041 Based on a true story. On 27 April 1940, Luftwaffe pilot Horst Schopis' Heinkel 111 bomber is shot down near Grotli by an RAF Blackburn Skua L2940 fighter, which then crash-lands. The surviving German and English crew members begin to at shoot each other, but later find themselves huddled up in the same cabin. In order to survive the harsh winter in the Norwegian wilderness, they have to stand together. An unlikely, lifelong friendship blossoms.
## 4042 Recently released from a mental hospital, Ricky ties up Marina, a film star he once had sex with and keeps her hostage.
## 4043 Vietnam War, 1966. Australia and New Zealand send troops to support the United States and South Vietnamese in their fight against the communist North. Soldiers are very young men, recruits and volunteers who have never been involved in a combat. On August 18th, members of Delta Company will face the true horror of a ruthless battle among the trees of a rubber plantation called Long Tân. They are barely a hundred. The enemy is a human wave ready to destroy them.
## 4044 China is plunged into strife as feuding warlords try to expand their power by warring over neighboring lands. Fuelled by his success on the battlefield, young and arrogant Hao Jie sneers at Shaolin's masters when he beats one of them in a duel. But the pride comes before a fall. When his own family is wiped out by a rival warlord, Hao is forced to take refuge with the monks. As the civil unrest spreads and the people suffer, Hao and the Shaolin masters are forced to take a fiery stand against the evil warlords. They launch a daring plan or rescue and escape.
## 4045 Julia, a real estate agent, finds an enormous amount of money hidden in a dead man's apartment, a stroke of luck that will force her to face the wrath of the very peculiar inhabitants of the condominium, headed by an unscrupulous administrator.
## 4046 Nicky, an accomplished con artist, gets romantically involved with his disciple Jess but later ends their relationship. Years later, she returns as a femme fatale to spoil his plans.
## 4047 Guido and Antonia are a young couple with opposing characters and working schedules: he works a night job as a doorman in a hotel, and she works as an employee for a rental car service. This is the story of what happens to Guido and Antonia when they decide to have a child.
## 4048 Set during the period of growing influence of the Indian independence movement in the British Raj, the story begins with the arrival in India of a British woman, Miss Adela Quested, who is joining her fiancé, a city magistrate named Ronny Heaslop. She and Ronny's mother, Mrs. Moore, befriend an Indian doctor, Aziz H. Ahmed.
## 4049 Irish Republican Army member Fergus forms an unexpected bond with Jody, a kidnapped British soldier in his custody, despite the warnings of fellow IRA members Jude and Maguire. Jody makes Fergus promise he'll visit his girlfriend, Dil, in London, and when Fergus flees to the city, he seeks her out. Hounded by his former IRA colleagues, he finds himself increasingly drawn to the enigmatic, and surprising, Dil.
## 4050 Although strangers Sara and Jonathan are both already in relationships, they realize they have genuine chemistry after a chance encounter – but part company soon after. Years later, they each yearn to reunite, despite being destined for the altar. But to give true love a chance, they have to find one another again.
## 4051 A Pennsylvania band scores a hit in 1964 and rides the star-making machinery as long as it can, with lots of help from its manager.
## 4052 Patrick is a tenacious lawyer specializing in environmental law. France is a schoolteacher who becomes an activist after her husband develops cancer from exposure to a pesticide. Mathias is an ambitious lobbyist working for an international chemical corporation. The paths of these characters collide as the lives of thousands are affected by a tragic act that sparks a powerful movement while the corporation fights to prevent the truth from being revealed.
## 4053 Starbuck is a 2011 Canadian comedy film directed by Ken Scott and written by Martin Petit and Ken Scott. The main character David Wozniak is a perpetual adolescent who discovers that, as a sperm donor, he has fathered 533 children. David, a deliveryman for a butcher shop, is being pursued by thugs because he owes them money. Next, he is advised that more than 100 of his offspring are trying to force the fertility clinic to reveal the true identity of "Starbuck", the pseudonym he used when donating sperm. In addition, his girlfriend Valérie is pregnant with his child but doesn't feel that he is mature enough to be a father. The film's title refers to a Canadian Holstein bull who produced hundreds of thousands of progeny by artificial insemination in the 1980s and 1990s.
## 4054 A concentration camp survivor discovers her former torturer and lover working as a porter at a hotel in postwar Vienna. When the couple attempt to re-create their sadomasochistic relationship, his former SS comrades begin to stalk them.
## 4055 Matthew, a young advertising executive in Chicago, puts his life and a business trip to China on hold when he thinks he sees Lisa, the love of his life who left him without a word two years earlier, walking out of a restaurant one day.
## 4056 When a plane crash claims the lives of members of the Marshall University football team and some of its fans, the team's new coach and his surviving players try to keep the football program alive.
## 4057 Dashing legionnaire Rick O'Connell stumbles upon the hidden ruins of Hamunaptra while in the midst of a battle to claim the area in 1920s Egypt. It has been over three thousand years since former High Priest Imhotep suffered a fate worse than death as a punishment for a forbidden love—along with a curse that guarantees eternal doom upon the world if he is ever awoken.
## 4058 A young and unskilled fairy godmother that ventures out on her own to prove her worth by tracking down a young girl whose request for help was ignored. What she discovers is that the girl has now become a grown woman in need of something very different than a "prince charming."
## 4059 The world’s top bodyguard gets a new client, a hitman who must testify at the International Court of Justice. They must put their differences aside and work together to make it to the trial on time.
## 4060 After 6 years together, Mike's girlfriend leaves him, so he travels to LA to be a star. Six months on, he's still not doing very well— so a few of his friends try to reconnect him to the social scene and hopefully help him forget his failed relationship.
## 4061 After a violent storm, a dense cloud of mist envelops a small Maine town, trapping artist David Drayton and his five-year-old son in a local grocery store with other people. They soon discover that the mist conceals deadly horrors that threaten their lives, and worse, their sanity.
## 4062 Alex the lion is the king of the urban jungle, the main attraction at New York's Central Park Zoo. He and his best friends—Marty the zebra, Melman the giraffe and Gloria the hippo—have spent their whole lives in blissful captivity before an admiring public and with regular meals provided for them. Not content to leave well enough alone, Marty lets his curiosity get the better of him and makes his escape—with the help of some prodigious penguins—to explore the world.
## 4063 The Roses, Barbara and Oliver, live happily as a married couple. Then she starts to wonder what life would be like without Oliver, and likes what she sees. Both want to stay in the house, and so they begin a campaign to force each other to leave. In the middle of the fighting is D'Amato, the divorce lawyer. He gets to see how far both will go to get rid of the other, and boy do they go far.
## 4064 A victim from World War II's "Death Railway" sets out to find those responsible for his torture. A true story.
## 4065 In Hamburg, German-Greek chef Zinos unknowingly disturbs the peace in his locals-only restaurant by hiring a more talented chef.
## 4066 When yet another anniversary passes without a marriage proposal from her boyfriend, Anna decides to take action. Aware of a Celtic tradition that allows women to pop the question on Feb. 29, she plans to follow her lover to Dublin and ask him to marry her. Fate has other plans, however, and Anna winds up on the other side of the Emerald Isle with handsome, but surly, Declan -- an Irishman who may just lead Anna down the road to true love.
## 4067 A cop investigates whether the man convicted of murdering his daughter is really guilty.
## 4068 A group of POWs in a German prison camp during World War II play the German National Soccer Team in this powerful film depicting the role of prisoners during wartime.
## 4069 A 9th century woman of English extraction born in the German city of Ingelheim disguises herself as a man and rises through the Vatican ranks.
## 4070 A myriad of outrageous calamities befall an eccentric English clan with more than a few skeletons in its closets, when its patriarch dies an unexpected death. Soon, every complication imaginable befall the grief-stricken mourners.
## 4071 A violent police detective investigates a brutal murder that might involve a manipulative and seductive novelist.
## 4072 More and more parents take competitive behavior towards the teachers of their children: deny votes and programs, vaneggiano of likes, dislikes, and conspiracies. So, instead of helping in the training of their children, they become insurmountable obstacles to their growth. Presumptuously they think: "We know better than anyone else our children and we know what they are worth and how and what you have to teach."
## 4073 Holmes and Dr. Watson take on the case of a beautiful woman whose husband has vanished. The investigation proves strange indeed, involving six missing midgets, villainous monks, a Scottish castle, the Loch Ness monster, and covert naval experiments.
## 4074 As a shocking truth about a couple's families emerges, the two lovers discover they are not so different from each other. Tessa is no longer the sweet, simple, good girl she was when she met Hardin — any more than he is the cruel, moody boy she fell so hard for.
## 4075 In a post-apocalyptic future where population control is dictated by a high-school aptitude test, two students discover the test is smoke and mirrors hiding a larger conspiracy.
## 4076 A talented street drummer from Harlem enrolls in a Southern university, expecting to lead its marching band's drumline to victory. He initially flounders in his new world, before realizing that it takes more than talent to reach the top.
## 4077 A former professional dancer volunteers to teach dance in the New York public school system and, while his background first clashes with his students' tastes, together they create a completely new style of dance. Based on the story of ballroom dancer, Pierre Dulane.
## 4078 Two young gentlemen living in 1890s England use the same pseudonym ("Ernest") on the sly, which is fine until they both fall in love with women using that name, which leads to a comedy of mistaken identities...
## 4079 To land a major client, an LA wine exec travels to an Australian sheep station, where she signs on as a ranch hand and hits it off with a rugged local.
## 4080 The Bellas are back, and they are better than ever. After being humiliated in front of none other than the President of the United States of America, the Bellas are taken out of the Aca-Circuit. In order to clear their name, and regain their status, the Bellas take on a seemingly impossible task: winning an international competition no American team has ever won. In order to accomplish this monumental task, they need to strengthen the bonds of friendship and sisterhood and blow away the competition with their amazing aca-magic! With all new friends and old rivals tagging along for the trip, the Bellas can hopefully accomplish their dreams.
## 4081 Tensions are high after a Danish freighter is captured and held for ransom by Somali pirates, leading to weeks of high-stakes negotiations – and an escalating potential for explosive violence.
## 4082 Three suburban English families' lives intertwine with tragic consequences.
## 4083 An opulent beach resort provides a scenic background to this amusing whodunit as Poirot attempts to uncover the nefarious evildoer behind the strangling of a notorious stage star.
## 4084 Phil's new phone comes with an unexpected feature, Jexi...an A.I. determined to keep him all to herself in a comedy about what can happen when you love your phone more than all else.
## 4085 In a world where monster wrestling is a global sport and monsters are superstar athletes, teenage Winnie seeks to follow in her father’s footsteps by coaching a loveable underdog monster into a champion.
## 4086 Following a huge misunderstanding, two friends always decide to tackle everything to make up for lost time.
## 4087 This film is based on the actual events that took place in 1971 when Stanford professor Dr. Philip Zimbardo created what became one of the most shocking and famous social experiments of all time.
## 4088 The balance of power in four couples’ relationships is upset when the women start using the advice in Steve Harvey’s book, Act Like A Lady, Think Like A Man, to get more of what they want from their men. When the men realize that the women have gotten a hold of their relationship “playbook,” they decide that the best defense is a good offense and come up with a plan to use this information to their advantage.
## 4089 A young woman's penchant for sensational Gothic novels leads to misunderstandings in the matters of the heart.
## 4090 Tyler Gage receives the opportunity of a lifetime after vandalizing a performing arts school, gaining him the chance to earn a scholarship and dance with an up and coming dancer, Nora.
## 4091 A story about bravery, self-sacrifice and human dignity put on trial by the merciless power of nature. A young pilot is fired from military air force after disobeying an absurd order. He gets a job as a co-pilot with a civil airline. Being brutally honest and direct, he is not on best terms with his new colleagues. During a flight to Asia his crew receives a distress message from a volcanic island and makes a decision to attempt a rescue mission. Will it be a success? Will they survive the disaster? They have a single chance to find that out: by being a team and sticking up for one another.
## 4092 Amy is only 13-years-old when her mother is killed. She goes to Canada to live with her father, an eccentric inventor whom she barely knows. Amy is miserable in her new life... until she discovers a nest of goose eggs that were abandoned when a local forest is torn down. The eggs hatch and Amy becomes "Mama Goose". When Winter comes, Amy, and her dad must find a way to lead the birds South….
## 4093 'Pleasantly plump' teenager Tracy Turnblad achieves her dream of becoming a regular on the Corny Collins Dance Show. Now a teen hero, she starts using her fame to speak out for the causes she believes in, most of all integration. In doing so, she earns the wrath of the show's former star, Amber Von Tussle, as well as Amber's manipulative, pro-segregation parents. The rivalry comes to a head as Amber and Tracy vie for the title of Miss Auto Show 1963.
## 4094 Still grieving after the murder of her boyfriend, hairdresser Justice writes poetry to deal with the pain of her loss. Unable to get to Oakland to attend a convention because of her broken-down car, Justice gets a lift with her friend, Iesha and Iesha's postal worker boyfriend, Chicago. Along for the ride is Chicago's co-worker, Lucky, to whom Justice grows close after some initial problems. But is she ready to open her heart again?
## 4095 Lewis, a brilliant young inventor, is keen on creating a time machine to find his mother, who abandoned him in an orphanage. Things take a turn when he meets Wilbur Robinson and his family.
## 4096 A mysterious woman recruits bank teller Ludwig Dieter to lead a group of aspiring thieves on a top-secret heist during the early stages of the zombie apocalypse.
## 4097 For teenage misfits Hunter and Kevin, the path to glory is clear: Devote themselves to metal. Win Battle of the Bands. And be worshipped like gods.
## 4098 Aircraft factory worker Barry Kane flees across the United States after he is wrongly accused of starting the fire that killed his best friend.
## 4099 In the summer of 1863, General Robert E. Lee leads the Confederate Army of Northern Virginia into Gettysburg, Pennsylvania with the goal of marching through to Washington, D.C. The Union Army of the Potomac, under the command of General George G. Meade, forms a defensive position to confront the rebel forces in what will prove to be the decisive battle of the American Civil War.
## 4100 After his wife dies, a blacksmith named Balian is thrust into royalty, political intrigue and bloody holy wars during the Crusades.
## 4101 The history of the clown Chocolate, the first black circus artist in France, which has a great success in the late 19th century.
## 4102 A documentary filmmaker explores seemingly unrelated paranormal incidents connected by the legend of an ancient demon called the "kagutaba."
## 4103 A day in the life of a group of teens as they travel around New York City skating, drinking, smoking and deflowering virgins.
## 4104 Young Shakespeare is forced to stage his latest comedy, "Romeo and Ethel, the Pirate's Daughter," before it's even written. When a lovely noblewoman auditions for a role, they fall into forbidden love -- and his play finds a new life (and title). As their relationship progresses, Shakespeare's comedy soon transforms into tragedy.
## 4105 A former special forces agent is trapped in a time loop and relives his death over and over again. To escape the terrible situation, he must track down those responsible and stop them.
## 4106 Based on the true story of an award-winning investigative journalist -- and avowed atheist -- who applies his well-honed journalistic and legal skills to disprove the newfound Christian faith of his wife... with unexpected, life-altering results.
## 4107 Francis Barnard goes to Spain, when he hears his sister Elizabeth has died. Her husband Nicholas Medina, the son of the most brutal torturer of the Spanish Inquisition, tells him she has died of a blood disease, but Francis finds this hard to believe. After some investigating he finds out that it was extreme fear that was fatal to his sister and that she may have been buried alive!
## 4108 Intrepid young reporter, Tintin, and his loyal dog, Snowy, are thrust into a world of high adventure when they discover a ship carrying an explosive secret. As Tintin is drawn into a centuries-old mystery, Ivan Ivanovitch Sakharine suspects him of stealing a priceless treasure. Tintin and Snowy, with the help of salty, cantankerous Captain Haddock and bumbling detectives, Thompson and Thomson, travel half the world, one step ahead of their enemies, as Tintin endeavors to find the Unicorn, a sunken ship that may hold a vast fortune, but also an ancient curse.
## 4109 An inside look at Italy's modern-day crime families, the Camorra in Naples and Caserta. Based on a book by Roberto Saviano. Power, money and blood: these are the "values" that the residents of the Province of Naples and Caserta have to face every day. They hardly ever have a choice and are forced to obey the rules of the Camorra. Only a lucky few can even think of leading a normal life.
## 4110 A recently widowed man and his two teenage daughters travel to a game reserve in South Africa. However, their journey of healing soon turns into a fight for survival when a bloodthirsty lion starts to stalk them.
## 4111 Alice and Jack are lucky to be living in the idealized community of Victory, the experimental company town housing the men who work for the top-secret Victory Project and their families. But when cracks in their idyllic life begin to appear, exposing flashes of something much more sinister lurking beneath the attractive façade, Alice can’t help questioning exactly what they’re doing in Victory, and why.
## 4112 In a desperate attempt to reach Europe and crouched before an airstrip in Cameroon, a six-year-old boy and his older sister wait to sneak into the holds of an airplane. Not too far away, an environmental activist contemplates the terrible image of an elephant, dead and fangless. Not only do you have to fight against poaching, but you will also have to meet the problems of your newly arrived daughter from Spain. Thousands of kilometers to the north, in Melilla, a group of civil guards prepare to face the furious crowd of sub-Saharan people who have begun the assault on the fence. Three stories linked by a central theme, in which none of its protagonists know that their destinies are doomed to cross and that their lives will no longer be the same.
## 4113 The story follows Carol Danvers as she becomes one of the universe’s most powerful heroes when Earth is caught in the middle of a galactic war between two alien races. Set in the 1990s, Captain Marvel is an all-new adventure from a previously unseen period in the history of the Marvel Cinematic Universe.
## 4114 An obscure Eastern cult that practices human sacrifice pursues Ringo after he unknowingly puts on a ceremonial ring (that, of course, won't come off). On top of that, a pair of mad scientists, members of Scotland Yard, and a beautiful but dead-eyed assassin all have their own plans for the Fab Four.
## 4115 A British multinational company seeks to overthrow a vicious dictator in central Africa. It hires a band of (largely aged) mercenaries in London and sends them in to save the virtuous but imprisoned opposition leader who is also critically ill and due for execution. Just when the team has performed a perfect rescue, the multinational does a deal with the vicious dictator leaving the mercenary band to escape under their own steam and exact revenge.
## 4116 26 year-old Karl Marx embarks with his wife, Jenny, on the road to exile. In 1844 in Paris, he meets Friedrich Engels, an industrialist’s son, who has been investigating the sordid birth of the British working class. Engels, the dandy, provides the last piece of the puzzle to the young Karl Marx’s new vision of the world. Together, between censorship and the police’s repression, riots and political upheavals, they will lead the labor movement during its development into a modern era.
## 4117 Freshman high-school student Melinda has refused to speak ever since she called the cops on a popular summer party. With her old friends snubbing her for being a rat, and her parents too busy to notice her troubles, she folds into herself, trying to hide her secret: that star senior Andy raped her at the party. But Melinda does manage to find solace in her art class headed by Mr. Freeman.
## 4118 When a nobleman is threatened by a family curse on his newly inherited estate, detective Sherlock Holmes is hired to investigate.
## 4119 The amazing, true story of a Uruguayan rugby team's plane that crashed in the middle of the Andes mountains, and their immense will to survive and pull through alive, forced to do anything and everything they could to stay alive on meager rations and through the freezing cold.
## 4120 In war-torn Japan, the Tokugawa Shogun, desperate to restore peace to his people, orders the assassination of the hostile warlords. A beautiful young woman is raised from birth with nine other orphans, to become an assassin. Her name is Azumi, the ultimate assassin.
## 4121 Sudan, East Africa, 1980. A team of Israeli Mossad agents plans to rescue and transfer thousands of Ethiopian Jews to Israel. To do so, and to avoid raising suspicions from the inquisitive and ruthless authorities, they establish as a cover a fake diving resort by the Red Sea.
## 4122 Life's a beach for surfers Brady and McKenzie – until a rogue wave magically transports them inside the classic '60s beach party flick, "Wet Side Story," where a full-blown rivalry between bikers and surfers threatens to erupt. There, amidst a sea of surfing, singing and dancing, Brady and Mack accidentally change the storyline, and the film’s dreamy hero and heroine fall for them instead of for each other!
## 4123 When plans with her boyfriend fall through, high school senior Chris Parker ends up babysitting the Anderson kids, Brad and Sara. What should be a quiet night in, however, turns into a series of ridiculous exploits, starting when they leave the house to pick up Chris' friend Brenda. Soon, Brad's buddy Daryl is involved, and the group must contend with car thieves, blues musicians and much more.
## 4124 A God-fearing bluesman takes to a wild young woman who, as a victim of childhood sexual abuse, is looking everywhere for love, but never quite finding it.
## 4125 In late 1930s Ferrara, Italy, the Finzi-Continis are a leading family: wealthy, aristocratic, and urbane; they are also Jewish. Their adult children, Micol and Alberto, gather a diverse circle of friends for tennis and parties at their villa with its lovely grounds, and try to keep the rest of the world at bay. But tensions between them all grow as anti-Semitism rises in Fascist Italy, and even the Finzi-Continis will have to confront the Holocaust.
## 4126 A family takes refuge in a fallout shelter to avoid a dangerous outbreak.
## 4127 A mild-mannered college professor discovers a look-alike actor and delves into the other man's private affairs.
## 4128 A bigoted junkie cop suffering from bipolar disorder and drug addiction manipulates and hallucinates his way through the festive season in a bid to secure promotion and win back his wife and daughter.
## 4129 Agent Coulson stops at a convenience store and deals with a coincidental robbery during his visit.
## 4130 In high school, Schmidt was a dork and Jenko was the popular jock. After graduation, both of them joined the police force and ended up as partners riding bicycles in the city park. Since they are young and look like high school students, they are assigned to an undercover unit to infiltrate a drug ring that is supplying high school students synthetic drugs.
## 4131 Once an architect, Frank Bannister now passes himself off as an exorcist of evil spirits. To bolster his facade, he claims his "special" gift is the result of a car accident that killed his wife. But what he does not count on is more people dying in the small town where he lives. As he tries to piece together the supernatural mystery of these killings, he falls in love with the wife of one of the victims and deals with a crazy FBI agent.
## 4132 The breathtaking story of a man who nearly would have changed the world. In 1939, when Hitler tricked millions of people at the height of his power, radical Georg Elser — disparaged as an assassin — is one of the greatest resistance fighters.
## 4133 A set of six nested stories spanning time between the 19th century and a distant post-apocalyptic future. Cloud Atlas explores how the actions and consequences of individual lives impact one another throughout the past, the present and the future. Action, mystery and romance weave through the story as one soul is shaped from a killer into a hero and a single act of kindness ripples across centuries to inspire a revolution in the distant future. Based on the award winning novel by David Mitchell. Directed by Tom Tykwer and the Wachowskis.
## 4134 In the futuristic action thriller Looper, time travel will be invented but it will be illegal and only available on the black market. When the mob wants to get rid of someone, they will send their target 30 years into the past where a looper, a hired gun, like Joe is waiting to mop up. Joe is getting rich and life is good until the day the mob decides to close the loop, sending back Joe's future self for assassination.
## 4135 Nerdy high schooler Jerry Mitchell is assigned to write an article for the school paper about the infamous new delinquent transfer student, Buddy Revell. When Jerry accidentally invades Buddy's personal space and touches him, Buddy challenges Jerry to an afterschool fight in the parking lot, which Jerry tries to avoid at all costs.
## 4136 Gianni is a serial seducer but his life is destined to change when he meets Chiara, a beautiful woman who has had an accident and is paraplegic.
## 4137 Music superstars Kat Valdez and Bastian are getting married before a global audience of fans. But when Kat learns, seconds before her vows, that Bastian has been unfaithful, she decides to marry Charlie, a stranger in the crowd, instead.
## 4138 A ventriloquist is at the mercy of his vicious dummy while he tries to renew a romance with his high school sweetheart.
## 4139 As a result of nuclear testing, gigantic, ferocious mutant ants appear in the American desert southwest, and a father-daughter team of entomologists join forces with the state police officer who first discovers their existence, an FBI agent and, eventually, the US Army to eradicate the menace, before it spreads across the continent, and the world.
## 4140 When a powerful satellite system falls into the hands of Alec Trevelyan, AKA Agent 006, a former ally-turned-enemy, only James Bond can save the world from a dangerous space weapon that -- in one short pulse -- could destroy the earth! As Bond squares off against his former compatriot, he also battles Xenia Onatopp, an assassin who uses pleasure as her ultimate weapon
## 4141 27 years after overcoming the malevolent supernatural entity Pennywise, the former members of the Losers' Club, who have grown up and moved away from Derry, are brought back together by a devastating phone call.
## 4142 To build up attendance at their games, the management of a struggling minor-league hockey team signs up the Hanson Brothers, three hard-charging players whose job is to demolish the opposition.
## 4143 When scientists exploring the Amazon River stumble on a “missing link” connecting humans and fish, they plan to capture it for later study. But the Creature has plans of his own, and has set his sights on the lead scientist's beautiful fiancée, Kay.
## 4144 In 1930’s England, a group of pretentious rich and famous gather together for a weekend of relaxation at a hunting resort. But when a murder occurs, each one of these interesting characters becomes a suspect.
## 4145 No sooner does Italian-American widow Loretta accept a marriage proposal from her doltish boyfriend, Johnny, than she finds herself falling for his younger brother, Ronny. She tries to resist, but Ronny lost his hand in an accident he blames on his brother, and has no scruples about aggressively pursuing her while Johnny is out of the country. As Loretta falls deeper in love, she comes to learn that she's not the only one in her family with a secret romance.
## 4146 Nelson is a man devoted to his advertising career in San Francisco. One day, while taking a driving test at the DMV, he meets Sara. She is very different from the other women in his life. Nelson causes her to miss out on taking the test and later that day she tracks him down. One thing leads to another and Nelson ends up living with her through a November that will change his life forever.
## 4147 The South African multi-award winning film about a young South African boy from the ghetto named Tsotsi, meaning Gangster. Tsotsi, who left home as a child to get away from helpless parents, finds a baby in the back seat of a car that he has just stolen. He decides that it his responsibility to take care of the baby and in the process learns that maybe the gangster life isn’t the best way.
## 4148 Ever since US Diplomatic Security Service Agent Hobbs and lawless outcast Shaw first faced off, they just have traded smack talk and body blows. But when cyber-genetically enhanced anarchist Brixton's ruthless actions threaten the future of humanity, they join forces to defeat him.
## 4149 Set in ancient China, Zeng Jing is a skilled assassin who finds herself in possession of a mystical Buddhist monk's remains. She begins a quest to return the remains to its rightful resting place, and thus places herself in mortal danger because a team of assassins is in a deadly pursuit to possess the remains which holds an ancient power-wielding secret.
## 4150 On her 13th birthday, Marnie learns she's a witch, discovers a secret portal, and is transported to Halloweentown — a magical place where ghosts and ghouls, witches and werewolves live apart from the human world. But she soon finds herself battling wicked warlocks, evil curses, and endless surprises.
## 4151 Two gay men living in St. Tropez have their lives turned upside down when the son of one of the men announces he is getting married. They try to conceal their lifestyle and their ownership of the transvestite club downstairs when the fiancée and her parents come for dinner.
## 4152 A young autistic woman runs away from her caregiver in order to boldly go and deliver her 500-page Star Trek script to a writing competition in Hollywood. On an adventure full of laughter and tears, Wendy follows the guiding spirit of Mr. Spock on her journey into the unknown.
## 4153 Ash and friends (this time accompanied by newcomer Dawn) arrive at an idyllic village on their way to their next Pokemon contest, where chaos will soon erupt with the prophecy of two Pokemon Gods (Dialga and Palkia) and the arrival of a mysterious, seemingly deadly Pokemon named Darkrai, which has the power to distort space and time.
## 4154 Writer H. G. Wells pursues Jack the Ripper to modern day San Francisco after the infamous serial killer steals his time machine to escape the 19th century.
## 4155 Madison is paralyzed by shocking visions of grisly murders, and her torment worsens as she discovers that these waking dreams are in fact terrifying realities with a mysterious tie to her past.
## 4156 In 1843, despite the fact that Dickens is a successful writer, the failure of his latest book puts his career at a crossroads, until the moment when, struggling with inspiration and confronting reality with his childhood memories, a new character is born in the depths of his troubled mind; an old, lonely, embittered man, so vivid, so human, that a whole world grows around him, a story so inspiring that changed the meaning of Christmas forever.
## 4157 Five years after an ominous unseen presence drives most of society to suicide, a survivor and her two children make a desperate bid to reach safety.
## 4158 The celebration of the 50th anniversary of “Capitol-Insurance” is due – that's what the bosses thought. All employees are invited to join the party in a hotel. However, rumors say the company's not doing very well. To avoid unemployment due to the possible shutdown of the smaller branch office the only option is to move to the headquarters. Now that's the ultimate challange for Stromberg, who is notoriously trying to be the example of a department manager, gathering all of his employees behind him.
## 4159 The revealing story of the 16th US President's tumultuous final months in office. In a nation divided by war and the strong winds of change, Lincoln pursues a course of action designed to end the war, unite the country and abolish slavery. With the moral courage and fierce determination to succeed, his choices during this critical moment will change the fate of generations to come.
## 4160 In Glasgow, Scotland, while a mysterious pandemic begins to spread around the world, Susan, a brilliant epidemiologist, falls in love with Michael, a skillful cook.
## 4161 As war between humankind and monstrous sea creatures wages on, a former pilot and a trainee are paired up to drive a seemingly obsolete special weapon in a desperate effort to save the world.
## 4162 Oliver meets the irreverent and unpredictable Anna only months after his father Hal Fields has passed away. This new love floods Oliver with memories of his father, who, following the death of his wife of 44 years, came out of the closet at age 75 to live a full, energized, and wonderfully tumultuous gay life – which included a younger boyfriend.
## 4163 Saxophone player Charlie Parker comes to New York in 1940. He is quickly noticed for his remarkable way of playing. He becomes a drug addict but his loving wife Chan tries to help him.
## 4164 Katy McLaughlin desires to work on her family's mountainside horse ranch, although her father insists she finish boarding school. Katy finds a mustang in the hills near her ranch. The headstrong 16 year old then sets her mind to tame a mustang and prove to her father she can run the ranch. But when tragedy happens, it will take all the love and strength the family can muster to restore hope.
## 4165 William Thatcher, a knight's peasant apprentice, gets a chance at glory when the knight dies suddenly mid-tournament. Posing as a knight himself, William won't stop until he's crowned tournament champion—assuming matters of the heart don't get in the way.
## 4166 In 1950s Pittsburgh, a frustrated African-American father struggles with the constraints of poverty, racism, and his own inner demons as he tries to raise a family.
## 4167 Continuing his "legendary adventures of awesomeness", Po must face two hugely epic, but different threats: one supernatural and the other a little closer to his home.
## 4168 A wounded criminal and his dying partner take refuge at an old beachfront fortress. The owner of the fortress and his young wife, initially unwilling hosts, quickly experience their relationship with the criminal shift in a humorous and bizarre fashion.
## 4169 Now the world champion, Rocky Balboa is living in luxury and only fighting opponents who pose no threat to him in the ring, until Clubber Lang challenges him to a bout. After taking a pounding from Lang, the humbled champ turns to former bitter rival Apollo Creed for a rematch with Lang.
## 4170 Snoopy embarks upon his greatest mission as he and his team take to the skies to pursue their arch-nemesis, while his best pal Charlie Brown begins his own epic quest.
## 4171 A psychiatrist comes to the aid of a compulsive gambler and is led by a smooth-talking grifter into the shadowy but compelling world of stings, scams, and con men.
## 4172 Miser Ebenezer Scrooge is awakened on Christmas Eve by spirits who reveal to him his own miserable existence, what opportunities he wasted in his youth, his current cruelties, and the dire fate that awaits him if he does not change his ways. Scrooge is faced with his own story of growing bitterness and meanness, and must decide what his own future will hold: death or redemption.
## 4173 A group of young boys on the cusp of becoming teenagers embark on an epic quest to fix their broken drone before their parents get home.
## 4174 In the weekend after thanksgiving 1973 the Hood family is skidding out of control. Then an ice storm hits, the worst in a century.
## 4175 A young tomboy, Watts, finds her feelings for her best friend, Keith, run deeper than just friendship when he gets a date with the most popular girl in school.
## 4176 A suburban family chooses seemingly sweet Peyton Flanders as their newborn's nanny. Only much later does the infant's mother, Claire Bartel, realize Peyton's true intentions -- to destroy Claire and replace her in the family. The nail-biting suspense builds quickly in this chilling psychological thriller about deception and bitter revenge.
## 4177 An African prince decides it’s time for him to find a princess... and his mission leads him and his most loyal friend to Queens, New York. In disguise as an impoverished immigrant, the pampered prince quickly finds himself a new job, new friends, new digs, new enemies and lots of trouble.
## 4178 While holidaying in the French Alps, a Swedish family deals with acts of cowardliness as an avalanche breaks out.
## 4179 True-crime writer Ellison Oswald is in a slump; he hasn't had a best seller in more than 10 years and is becoming increasingly desperate for a hit. So, when he discovers the existence of a snuff film showing the deaths of a family, he vows to solve the mystery. He moves his own family into the victims' home and gets to work. However, when old film footage and other clues hint at the presence of a supernatural force, Ellison learns that living in the house may be fatal.
## 4180 On July 2, a giant alien mothership enters orbit around Earth and deploys several dozen saucer-shaped 'destroyer' spacecraft that quickly lay waste to major cities around the planet. On July 3, the United States conducts a coordinated counterattack that fails. On July 4, a plan is devised to gain access to the interior of the alien mothership in space, in order to plant a nuclear missile.
## 4181 Born into a tight-knit wrestling family, Paige and her brother Zak are ecstatic when they get the once-in-a-lifetime opportunity to try out for the WWE. But when only Paige earns a spot in the competitive training program, she must leave her loved ones behind and face this new cutthroat world alone. Paige's journey pushes her to dig deep and ultimately prove to the world that what makes her different is the very thing that can make her a star.
## 4182 A true story of survival, as a young couple's chance encounter leads them first to love, and then on the adventure of a lifetime as they face one of the most catastrophic hurricanes in recorded history.
## 4183 A man-cub named Mowgli fostered by wolves. After a threat from the tiger Shere Khan, Mowgli is forced to flee the jungle, by which he embarks on a journey of self discovery with the help of the panther, Bagheera and the free-spirited bear, Baloo.
## 4184 Upstanding community leader Nils has just won an award for "Citizen of the Year" when he learns the news that his son has died of a heroin overdose. Suspecting foul play, Nils begins to investigate, and soon finds himself at the center of an escalating underworld gang war between Serbian drug dealers and a sociopathic criminal mastermind known only as “The Count.”
## 4185 In 1933 New York, an overly ambitious movie producer coerces his cast and hired ship crew to travel to mysterious Skull Island, where they encounter Kong, a giant ape who is immediately smitten with the leading lady.
## 4186 A chronicle of Nelson Mandela's life journey from his childhood in a rural village through to his inauguration as the first democratically elected president of South Africa.
## 4187 Hick handymen Val McKee and Earl Bassett can barely eke out a living in the Nevada hamlet of Perfection, so they decide to leave town -- despite an admonition from a shapely seismology coed who's picking up odd readings on her equipment. Before long, Val and Earl discover what's responsible for those readings: 30-foot-long carnivorous worms with a proclivity for sucking their prey underground.
## 4188 When an inner-city Miami schoolteacher gets her knee broken after standing up to the school's gang leader, her mercenary combat specialist boyfriend goes undercover as a substitute teacher to take down the punk. Soon he discovers a conspiracy of criminals at work, and must reassemble his team from his last jungle raid to stop them.
## 4189 Three women set out to find eligible millionaires to marry, but find true love in the process.
## 4190 The story of a gang of children growing up in a community of banished criminals, in a forgotten corner of the former Soviet Union. This community rejects the world outside. The only law it obeys… is its own. Against this backdrop two best friends, Kolyma and Gagarin, gradually become fierce enemies as they find themselves on opposite sides of the strict code of honour of the ‘honest criminal’ brotherhood.
## 4191 Raven Shaddock and his gang of merciless biker friends kidnap rock singer Ellen Aim. Ellen's former lover, soldier-for-hire Tom Cody, happens to be passing through town on a visit. In an attempt to save his star act, Ellen's manager hires Tom to rescue her. Along with a former soldier, they battle through dangerous cityscapes, determined to get Ellen back.
## 4192 Teenagers living in small-town Oregon take a boat trip for a birthday celebration. When they get an idea to play a mean trick on the town bully, it suddenly goes too far. Soon they're forced to deal with the unexpected consequences of their actions.
## 4193 To win the right to marry his love, the beautiful princess Andromeda, and fulfil his destiny, half-God-half-mortal Perseus must complete various tasks including taming Pegasus, capturing Medusa's head and battling the feared Kraken.
## 4194 Marshall Jed Cooper survives a hanging, vowing revenge on the lynch mob that left him dangling. To carry out his oath for vengeance, he returns to his former job as a lawman. Before long, he's caught up with the nine men on his hit list and starts dispensing his own brand of Wild West justice.
## 4195 A rancher, his clairvoyant wife and their family face turbulent years in South America.
## 4196 Two unmarried women who have become pregnant by accident and are about to give birth meet in a hospital room: Janis, middle-aged, unrepentant and happy; Ana, a teenager, remorseful and frightened.
## 4197 In a secluded house in a small seaside town live four unrelated men and the woman who tends to the house and their needs. All former priests, they have been sent to this quiet exile to purge the sins of their pasts, the separation from their communities the worst form of punishment by the Church. They keep to a strict daily schedule devoid of all temptation and spontaneity, each moment a deliberate effort to atone for their wrongdoings.
## 4198 Recently divorced mom Lauren and widowed dad Jim let their friends push them into a blind date, which goes disastrously wrong. Unsurprisingly, neither wants to see the other ever again. However, fate intervenes when both Jim and Lauren, unbeknown to each other, purchase one-half of the same vacation package at a South African resort for families. They and their children are forced to share the same suite and participate in a slew of family activities together, where their attractions grows as their respective kids benefit from the burgeoning relationship.
## 4199 Grocery store clerk Simon occasionally sells drugs from his cash register at work, so when soap opera actors Adam and Zack come looking for Ecstasy on a quiet Christmas Eve, they are surprised to find Ronna covering his shift. Desperate for money, Ronna decides to become an impromptu drug dealer, unaware that Adam and Zack are secretly working for obsessed narcotics officer Burke.
## 4200 A gang of teenage boys stalk the streets of Naples armed with hand guns and AK-47s to do their mob bosses' bidding – until they decide to be the bosses themselves.
## 4201 In an alternate present-day version of Oakland, black telemarketer Cassius Green discovers a magical key to professional success – which propels him into a macabre universe.
## 4202 A look at the lives of the strong-willed women of the Weston family, whose paths have diverged until a family crisis brings them back to the Midwest house they grew up in, and to the dysfunctional woman who raised them.
## 4203 As children, Kathy, Ruth, and Tommy spend their childhood at an idyllic and secluded English boarding school. As they grow into adults, they must come to terms with the complexity and strength of their love for one another while also preparing for the haunting reality awaiting them.
## 4204 Bill and Ted are high school buddies starting a band. They are also about to fail their history class—which means Ted would be sent to military school—but receive help from Rufus, a traveller from a future where their band is the foundation for a perfect society. With the use of Rufus' time machine, Bill and Ted travel to various points in history, returning with important figures to help them complete their final history presentation.
## 4205 A world-weary college professor is given a life-changing diagnosis and decides to throw all pretense and conventions to the wind and live his life as boldly and freely as possible with a biting sense of humor, a reckless streak and a touch of madness.
## 4206 Sully is a rascally ne'er-do-well approaching retirement age. While he is pressing a worker's compensation suit for a bad knee, he secretly works for his nemesis, Carl, and flirts with Carl's young wife Toby. Sully's long- forgotten son and family have moved back to town, so Sully faces unfamiliar family responsibilities. Meanwhile, Sully's landlady's banker son plots to push through a new development and evict Sully from his mother's life.
## 4207 A social butterfly who dies during her birthday week is given a second chance to right her wrongs on Earth.
## 4208 A young girl is raised as a killer in the Yanbian province of China. She hides her identity and travels to South Korea where she hopes to lead a quiet life but becomes involved with two mysterious men.
## 4209 A grieving widower is drawn into a custody battle over his granddaughter, whom he helped raise her entire life.
## 4210 U.S. federal agent Leon S. Kennedy sneaks into the "East Slavic Republic" to verify rumors that Bio-Organic Weapons (BOWs) are being used in the country's civil war, which the U.S. and Russia are making preparations to jointly intervene in. Right after his infiltration, the U.S. government orders him to leave immediately. Determined to uncover the truth, Leon ignores the order and enters the battlefield to end the chain of tragedies caused by the BOWs.
## 4211 An ancient Egyptian priest named Imhotep is revived when an archaeological expedition finds his mummy and one of the archaeologists accidentally reads an ancient life-giving spell. Imhotep escapes from the field site and searches for the reincarnation of the soul of his lover.
## 4212 After receiving a package from his grandfather, Ray, a young inventor who lives in England during the mid-19th century, finds himself caught in the middle of a deadly conflict related to a revolutionary advance in steam power.
## 4213 Abahachi, Chief of the Apache Indians, and his blood brother Ranger maintain peace and justice in the Wild West. One day, Abahachi needs to take up a credit from the Shoshone Indians to finance his tribe's new saloon. Unfortunately Santa Maria, who sold the saloon, betrays Abahachi, takes the money and leaves. Soon, the Shoshones are on the warpath to get their money back, and Abahachi is forced to organize it quickly.
## 4214 Captain Glass of the USS Arkansas discovers that a coup d'état is taking place in Russia, so he and his crew join an elite group working on the ground to prevent a war.
## 4215 Five close friends, all of them married, share a loft to meet their mistresses. One day they find the body of a young woman in the loft. Since there are only five keys to the loft, the five men begin to suspect each other of murder.
## 4216 Christian, a hunky, 20-something, West Hollywood party boy gets more than he bargains for when he tries to seduce 19-year-old Elder Aaron Davis, a sexually confused Mormon missionary who moves into his apartment complex.
## 4217 In this animated follow-up to Fairytopia, Elina enlists the help of a mermaid, Nori, to save her friend Nalu, a merman prince who has been captured by the wicked Laverna.
## 4218 Christmas Eve takes a twisty turn when the Boss Baby accidentally swaps places with one of Santa's elves and gets stranded at the North Pole.
## 4219 An absurdist, surrealistic and shocking pitch-black comedy, which moves freely from nightmare to fantasy to hilariously deadpan humour as it muses on man’s perpetual inhumanity to man.
## 4220 The great King Gurumes is searching for the Dragon Balls in order to put a stop to his endless hunger. A young girl named Pansy who lives in the nearby village has had enough of the treachery and decides to seek Muten Rōshi for assistance. Can our heroes save the village and put a stop to the Gurumes Army?
## 4221 The two pigs building houses of hay and sticks scoff at their brother, building the brick house. But when the wolf comes around and blows their houses down (after trickery like dressing as a foundling sheep fails), they run to their brother's house. And throughout, they sing the classic song, "Who's Afraid of the Big Bad Wolf?".
## 4222 Martin, who believes himself to be a vampire, goes to live with his elderly and hostile cousin in a small Pennsylvania town where he tries to redeem his blood-craving urges.
## 4223 In New York, racist Capt. Stanley White becomes obsessed with destroying a Chinese-American drug ring run by Joey Tai, an up-and-coming young gangster as ambitious as he is ruthless. While pursuing an unauthorized investigation, White grows increasingly willing to violate police protocol, resorting to progressively violent measures -- even as his concerned wife, Connie, and his superiors beg him to consider the consequences of his actions.
## 4224 Blindsided by a new generation of blazing-fast racers, the legendary Lightning McQueen is suddenly pushed out of the sport he loves. To get back in the game, he will need the help of an eager young race technician with her own plan to win, inspiration from the late Fabulous Hudson Hornet, and a few unexpected turns. Proving that #95 isn't through yet will test the heart of a champion on Piston Cup Racing’s biggest stage!
## 4225 Josie, the daughter of the town's wealthiest businessman, faces problems at home and wishes to leave town but is disoriented. Her decision is finalized after she falls asleep in a Target dressing room. She awakens to find herself locked in the store overnight with the janitor, Jim, the town "no hoper" and liar.
## 4226 When Eve, an interior designer, is deserted by her husband of many years, Arthur, the emotionally glacial relationships of the three grown-up daughters are laid bare. Twisted by jealousy, insecurity and resentment, Renata, a successful writer; Joey, a woman crippled by indecision; and Flyn, a budding actress; struggle to communicate for the sake of their shattered mother. But when their father unexpectedly falls for another woman, his decision to remarry sets in motion a terrible twist of fate…
## 4227 After a rough divorce, Frances, a 35 year old book editor from San Francisco takes a tour of Tuscany at the urgings of her friends. On a whim she buys Bramasole, a run down villa in the Tuscan countryside and begins to piece her life together starting with the villa and finds that life sometimes has unexpected ways of giving her everything she wanted.
## 4228 In the class-obsessed and religiously divided UK of the early 1920s, two determined young runners train for the 1924 Paris Olympics. Eric Liddell, a devout Christian born to Scottish missionaries in China, sees running as part of his worship of God's glory and refuses to train or compete on the Sabbath. Harold Abrahams overcomes anti-Semitism and class bias, but neglects his beloved sweetheart in his single-minded quest.
## 4229 Desperate for income, Emily takes a shady gig buying goods with stolen credit cards supplied by a charismatic middleman named Youcef. Seduced by the quick cash and illicit thrills, they hatch a plan to take their business to the next level.
## 4230 The rigorous city life of China, while bustling and unforgiving, contains the everlasting memories of days past. Three stories told in three different cities, follow the loss of youth and the daunting realization of adulthood. Though reality may seem ever changing, unchangeable are the short-lived moments of one's childhood days. A plentiful bowl of noodles, the beauty of family and the trials of first love endure the inevitable flow of time, as three different characters explore the strength of bonds and the warmth of cherished memories. Within the disorder of the present world, witness these quaint stories recognize the comfort of the past, and attempt to revive the neglected flavors of youth.
## 4231 Max and Annie's weekly game night gets kicked up a notch when Max's brother Brooks arranges a murder mystery party -- complete with fake thugs and federal agents. So when Brooks gets kidnapped, it's all supposed to be part of the game. As the competitors set out to solve the case, they start to learn that neither the game nor Brooks are what they seem to be. The friends soon find themselves in over their heads as each twist leads to another unexpected turn over the course of one chaotic night.
## 4232 Unpolished and ultra-pragmatic industrialist Jean-Jacques Castella reluctantly attends Racine's tragedy "Berenice" in order to see his niece play a bit part. He is taken with the play's strangely familiar-looking leading lady Clara Devaux. During the course of the show, Castella soon remembers that he once hired and then promptly fired the actress as an English language tutor. He immediately goes out and signs up for language lessons. Thinking that he is nothing but an ill-tempered philistine with bad taste, Clara rejects him until Castella charms her off her feet.
## 4233 The young D'Artagnan arrives in Paris with dreams of becoming a king's musketeer. He meets and quarrels with three men, Athos, Porthos, and Aramis, each of whom challenges him to a duel. D'Artagnan finds out they are musketeers and is invited to join them in their efforts to oppose Cardinal Richelieu, who wishes to increase his already considerable power over the king. D'Artagnan must also juggle affairs with the charming Constance Bonancieux and the passionate Lady De Winter, a secret agent for the cardinal.
## 4234 Four girlfriends take a trip to New Orleans for an annual festival and, along the way, rediscover their wild sides and strengthen the bonds of sisterhood.
## 4235 The true story of pilot Barry Seal, who transported contraband for the CIA and the Medellin cartel in the 1980s.
## 4236 On Anna's birthday, Elsa and Kristoff are determined to give her the best celebration ever, but Elsa's icy powers may put more than just the party at risk.
## 4237 A young boy has lost his mother and is losing touch with his father and the world around him. Then he meets Hesher who manages to make his life even more chaotic.
## 4238 A college student starts to experience extreme seizures. She soon learns that the violent episodes are a symptom of inexplicable abilities.
## 4239 Rey develops her newly discovered abilities with the guidance of Luke Skywalker, who is unsettled by the strength of her powers. Meanwhile, the Resistance prepares to do battle with the First Order.
## 4240 A conman and his seductive partner are forced to work for a wild FBI agent, who pushes them into a world of Jersey power-brokers and the Mafia.
## 4241 A game designer on the run from assassins must play her latest virtual reality creation with a marketing trainee to determine if the game has been damaged.
## 4242 Dr. Stephen Strange embarks on a wondrous journey to the heights of a Tibetan mountain, where he seeks healing at the feet of the mysterious Ancient One.
## 4243 In the 1930s, jazz guitarist Emmet Ray idolizes Django Reinhardt, faces gangsters and falls in love with a mute woman.
## 4244 The rise of Aretha Franklin’s career from a child singing in her father’s church’s choir to her international superstardom.
## 4245 During the times of King Arthur, Kayley is a brave girl who dreams of following her late father as a Knight of the Round Table. The evil Ruber wants to invade Camelot and take the throne of King Arthur, and Kayley has to stop him.
## 4246 Director Christopher Guest reunites the team from "Best In Show" and "Waiting for Guffman" to tell the story of 60's-era folk musicians, who, inspired by the death of their former manager, get back on the stage for one concert in New York City's Town Hall.
## 4247 Before going on vacation, self-involved psychiatrist Dr. Leo Marvin has the misfortune of taking on a new patient: Bob Wiley. An exemplar of neediness and a compendium of phobias, Bob follows Marvin to his family's country house. Dr. Marvin tries to get him to leave; the trouble is, everyone loves Bob. As his oblivious patient makes himself at home, Dr. Marvin loses his professional composure and, before long, may be ready for the loony bin himself.
## 4248 George Orwell's novel of a totalitarian future society in which a man whose daily work is rewriting history tries to rebel by falling in love.
## 4249 When the dastardly Sheriff of Nottingham murders Robin's father, the legendary archer vows vengeance. To accomplish his mission, Robin joins forces with a band of exiled villagers (and comely Maid Marian), and together they battle to end the evil sheriff's reign of terror.
## 4250 After making their way through high school (twice), big changes are in store for officers Schmidt and Jenko when they go deep undercover at a local college. But when Jenko meets a kindred spirit on the football team, and Schmidt infiltrates the bohemian art major scene, they begin to question their partnership. Now they don't have to just crack the case - they have to figure out if they can have a mature relationship. If these two overgrown adolescents can grow from freshmen into real men, college might be the best thing that ever happened to them.
## 4251 A young man travels to an isolated farm for his lover's funeral where he's quickly drawn into a twisted, sexually charged game by his lover's aggressive brother.
## 4252 A hard-nosed, hard-living Marine gunnery sergeant clashes with his superiors and his ex-wife as he takes command of a spoiled recon platoon with a bad attitude.
## 4253 Maverick is a gambler who would rather con someone than fight them, and needs an additional three thousand dollars in order to enter a winner-takes-all poker game that begins in a few days, so he joins forces with a woman gambler with a marvellous southern accent, and the two try and enter the game.
## 4254 Geeky student Arnie Cunningham falls for Christine, a rusty 1958 Plymouth Fury, and becomes obsessed with restoring the classic automobile to her former glory. As the car changes, so does Arnie, whose newfound confidence turns to arrogance behind the wheel of his exotic beauty. Arnie's girlfriend Leigh and best friend Dennis reach out to him, only to be met by a Fury like no other.
## 4255 The film consists of a series of tightly interlinked vignettes, the most sustained of which details the story of a man and a woman who are passionately in love. Their attempts to consummate their passion are constantly thwarted, by their families, by the Church and bourgeois society in general.
## 4256 This rock opera tells the story of one year in the life of a group of bohemians struggling in late 1980s East Village, New York, USA. The film centers around Mark and Roger, two roommates. While a tragedy has made Roger numb to new experiences, Mark begins capturing their world through his attempts to make a personal movie. In the year that follows, they and their friends deal with love, loss, and working together.
## 4257 A story set on the offshore drilling rig Deepwater Horizon, which exploded during April 2010 and created the worst oil spill in U.S. history.
## 4258 The vicissitudes of three couples of newlyweds from the celebration of weddings to their respective honeymoons.
## 4259 While Sergeant John Tyree is home on two weeks leave from Germany, he meets Savannah after he dives into the ocean to retrieve Savannah's purse that had fallen off a pier. John eventually falls in love with Savannah, who promises to write to him until he returns from overseas.
## 4260 Jim McAllister, a well-liked high school government teacher, can't help but notice that successful student Tracy Flick uses less than ethical tactics to get what she wants. When Tracy runs for school president, Jim feels that she will be a poor influence on the student body and convinces Paul, a dim-witted but popular student athlete, to run against Tracy. When she becomes aware of Jim's secret involvement in the race, a bitter feud is sparked.
## 4261 The residents of a small town are excited when a flaming meteor lands in the hills, until they discover it is the first of many transport devices from Mars bringing an army of invaders invincible to any man-made weapon, even the atomic bomb.
## 4262 A depressed man moves back in with his parents following a recent heartbreak and finds himself with two women.
## 4263 Jokes fly as the Tune Squad takes on the Nerdlucks in a hardcourt game to decide if the Looney Tunes remain here... or become attractions at a far-off galactic off-ramp called Moron Mountain. The Nerdlucks have a monstrous secret weapon: they've stolen the skills of top NBA stars like Charles Barkley and Patrick Ewing and become Monstars. But that's not all, folks. The Tune Squad’s secret weapon just happens to be the finest player in this or any other universe. He's outta this world. So's the fun.
## 4264 A good-natured man has an unexpected deadly confrontation. Instincts kick in to clean up the mess caused in the name of self-defense but does one really get away free after killing someone?
## 4265 A young Scottish singer, Rose-Lynn Harlan, dreams of making it as a country artist in Nashville after being released from prison.
## 4266 A drug cartel boss is arrested in a raid and coerced into betraying his former accomplices as part of an undercover operation.
## 4267 Strike is a young city drug pusher under the tutelage of drug lord Rodney Little. When a night manager at a fast-food restaurant is found with four bullets in his body, Strike’s older brother turns himself in as the killer. Det. Rocco Klein doesn’t buy the story, however, setting out to find the truth, and it seems that all the fingers point toward Strike & Rodney.
## 4268 A Harvard Medical School graduate takes a position at a mental institution and soon becomes obsessed with a female mental patient, but he has no idea of a recent and horrifying staffing change.
## 4269 Trip, a young roadie for Metallica, is sent on an urgent mission during the band's show. But what seems like a simple assignment turns into a surreal adventure.
## 4270 Corporate downsizing expert Ryan Bingham spends his life in planes, airports, and hotels, but just as he’s about to reach a milestone of ten million frequent flyer miles, he meets a woman who causes him to rethink his transient life.
## 4271 Alan gets a map to some war treasure which the Japanese army left behind on a small Pacific island at the end of World War II. But some gangsters try to steal the map from him and so he hides on Charlie's boat which just leaves the harbor. He manipulates the ship's compass so that Charlie is not aware that he is sailing to the treasure island. But when they step on the island, they discover that it is not as abandoned as they believed: there are some natives - and a Japanese soldier still defending the treasure
## 4272 A Texas cop, whose own daughter might have been forced into sexual slavery, joins forces with a Mexican youth to find the boy's sister, who was abducted and forced into prostitution. Meanwhile, a Ukrainian woman who was promised a better life in America also becomes a victim.
## 4273 In this remake of the classic 1968 film, a group of people are trapped inside a farmhouse as legions of the walking dead try to get inside and use them for food.
## 4274 Charles Dreyfus, who has finally cracked over inspector Clouseau's antics, escapes from a mental institution and launches an elaborate plan to get rid of Clouseau once and for all.
## 4275 Alex, an intersexed 15-year-old, is living as a girl, but she and her family begin to wonder whether she's emotionally a boy when another teenager's sexual advances bring the issue to a head. As Alex faces a final decision regarding her gender, she meets both hostility and compassion.
## 4276 For Dan Gallagher, life is good. He is on the rise at his New York law firm, is happily married to his wife, Beth, and has a loving daughter. But, after a casual fling with a sultry book editor named Alex, everything changes. Jilted by Dan, Alex becomes unstable, her behavior escalating from aggressive pursuit to obsessive stalking. Dan realizes that his main problem is not hiding his affair, but rather saving himself and his family.
## 4277 The film takes place in Paris, where two cops are competing for the vacant seat of chief of police while in the middle of a search for a gang of violent thieves. The movie is directed by Olivier Marchal, a former police officer who spent 12 years with the French police before creating this story, which is taken in part from real facts that happened during the 1980s in France.
## 4278 A slick New York publicist who picks up a ringing receiver in a phone booth is told that if he hangs up, he'll be killed... and the little red light from a laser rifle sight is proof that the caller isn't kidding.
## 4279 The boy who wasn't supposed grow up—Peter Pan—does just that, becoming a soulless corporate lawyer whose workaholism could cost him his wife and kids. During his trip to see Granny Wendy in London, the vengeful Capt. Hook kidnaps Peter's kids and forces Peter to return to Neverland.
## 4280 Mulder and Scully, now taken off the FBI's X Files cases, must find a way to fight the shadowy elements of the government to find out the truth about a conspiracy that might mean the alien colonization of Earth.
## 4281 To prove a point about measuring up and fitting in, Texas teen Willowdean “Dumplin’” Dickson enters a local pageant run by her ex-beauty queen mom.
## 4282 Lake Tahoe, 1969. Seven strangers, each one with a secret to bury, meet at El Royale, a decadent motel with a dark past. In the course of a fateful night, everyone will have one last shot at redemption.
## 4283 Epic film of the legendary Spanish hero, Rodrigo Diaz ("El Cid" to his followers), who, without compromising his strict sense of honour, still succeeds in taking the initiative and driving the Moors from Spain.
## 4284 Journey into the secret world of Pixie Hollow and hear Tinker Bell speak for the very first time as the astonishing story of Disney's most famous fairy is finally revealed in the all-new motion picture "Tinker Bell."
## 4285 Test pilot Tuck Pendleton volunteers to test a special vessel for a miniaturization experiment. Accidentally injected into a neurotic hypochondriac, Jack Putter, Tuck must convince Jack to find his ex-girlfriend, Lydia Maxwell, to help him extract Tuck and his ship and re-enlarge them before his oxygen runs out.
## 4286 Two couples disintegrate when they begin destructive adulterous affairs with each other.
## 4287 Investigative journalist Eddie Brock attempts a comeback following a scandal, but accidentally becomes the host of Venom, a violent, super powerful alien symbiote. Soon, he must rely on his newfound powers to protect the world from a shadowy organization looking for a symbiote of their own.
## 4288 When their ship crash-lands on a remote planet, the marooned passengers soon learn that escaped convict Riddick isn't the only thing they have to fear. Deadly creatures lurk in the shadows, waiting to attack in the dark, and the planet is rapidly plunging into the utter blackness of a total eclipse. With the body count rising, the doomed survivors are forced to turn to Riddick with his eerie eyes to guide them through the darkness to safety. With time running out, there's only one rule: Stay in the light.
## 4289 Acclaimed writer and historian Deborah E. Lipstadt must battle for historical truth to prove the Holocaust actually occurred when David Irving, a renowned denier, sues her for libel.
## 4290 In the Iranian ghost-town Bad City, a place that reeks of death and loneliness, the townspeople are unaware they are being stalked by a lonesome vampire.
## 4291 Seeking shelter from a relentless rainstorm and landslides in a remote region of Wales, five travelers are admitted to a large foreboding old house that belongs to the extremely strange Femm family. Sepulchral Horace Femm and his obsessive, inhospitable sister Rebecca are the group's peculiar hosts. The house also holds surprises - and a brutish mute manservant named Morgan.
## 4292 A man tours clubs around the globe with his manager and girlfriend. On the eve of their largest album release he is admitted to a psychiatric clinic after overdosing at a gig.
## 4293 The human race is threatened by a powerful creature, and only the combined power of Superman, Batman, Wonder Woman, Green Lantern, Martian Manhunter and The Flash can stop it. But can they overcome their differences to thwart this enemy using the combined strength of their newly formed Justice League?
## 4294 With the world now aware of his dual life as the armored superhero Iron Man, billionaire inventor Tony Stark faces pressure from the government, the press and the public to share his technology with the military. Unwilling to let go of his invention, Stark, with Pepper Potts and James 'Rhodey' Rhodes at his side, must forge new alliances – and confront powerful enemies.
## 4295 A childhood incident has convinced Faith Corvatch that her true love is a guy named "Damon Bradley," but she has yet to meet him. Preparing to settle down and marry a foot doctor, Faith impulsively flies to Venice when it seems that she may be able to finally encounter the man of her dreams. Instead, she meets the charming Peter Wright. But can they fall in love if she still believes that she is intended to be with someone else?
## 4296 A sister and brother face the realities of familial responsibility as they begin to care for their ailing father.
## 4297 Three people who have lost everything, a soldier tired of fighting, a young woman and a little girl, pose as a family to escape the civil war in Sri Lanka. They emigrate to France and settle in a chaotic neighborhood on the outskirts of Paris, where apparently the law no longer exists; but they, who barely know each other, struggle to survive there, even when the ghosts of war begin to haunt them again.
## 4298 Emma has left Russia to live with her husband in Italy. Now a member of a powerful industrial family, she is the respected mother of three, but feels unfulfilled. One day, Antonio, a talented chef and her son's friend, makes her senses kindle.
## 4299 In 1965, a young woman with dreams of becoming a writer has a son at the age of 15 and struggles to make things work with the drug-addicted father.
## 4300 Called in to recover evidence in the aftermath of a horrific explosion on a New Orleans ferry, Federal agent Doug Carlin gets pulled away from the scene and taken to a top-secret government lab that uses a time-shifting surveillance device to help prevent crime.
## 4301 Career criminal Youngblood Priest wants out of the Atlanta drug scene, but as he ramps up sales, one little slip up threatens to bring the whole operation down before he can make his exit.
## 4302 As a collection of history's worst tyrants and criminal masterminds gather to plot a war to wipe out millions, one man must race against time to stop them.
## 4303 The Grinch hatches a scheme to ruin Christmas when the residents of Whoville plan their annual holiday celebration.
## 4304 Ex-soldier Frank Brayker is the guardian of an ancient key that can unlock tremendous evil; the sinister Collector is a demon who wants the key so he can initiate the apocalypse. On the run from wicked mercenaries for almost 90 years, Brayker finally stops in at a boarding house in New Mexico where — with the help of its residents — he plans to face off against the Collector and his band of ghouls, preventing them from ever seizing the key.
## 4305 A wrongfully convicted boy is sent to a brutal desert detention camp where he must dig holes in order to build character. What he doesn't know is that he is digging holes in order to search for a lost treasure hidden somewhere in the camp.
## 4306 Henry is a player skilled at seducing women. But when this veterinarian meets Lucy, a girl with a quirky problem when it comes to total recall, he realizes it's possible to fall in love all over again…and again, and again. That's because the delightful Lucy has no short-term memory, so Henry must woo her day after day until he finally sweeps her off her feet.
## 4307 His Wife is dead and his Son hates him but this old man still has fight in him! When he loses a highly publicized virtual boxing match to ex-champ Rocky Balboa, reigning heavyweight titleholder Mason Dixon retaliates by challenging Rocky to a nationally televised, 10-round exhibition bout. To the surprise of his son and friends, Rocky agrees to come out of retirement and face an opponent who's faster, stronger, and thirty years his junior.
## 4308 Italy, from the '80s to the present day, told through the dreams, loves, successes and failures of four friends.
## 4309 Bombshell is a revealing look inside the most powerful and controversial media empire of all time; and the explosive story of the women who brought down the infamous man who created it.
## 4310 A fictionalized biopic of Aline Dieu, a multitalented singer from a musically inclined family.
## 4311 “2048: Nowhere to Run” takes place one year before the events of Blade Runner 2049. The short film focuses on Sapper, a man who is trying to make it through life day-by-day without turning back to his old ways. We’re introduced to both the gentle nature of Sapper and the violence he’s capable of when set off.
## 4312 Dance your way to a magical adventure with Barbie as Kristyn, a ballerina with big dreams! When she tries on a pair of sparkling pink shoes, she and her best friend, Hailey, are whisked away to a fantastical ballet world. There, Kristyn discovers she must dance in her favorite ballets in order to defeat an evil Snow Queen. With performances to the legendary Giselle and Swan Lake ballets, it's a wonderful journey where if you dance with your heart, dreams come true!
## 4313 Hayley’s a smart, charming teenage girl. Jeff’s a handsome, smooth fashion photographer. An Internet chat, a coffee shop meet-up, an impromptu fashion shoot back at Jeff’s place. Jeff thinks it’s his lucky night. He’s in for a surprise.
## 4314 When the nefarious Dark Helmet hatches a plan to snatch Princess Vespa and steal her planet's air, space-bum-for-hire Lone Starr and his clueless sidekick fly to the rescue. Along the way, they meet Yogurt, who puts Lone Starr wise to the power of "The Schwartz." Can he master it in time to save the day?
## 4315 All-stars from the previous Step Up installments come together in glittering Las Vegas, battling for a victory that could define their dreams and their careers.
## 4316 Heiress Joanna Stayton hires carpenter Dean Proffitt to build a closet on her yacht—and refuses to pay him for the project when it's done. But after Joanna accidentally falls overboard and loses her memory, Dean sees an opportunity to get even.
## 4317 The Argentine, begins as Che and a band of Cuban exiles (led by Fidel Castro) reach the Cuban shore from Mexico in 1956. Within two years, they mobilized popular support and an army and toppled the U.S.-friendly regime of dictator Fulgencio Batista.
## 4318 María and Susana, two rebellious teenagers, spend the summer in a catholic camp. While they are grounded during a weekend, the most unexpected arrival in the most unexpected way will change their feelings about life, love and freedom.
## 4319 Frederick Loren has invited five strangers to a party of a lifetime. He is offering each of them $10,000 if they can stay the night in a house. But the house is no ordinary house. This house has a reputation for murder. Frederick offers them each a gun for protection. They all arrived in a hearse and will either leave in it $10,000 richer or leave in it dead!
## 4320 A teenage loner pushes his way into the underworld of a high school crime ring to investigate the disappearance of his ex-girlfriend.
## 4321 A Reno singer witnesses a mob murder and the cops stash her in a nunnery to protect her from the mob's hitmen. The mother superior does not trust her, and takes steps to limit her influence on the other nuns. Eventually the singer rescues the failing choir and begins helping with community projects, which gets her an interview on TV—and identification by the mob.
## 4322 Thirteen year old Sam Cleary suspects that his mysteriously reclusive neighbor Mr. Smith is actually the legendary vigilante Samaritan, who was reported dead 25 years ago. With crime on the rise and the city on the brink of chaos, Sam makes it his mission to coax his neighbor out of hiding to save the city from ruin.
## 4323 The film tells the life of Maria Fe, a young woman who faces singleness after six years of relationship. Along with her two soul friends, played by Karina Jordán and Jely Reátegui, the girl must learn to be single again. On the way, you will run into old loves, new adventures and lots of fun.
## 4324 Young artist Kyoko wreaks havoc on everyone that she encounters when Japan's oldest major movie studio asks a batch of venerable filmmakers to revive its high-brow soft-core Roman Porno series.
## 4325 Checco is 39 and lived his entire life with his parents. He loves his job where he does nothing the whole day, until something happens that will change his behavior and his life forever...
## 4326 One year after outwitting the FBI and winning the public’s adulation with their mind-bending spectacles, the Four Horsemen resurface only to find themselves face to face with a new enemy who enlists them to pull off their most dangerous heist yet.
## 4327 A documentary filmmaker interviews the now-famous Trevor Slattery from behind bars.
## 4328 A desk-bound CIA analyst volunteers to go undercover to infiltrate the world of a deadly arms dealer, and prevent diabolical global disaster.
## 4329 Former pool hustler "Fast Eddie" Felson decides he wants to return to the game by taking a pupil. He meets talented but green Vincent Lauria and proposes a partnership. As they tour pool halls, Eddie teaches Vincent the tricks of scamming, but he eventually grows frustrated with Vincent's showboat antics, leading to an argument and a falling-out. Eddie takes up playing again and soon crosses paths with Vincent as an opponent.
## 4330 While hanging out after school, Charlie and his friends discover the headquarters of the world’s most powerful superhero hidden beneath his home. When villains attack, they must team up to defend the headquarters and save the world.
## 4331 Oregon, 1851. Hermann Kermit Warm, a chemist and aspiring gold prospector, keeps a profitable secret that the Commodore wants to know, so he sends the Sisters brothers, two notorious assassins, to capture him on his way to California.
## 4332 Hushpuppy, an intrepid six-year-old girl, lives with her father, Wink in 'the Bathtub', a southern Delta community at the edge of the world. Wink’s tough love prepares her for the unraveling of the universe—for a time when he’s no longer there to protect her. When Wink contracts a mysterious illness, nature flies out of whack—temperatures rise, and the ice caps melt, unleashing an army of prehistoric creatures called aurochs. With the waters rising, the aurochs coming, and Wink’s health fading, Hushpuppy goes in search of her lost mother.
## 4333 A tight-knit group of New York City street dancers, including Luke and Natalie, team up with NYU freshman Moose, and find themselves pitted against the world's best hip hop dancers in a high-stakes showdown that will change their lives forever.
## 4334 Elina goes to a fairy school to learn dancing and fairy magic. The spring of the fairy land is soon threatened by evil Laverna who intends to prevent fairies from performing the annual vital rainbow dance. Elina must stop quarreling with her fellow students and unite them to save the first bud of the spring.
## 4335 A recently retired man embarks on a journey to his estranged daughter's wedding, only to discover more about himself and life than he ever expected.
## 4336 With friends like these, who needs enemies? That's the question bad guy Porter is left asking after his wife and partner steal his heist money and leave him for dead -- or so they think. Five months and an endless reservoir of bitterness later, Porter's partners and the crooked cops on his tail learn how bad payback can be.
## 4337 The Justice League faces a powerful new threat — the Fatal Five! Superman, Batman and Wonder Woman seek answers as the time-traveling trio of Mano, Persuader and Tharok terrorize Metropolis in search of budding Green Lantern, Jessica Cruz. With her unwilling help, they aim to free remaining Fatal Five members Emerald Empress and Validus to carry out their sinister plan. But the Justice League has also discovered an ally from another time in the peculiar Star Boy — brimming with volatile power, could he be the key to thwarting the Fatal Five? An epic battle against ultimate evil awaits!
## 4338 An unexpected affair quickly escalates into a heart-stopping reality for two women whose passionate connection changes their lives forever.
## 4339 A hard-on-his-luck hound finds himself in a town full of cats in need of a hero to defend them from a ruthless villain's wicked plot to wipe their village off the map. With help from a reluctant mentor, our underdog must assume the role of town samurai and team up with the villagers to save the day.
## 4340 Three wealthy children's parents are killed in a fire. When they are sent to a distant relative, they find out that he is plotting to kill them and seize their fortune.
## 4341 Earl Stone, a man in his eighties, is broke, alone, and facing foreclosure of his business when he is offered a job that simply requires him to drive. Easy enough, but, unbeknownst to Earl, he's just signed on as a drug courier for a Mexican cartel. He does so well that his cargo increases exponentially, and Earl hit the radar of hard-charging DEA agent Colin Bates.
## 4342 1975. When Seyolo Zantoko, a doctor from the Congo who has managed, along with his family, to flee tyranny, is hired by the mayor of a small town in northern France, he begins a struggle to adapt to a new life and gain the trust of the prejudiced villagers.
## 4343 Four teenagers in detention discover an old video game console with a game they’ve never heard of. When they decide to play, they are immediately sucked into the jungle world of Jumanji in the bodies of their avatars. They’ll have to complete the adventure of their lives filled with fun, thrills and danger or be stuck in the game forever!
## 4344 Sergio Benvenuti is a shy seller of contracts for a Roman company of music, but because of his character he cannot find even a customer, so he asks for help from a fellow named Nadia.
## 4345 There were five Marines and one Navy Corpsman photographed raising the U.S. flag on Mt. Suribachi by Joe Rosenthal on February 23, 1945. This is the story of three of the six surviving servicemen - John 'Doc' Bradley, Pvt. Rene Gagnon and Pvt. Ira Hayes - who fought in the battle to take Iwo Jima from the Japanese.
## 4346 In Japan, the vampire-hunter Saya, who is a powerful original, is sent by her liaison with the government, David, posed as a teenage student to the Yokota High School on the eve of Halloween to hunt down vampires. Saya asks David to give a new katana to her. Soon she saves the school nurse Makiho Amano from two vampires disguised of classmates and Makiho witnesses her fight against the powerful demon.
## 4347 When an asteroid threatens to collide with Earth, NASA honcho Dan Truman determines the only way to stop it is to drill into its surface and detonate a nuclear bomb. This leads him to renowned driller Harry Stamper, who agrees to helm the dangerous space mission provided he can bring along his own hotshot crew. Among them is the cocksure A.J. who Harry thinks isn't good enough for his daughter, until the mission proves otherwise.
## 4348 Based on a true story, during World War II, four Jewish brothers escape their Nazi-occupied homeland of West Belarus in Poland and join the Soviet partisans to combat the Nazis. The brothers begin the rescue of roughly 1,200 Jews still trapped in the ghettos of Poland.
## 4349 A writer stumbles upon a long-hidden secret when he agrees to help former British Prime Minister Adam Lang complete his memoirs on a remote island after the politician's assistant drowns in a mysterious accident.
## 4350 To save the family business, two ne’er-do-well traveling salesmen hit the road with disastrously funny consequences.
## 4351 Rusty Sabich is a deputy prosecutor engaged in an obsessive affair with a coworker who is murdered. Soon after, he's accused of the crime. And his fight to clear his name becomes a whirlpool of lies and hidden passions.
## 4352 A star quarterback gets knocked out of the game and an unknown third stringer is called in to replace him. The unknown gives a stunning performance and forces the ageing coach to reevaluate his game plans and life. A new co-owner/president adds to the pressure of winning. The new owner must prove herself in a male dominated world.
## 4353 Set in China's underworld, this tale of love and betrayal follows a dancer who fired a gun to protect her mobster boyfriend during a fight. On release from prison 5 years later, she sets out to find him.
## 4354 The story of Aung San Suu Kyi as she becomes the core of Burma's democracy movement, and her relationship with her husband, writer Michael Aris.
## 4355 With his wife Elizabeth on life support after a boating accident, Hawaiian land baron Matt King takes his daughters on a trip from Oahu to Kauai to confront a young real estate broker, who was having an affair with Elizabeth before her misfortune.
## 4356 Grady is a 50-ish English professor who hasn't had a thing published in years—not since he wrote his award winning 'Great American Novel' 7 years ago. This weekend proves even worse than he could imagine as he finds himself reeling from one misadventure to another in the company of a new wonder boy author.
## 4357 Austin's hottest DJ, Jungle Julia, sets out into the night to unwind with her two friends Shanna and Arlene. Covertly tracking their moves is Stuntman Mike, a scarred rebel leering from behind the wheel of his muscle car, revving just feet away.
## 4358 Forced into exile by the English after being crowned King of Scotland, legendary warrior Robert the Bruce fights to reclaim the throne.
## 4359 During a shootout in a saloon, Sheriff Hunt injures a suspicious stranger. The doctor's assistant, wife of the local foreman, tends to him in prison. That night, the town is attacked and they both disappear—only the arrow of a cannibal tribe is found. Hunt and a few of his men go in search of the prisoner and the foreman's wife.
## 4360 In order to wipe out the Gaulish village by any means necessary, Caesar plans to absorb the villagers into Roman culture by having an estate built next to the village to start a new Roman colony.
## 4361 The newly elected Pope suffers a panic attack just as he is about to greet the faithful who have gathered to see him. His advisors, unable to convince him he is the right man for the job, call on a renowned therapist who also happens to be an atheist. But the Pope's fear of his newfound responsibility is one he must face alone. Winner Best Film at the Italian Golden Globes.
## 4362 "Barbie" stars as Clara in this animated retelling of the classic Christmas ballet, complete with Tchaikovsky soundtrack and ballet choreography.
## 4363 The summer before college, Auden meets the mysterious Eli, a fellow insomniac. While the seaside town of Colby sleeps, the two embark on nightly quests to help Auden experience the fun, carefree teen life she never knew she wanted.
## 4364 A thriller that revolves around the key people at an investment bank over a 24-hour period during the early stages of the financial crisis.
## 4365 Olive, an average high school student, sees her below-the-radar existence turn around overnight once she decides to use the school's gossip grapevine to advance her social standing. Now her classmates are turning against her and the school board is becoming concerned, including her favorite teacher and the distracted guidance counselor. With the support of her hilariously idiosyncratic parents and a little help from a long-time crush, Olive attempts to take on her notorious new identity and crush the rumor mill once and for all.
## 4366 An elite squad of Navy SEALs, on a covert mission to transport a prisoner off a CIA black site island prison, are trapped when insurgents attack while trying to rescue the same prisoner.
## 4367 While on a prison furlough, a lowly criminal evades his guards and returns to his old stomping ground to take revenge on the people who turned him into a cold blooded killer.
## 4368 When a bestselling celebrity biographer is no longer able to get published because she has fallen out of step with current tastes, she turns her art form to deception.
## 4369 At a birthday party in 1968 New York, a surprise guest and a drunken game leave seven gay friends reckoning with unspoken feelings and buried truths.
## 4370 Looking for a baby-sitter for the night, Marc Schaudel entrusts his son Remy to the care of his employee Franck, a straight man. But the thing that Marc doesn't know, is that Franck is getting 30 years old this weekend and that his son Remy is a very capricious child. The next day, Marc and his wife Claire are awakened by a call from the police. Remy and Franck are missing, and the house is totally devastated. The police finds a camera in the leftovers. Marc, Claire and the police start watching the video that has been recorded the day before during the night and find out what happened to Franck and Remy.
## 4371 Whilst vacationing in the Carpathian Mountain, two couples stumble across the remains of Count Dracula's castle. The Count's trusted servant kills one of the men, suspending the body over the Count's ashes so that the blood drips from the corpse and saturates the blackened remains. The ritual is completed, the Count revived and his attentions focus on the dead man's wife who is to become his partner; devoted to an existence of depravity and evil.
## 4372 Wendy, a near-penniless drifter, is traveling to Alaska in search of work, and her only companion is her dog, Lucy. Already perilously close to losing everything, Wendy hits a bigger bump in the road when her old car breaks down and she is arrested for shoplifting dog food. When she posts bail and returns to retrieve Lucy, she finds that the dog is gone, prompting a frantic search for her pet.
## 4373 Fantômas is a man of many disguises. He uses maquillage as a weapon. He can impersonate anyone using an array of masks and can create endless confusion by constantly changing his appearance.
## 4374 Bill Marks is a burned-out veteran of the Air Marshals service. He views the assignment not as a life-saving duty, but as a desk job in the sky. However, today's flight will be no routine trip. Shortly into the transatlantic journey from New York to London, he receives a series of mysterious text messages ordering him to have the government transfer $150 million into a secret account, or a passenger will die every 20 minutes.
## 4375 The story of two outcast sisters, Ginger and Brigitte, in the mindless suburban town of Bailey Downs. On the night of Ginger's first period, she is savagely attacked by a wild creature. Ginger's wounds miraculously heal but something is not quite right. Now Brigitte must save her sister and save herself.
## 4376 Terry is a small-time car dealer trying to leave his shady past behind and start a family. Martine is a beautiful model from Terry's old neighbourhood who knows that Terry is no angel. When Martine proposes a foolproof plan to rob a bank, Terry recognises the danger but realises this may be the opportunity of a lifetime. As the resourceful band of thieves burrows its way into a safe-deposit vault at a Lloyds Bank, they quickly realise that, besides millions in riches, the boxes also contain secrets that implicate everyone from London's most notorious underworld gangsters to powerful government figures, and even the Royal Family. Although the heist makes headlines throughout Britain for several days, a government gag order eventually brings all reporting of the case to an immediate halt.
## 4377 Three high school students make an incredible discovery, leading to their developing uncanny powers beyond their understanding. As they learn to control their abilities and use them to their advantage, their lives start to spin out of control, and their darker sides begin to take over.
## 4378 A nurse in the Caribbean turns to voodoo in hopes of curing her patient, a mindless woman whose husband she's fallen in love with.
## 4379 A guy who danced with what could be the girl of his dreams at a costume ball only has one hint at her identity: the Zune she left behind as she rushed home in order to make her curfew. And with a once-in-a-lifetime opportunity in front of him, he sets out to find his masked beauty.
## 4380 The magical kingdom of Lucis is home to the world’s last remaining Crystal, and the menacing empire of Niflheim is determined to steal it. King Regis of Lucis commands an elite force of soldiers called the Kingsglaive. Wielding their king’s magic, they fight to protect Lucis. As the overwhelming military might of the empire bears down, King Regis is faced with an impossible ultimatum – to marry his son, Prince Noctis to Princess Lunafreya of Tenebrae, captive of Niflheim, and surrender his lands to Niflheim rule. Although the king concedes, it becomes clear that the empire will stop at nothing to achieve their devious goals, with only the Kingsglaive standing between them and world domination.
## 4381 Paris, 1910. Emile, a shy movie projectionist, and Raoul, a colourful inventor, find themselves embarked on the hunt for a monster terrorizing citizens. They join forces with Lucille, the big-hearted star of the Bird of Paradise cabaret, an eccentric scientist and his irascible monkey to save the monster, who turns out to be an oversized but harmless flea, from the city's ruthlessly ambitious police chief.
## 4382 Arthur Bishop is a veteran hit man who, owing to his penchant for making his targets' deaths seem like accidents, thinks himself an artist. It's made him very rich, but as he hits middle age, he's so depressed and lonely that he takes on one of his victim's sons, Steve McKenna, as his apprentice. Arthur puts him through a rigorous training period and brings him on several hits. As Steven improves, Arthur worries that he'll discover who killed his father.
## 4383 A research team finds a mysterious cylinder in a deserted church. If opened, it could mean the end of the world.
## 4384 Liu Jian, an elite Chinese police officer, comes to Paris to arrest a Chinese drug lord. When Jian is betrayed by a French officer and framed for murder, he must go into hiding and find new allies.
## 4385 The story of Henry, a stand-up comedian with a fierce sense of humour and Ann, a singer of international renown. In the spotlight, they are the perfect couple, healthy, happy, and glamourous. The birth of their first child, Annette, a mysterious girl with an exceptional destiny, will change their lives.
## 4386 The life story of Jesus is told from his humble birth through his teachings, crucifixion and ultimate resurrection.
## 4387 Hobbs has Dominic and Brian reassemble their crew to take down a team of mercenaries: Dominic unexpectedly gets convoluted also facing his presumed deceased girlfriend, Letty.
## 4388 Three high school seniors throw a party to make a name for themselves. As the night progresses, things spiral out of control as word of the party spreads.
## 4389 Set in Italy in the 1970s, VALLANZASCA is the true story of the Italian underworld’s most infamous outlaw. A criminal by age 9, Renato Vallanzasca grew up to become the country’s most notorious mobster before the age of 27. Vallanzasca and his gang wrested control of the Milan underworld with a string of high profile robberies, kidnappings and murders. In the process, he captivated the public and earned the nickname ‘il bel Renè’ – for his devilish charm and handsome face. Arrested multiple times, his daring escapes from prison enraged the government, angered his rivals and fed his legend.
## 4390 A sailor prone to violent outbursts is sent to a naval psychiatrist for help. Refusing at first to open up, the young man eventually breaks down and reveals a horrific childhood. Through the guidance of his doctor, he confronts his painful past and begins a quest to find the family he never knew.
## 4391 A movie that starts out with the "Man in the Mirror" music video, it then changes to a montage of video clips of Michael's career. Next comes a parody of his Bad video by children, and then Michael is chased by fans in a fantasy sequence. 2 more videos are shown, and then a movie in which Michael plays a hero with magical powers. In it he is chased by drug dealer Mr. Big and saves three children. Videos included in the movie are "Smooth Criminal" and "Come Together".
## 4392 After an accidental drug overdose, a talented teenage DJ goes to live with his estranged father in a small Army town, where he gets to the bottom of his own pain and learns empathy for others.
## 4393 A musical biopic of the Four Seasons—the rise, the tough times and personal clashes, and the ultimate triumph of a group of friends whose music became symbolic of a generation. Far from a mere tribute concert, it gets to the heart of the relationships at the centre of the group, with a special focus on frontman Frankie Valli, the small kid with the big falsetto.
## 4394 In the future, America is a dystopian wasteland. The latest scourge is Ma-Ma, a prostitute-turned-drug pusher with a dangerous new drug and aims to take over the city. The only possibility of stopping her is an elite group of urban police called Judges, who combine the duties of judge, jury and executioner to deliver a brutal brand of swift justice. But even the top-ranking Judge, Dredd, discovers that taking down Ma-Ma isn’t as easy as it seems in this explosive adaptation of the hugely popular comic series.
## 4395 A young woman, recently released from a mental hospital, gets a job as a secretary to a demanding lawyer, where their employer-employee relationship turns into a sexual, sadomasochistic one.
## 4396 Poe Dameron and BB-8 must face the greedy crime boss Graballa the Hutt, who has purchased Darth Vader’s castle and is renovating it into the galaxy’s first all-inclusive Sith-inspired luxury hotel.
## 4397 In 1862, daredevil balloon pilot Amelia Wren teams up with pioneering meteorologist James Glaisher to advance human knowledge of the weather and fly higher than anyone in history. While breaking records and advancing scientific discovery, their voyage to the very edge of existence helps the unlikely pair find their place in the world they have left far below them. But they face physical and emotional challenges in the thin air, as the ascent becomes a fight for survival.
## 4398 Set in 1890, this is the story of a Pony Express courier who travels to Arabia to compete with his horse, Hidalgo, in a dangerous race for a massive contest prize, in an adventure that sends the pair around the world...
## 4399 After witnessing a bizarre, traumatic incident involving a patient, Dr. Rose Cotter starts experiencing frightening occurrences that she can't explain. As an overwhelming terror begins taking over her life, Rose must confront her troubling past in order to survive and escape her horrifying new reality.
## 4400 Rapunzel grapples with the responsibilities of being a princess and the overprotective ways of her father. While she wholeheartedly loves Eugene, Rapunzel does not share his immediate desire to get married and settle down within the castle walls. Determined to live life on her own terms, she and her tough-as-nails Lady-in-Waiting Cassandra embark on a secret adventure where they encounter mystical rocks that magically cause Rapunzel's long blonde hair to grow back. Impossible to break and difficult to hide, Rapunzel must learn to embrace her hair and all that it represents.
## 4401 After discovering her father put their house up for his bail bond and then disappeared, 17-year-old Ree Dolly must confront the local criminal underworld and the harsh Ozark wilderness in order to to track down her father and save her family.
## 4402 After sparing a girl's life during a massacre, an elite Triad assassin is targeted by an onslaught of murderous gangsters.
## 4403 Inspired by the incredible events surrounding a treacherous attempt to reach the summit of the world's highest mountain, "Everest" documents the awe-inspiring journey of two different expeditions challenged beyond their limits by one of the fiercest snowstorms ever encountered by mankind. Their mettle tested by the harshest of elements found on the planet, the climbers will face nearly impossible obstacles as a lifelong obsession becomes a breathtaking struggle for survival.
## 4404 Jordan Turner is an experienced 911 operator but when she makes an error in judgment and a call ends badly, Jordan is rattled and unsure if she can continue. But when teenager Casey Welson is abducted in the back of a man's car and calls 911, Jordan is the one called upon to use all of her experience, insights and quick thinking to help Casey escape, and not just to save her, but to make sure the man is brought to justice.
## 4405 After growing up in a poor gypsy camp, Edmond Vidal, aka Momon, has retained a sense of family, unfailing loyalty and pride in his origins. Most of all, he has remained friends with Serge Suttel, with whom he first discovered prison life - for stealing cherries. The two of them inevitably got involved in organized crime. The team they formed, the Ganf Des Lyonnais, made them the most notorious armed robbers of the early 1970s. Their irresistible rise ended in 1974 with a spectacular arrest. Today, as he nears 60, Momon would like to forget that part of his life. He has found peace by retiring from the "business". He tends to his wife Janou, who suffered so in the past, and to his children and grandchildren, all of whom have great respect for this man of simple and universal values, so clear-headed and full of kindness. But then Serge Suttel, who has disowned nothing of his past, comes back into the picture.
## 4406 With a serial strangler on the loose, a bookkeeper wanders around town searching for the vigilante group intent on catching the killer.
## 4407 Venice, 1596. Bassanio begs his friend Antonio, a prosperous merchant, to lend him a large sum of money so that he can woo Portia, a very wealthy heiress; but Antonio has invested his fortune abroad, so they turn to Shylock, a Jewish moneylender, and ask him for a loan.
## 4408 Tells the seemingly random yet vitally connected story of a set of incidents that all converge one evening at 11:14pm. The story follows the chain of events of five different characters and five different storylines that all converge to tell the story of murder and deceit.
## 4409 David Aames has it all: wealth, good looks and gorgeous women on his arm. But just as he begins falling for the warmhearted Sofia, his face is horribly disfigured in a car accident. That's just the beginning of his troubles as the lines between illusion and reality, between life and death, are blurred.
## 4410 Two Swedish/Norwegian half sisters go on a winter diving trip in Northern Norway, when they get trapped after a rockslide.
## 4411 Back from a tour of duty, Kelli struggles to find her place in her family and the rust-belt town she no longer recognizes.
## 4412 When Rango, a lost family pet, accidentally winds up in the gritty, gun-slinging town of Dirt, the less-than-courageous lizard suddenly finds he stands out. Welcomed as the last hope the town has been waiting for, new Sheriff Rango is forced to play his new role to the hilt.
## 4413 Adam, a lonely man with Asperger's Syndrome, develops a relationship with his upstairs neighbor, Beth.
## 4414 Sly and dry intelligence agent Harry Palmer is tasked with investigating British Intelligence security, and is soon enmeshed in a world of double-dealing, kidnap and murder when he finds a traitor operating at the heart of the secret service.
## 4415 Kermit and Fozzie are newspaper reporters sent to London to interview Lady Holiday, a wealthy fashion designer whose priceless diamond necklace is stolen. Kermit meets and falls in love with her secretary, Miss Piggy. The jewel thieves strike again, and this time frame Miss Piggy. It's up to Kermit and Muppets to bring the real culprits to justice.
## 4416 "Popeye" Doyle travels to Marseilles to find Alain Charnier, the drug smuggler that eluded him in New York.
## 4417 The frozen body of Paul Fournier is discovered in Greenland where he had disappeared during a scientific expedition in 1905. Perfectly conserved he is brought back to life in the 1960s. His descendants take care of him: to spare him the cultural shock they behave so to make believe it's 1905 and they are his cousins, uncle...
## 4418 A biopic of 19th-century poet Giacomo Leopardi, who created immortal verses while struggling with a debilitating illness and isolation.
## 4419 A teenager finds himself transported to an island where he must help protect a group of orphans with special powers from creatures intent on destroying them.
## 4420 Commercial airline pilot Whip Whitaker has a problem with drugs and alcohol, though so far he's managed to complete his flights safely. His luck runs out when a disastrous mechanical malfunction sends his plane hurtling toward the ground. Whip pulls off a miraculous crash-landing that results in only six lives lost. Shaken to the core, Whip vows to get sober -- but when the crash investigation exposes his addiction, he finds himself in an even worse situation.
## 4421 Jonathan Switcher, an unemployed artist, finds a job as an assistant window dresser for a department store. When Jonathan happens upon a beautiful mannequin he previously designed, she springs to life and introduces herself as Emmy, an Egyptian under an ancient spell. Despite interference from the store's devious manager, Jonathan and his mannequin fall in love while creating eye-catching window displays to keep the struggling store in business.
## 4422 With the wedding of her younger sister fast approaching, Kat Ellis faces the undesirable prospect of traveling alone to London for the ceremony. While this is bad enough, Jeffrey, the man who left her as they moved closer to marriage, happens to be the groom's best man. Determined to show everyone -- most of all Jeffrey -- that her romantic life is as full and thrilling as ever, Kat hires a charming male escort as her date.
## 4423 A 36-year-old meek woman realizes that there’s younger people trying to outpace her doing much less, so she makes a risky change by removing her filter.
## 4424 A bright young yeti finds something he thought didn't exist—a human. News of this “smallfoot” throws the simple yeti community into an uproar over what else might be out there in the big world beyond their snowy village.
## 4425 Who or what exactly is a Heffalump? The lovable residents of the Hundred Acre Wood -- Winnie the Pooh, Rabbit, Tigger, Eeyore, Kanga and the rest of the pack -- embark on a journey of discovery in search of the elusive Heffalump. But as is always the case, this unusual road trip opens their eyes to so much more than just the creature they're seeking.
## 4426 The plane carrying wealthy Charles Morse crashes down in the Alaskan wilderness. Together with the two other passengers, photographer Robert and assistant Stephen, Charles devises a plan to help them reach civilization. However, his biggest obstacle might not be the elements, or even the Kodiak bear stalking them -- it could be Robert, whom Charles suspects is having an affair with his wife and would not mind seeing him dead.
## 4427 A teenage girl with nothing to lose joins a traveling magazine sales crew, and gets caught up in a whirlwind of hard partying, law bending and young love as she criss-crosses the Midwest with a band of misfits.
## 4428 When her father unexpectedly passes away, young Ella finds herself at the mercy of her cruel stepmother and her daughters. Never one to give up hope, Ella's fortunes begin to change after meeting a dashing stranger in the woods.
## 4429 Frank Cross is a wildly successful television executive whose cold ambition and curmudgeonly nature has driven away the love of his life. But after firing staff member Eliot Loudermilk on Christmas Eve, Frank is visited by a series of ghosts who give him a chance to re-evaluate his actions and right the wrongs of his past.
## 4430 An undercover cop in a not-too-distant future becomes involved with a dangerous new drug and begins to lose his own identity as a result.
## 4431 A domineering but charismatic rancher wages a war of intimidation on his brother's new wife and her teen son, until long-hidden secrets come to light.
## 4432 In a kingdom ruled by a young and unpredictable king, the military commander has a secret weapon: a shadow, a look-alike who can fool both his enemies and the King himself. Now he must use this weapon in an intricate plan that will lead his people to victory in a war that the King does not want.
## 4433 A geologist races against time to save his estranged wife and two children when a devastating earthquake strikes Oslo, Norway.
## 4434 A veteran pot dealer creates a fake family as part of his plan to move a huge shipment of weed into the U.S. from Mexico.
## 4435 Life for former United Nations investigator Gerry Lane and his family seems content. Suddenly, the world is plagued by a mysterious infection turning whole human populations into rampaging mindless zombies. After barely escaping the chaos, Lane is persuaded to go on a mission to investigate this disease. What follows is a perilous trek around the world where Lane must brave horrific dangers and long odds to find answers before human civilization falls.
## 4436 One man's struggle to contain the curse he hides within... and his last-ditch attempt to free himself with the love of family. But when it looks as if he is losing his battle, and endangering all he holds most dear, the family dog, Thor, is the last hope for his family's survival... and the end to his Werewolf curse.
## 4437 An Asian cross-cultural trilogy of horror films from accomplished indie directors: Dumplings, directed by Fruit Chan of Hong Kong, Cut directed by Park Chan-Wook of Korea, and Box directed by Miike Takashi of Japan.
## 4438 Military cadets take extreme measures to ensure the future of their academy when its existence is threatened by local condo developers.
## 4439 Navy SEAL Lieutenant A.K. Waters and his elite squadron of tactical specialists are forced to choose between their duty and their humanity, between following orders by ignoring the conflict that surrounds them, or finding the courage to follow their conscience and protect a group of innocent refugees. When the democratic government of Nigeria collapses and the country is taken over by a ruthless military dictator, Waters, a fiercely loyal and hardened veteran is dispatched on a routine mission to retrieve a Doctors Without Borders physician.
## 4440 A listless and alienated teenager decides to help his new friend win the class presidency in their small western high school, while he must deal with his bizarre family life back home.
## 4441 The beautiful princess Giselle is banished by an evil queen from her magical, musical animated land and finds herself in the gritty reality of the streets of modern-day Manhattan. Shocked by this strange new environment that doesn't operate on a "happily ever after" basis, Giselle is now adrift in a chaotic world badly in need of enchantment. But when Giselle begins to fall in love with a charmingly flawed divorce lawyer who has come to her aid - even though she is already promised to a perfect fairy tale prince back home - she has to wonder: Can a storybook view of romance survive in the real world?
## 4442 A group of strangers find themselves trapped in a maze-like prison. It soon becomes clear that each of them possesses the peculiar skills necessary to escape, if they don't wind up dead first.
## 4443 In 1909, two explorers fight to survive after they're left behind while on a Denmark expedition in ice-covered Greenland.
## 4444 A divorced couple teams up and travels to Bali to stop their daughter from making the same mistake they think they made 25 years ago.
## 4445 When a billionaire entrepreneur impulsively decides to create an iconic movie, he demands the best. Renowned filmmaker Lola Cuevas is recruited to mastermind this ambitious endeavour. Completing the all-star team are two actors with massive talent but even bigger egos: Hollywood heartthrob Félix Rivero and radical theatre actor Iván Torres. Both are legends, but not exactly best friends. Through a series of increasingly eccentric trials set by Lola, Félix and Iván must confront not only each other but also their own legacies. Who will be left when the cameras finally start rolling?
## 4446 When Adolf Hitler reawakens at the site of his former bunker in present-day Berlin, he is mistaken for a comedian and quickly becomes a media phenomenon.
## 4447 Three magazine employees head out on an assignment to interview a guy who placed a classified ad seeking a companion for time travel.
## 4448 Paris, in the early 1960s. Jean-Louis Joubert is a serious but uptight stockbroker, married to Suzanne, a starchy class-conscious woman and father of two arrogant teenage boys, currently in a boarding school. The affluent man lives a steady yet boring life. At least until, due to fortuitous circumstances, Maria, the charming new maid at the service of Jean-Louis' family, makes him discover the servants' quarter on the sixth floor of the luxury building he owns and lives in. There live a crowd of lively Spanish maids who will help Jean-Louis to open to a new civilization and a new approach of life. In their company - and more precisely in the company of beautiful Maria - Jean-Louis will gradually become another man, a better man.
## 4449 Eight months after the death of his wife, Frank Goode looks forward to a reunion with his four adult children. When all of them cancel their visits at the last minute, Frank, against the advice of his doctor, sets out on a road trip to reconnect with his offspring. As he visits each one in turn, Frank finds that his children's lives are not quite as picture-perfect as they've made them out to be.
## 4450 The famous Pink Panther jewel has once again been stolen and Inspector Clouseau is called in to catch the thief. The Inspector is convinced that 'The Phantom' has returned and utilises all of his resources – himself and his Asian manservant – to reveal the identity of 'The Phantom'.
## 4451 The "Bulldozer", a former football star, is now working as a fisherman. As a group of street-people arranges a football match against the local Armybase, he is asked to be their trainer. His boat was damaged by a submarine and he currently has no work, so he agrees.
## 4452 Baron Victor Frankenstein has discovered life's secret and unleashed a blood-curdling chain of events resulting from his creation: a cursed creature with a horrid face — and a tendency to kill.
## 4453 Unhappily married aristocrat Lady Chatterley begins a torrid affair — and falls deeply in love — with the gamekeeper on her husband's country estate.
## 4454 A soldier and his team battle hordes of post-apocalyptic zombies in the wastelands of the Korean Peninsula.
## 4455 As a top student at St. Adeline's Catholic Boarding School, Zoe senses that something is not quite right about the school's new nun-- a sense proven to be true when it is revealed the "good' nun is an imposter with a fatal attraction to Zoe's brother.
## 4456 A struggling screenwriter inadvertently becomes entangled in the Los Angeles criminal underworld after his oddball friends kidnap a gangster's beloved Shih Tzu.
## 4457 A blue harvest moon will rise, allowing the fairies to use a precious moonstone to restore the Pixie Dust Tree, the source of all their magic. But when Tinker Bell accidentally puts all of Pixie Hollow in jeopardy, she must venture out across the sea on a secret quest to set things right.
## 4458 London, England, on the eve of World War II. Guinevere Pettigrew, a strict governess who is unable to keep a job, is fired again. Lost in the hostile city, a series of fortunate circumstances lead her to meet Delysia LaFosse, a glamorous and dazzling American jazz singer whose life is a chaos ruled by indecision, a continuous battle between love and fame.
## 4459 A hapless inventor finally finds success with a flying car, which a dictator from a foreign government sets out to take for himself.
## 4460 When his SUV breaks down on a remote Southwestern road, Jeff Taylor lets his wife, Amy, hitch a ride with a trucker to get help. When she doesn't return, Jeff fixes his SUV and tracks down the trucker -- who tells the police he's never seen Amy. Johnathan Mostow's tense thriller then follows Jeff's desperate search for his wife, which eventually uncovers a small town's murderous secret.
## 4461 In director Baz Luhrmann's contemporary take on William Shakespeare's classic tragedy, the Montagues and Capulets have moved their ongoing feud to the sweltering suburb of Verona Beach, where Romeo and Juliet fall in love and secretly wed. Though the film is visually modern, the bard's dialogue remains.
## 4462 One peaceful day on Earth, two remnants of Frieza's army named Sorbet and Tagoma arrive searching for the Dragon Balls with the aim of reviving Frieza. They succeed, and Frieza subsequently seeks revenge on the Saiyans.
## 4463 Bianca's universe turns upside down when she learns that her high school refers to her as a ‘DUFF' (Designated Ugly Fat Friend). Hoping to erase that label, she enlists the help of a charming jock and her favorite teacher. Together they'll face the school's mean girl and remind everyone that we are all someone's DUFF… and that's totally fine.
## 4464 Katniss Everdeen reluctantly becomes the symbol of a mass rebellion against the autocratic Capitol.
## 4465 Based on the popular books, the story tells of Tony who wants a friend to add some adventure to his life. What he gets is Rudolph, a vampire kid with a good appetite. The two end up inseparable, but their fun is cut short when all the hopes of the vampire race could be gone forever in single night. With Tony's access to the daytime world, he helps them to find what they've always wanted.
## 4466 Based on the real-life adventures chronicled by Cameron Crowe, Fast Times follows a group of high school students growing up in Southern California. Stacy Hamilton and Mark Ratner are looking for a love interest, and are helped along by their older classmates, Linda Barrett and Mike Damone, respectively. At the center of the film is Jeff Spicoli, a perpetually stoned surfer who faces-off with the resolute Mr. Hand—a man convinced that everyone is on dope.
## 4467 Two girlfriends on a summer holiday in Spain become enamored with the same painter, unaware that his ex-wife, with whom he has a tempestuous relationship, is about to re-enter the picture.
## 4468 A trio of female soul singers cross over to the pop charts in the early 1960s, facing their own personal struggles along the way.
## 4469 A high-priced call girl is forced to depend on a reluctant private eye when she is stalked by a psychopath.
## 4470 The inspirational story of World Champion Boxer Vinny Pazienza, who after a near fatal car crash, which left him not knowing if he'd ever walk again, made one of sports most incredible comebacks.
## 4471 When the initial Cylon attack against the Twelve Colonies fails to achieve complete extermination of human life as planned, twin Number Ones (Cavils) embedded on Galactica and Caprica must improvise to destroy the human survivors.
## 4472 After flying home to L.A. for the funeral of his estranged record-producer father, a struggling man discovers that the will stipulates that he must deliver $150,000 in cash to a 30-year-old alcoholic sister he never knew existed, and her troubled 12-year-old son.
## 4473 An elderly ex-serviceman and widower looks to avenge his best friend's murder by doling out his own form of justice.
## 4474 After a road accident in Hungary, the American honeymooners Joan and Peter and the enigmatic Dr. Werdegast find refuge in the house of the famed architect Hjalmar Poelzig, who shares a dark past with the doctor.
## 4475 Haley is a naturally gifted athlete but, with her social behavior, the teen seems intent on squandering her abilities. After a final brush with the law, a judge sentences her to an elite gymnastics academy run by a legendary, hard-nosed coach. Once there, Haley's rebellious attitude wins her both friends and enemies.
## 4476 Vampires and werewolves have waged a nocturnal war against each other for centuries. But all bets are off when a female vampire warrior named Selene, who's famous for her strength and werewolf-hunting prowess, becomes smitten with a peace-loving male werewolf, Michael, who wants to end the war.
## 4477 Salvo and Valentino are two happy Sicilian friends, who do not want to work, because they know that if they find a permanent job, their girlfriends will ask them to marry them.
## 4478 Friends and fledgling entrepreneurs invent a device in their garage which reduces the apparent mass of any object placed inside it, but they discover that it has some highly unexpected capabilities - ones that could enable them to do and to have seemingly anything they want. Taking advantage of this unique opportunity is the first challenge they face. Dealing with the consequences is the next.
## 4479 An Interpol-issued Red Notice is a global alert to hunt and capture the world's most wanted. But when a daring heist brings together the FBI's top profiler and two rival criminals, there's no telling what will happen.
## 4480 Louise, a widow with two children, almost crushes a stranger with her car. She takes care of him, even if he's not really wounded. It turns out that he has mental disorders and that they can help each other much more than they thought.
## 4481 The events of Battle of Gods take place some years after the battle with Majin Buu, which determined the fate of the entire universe. After awakening from a long slumber, Beerus, the God of Destruction is visited by Whis, his attendant and learns that the galactic overlord Frieza has been defeated by a Super Saiyan from the North Quadrant of the universe named Goku, who is also a former student of the North Kai. Ecstatic over the new challenge, Goku ignores King Kai's advice and battles Beerus, but he is easily overwhelmed and defeated. Beerus leaves, but his eerie remark of "Is there nobody on Earth more worthy to destroy?" lingers on. Now it is up to the heroes to stop the God of Destruction before all is lost.
## 4482 A struggling actress tries to help a friend prove his innocence when he's accused of murdering the husband of a high-society entertainer.
## 4483 Joshua “J” is taken in by his extended family after his mother dies of an overdose. The clan, ruled by J’s scheming grandmother, is heavily involved in criminal activities, and J is soon indoctrinated into their way of life. But J is given a chance to take another path when a cop seeks to help him.
## 4484 The remarkable true story of the early life of Ip Man, the formidable kung fu genius who would become Bruce Lee's mentor; beginning at the start of his journey from his initial training through to the ultimate battle to become supreme master of the art of Wing Chun.
## 4485 After escaping from an Estonian psychiatric facility, Leena Klammer travels to America by impersonating Esther, the missing daughter of a wealthy family. But when her mask starts to slip, she is put against a mother who will protect her family from the murderous “child” at any cost.
## 4486 One of the most celebrated war correspondents of our time, Marie Colvin is an utterly fearless and rebellious spirit, driven to the frontlines of conflicts across the globe to give voice to the voiceless.
## 4487 When the evil Dr. Hell attacks the Earth, the mighty giant mecha Mazinger Z is formed to stop him.
## 4488 An uproarious version of history that proves nothing is sacred – not even the Roman Empire, the French Revolution and the Spanish Inquisition.
## 4489 In the phantasmagorical town of Raven's End, a misguided young girl takes refuge in a decrepit old mortuary. The eccentric undertaker chronicles the strange history of the town through a series of twisted tales, each more terrifying than the last, but the young girl's world is unhinged when she discovers that the final story... is her own.
## 4490 When the quiet life of a beach bum is upended by dreadful news, he sets off for his childhood home to carry out an act of vengeance. However, he proves an inept assassin and finds himself in a brutal fight to protect his estranged family.
## 4491 When the old-old-old-fashioned vampire Vlad arrives at the hotel for an impromptu family get-together, Hotel Transylvania is in for a collision of supernatural old-school and modern day cool.
## 4492 Master Roshi has succeeded at the one mission he valued most: to train Goku and Krillin to become ultimate fighters. So, he arranges for them to test their mettle at a competition hosted by Emperor Chiaotzu. Not everyone's playing by the rules, however, as a member of the ruler's household schemes to use the Dragonballs to extort money and power from the royal.
## 4493 Eden Lake is a relentlessly tense and immaculately paced horror-thriller about modern youth gone wild. When a young couple goes to a remote wooded lake for a romantic getaway, their quiet weekend is shattered by an aggressive group of local kids. Rowdiness quickly turns to rage as the teens terrorize the couple in unimaginable ways, and a weekend outing becomes a bloody battle for survival.
## 4494 Two whimsical, aimless thugs harass and assault women, steal, murder, and alternately charm, fight, or sprint their way out of trouble. They take whatever the bourgeoisie holds dear, whether it’s cars, peace of mind, or daughters. Marie-Ange, a jaded, passive hairdresser, joins them as lover, cook, and mother confessor. She’s on her own search for seemingly unattainable sexual pleasure.
## 4495 Aaron Falk returns to his drought-stricken hometown to attend a tragic funeral. But his return opens a decades-old wound - the unsolved death of a teenage girl.
## 4496 "Loro", in two parts, is a period movie that chronicles, as a fiction story, events likely happened in Italy (or even made up) between 2006 and 2010. "Loro" wants to suggest in portraits and glimps, through a composite constellation of characters, a moment in history, now definitively ended, which can be described in a very summary picture of the events as amoral, decadent but extraordinarily alive. Additionally, "Loro" wishes to tell the story of some Italians, fresh and ancient people at the same time: souls from a modern imaginary Purgatory who, moved by heterogeneous intents like ambition, admiration, affection, curiosity, personal interests, establish to try and orbit around the walking Paradise that is the man named Silvio Berlusconi.
## 4497 Five friends who reunite in an attempt to top their epic pub crawl from 20 years earlier unwittingly become humankind's only hope for survival.
## 4498 After winning his first competition, Takumi focuses his attention on drift racing, a sport he has unknowingly perfected while delivering tofu in his father's Toyota AE86.
## 4499 In 1940, the Royal Air Force fights a desperate battle against the might of the Luftwaffe for control of the skies over Britain, thus preventing the Nazi invasion of Britain.
## 4500 Harvard graduate James Averill is the sheriff of prosperous Jackson County, Wyo., when a battle erupts between the area's poverty-stricken immigrants and its wealthy cattle farmers. The politically connected ranch owners fight the immigrants with the help of Nathan Champion, a mercenary competing with Averill for the love of local madam Ella Watson. As the struggle escalates, Averill and Champion begin to question their decisions.
## 4501 In a small suburb on the outskirts of Rome, the cheerful heat of summer camouflages a stifling atmosphere of alienation. From a distance, the families seem normal, but it’s an illusion: in the houses, courtyards and gardens, silence shrouds the subtle sadism of the fathers, the passivity of the mothers and the guilty indifference of adults. But it’s the desperation and repressed rage of the children that will explode and cut through this grotesque façade, with devastating consequences for the entire community.
## 4502 A superintendent of a school district works for the betterment of the student’s education when an embezzlement scheme is discovered, threatening to destroy everything.
## 4503 A teenage girl deals with her parents forgetting her birthday and a crush on her high school's heartthrob.
## 4504 January 1978. After their success in England, the punk rock band Sex Pistols venture out on their tour of the southern United States. Temperamental bassist Sid Vicious is forced by his band mates to travel without his troubled girlfriend, Nancy Spungen, who will meet him in New York. When the band breaks up and Sid begins his solo career in a hostile city, the turbulent couple definitely falls into the depths of drug addiction.
## 4505 When Jonas was 14 he met the charismatic but mysterious Nathan. In addition to guiding him in his sexuality, Jonas soon confronts something dark and even dangerous about his new friend. Now an attractive, sexually assured adult, memories still haunt him. Trying frantically to put the missing pieces together, Jonas becomes determined to break the shackles of the past and finally set himself free.
## 4506 In 1919, Australian farmer Joshua Connor travels to Turkey to discover the fate of his three sons, reported missing in action. Holding on to hope, Joshua must travel across the war-torn landscape to find the truth and his own peace.
## 4507 Keong comes from Hong Kong to visit New York for his uncle's wedding. His uncle runs a market in the Bronx and Keong offers to help out while Uncle is on his honeymoon. During his stay in the Bronx, Keong befriends a neighbor kid and beats up some neighborhood thugs who cause problems at the market. One of those petty thugs in the local gang stumbles into a criminal situation way over his head.
## 4508 An American writer in Rome is stalked by a serial killer bent on harassing him while killing all people associated with his work on his latest book.
## 4509 Slaking a thirst for dangerous games, Kathryn challenges her stepbrother, Sebastian, to deflower their headmaster's daughter before the summer ends. If he succeeds, the prize is the chance to bed Kathryn. But if he loses, Kathryn will claim his most prized possession.
## 4510 When down-on-his-luck part-time high school wrestling coach Mike agrees to become legal guardian to an elderly man, his ward's troubled grandson turns out to be a star grappler, sparking dreams of a big win -- until the boy's mother retrieves him.
## 4511 Looking to escape her unhappy marriage, villainous femme fatale Bridget Gregory convinces her husband, Clay, to sell cocaine, then steals the profits and runs out on him. She stops in a small town en route to Chicago, where she ensnares her next conquest, insurance man Mike Swale. After getting a job at his insurance company, Bridget convinces Mike to run a scam -- but things take a deadly turn when she recruits him to help get rid of her husband.
## 4512 In this rough-and-tumble yarn, filmed on-location at the Georgia State Prison, the cons are the heroes and the guards are the heavies. Eddie Albert is the sadistic warden who'll gladly make any sacrifice to push his guards' semi-pro football team to a national championship.
## 4513 An urgent phone call pulls a Yale Law student back to his Ohio hometown, where he reflects on three generations of family history and his own future.
## 4514 Based on a Japanese manga, Kanna-San, Daiseikou Desu, this story revolves around Kang Han-na, an overweight phone sex employee and secret vocalist for Ammy, a famous Korean pop singer who actually lip syncs as she cannot sing. After getting humilitated publicly by an ungrateful Ammy, Han-na undergoes an extreme makeover to become a pop sensation herself.
## 4515 When a congressional aide is killed, a Washington, D.C. journalist starts investigating the case involving the Representative, his old college friend.
## 4516 Dirty Harry Callahan returns again, this time saddled with a rookie female partner. Together, they must stop a terrorist group consisting of angry Vietnam veterans.
## 4517 A faithful wife takes action when it becomes clear to her that her devious husband has betrayed her.
## 4518 A teenager's quest to launch Norwegian Black Metal in Oslo in the 1990s results in a very violent outcome.
## 4519 A story of a group of humanoid rabbits and their depressive, daily life. The plot includes Suzie ironing, Jane sitting on a couch, Jack walking in and out of the apartment, and the occasional solo singing number by Suzie or Jane. At one point the rabbits also make contact with their “leader”.
## 4520 If your enemy refuses to be humbled... Destroy him. Accompanied by his brother Kurt (Van Damme), American kickboxing champion Eric Sloane (Dennis Alexio), arrives in Thailand to defeat the Eastern warriors at their own sport. His opponent: ruthless fighter and Thai champion, Tong Po. Tong not only defeats Eric, he paralyzes him for life. Crazed with anger, Kurt vows revenge.
## 4521 Upon receiving reports of missing persons at Fort Spencer, a remote Army outpost on the Western frontier, Capt. John Boyd investigates. After arriving at his new post, Boyd and his regiment aid a wounded frontiersman who recounts a horrifying tale of a wagon train murdered by its supposed guide -- a vicious U.S. Army colonel gone rogue. Fearing the worst, the regiment heads out into the wilderness to verify the gruesome claims.
## 4522 A father and daughter live a perfect but mysterious existence in Forest Park, a beautiful nature reserve near Portland, Oregon, rarely making contact with the world. But when a small mistake tips them off to authorities, they are sent on an increasingly erratic journey in search of a place to call their own.
## 4523 Marlo, a mother of three, including a newborn, is gifted a night nanny by her brother. Hesitant at first, she quickly forms a bond with the thoughtful, surprising, and sometimes challenging nanny named Tully.
## 4524 An Algerian man's life-long dream finally comes true when he receives an invitation to take his cow Jacqueline to the Paris International Agriculture Fair.
## 4525 Mike and Sulley are back at Monsters University for a fun-filled weekend with their Oozma Kappa fraternity brothers. The gang is throwing their first party, but no one’s showing up. Luckily for them, Mike and Sulley have come up with a plan to make sure “Party Central” is the most epic party the school has ever seen.
## 4526 On a cold Christmas Eve, selfish miser Ebenezer Scrooge has one night left to face his past — and change the future — before time runs out.
## 4527 A Danish family visits a Dutch family they met on a holiday. What was supposed to be an idyllic weekend slowly starts unraveling as the Danes try to stay polite in the face of unpleasantness.
## 4528 After he and his wife are murdered, marine Ray Garrison is resurrected by a team of scientists. Enhanced with nanotechnology, he becomes a superhuman, biotech killing machine—'Bloodshot'. As Ray first trains with fellow super-soldiers, he cannot recall anything from his former life. But when his memories flood back and he remembers the man that killed both him and his wife, he breaks out of the facility to get revenge, only to discover that there's more to the conspiracy than he thought.
## 4529 A troubled and angry 11-year-old orphan from a small Texas town, ends up at a Boy Choir school after the death of his single mother. Completely out of his element, he finds himself in a battle of wills with a demanding Choir Master who recognises a unique talent in this young boy as he pushes him to discover his creative heart and soul in music.
## 4530 When her mother falls for a wealthy man, Lina Cruz must move in with her new stepfather and transfer from an urban East Los Angeles public high school to an exclusive prep school in Malibu, where she struggles to fit in with her affluent new peers. After snooty cheerleading captain Avery blocks Lina from varsity, Lina recruits her best friends from her old school to help her whip the pathetic junior varsity cheerleading squad -- the Sea Lions -- into fighting shape.
## 4531 Toby, a cynical film director finds himself trapped in the outrageous delusions of an old Spanish shoe-maker who believes himself to be Don Quixote. In the course of their comic and increasingly surreal adventures, Toby is forced to confront the tragic repercussions of a film he made in his idealistic youth.
## 4532 In the beautiful area of Paris, Maria and José Ribeiro lived for almost thirty years on the ground floor of a Haussmann building, in their dear little lodge.
## 4533 A great French restaurant's owner, Monsieur Septime, is thrust into intrigue and crime, when one of his famous guests disappears.
## 4534 Sam is a teenage royal rebel, second in line to the throne of the kingdom of Illyria. Just as her disinterest in the royal way of life is at an all-time high, she discovers she has super-human abilities and is invited to join a secret society of similar extraordinary second-born royals charged with keeping the world safe.
## 4535 In 1984, a young programmer begins to question reality as he adapts a dark fantasy novel into a video game. A mind-bending tale with multiple endings.
## 4536 The true story of the 1973 tennis match between World number one Billie Jean King and ex-champ and serial hustler Bobby Riggs.
## 4537 When Earth is taken over by the overly-confident Boov, an alien race in search of a new place to call home, all humans are promptly relocated, while all Boov get busy reorganizing the planet. But when one resourceful girl, Tip, manages to avoid capture, she finds herself the accidental accomplice of a banished Boov named Oh. The two fugitives realize there’s a lot more at stake than intergalactic relations as they embark on the road trip of a lifetime.
## 4538 In pre-war Italy, a young couple have a baby boy. The father, however, is jealous of his son - and the scene moves to antiquity, where the baby is taken into the desert to be killed. He is rescued, given the name Edipo (Oedipus), and brought up by the King and Queen of Corinth as their son. One day an oracle informs Edipo that he is destined to kill his father and marry his mother. Horrified, he flees Corinth and his supposed parents - only to get into a fight and kill an older man on the road...
## 4539 The story follows the misadventures of a New York City beautician who is mistakenly hired as the school teacher for the children of the president of a small Eastern European country.
## 4540 She's the perfect all-American parent: a great cook and homemaker, a devoted recycler, and a woman who'll literally kill to keep her family happy.
## 4541 Andie is an outcast, hanging out either with her older boss, who owns the record store where she works, or her quirky high school classmate Duckie, who has a crush on her. When one of the rich and popular kids at school, Blane, asks Andie out, it seems too good to be true. As Andie starts falling for Blane, she begins to realize that dating someone from a different social sphere is not easy.
## 4542 Five twenty-something friends spend a drug-fueled weekend in Cardiff, Wales.
## 4543 Set in 1951, a blacklisted Hollywood writer gets into a car accident, loses his memory and settles down in a small town where he is mistaken for a long-lost son.
## 4544 Robbie, a local rock star turned wedding singer, is dumped on the day of his wedding. Meanwhile, waitress Julia finally sets a wedding date with her fiancée Glenn. When Julia and Robbie meet and hit it off, they find that things are more complicated than anybody thought.
## 4545 Buck Russell, a lovable but slovenly bachelor, suddenly becomes the temporary caretaker of his nephew and nieces after a family emergency. His freewheeling attitude soon causes tension with his older niece Tia, loyal girlfriend Chanice and just about everyone else who crosses his path.
## 4546 Freddy Heflin is the sheriff of a place everyone calls “Cop Land” — a small and seemingly peaceful town populated by the big city police officers he’s long admired. Yet something ugly is taking place behind the town’s peaceful facade. And when Freddy uncovers a massive, deadly conspiracy among these local residents, he is forced to take action and make a dangerous choice between protecting his idols and upholding the law.
## 4547 In a modern America where witches are real and witchcraft is illegal, a sheltered teenager must face her own demons and prejudices as she helps two young witches avoid law enforcement and cross the southern border to asylum in Mexico.
## 4548 Kept locked inside the house by her father, 7-year-old Chloe lives in fear and fascination of the outside world, where Abnormals create a constant threat—or so she believes. When a mysterious stranger offers her a glimpse of what's really happening outside, Chloe soon finds that while the truth isn't so simple, the danger is very real.
## 4549 A chronicle of James Brown's rise from extreme poverty to become one of the most influential musicians in history.
## 4550 A young female doctor discovers something sinister going on in her hospital. Relatively healthy patients are having 'complications' during simple operations and ending up in comas. The patients are then shipped off to an institute that looks after them. The young doctor suspects there is more to this than meets the eye.
## 4551 After his young lover, Gitone, leaves him for another man, Encolpio decides to kill himself, but a sudden earthquake destroys his home before he has a chance to do so. Now wandering around Rome in the time of Nero, Encolpio encounters one bizarre and surreal scene after another.
## 4552 Marcus Burnett is a hen-pecked family man. Mike Lowry is a foot-loose and fancy free ladies' man. Both are Miami policemen, and both have 72 hours to reclaim a consignment of drugs stolen from under their station's nose. To complicate matters, in order to get the assistance of the sole witness to a murder, they have to pretend to be each other.
## 4553 A film adaptation of the classic sword and sorcery hero, Conan the Barbarian. A horde of rampaging warriors massacre the parents of young Conan and enslave the young child for years on The Wheel of Pain. As the sole survivor of the childhood massacre, Conan is released from slavery and taught the ancient arts of fighting. Transforming himself into a killing machine, Conan travels into the wilderness to seek vengeance on Thulsa Doom, the man responsible for killing his family. In the wilderness, Conan takes up with the thieves Valeria and Subotai. The group comes upon King Osric, who wants the trio of warriors to help rescue his daughter who has joined Doom in the hills.
## 4554 Nadine is a French young woman. Fausto is an Italian young man trying to make it in Paris as a restaurant waiter. They accidentally meet at a five-star hotel. Both are fragile, alone and obsessed with the idea of an unattainable happiness. Their intense love is challenged by their own individual ambition and desperation.
## 4555 The story of Dulce, a mother who has encounters with apparitions inside her old house. She must decipher a mystery that could trigger a prophecy: the death of her family.
## 4556 A normal, average guy who lives in New York City becomes dependent on an evil, disembodied brain.
## 4557 The fates of horses, and the people who own and command them, are revealed as Black Beauty narrates the circle of his life.
## 4558 A Hong Kong detective teams up with his female Red Chinese counterpart to stop a Chinese drug czar.
## 4559 A mom and dad who usually say no decide to say yes to their kids' wildest requests — with a few ground rules — on a whirlwind day of fun and adventure.
## 4560 Every child comes into the world full of promise, and none more so than Chappie: he is gifted, special, a prodigy. Like any child, Chappie will come under the influence of his surroundings—some good, some bad—and he will rely on his heart and soul to find his way in the world and become his own man. But there's one thing that makes Chappie different from any one else: he is a robot.
## 4561 Terror strikes the underground train system in Moscow in the form of a flood from a collapsed tunnel. The film follows a diverse group of Moscow citizens who find themselves trapped in the city’s underground rail network, their train derailed and virtually crushed after an aging tunnel collapses. Amongst this band of survivors is softly spoken surgeon Andrey (Sergei Puskepalis), whose wife is having an affair with the conceited businessman Vlad (Anatoly Beliy). Fate brings these two men together on the same doomed train, but there is little time to resolve their differences, as the tunnel begins to quickly fill with water, forcing them to work together with the others and find a way back to the surface.
## 4562 Soren, a young barn owl, is kidnapped by owls of St. Aggie's, ostensibly an orphanage, where owlets are brainwashed into becoming soldiers. He and his new friends escape to the island of Ga'Hoole, to assist its noble, wise owls who fight the army being created by the wicked rulers of St. Aggie's. The film is based on the first three books in the series.
## 4563 A shy boy is unable to make friends in Yazoo City, Mississippi in 1942, until his parents give him a terrier puppy for his ninth birthday. The dog, which he names Skip, becomes well known and loved throughout the community and enriches the life of the boy, Willie, as he grows into manhood. Based on the best-selling Mississippi memoir by the late Willie Morris.
## 4564 Two years after a Super Bowl win when NFL head coach Sean Payton is suspended, he goes back to his hometown and finds himself reconnecting with his 12-year-old son by coaching his Pop Warner football team.
## 4565 Decorated veteran Will Sharp, desperate for money to cover his wife's medical bills, asks for help from his adoptive brother Danny. A charismatic career criminal, Danny instead offers him a score: the biggest bank heist in Los Angeles history: $32 million.
## 4566 In the 1970s, television reporter Christine Chubbuck struggles with depression and professional frustrations as she tries to advance her career.
## 4567 The USS Enterprise crew explores the furthest reaches of uncharted space, where they encounter a mysterious new enemy who puts them and everything the Federation stands for to the test.
## 4568 The story of Francisco, a very simple and poor man whose dream was to see his children become country music stars, and who made all the efforts to make it happen.
## 4569 Will Montgomery, a U.S. Army Staff Sergeant who has returned home from Iraq, is assigned to the Army’s Casualty Notification service. Montgomery is partnered with Captain Tony Stone, to give notice to the families of fallen soldiers. The Sergeant is drawn to Olivia Pitterson, to whom he has delivered news of her husband’s death.
## 4570 During the holiday season, when the animals of the Central Park Zoo are preparing for Christmas, Private, the youngest of the penguins notices that the Polar Bear is all alone. Assured that nobody should have to spend Christmas alone, Private goes into the city for some last-minute Christmas shopping. Along the way, he gets stuffed into a stocking
## 4571 After a romantic evening at their secluded lake house, a woman wakes up handcuffed to her dead husband. Trapped and isolated in the dead of winter, she must fight off hired killers to escape her late spouse's twisted plan.
## 4572 A rookie cop inadvertently captures the murder of a young drug dealer on her body cam. After realizing that the murder was committed by corrupt cops, she teams up with the one person from her community who is willing to help her as she tries to escape both the criminals out for revenge and the police who are desperate to destroy the incriminating footage.
## 4573 In 1942, an intelligence officer in North Africa encounters a female French Resistance fighter on a deadly mission behind enemy lines. When they reunite in London, their relationship is tested by the pressures of war.
## 4574 A post-apocalyptic tale, in which a lone man fights his way across America in order to protect a sacred book that holds the secrets to saving humankind.
## 4575 In 1964, a brash, new pro boxer, fresh from his Olympic gold medal victory, explodes onto the scene: Cassius Clay. Bold and outspoken, he cuts an entirely new image for African Americans in sport with his proud public self-confidence and his unapologetic belief that he is the greatest boxer of all time. Yet at the top of his game, both Ali's personal and professional lives face the ultimate test.
## 4576 Creatively unfulfilled and facing financial ruin, Nick Cage must accept a $1 million offer to attend the birthday of a dangerous superfan. Things take a wildly unexpected turn when Cage is recruited by a CIA operative and forced to live up to his own legend, channeling his most iconic and beloved on-screen characters in order to save himself and his loved ones.
## 4577 Three salesmen working for a firm that makes industrial lubricants are waiting in the company's "hospitality suite" at a manufacturers' convention for a "big kahuna" named Dick Fuller to show up, in hopes they can persuade him to place an order that could salvage the company's flagging sales.
## 4578 Holden and Banky are comic book artists. Everything is going good for them until they meet Alyssa, also a comic book artist. Holden falls for her, but his hopes are crushed when he finds out she's a lesbian.
## 4579 A crew of rugged firefighters meet their match when attempting to rescue three rambunctious kids.
## 4580 In danger of losing his business, Anthony Roca, an ordinary man, develops a scam that will become the heist of the century. Overtaken by the crime, he will have to deal with betrayal, murder and settling.
## 4581 With the Griffins stuck again at home during a blackout, Peter tells the story of “Star Wars Episode VI: Return of the Jedi.”
## 4582 An ageing hard-living 1970s rock star decides to change his life when he discovers a 40-year-old undelivered letter written to him by John Lennon.
## 4583 A young British soldier must find his way back to safety after his unit accidentally abandons him during a riot in the streets of Belfast.
## 4584 In 1905, revolutionist Sun Yat-Sen visits Hong Kong to discuss plans with Tongmenghui members to overthrow the Qing dynasty. But when they find out that assassins have been sent to kill him, they assemble a group of protectors to prevent any attacks.
## 4585 Leon S. Kennedy and Claire Redfield must battle a rogue warrior seeking revenge after unleashing the deadly G-Virus, whilst a mutated monster goes on a rampage.
## 4586 Jack Manfred is an aspiring writer who to make ends meet, takes a job as a croupier. Jack remains an observer, knowing that everything in life is a gamble and that gamblers are born to lose. Inevitably, he gets sucked into the world of the casino which takes its toll on his relationships and the novel he is writing.
## 4587 Viola Hastings is in a real jam. Complications threaten her scheme to pose as her twin brother, Sebastian, and take his place at a new boarding school. She falls in love with her handsome roommate, Duke, who loves beautiful Olivia, who has fallen for Sebastian! As if that were not enough, Viola's twin returns from London ahead of schedule but has no idea that his sister has already replaced him on campus.
## 4588 Clara and Diego, under the guidance of the psychiatrist of a day rehabilitation center for disturbed people who attend, decide to transform the treatment center into a restaurant, involving all their other companions.
## 4589 An agoraphobic hip-hop prodigy and a disgraced former music manager cross paths in Chicago’s South Side and help each other face demons of their pasts.
## 4590 In Argentina, between 1982 and 1985, the Puccios, a well-established family of San Isidro, an upper-class suburb of Buenos Aires, kidnap several people and hold them as hostages for a ransom.
## 4591 A 10-year-old cartographer secretly leaves his family's ranch in Montana where he lives with his cowboy father and scientist mother and travels across the country on board a freight train to receive an award at the Smithsonian Institute.
## 4592 When Giratina is discovered to be able to create parallel dimensions, it's up to Ash and his friends to stop a mysterious stranger from using its powers for evil.
## 4593 Bumbling lieutenant Frank Drebin is out to foil the big boys in the energy industry, who intend to suppress technology that will put them out of business.
## 4594 Rose Loomis and her older, gloomier husband, George, are vacationing at a cabin in Niagara Falls, N.Y. The couple befriend Polly and Ray Cutler, who are honeymooning in the area. Polly begins to suspect that something is amiss between Rose and George, and her suspicions grow when she sees Rose in the arms of another man. While Ray initially thinks Polly is overreacting, things between George and Rose soon take a shockingly dark turn.
## 4595 In order to protect the reputation of the American space program, a team of NASA administrators turn the first Mars mission into a phony Mars landing. Under threat of harm to their families the astronauts play their part in the deception on a staged set in a deserted military base. But once the real ship returns to Earth and burns up on re-entry, the astronauts become liabilities. Now, with the help of a crusading reporter, they must battle a sinister conspiracy that will stop at nothing to keep the truth hidden.
## 4596 When the girl that detective Joe Hallenback is protecting gets murdered, the boyfriend of the murdered girl attempts to investigate and solve the case. What they discover is that there is deep seated corruption going on between a crooked politician and the owner of a pro football team.
## 4597 In 1979, a group of young filmmakers set out to make an adult film in rural Texas, but when their reclusive, elderly hosts catch them in the act, the cast find themselves fighting for their lives. Hilarity ensues.
## 4598 An ambitious reporter gets in trouble while investigating a senator's assassination which leads to a vast conspiracy involving a multinational corporation behind every event in the world's headlines.
## 4599 Covering the life and times of one of the West's most iconic heroes.
## 4600 Scientists and US Air Force officials fend off a blood-thirsty alien organism while investigating at a remote arctic outpost.
## 4601 A young boy stays with his aunt and uncle, and befriends his cousin who's the same age. But his cousin begins showing increasing signs of psychotic behavior.
## 4602 Matt Ryder is convinced to drive his estranged and dying father Benjamin Ryder cross country to deliver four old rolls of Kodachrome film to the last lab in the world that can develop them before it shuts down for good. Along with Ben's nurse Zooey, the three navigate a world changing from analogue to digital while trying to put the past behind them.
## 4603 When Grouchy Smurf behaves badly to everyone and refuses to celebrate Christmas, the Smurfs of Christmas Past, Present and Future teach him to appreciate Christmas.
## 4604 A widowed mother and her son change when a mysterious stranger enters their lives.
## 4605 Rookie cop, Amelia Donaghy reluctantly teams with Lincoln Rhyme – formerly the department's top homicide detective but now paralyzed as a result of a spinal injury – to catch a grisly serial killer dubbed 'The Bone Collector'. The murderer's special signature is to leave tantalizing clues based on the grim remains of his crimes.
## 4606 On a flight from Los Angeles to New York, Oliver and Emily make a connection, only to decide that they are poorly suited to be together. Over the next seven years, however, they are reunited time and time again, they go from being acquaintances to close friends to ... lovers?
## 4607 In Verona, bad blood between the Montague and Capulet families leads to much bitterness. Despite the hostility, Romeo Montague manages an invitation to a masked ball at the estate of the Capulets and meets Juliet, their daughter. The two are instantly smitten but dismayed to learn that their families are enemies. Romeo and Juliet figure out a way to pursue their romance, but Romeo is banished for his part in the slaying of Juliet's cousin, Tybalt.
## 4608 Jenna is a pregnant, unhappily married waitress in the deep south. She meets a newcomer to her town and falls into an unlikely relationship as a last attempt at happiness.
## 4609 Stoic and heartbroken, Einar Gilkyson quietly lives in the rugged Wyoming ranchlands alongside his only trusted friend, Mitch Bradley. One day, the woman he blames for the death of his only son arrives at his door broke, desperate and with a granddaughter he's never known. But even as buried anger and accusations resurface, the way is opened for unexpected connection, adventure and forgiveness.
## 4610 The teenage girls of Vestalis Academy are meticulously trained in the art of being “clean girls,” practicing the virtues of perfect femininity. But what exactly are they being trained for? Vivien intends to find out.
## 4611 Two demon brothers enlist the aid of Kat Elliot — a tough teen with a load of guilt — to summon them to the Land of the Living. But what Kat demands in return leads to a brilliantly bizarre and comedic adventure like no other.
## 4612 To escape his life of crime, a Paris drug dealer takes on one last job involving Spain, unhinged gangsters, his longtime crush and his scheming mother.
## 4613 A prestigious Stockholm museum's chief art curator finds himself in times of both professional and personal crisis as he attempts to set up a controversial new exhibit.
## 4614 When a nuclear missile was fired at Washington in 1945, Captain America managed to detonate it in the upper atmosphere. But then he fell miles into the icy depths of the North Atlantic, where he remained lost for over sixty years. But now, with the world facing the very same evil, Captain America must rise again as our last hope for survival.
## 4615 A tale of an inner city drug dealer who turns away from crime to pursue his passion, rap music.
## 4616 Frank Leone is nearing the end of his prison term for a relatively minor crime. Just before he is paroled, however, Warden Drumgoole takes charge. Drumgoole was assigned to a hell-hole prison after his administration was publicly humiliated by Leone, and has now arrived on the scene to ensure that Leone never sees the light of day.
## 4617 After living a long and colorful life, Allan Karlsson finds himself stuck in a nursing home. On his 100th birthday, he leaps out a window and begins an unexpected journey.
## 4618 A young girl, with an amazing ability to communicate with insects, is transferred to an exclusive Swiss boarding school, where her unusual capability might help solve a string of murders.
## 4619 The "Trinity" crew makes another modern era film. Plata and Salud are pilots ditching aircraft for insurance money. They wind up crashing for real in the jungles of South America. The plot involves "Mr. Big", who is buying the diamonds from the miners for much too little, and has thugs who keep the price down. Of course, Plata and Salud side with the miners
## 4620 Professor Albus Dumbledore knows the powerful, dark wizard Gellert Grindelwald is moving to seize control of the wizarding world. Unable to stop him alone, he entrusts magizoologist Newt Scamander to lead an intrepid team of wizards and witches. They soon encounter an array of old and new beasts as they clash with Grindelwald's growing legion of followers.
## 4621 Russian army recruits complete training and take their posting in late 1980s Afghanistan, where the insurgents are slowly gaining the upper hand.
## 4622 Against his father Odin's will, The Mighty Thor - a powerful but arrogant warrior god - recklessly reignites an ancient war. Thor is cast down to Earth and forced to live among humans as punishment. Once here, Thor learns what it takes to be a true hero when the most dangerous villain of his world sends the darkest forces of Asgard to invade Earth.
## 4623 Olivier Assayas, Gus Van Sant, Wes Craven and Alfonso Cuaron are among the 20 distinguished directors who contribute to this collection of 18 stories, each exploring a different aspect of Parisian life. The colourful characters in this drama include a pair of mimes, a husband trying to chose between his wife and his lover, and a married man who turns to a prostitute for advice.
## 4624 A gripping and chilling thriller that brings us to a hazy mountain village where an enigmatic detective is investigating the sudden disappearance of fifteen-year-old girl.
## 4625 Valeria has just moved to Madrid after her parent's separation. What at first seems a bad start for her new life becomes the beginning of an amazing life experience. New friendships, a city full of possibilities, first love...
## 4626 The continuation of Joe's sexually dictated life delves into the darker aspects of her adult life and what led to her being in Seligman's care.
## 4627 A bullied young boy befriends a young female vampire who lives in secrecy with her guardian. A remake of the movie “Let The Right One In” which was an adaptation of a book.
## 4628 A Pakistani Briton renovates a rundown laundrette with his male lover while dealing with drama within his family, the local Pakistani community, and a persistent mob of skinheads.
## 4629 A headstrong young woman returns to New Orleans after the death of her estranged mother.
## 4630 Kenneth Feinberg, a powerful D.C. lawyer appointed Special Master of the 9/11 Fund, fights off the cynicism, bureaucracy, and politics associated with administering government funds and, in doing so, discovers what life is worth.
## 4631 A group of unlikely heroes from across the Korean peninsula try to save the day after a volcano erupts on the mythical and majestic Baekdu Mountain.
## 4632 Amin, an aspiring screenwriter living in Paris, returns home for the summer, to a fishing village in the South of France. It is a time of reconnecting with his family and his childhood friends. Together with his cousin Tony and his best friend Ophélie, he spends his time between the Tunisian restaurant run by his parents, the local bars and the beaches frequented by girls on holiday. Enchanted by the many female characters who surround him, Amin remains in awe of these summer sirens while his dionysiac cousin throws himself into their carnal delights with euphoria. Armed with his camera and guided by the bright simmer light of the Mediterranean coast, Amin pursues his philosophical quest while gathering inspiration for his screenplays. When it comes to love, only Mektoub (‘destiny' in Arabic) can decide.
## 4633 Each Christmas, Santa and his vast army of highly trained elves produce gifts and distribute them around the world in one night. However, when one of 600 million children to receive a gift from Santa on Christmas Eve is missed, it is deemed ‘acceptable’ to all but one—Arthur. Arthur Claus is Santa’s misfit son who executes an unauthorised rookie mission to get the last present half way around the globe before dawn on Christmas morning.
## 4634 Set in the southern USA, a racist white man, Hank, falls in love with a black woman named Leticia. Ironically, Hank is a prison guard working on Death Row who executed Leticia's husband. Hank and Leticia's inter-racial affair leads to confusion and new ideas for the two unlikely lovers.
## 4635 1930s Hollywood is reevaluated through the eyes of scathing social critic and alcoholic screenwriter Herman J. Mankiewicz as he races to finish the screenplay of Citizen Kane.
## 4636 The aquatic adventure of the highly influential and fearlessly ambitious pioneer, innovator, filmmaker, researcher, and conservationist, Jacques-Yves Cousteau, covers roughly thirty years of an inarguably rich in achievements life.
## 4637 Bob Saginowski finds himself at the center of a robbery gone awry and entwined in an investigation that digs deep into the neighborhood's past where friends, families, and foes all work together to make a living - no matter the cost.
## 4638 It is 1967, and Larry Gopnik, a physics professor at a quiet Midwestern university, has just been informed by his wife Judith that she is leaving him. She has fallen in love with one of his more pompous acquaintances Sy Ableman.
## 4639 An embattled NYPD detective, is thrust into a citywide manhunt for a pair of cop killers after uncovering a massive and unexpected conspiracy. As the night unfolds, lines become blurred on who he is pursuing, and who is in pursuit of him.
## 4640 While Carlos, a banking executive, takes his two kids to school in his car, he gets a phone call telling him that there is a bomb under the seats and he must to gather a large amount of money; otherwise, his car will blow up.
## 4641 A young opera singer is stalked by a deranged fan bent on killing the people associated with her to claim her for himself.
## 4642 Both dumped by their girlfriends, two best friends seek refuge in the local mall. Eventually, they decide to try and win back their significant others and take care of their respective nemeses.
## 4643 A stark portrayal of life among a group of heroin addicts who hang out in Needle Park in New York City. Played against this setting is a low-key love story between Bobby, a young addict and small-time hustler, and Helen, a homeless girl who finds in her relationship with Bobby the stability she craves.
## 4644 The sequel to House of 1000 Corpses – the Firefly family are ambushed at their isolated home by Sheriff Wydell and a squad of armed men guns blazing – yet only Otis and his sister, Baby, manage to escape the barrage of bullets unharmed. Hiding out in a backwater motel, the wanted siblings wait to rendezvous with their errant father, Captain Spaulding, killing whoever happens to stand in their way.
## 4645 During China's Tang dynasty the emperor has taken the princess of a neighboring province as his wife. She has borne him two sons and raised his eldest. Now his control over his dominion is complete, including the royal family itself.
## 4646 Over the course of five social occasions, a committed bachelor must consider the notion that he may have discovered love.
## 4647 Finding himself down and out in Los Angeles, ex porn star Mikey Saber decides to crawl back to his hometown of Texas City, Texas, where his estranged wife and mother-in-law are living. Just as this dysfunctional family seems to be making things work, Mikey meets a young woman named Strawberry working the cash register at a local doughnut shop.
## 4648 A thief makes a disturbing discovery in the house where he breaks in. Later, when he returns to the same house with his partner in crime, things are no longer how he expected.
## 4649 Set backstage at three iconic product launches and ending in 1998 with the unveiling of the iMac, Steve Jobs takes us behind the scenes of the digital revolution to paint an intimate portrait of the brilliant man at its epicenter.
## 4650 In a last-ditch effort to save his career, sports agent JB Bernstein dreams up a wild game plan to find Major League Baseball’s next great pitcher from a pool of cricket players in India. He soon discovers two young men who can throw a fastball but know nothing about the game of baseball. Or America. It’s an incredible and touching journey that will change them all — especially JB, who learns valuable lessons about teamwork, commitment and family.
## 4651 A man is forced to completely change his habits when he decides to move from the country to the city.
## 4652 After having successfully eluded the authorities for years, Hannibal peacefully lives in Italy in disguise as an art scholar. Trouble strikes again when he's discovered leaving a deserving few dead in the process. He returns to America to make contact with now disgraced Agent Clarice Starling, who is suffering the wrath of a malicious FBI rival as well as the media.
## 4653 Russian and British submarines with nuclear missiles on board both vanish from sight without a trace. England and Russia both blame each other as James Bond tries to solve the riddle of the disappearing ships. But the KGB also has an agent on the case.
## 4654 Ash, Pikachu, and their friends come to a desert city by the sea. Here they meet the Mythical Pokémon Hoopa, which has the ability to summon things—including people and Pokémon—through its magic rings. After a scary incident, they learn of a story about a brave hero who stopped the rampage of a terrifying Pokémon long ago. Now, the threat that has been bottled up for years is in danger of breaking loose again.
## 4655 When Lenny and his wife, Amanda, adopt a baby, Lenny realizes that his son is a genius and becomes obsessed with finding the boy's biological mother in hopes that she will be brilliant too. But when he learns that Max's mother is Linda Ash, a kindhearted prostitute and porn star, Lenny is determined to reform her immoral lifestyle. A Greek chorus chimes in to relate the plot to Greek mythology in this quirky comedy.
## 4656 Madeline is married to Ernest, who was once arch-rival Helen's fiance. After recovering from a mental breakdown, Helen vows to kill Madeline and steal back Ernest. Unfortunately for everyone, the introduction of a magic potion causes things to be a great deal more complicated than a mere murder plot.
## 4657 Spiritualist Blanche Tyler and her taxi driver/unemployed actor boyfriend encounter a pair of serial kidnappers while trailing a missing heir in California.
## 4658 In the second episode of the trilogy Fantômas kidnaps distinguished scientist professor Marchand with the aim to develop a super weapon that will enable him to menace the world. Fantômas is also planning to abduct a second scientist, professor Lefebvre.
## 4659 When guardian angel Seth - who invisibly watches over the citizens of Los Angeles - becomes captivated by Maggie, a strong-willed heart surgeon, he ponders trading in his pure, otherworldly existence for a mortal life with his beloved. The couple embarks on a tender but forbidden romance spanning heaven and Earth.
## 4660 Former childhood pals Leo and Nikki are attracted to each other as adults—but will their feuding parents' rival pizzerias put a chill on their sizzling romance?
## 4661 A gritty crime saga which follows the lives of an elite unit of the LA County Sheriff's Dept. and the state's most successful bank robbery crew as the outlaws plan a seemingly impossible heist on the Federal Reserve Bank.
## 4662 In a utopian society created at the end of the third world war, a female warrior who has been plucked from the badlands begins to see cracks in this new facade. And what does this community have planned for the rest of humankind?
## 4663 A basketball player's father must try to convince him to go to a college so he can get a shorter prison sentence.
## 4664 Harvard Law student Oliver Barrett IV and music student Jennifer Cavilleri share a chemistry they cannot deny - and a love they cannot ignore. Despite their opposite backgrounds, the young couple put their hearts on the line for each other. When they marry, Oliver's wealthy father threatens to disown him. Jenny tries to reconcile the Barrett men, but to no avail.
## 4665 A career officer and his wife work with a police detective to uncover the truth behind their son's disappearance following his return from a tour of duty in Iraq.
## 4666 After his family is evicted from their home, proud and desperate construction worker Dennis Nash tries to win his home back by striking a deal with the devil and working for Rick Carver, the corrupt real estate broker who evicted him.
## 4667 Elena and Antonio seem not to be made for each other. They are too different in terms of character, life choices, worldview, and the way they relate to others. They are total opposites. However, they are overwhelmed by a mutual attraction they're trying hard to avoid; but to which they succumb to.
## 4668 What can two little mice possibly do to save an orphan girl who's fallen into evil hands? With a little cooperation and faith in oneself, anything is possible! As members of the mouse-run International Rescue Aid Society, Bernard and Miss Bianca respond to orphan Penny's call for help. The two mice search for clues with the help of an old cat named Rufus.
## 4669 Best friends Marie and Alexia decide to spend a quiet weekend at Alexia's parents' secluded farmhouse. But on the night of their arrival, the girls' idyllic getaway turns into an endless night of horror.
## 4670 Jack's lavish, fast-paced lifestyle changes one Christmas night when he stumbles into a grocery store holdup and disarms the gunman. The next morning he wakes up in bed lying next to Kate, his college sweetheart he left in order to pursue his career, and to the horrifying discovery that his former life no longer exists. As he stumbles through this alternate suburban universe, Jack finds himself at a crossroad where he must choose between his high-power career and the woman he loves.
## 4671 A law firm brings in its "fixer" to remedy the situation after a lawyer has a breakdown while representing a chemical company that he knows is guilty in a multi-billion dollar class action suit.
## 4672 Young teenager Sam Witwicky becomes involved in the ancient struggle between two extraterrestrial factions of transforming robots – the heroic Autobots and the evil Decepticons. Sam holds the clue to unimaginable power and the Decepticons will stop at nothing to retrieve it.
## 4673 Teenager Cleo's school science project goes quite awry, causing her popular older sister Molly to go invisible.
## 4674 Sherlock Holmes and Dr. Watson meet as boys in an English Boarding school. Holmes is known for his deductive ability even as a youth, amazing his classmates with his abilities. When they discover a plot to murder a series of British business men by an Egyptian cult, they move to stop it.
## 4675 In the third and final episode of the trilogy, Fantômas imposes a head tax on the rich, threatening to kill those who do not comply.
## 4676 An emotionally desperate investment banker finds hope through a woman he meets.
## 4677 Sir Robert Beaumont is behind schedule on a railroad in Africa. Enlisting noted engineer John Henry Patterson to right the ship, Beaumont expects results. Everything seems great until the crew discovers the mutilated corpse of the project's foreman, seemingly killed by a lion. After several more attacks, Patterson calls in famed hunter Charles Remington, who has finally met his match in the bloodthirsty lions.
## 4678 After the death of Rini's mother, something is disturbing her family.
## 4679 A serial killer kidnaps a young boy after murdering his mother, then raises him to be his accomplice. After years in captivity, the boy must choose between escaping or following in his captor's bloody footprints.
## 4680 6th January 1975, in an infant nursery in Palermo (Italy), for a mysterious reason, a male nurse exchanges the labels of baby number 7 and 8. Thirty-one years later Tommaso (7) and Daniele (8) meet each other by accident.
## 4681 Jim Morris never made it out of the minor leagues before a shoulder injury ended his pitching career twelve years ago. Now a married-with-children high-school chemistry teacher and baseball coach in Texas, Jim's team makes a deal with him: if they win the district championship, Jim will try out with a major-league organization. The bet proves incentive enough for the team, and they go from worst to first, making it to state for the first time in the history of the school. Jim, forced to live up to his end of the deal, is nearly laughed off the try-out field--until he gets onto the mound, where he confounds the scouts (and himself) by clocking successive 98 mph fastballs, good enough for a minor-league contract with the Tampa Bay Devil Rays. Jim's still got a lot of pitches to throw before he makes it to The Show, but with his big-league dreams revived, there's no telling where he could go.
## 4682 When nine-year-old Alfalfa falls for Darla, his "He-Man-Woman-Hating" friends attempt to sabotage their relationship.
## 4683 A bombardier in World War II tries desperately to escape the insanity of the war. However, sometimes insanity is the only sane way to cope with a crazy situation.
## 4684 After waking up with mysterious wounds on his hands, a champion fighter finds himself in an otherworldly battle against evil forces that wreak havoc in the human world.
## 4685 The amazing true story of Billy Moore, an English boxer incarcerated in Thailand’s most notorious prison. Thrown into a world of drugs and violence, he finds his best chance to escape is to fight his way out in prison Muay Thai tournaments.
## 4686 In 1979 Ohio, several youngsters are making a zombie movie with a Super-8 camera. In the midst of filming, the friends witness a horrifying train derailment and are lucky to escape with their lives. They soon discover that the catastrophe was no accident, as a series of unexplained events and disappearances soon follows. Deputy Jackson Lamb, the father of one of the kids, searches for the terrifying truth behind the crash.
## 4687 A chaotic Bridget Jones meets a snobbish lawyer, and he soon enters her world of imperfections.
## 4688 Follow the 10-year reunion of the Deadwood camp to celebrate South Dakota's statehood. Former rivalries are reignited, alliances are tested and old wounds are reopened, as all are left to navigate the inevitable changes that modernity and time have wrought.
## 4689 The story of a father and a son. An on the road trip from South to North.
## 4690 The eccentric new manager of a UHF television channel tries to save the station from financial ruin with an odd array of programming.
## 4691 Charlie Croker pulled off the crime of a lifetime. The one thing that he didn't plan on was being double-crossed. Along with a drop-dead gorgeous safecracker, Croker and his team take off to re-steal the loot and end up in a pulse-pounding, pedal-to-the-metal chase that careens up, down, above and below the streets of Los Angeles.
## 4692 The story of the romance between the King of Siam (now Thailand) and the widowed British school teacher Anna Leonowens during the 1860s. Anna teaches the children and becomes romanced by the King. She convinces him that a man can be loved by just one woman.
## 4693 A young couple is pushed to the limits of sanity as they attempt to be reunited amid the chaos of a pandemic outbreak. The streets erupt into violence and depravity, as those infected are driven to enact the most cruel and ghastly things imaginable.
## 4694 Thirty years after starring in "The Wizard of Oz," beloved actress and singer Judy Garland arrives in London to perform sold-out shows at the Talk of the Town nightclub. While there, she reminisces with friends and fans and begins a whirlwind romance with musician Mickey Deans, her soon-to-be fifth husband.
## 4695 Thirty years after serving together in the Vietnam War, Larry "Doc" Shepherd, Sal Nealon and the Rev. Richard Mueller reunite for a different type of mission: to bury Doc's son, a young Marine killed in Iraq. Forgoing burial at Arlington National Cemetery, Doc and his old buddies take the casket on a bittersweet trip up the coast to New Hampshire. Along the way, the three men find themselves reminiscing and coming to terms with the shared memories of a war that continues to shape their lives.
## 4696 A young woman joins the military to be part of something bigger than herself and her small-town roots. Instead, she ends up as a new guard at Guantanamo Bay, where her mission is far from black and white. Surrounded by hostile jihadists and aggressive squadmates, she strikes up an unusual friendship with one of the detainees.
## 4697 Benjamin has lost his wife and, in a bid to start his life over, purchases a large house that has a zoo – welcome news for his daughter, but his son is not happy about it. The zoo is in need of renovation and Benjamin sets about the work with the head keeper and the rest of the staff, but, the zoo soon runs into financial trouble.
## 4698 Simon Birch and Joe Wenteworth are boys who have a reputation for being oddballs. Joe never knew his father, and his mother, Rebecca, is keeping her lips sealed no matter how much he protests. Simon, meanwhile, is an 11-year-old dwarf whose outsize personality belies his small stature. Indeed, he often assails the local reverend with thorny theological questions and joins Joe on his quest to find his biological father.
## 4699 Hellboy, his pyrokinetic girlfriend, Liz, and aquatic empath, Abe Sapien, face their biggest battle when an underworld elven prince plans to reclaim Earth for his magical kindred. Tired of living in the shadow of humans, Prince Nuada tries to awaken an ancient force of killing machines, the all-powerful Golden Army, to clear the way for fantasy creatures to roam free. Only Hellboy can stop the dark prince and prevent humanity's annihilation.
## 4700 Accio and Manrico are two working-class brothers in 1960s Italy: older Manrico is handsome, charismatic, womanizing, and loved by all, while younger Accio is moody, hotheaded, and lives everything as if it was a war, much to his parents' chagrin. When the former is drawn into left-wing politics, Accio joins the fascists out of spite. His flimsy beliefs are put to test when he meets Manrico's like-minded girlfriend, falling in love with her.
## 4701 Though she can spin wild tales of passionate romance, novelist Joan Wilder has no life of her own. Then one day adventure comes her way in the form of a mysterious package. It turns out that the parcel is the ransom she'll need to free her abducted sister, so Joan flies to South America to hand it over. But she gets on the wrong bus and winds up hopelessly stranded in the jungle.
## 4702 Jake, full of anger after his father's death, is just starting to find a place for himself at his new Orlando high school - until Ryan, head of an underground MMA fight club, picks Jake out as a prime opponent. After being trounced by Ryan in front of the entire school, Jake begins training under the firm, moral guidance of a MMA master, where he learns how to fight... and how to avoid a fight. But it becomes obvious that a rematch will be inevitable if Jake wants to stop Ryan and his bullying, once and for all.
## 4703 Uncle Drew recruits a squad of older basketball players to return to the court to compete in a tournament.
## 4704 When characters from the movie musical “Wet Side Story” get stuck in the real world, teens Brady and Mack must find a way to return them home.
## 4705 A woman in the midst of an unpleasant divorce moves to an eerie apartment building with her young daughter. The ceiling of their apartment has a dark and active leak.
## 4706 Set in the ghettos of Paris in 2010, an undercover cop and ex-thug try to infiltrate a gang in order to defuse a neutron bomb.
## 4707 The advertising director of Pacific Pharmaceuticals, frustrated with the low ratings of their sponsored TV program, seeks a more sensationalist approach. He orders his staff to Faro Island to capture King Kong for exploitation. As Godzilla re-emerges, a media frenzy generates with Pacific looking to capitalize off of the ultimate battle.
## 4708 Desperate to be rid of her toddler, a dissatisfied Beverly Hills housewife hires a stranger to babysit and ends up getting much more than she bargained for.
## 4709 In the winter of 1820, the New England whaling ship Essex is assaulted by something no one could believe—a whale of mammoth size and will, and an almost human sense of vengeance.
## 4710 Nebraska cop Kathryn Bolkovac discovers a deadly sex trafficking ring while serving as a U.N. peacekeeper in post-war Bosnia. Risking her own life to save the lives of others, she uncovers an international conspiracy that is determined to stop her, no matter the cost.
## 4711 Austin, Texas, is an Eden for the young and unambitious, from the enthusiastically eccentric to the dangerously apathetic. Here, the nobly lazy can eschew responsibility in favor of nursing their esoteric obsessions. The locals include a backseat philosopher who passionately expounds on his dream theories to a seemingly comatose cabbie, a young woman who tries to hawk Madonna's Pap test to anyone who will listen and a kindly old anarchist looking for recruits.
## 4712 With his nephews and niece, everyone's favorite rich uncle, Scrooge McDuck, treks from his mansion home in Duckburg in search of the long-lost loot of the thief Collie Baba. But finding the goods isn't quite what it's "quacked" up to be! Their thrilling adventure leads to comical chaos, magical mayhem, and a lesson about what is far more valuable than money, gold and jewels.
## 4713 Homicide detective John Hobbes witnesses the execution of serial killer Edgar Reese. Soon after the execution the killings start again, and they are very similar to Reese's style.
## 4714 The Daywalker known as "Blade" - a half-vampire, half-mortal man - becomes the protector of humanity against an underground army of vampires.
## 4715 A mysterious thief has stolen the prosperous Happy Valley's most prized possession: the musical Singing Harp. Can Mickey, Donald, and Goofy find the answer in the irritable Willie the Giant's magnificent castle up in the blue sky?
## 4716 A veteran sergeant of World War I leads a squad in World War II, always in the company of the survivor Pvt. Griff, the writer Pvt. Zab, the Sicilian Pvt. Vinci and Pvt. Johnson, in Vichy French Africa, Sicily, D-Day at Omaha Beach, Belgium and France, and ending in a concentration camp in Czechoslovakia where they face the true horror of war.
## 4717 Love and injury in time of war. Attilio de Giovanni teaches poetry in Italy. He has a romantic soul, and women love him. But he is in love with Vittoria, and the love is unrequited. Every night he dreams of marrying her, in his boxer shorts and t-shirt, as Tom Waits sings. Vittoria travels to Iraq with her friend, Fuad, a poet; they are there with the second Gulf War breaks out. Vittoria is injured. Attilio must get to her side, and then, as war rages around him, he must find her the medical care she needs. In war, does love conquer all?
## 4718 Kazakh journalist Borat Sagdiyev travels to America to make a documentary. As he zigzags across the nation, Borat meets real people in real situations with hysterical consequences. His backwards behavior generates strong reactions around him exposing prejudices and hypocrisies in American culture.
## 4719 In Bodeen, Texas, Land Of The Dragon, an indie-rock loving misfit finds a way of dealing with her small-town misery after she discovers a roller derby league in nearby Austin.
## 4720 In Africa, Slim and Tom don't like it when a German tyrant starts selling all of the African wildlife to Canadian zoos. Slim and Tom must teach this guy a lesson by beating the hell out of him and his gang.
## 4721 The Grinch decides to rob Whoville of Christmas - but a dash of kindness from little Cindy Lou Who and her family may be enough to melt his heart...
## 4722 A robot malfunction creates havoc and terror for unsuspecting vacationers at a futuristic, adult-themed amusement park.
## 4723 When Steve Coogan is asked by The Observer to tour the country's finest restaurants, he envisions it as the perfect getaway with his beautiful girlfriend. But, when she backs out on him, he has no one to accompany him but his best friend and source of eternal aggravation, Rob Brydon.
## 4724 Son Goku Jr. is the great-great-great-great-grandson of the legendary martial artist Son Goku. However, unlike his predecessor he's not a brave fighter. He's constantly picked on by school bullies, his grandmother Pan sees this and she's worried, but even though Goku Jr. is not a strong and powerful Saiyan, he has a kind heart, and Pan loves him. When Pan gets sick Goku Jr. realizes he must do something if he doesn't want to lose Pan. Then he will remember about the legends of the Dragon Balls. It was told they granted a wish to the bearer, Goku Jr. needs a magical wish more than ever.
## 4725 Trapped in their New York brownstone's panic room, a hidden chamber built as a sanctuary in the event of break-ins, newly divorced Meg Altman and her young daughter Sarah play a deadly game of cat-and-mouse with three intruders - Burnham, Raoul and Junior - during a brutal home invasion. But the room itself is the focal point because what the intruders really want is inside it.
## 4726 Multiple stories about the oscillating world of couple relationships and how difficult it can be to separate sex from love.
## 4727 A group of people in Los Angeles are brought together thanks to their canine friends.
## 4728 In 1982, André Bamberski learns about the death of his 14 year-old daughter, Kalinka, while she was on vacation with her mother and stepfather in Germany. Convinced that Kalinka’s death was not an accident, Bamberski begins to investigate. A botched autopsy report raises his suspicions and leads him to accuse Kalinka’s stepfather, Dr Dieter Krombach, as the murderer.\n Unable to indict Krombach in Germany, Bamberski attempts to take the trial to France, where he will dedicate his life to Kalinka’s justice and the imprisonment of Krombach.
## 4729 Romeo Aldea, a physician living in a small mountain town in Transylvania, has raised his daughter Eliza with the idea that once she turns 18, she will leave to study and live abroad. His plan is close to succeeding. Eliza has won a scholarship to study psychology in the UK. She just has to pass her final exams – a formality for such a good student. On the day before her first written exam, Eliza is assaulted in an attack that could jeopardize her entire future. Now Romeo has to make a decision. There are ways of solving the situation, but none of them using the principles he, as a father, has taught his daughter.
## 4730 Over the summer of 1976, thirty-six bombs detonate in the heart of Cleveland while a turf war raged between Irish mobster Danny Greene and the Italian mafia. Based on a true story, Kill the Irishman chronicles Greene's heroic rise from a tough Cleveland neighborhood to become an enforcer in the local mob.
## 4731 Three short stories by shock-meister Stephen King are linked by a stray cat that roams from one tale to the next in this creepy triptych that begins as Dick (James Woods) tries to quit smoking by any means necessary. Next, we meet Johnny, an adulterous man who's forced by his lover's husband onto a building's hazardous ledge. Finally, Amanda is threatened by an evil gnome who throws suspicion on the family cat.
## 4732 Oliver Twist the modern filmed version of Charles Dickens bestseller, a Roman Polanski adaptation. The classic Dickens tale, where an orphan meets a pickpocket on the streets of London. From there, he joins a household of boys who are trained to steal for their master.
## 4733 Reunited witch twins Camryn and Alex adjust to their new life as supernatural beings while at the same time trying to maintain a normal existence in this sequel to the magical Disney Channel original movie Twitches. But they soon find themselves going head to head with the forces of darkness that threaten to destroy their world. Luckily, their birth mother, the powerful Miranda, is on hand to help out.
## 4734 Wilbur the pig is scared of the end of the season, because he knows that come that time, he will end up on the dinner table. He hatches a plan with Charlotte, a spider that lives in his pen, to ensure that this will never happen.
## 4735 A deaf woman is stalked by a psychotic killer in her secluded home.
## 4736 When secretive new neighbors move in next door, suburbanite Ray Peterson and his friends let their paranoia get the best of them as they start to suspect the newcomers of evildoings and commence an investigation. But it's hardly how Ray, who much prefers drinking beer, reading his newspaper and watching a ball game on the tube expected to spend his vacation.
## 4737 Henry likes to kill people, in different ways each time. Henry shares an apartment with Otis. When Otis' sister comes to stay, we see both sides of Henry: "the guy next door" and the serial killer.
## 4738 Doug and Abi and their three children travel to the Scottish Highlands for Doug's father Gordie's birthday party. It's soon clear that when it comes to keeping a secret under wraps from the rest of the family, their children are their biggest liability...
## 4739 An epic journey into the world of dinosaurs where an Apatosaurus named Arlo makes an unlikely human friend.
## 4740 Louis-Philippe Fourchaume, another typical lead-role for French comedy superstar Louis de Funès, is the dictatorial CEO of a French company which designs and produces sail yachts, and fires in yet another tantrum his designer André Castagnier, not realizing that man is his only chance to land a vital contract with the Italian magnate Marcello Cacciaperotti. So he has to find him at his extremely rural birthplace in 'la France profonde', which proves a torturous odyssey for the spoiled rich man; when he does get there his torment is far from over: the country bumpkin refuses to resume his slavish position now the shoe is on the other foot, so Fourchaume is dragged along in the boorish family life, and at times unable to control his temper, which may cost him more credit then he painstakingly builds up...
## 4741 La madre-manager di una giovanissima modella americana cerca un precettore per la figlia che deve lavorare per tre mesi a Roma. Le viene suggerito il nome di padre Spinetti, un sacerdote che insegna in un istituto femminile, ma la telefonata per l'incarico la intercetta Rolando, bidello laureato in cerca di fortuna. Rolando si presenta alla donna vestito da prete e viene assunto, la ragazza però non tarda a rendersi conto che l'impacciato professore non è un vero sacerdote e se ne innamora. Una commedia comico-sentimentale con un irresistibile Carlo Verdone.
## 4742 Paulie, an intelligent parrot who actually talks, relates the story of his struggle to a Russian immigrant who works as a janitor at the research institute where he is housed and neglected. Paulie's story begins many years earlier when he is given as a gift to a little girl who stutters. Eventually, he teaches the girl to speak correctly but is taken away by her father because he believes the girl cannot distinguish fantasy from reality because she believes the bird can talk. Paulie goes through a series of adventures with a pawn shop owner, an aging widow, a Mexican-American troubadour and a would be thief before being taken to the institute where he now lives
## 4743 A Catholic school newcomer falls in with a clique of teen witches who wield their powers against all who dare to cross them -- be they teachers, rivals or meddlesome parents.
## 4744 Father Maurice, a priest living in a residential college for priests in Rome, is called out one day to "exorcise" the devil from someone. The devil turns out to be in the form of a fun-loving man called Giuditta. What Father Maurice doesn't know is that this type of devil will turn his life around.
## 4745 In the highlands of Scotland in the 1700s, Rob Roy tries to lead his small town to a better future, by borrowing money from the local nobility to buy cattle to herd to market. When the money is stolen, Rob is forced into a Robin Hood lifestyle to defend his family and honour.
## 4746 After years of helping their hubbies climb the ladder of success, three mid-life Manhattanites have been dumped for a newer, curvier model. But the trio is determined to turn their pain into gain. They come up with a cleverly devious plan to hit their exes where it really hurts - in the wallet!
## 4747 In order to save an assassinated scientist, a submarine and its crew are shrunk to microscopic size and injected into his bloodstream.
## 4748 A Halloween-hating dad reluctantly teams up with his teenage daughter when an evil spirit wreaks havoc by making their town's decorations come to life.
## 4749 French Basque Country, year 1609. The men of a small fishing village have gone to sea. Judge Rostegui, who has been charged by the king with ridding the country of the devil's wiles, arrests Ana and her friends and accuses them of witchcraft.
## 4750 A young boy finds himself pursued by two assassins in the Montana wilderness, with a survival expert determined to protect him, and a forest fire threatening to consume them all.
## 4751 In 1934, Frank Hamer and Manny Gault, two former Texas Rangers, are commissioned to put an end to the wave of vicious crimes perpetrated by Bonnie Parker and Clyde Barrow, a notorious duo of infamous robbers and cold-blooded killers who nevertheless are worshiped by the public.
## 4752 Twins separated at birth, Camryn and Alex meet by chance for the first time on their 21st birthday and discover they're witches with the power to save their homeland of Coventry from the evil that threatens it. But when Camryn leaves Alex to face the darkness alone, will Coventry be doomed? Or will the sisters multiply their magic by standing together?
## 4753 Sixteen-year-old Poppy has everything her unlimited credit cards can buy, and a spoiled attitude to match. After a final thoughtless prank, her exasperated father ships her off to boarding school in England. There, Poppy meets her match in a stern headmistress and a class full of girls who will not tolerate her selfishness.
## 4754 After losing an acting role and his girlfriend, Jake Scully finally catches a break: he gets offered a gig house-sitting in the Hollywood Hills. While peering through the beautiful home's telescope one night, he spies a gorgeous woman dancing in her window. But when he witnesses the girl's murder, it leads Scully through the netherworld of the adult entertainment industry on a search for answers—with porn actress Holly Body as his guide.
## 4755 Four adopted brothers return to their Detroit hometown when their mother is murdered and vow to exact revenge on the killers.
## 4756 Having been hopelessly repressed and facing eventual certain death at the British chicken farm where they are held, Ginger the chicken along with the help of Rocky the American rooster decide to rebel and lead their fellow chickens in a great escape from the murderous farmers Mr. and Mrs. Tweedy and their farm of doom.
## 4757 Fifteen-year-old Charlotte Flax is tired of her wacky mom moving their family to a different town any time she feels it is necessary. When they move to a small Massachusetts town and Mrs. Flax begins dating a shopkeeper, Charlotte and her 9-year-old sister, Kate, hope that they can finally settle down. But when Charlotte's attraction to an older man gets in the way, the family must learn to accept each other for who they truly are.
## 4758 After a series of brutal slayings, a teen and her friends take on an evil force that's plagued their notorious town for centuries.
## 4759 Based on the comic book by the creator of Ghost in the Shell, a young female soldier Deunan and her cyborg partner Briareos survive through the post World War 3 apocalyptic New York in search of human's future hope, the legendary city of Olympus.
## 4760 Hector is a quirky psychiatrist who has become increasingly tired of his humdrum life. As he tells his girlfriend, Clara, he feels like a fraud: he hasn’t really tasted life, and yet he’s offering advice to patients who are just not getting any happier. So Hector decides to break out of his deluded and routine driven life. Armed with buckets of courage and child-like curiosity, he embarks on a global quest in hopes of uncovering the elusive secret formula for true happiness. And so begins a larger than life adventure with riotously funny results.
## 4761 In Imperial Russia, Anna, the wife of the officer Karenin, goes to Moscow to visit her brother. On the way, she meets the charming cavalry officer Vronsky to whom she is immediately attracted. But in St. Petersburg’s high society, a relationship like this could destroy a woman’s reputation.
## 4762 Set in Baroque France, a scheming widow and her lover make a bet regarding the corruption of a recently married woman. The lover, Valmont, bets that he can seduce her, even though she is an honorable woman. If he wins, he can have his lover to do as he will. However, in the process of seducing the married woman, Valmont falls in love.
## 4763 Upon his release from a mental hospital following a nervous breakdown, the directionless Anthony joins his friend Dignan, who seems far less sane than the former. Dignan has hatched a hair-brained scheme for an as-yet-unspecified crime spree that somehow involves his former boss, the (supposedly) legendary Mr. Henry.
## 4764 Basket-case network news producer Jane Craig falls for new reporter Tom Grunnick, a pretty boy who represents the trend towards entertainment news she despises. Aaron Altman, a talented but plain correspondent, carries an unrequited torch for Jane. Sparks fly between the three as the network prepares for big changes, and both the news and Jane must decide between style and substance.
## 4765 Emma Woodhouse is a congenial young lady who delights in meddling in other people’s affairs. She is perpetually trying to unite men and women who are utterly wrong for each other. Despite her interest in romance, Emma is clueless about her own feelings, and her relationship with gentle Mr. Knightly.
## 4766 15-year-old Mia faces an overwhelming transformation which puts her entire existence into question. Her body is changing radically, and despite desperate attempts to halt the process, Mia is soon forced to accept that nature is far more powerful than she is.
## 4767 A true story of Samy, native of La Courneuve, who is out of love for Nadia, decides to climb Mount Everest.
## 4768 A young working girl with a blue-collar background is surprised when her new fiancé announces he is actually a prince of a small sovereign country in Europe. After the couple quickly takes off to spend the holidays at his family’s sprawling, royal castle, she must work hard to win over her disapproving and unaccepting future mother-in-law—the Queen—and find out if love truly can conquer all.
## 4769 In 1959, an alien experiment crashes to earth and infects a fraternity member. They freeze the body, but in the modern day, two geeks pledging a fraternity accidentally thaw the corpse, which proceeds to infect the campus with parasites that transform their hosts into killer zombies.
## 4770 Count Dracula adjourns to Earth, accompanied by Frankenstein's Monster, the Wolfman, the Mummy, and the Gillman. The uglies are in search of a powerful amulet that will grant them power to rule the world. Our heroes - the Monster Squad are the only ones daring to stand in their way.
## 4771 Will is looking for an escape from his family when he encounters Lee, the school bully. Armed with a video camera and a copy of Rambo, Lee plans to make his own action-packed video epic.
## 4772 It’s the battle of wills, as Andie (Kate Hudson) needs to prove she can dump a guy in 10 days, whereas Ben (Matthew McConaughey) needs to prove he can win a girl in 10 days. Now, the clock is ticking - and the wildly entertaining comedy smash is off and running in this irresistible tale of sex, lies and outrageous romantic fireworks!
## 4773 With the help of an irreverent young sidekick, a bank robber gets his old gang back together to organise a daring new heist.
## 4774 Forlorn heiress Penelope Wilhern is cursed, and the only way out is to fall in love with someone of suitable stock. But how can she find her soul mate when she's sequestered inside her family's estate with only her parents to keep her company. This untraditional fairy tale about a girl who bucks convention to create her own happy ending.
## 4775 Tony, a promising young motorcycle racer, is forced to do perilous drug runs to save the mother of his child from a dangerous mobster.
## 4776 Nineteen-year-old Danny Flynn is imprisoned for his involvement with the I.R.A. in Belfast. He leaves behind his family and his sixteen-year-old girlfriend, Maggie Hamill. Fourteen years later, Danny is released from prison and returns to his old working class neighborhood to resume his life as a boxer.
## 4777 Three escaped criminals from the planet Krypton test the Man of Steel's mettle. Led by General Zod, the Kryptonians take control of the White House and partner with Lex Luthor to destroy Superman and rule the world. But Superman, who attempts to make himself human in order to get closer to Lois, realizes he has a responsibility to save the planet.
## 4778 Mitch McDeere is a young man with a promising future in Law. About to sit his Bar exam, he is approached by 'The Firm' and made an offer he doesn't refuse. Seduced by the money and gifts showered on him, he is totally oblivious to the more sinister side of his company. Then, two Associates are murdered. The FBI contact him, asking him for information and suddenly his life is ruined. He has a choice - work with the FBI, or stay with the Firm. Either way he will lose his life as he knows it. Mitch figures the only way out is to follow his own plan...
## 4779 When a casino-owning dog named Charlie is murdered by his rival Carface, he finds himself in Heaven basically by default since all dogs go to heaven. However, since he wants to get back at his killer, he cons his way back to the living with the warning that doing that damns him to Hell. Once back, he teams with his old partner, Itchy, to prep his retaliation. He also stumbles onto an orphan girl who can talk to the animals, thus allowing him to get the inside info on the races to ensure his wins to finance his plans. However, all the while, he is still haunted by nightmares of what's waiting for him on the other side unless he can prove that he is worthy of Heaven again.
## 4780 After a man with extraordinary—and frighteningly destructive—telepathic abilities is nabbed by agents from a mysterious rogue corporation, he discovers he is far from the only possessor of such strange powers, and that some of the other “scanners” have their minds set on world domination, while others are trying to stop them.
## 4781 Deep inside the mountain of Dovre, something gigantic awakens after being trapped for a thousand years. Destroying everything in its path, the creature is fast approaching the capital of Norway. But how do you stop something you thought only existed in Norwegian folklore?
## 4782 Journalist Fred Flarsky reunites with his childhood crush, Charlotte Field, now one of the most influential women in the world. As she prepares to make a run for the Presidency, Charlotte hires Fred as her speechwriter — much to the dismay of her trusted advisers.
## 4783 A team consisting of a physicist, his wife, a young female psychic and the only survivor of the previous visit are sent to the notorious Hell House to prove/disprove survival after death. Previous visitors have either been killed or gone mad, and it is up to the team to survive a full week in isolation, and solve the mystery of the Hell House.
## 4784 A murder takes place in the shop of David Lyons, a deaf man who fails to hear the gunshot being fired. Outside, blind man Wally Karue hears the shot but cannot see the perpetrator. Both are arrested, but escape to form an unlikely partnership. Being chased by both the law AND the original killers, can the pair work together to outwit them all?
## 4785 Nicolas Bannister, a rugged and solitary veteran living in a near-future Miami flooded by rising seas, is an expert in a dangerous occupation: he offers clients the chance to relive any memory they desire. His life changes when he meets a mysterious young woman named Mae. What begins as a simple matter of lost and found becomes a passionate love affair. But when a different client's memories implicate Mae in a series of violent crimes, Bannister must delve through the dark world of the past to uncover the truth about the woman he fell for.
## 4786 Espen “Ash Lad”, a poor farmer’s son, embarks on a dangerous quest with his brothers to save the princess from a vile troll known as the Mountain King – in order to collect a reward and save his family’s farm from ruin.
## 4787 Chris is the top brain who just wants to party, Mitch is the 15-year-old college wiz kid. Supposedly hard at work on a lab project with a mysterious deadline, they still find time to use their genius to discover new ways to have fun.
## 4788 Barbie and her sisters take off on another exciting, global adventure to visit their friend Ken at his summer internship at a beautiful and exotic coral reef.
## 4789 Meet Claudia: dull Giovanni is married with her, Giacomo is divorced and happy of it (until he meets her), and Aldo... is a taxi driver. At the end, who will have won her heart?
## 4790 Australian journalist Guy Hamilton travels to Indonesia to cover civil strife in 1965. There—on the eve of an attempted coup—he befriends a Chinese Australian photographer with a deep connection to and vast knowledge of the Indonesian people, and also falls in love with a British national.
## 4791 Elle Woods, a fashionable sorority queen, is dumped by her boyfriend. She decides to follow him to law school, but while there, she figures out that there is more to herself than just looks.
## 4792 Deni Maroon, a musician and dock worker is determined to pull off a music festival against the interests of the local factory owner.
## 4793 A woman's chaotic life becomes more complicated when she inherits her grandmother's dog.
## 4794 On the rocky path to sobriety after a life-changing accident, John Callahan discovers the healing power of art, willing his injured hands into drawing hilarious, often controversial cartoons, which bring him a new lease on life.
## 4795 American chess champion Bobby Fischer prepares for a legendary match-up against Russian Boris Spassky.
## 4796 The true story of Sam Childers, a former drug-dealing biker who finds God and became a crusader for hundreds of Sudanese children who've been kidnapped and pressed into duty as soldiers.
## 4797 Elina, heroine of the Fairytopia films tells her friend Bibble the story of Flutterfield, a faraway kingdom populated by fairies with butterfly wings. Henna, the evil butterfly fairy has poisoned the queen of Flutterfield in an attempt to take over the kingdom.
## 4798 A struggling young writer finds his life and work dominated by his unfaithful wife and his radical feminist mother, whose best-selling manifesto turns her into a cultural icon.
## 4799 An itinerant farmer and his young son help a heart-of-gold saloon singer search for her estranged husband.
## 4800 The world’s most lethal odd couple – bodyguard Michael Bryce and hitman Darius Kincaid – are back on another life-threatening mission. Still unlicensed and under scrutiny, Bryce is forced into action by Darius's even more volatile wife, the infamous international con artist Sonia Kincaid. As Bryce is driven over the edge by his two most dangerous protectees, the trio get in over their heads in a global plot and soon find that they are all that stand between Europe and a vengeful and powerful madman.
## 4801 Father and son coroners receive a mysterious unidentified corpse with no apparent cause of death. As they attempt to examine the "Jane Doe," they discover increasingly bizarre clues that hold the key to her terrifying secrets.
## 4802 The final candidates for a highly desirable corporate job are locked together in an exam room and given a test so simple and confusing that tension begins to unravel.
## 4803 A college dropout gets a job as a broker for a suburban investment firm and is on the fast track to success—but the job might not be as legitimate as it sounds.
## 4804 A young man leaves Ireland with his landlord's daughter after some trouble with her father, and they dream of owning land at the big giveaway in Oklahoma ca. 1893. When they get to the new land, they find jobs and begin saving money. The man becomes a local barehands boxer, and rides in glory until he is beaten, then his employers steal all the couple's money and they must fight off starvation in the winter, and try to keep their dream of owning land alive. Meanwhile, the woman's parents find out where she has gone and have come to America to find her and take her back.
## 4805 The complicated relationship that formed between the FBI analyst Bill Hagmaier and serial killer Ted Bundy during Bundy's final years on death row.
## 4806 Four brilliant university students are forced to confront themselves in terrifying ways when their Quantum Physics experiment leads to an entangled parallel existence that leaves them questioning who they are and what is real.
## 4807 A young boy and his dog, who happens to have a genius-level IQ, spring into action when their time-machine is stolen and moments in history begin to be changed.
## 4808 Get ready for Barbie: A Fairy Secret, an amazing adventure with Barbie where she discovers there are fairies living secretly all around us! When Ken is suddenly whisked away by a group of fairies, Barbie's two fashion stylist friends reveal they are actually fairies and that Ken has been taken to a magical secret fairy world not far away! Barbie and her rival Raquelle take off with the fairy friends on an action-packed journey to bring him back. Along the way they must stick together and learn that the real magic lies not just in the fairy world itself, but in the power of friendship.
## 4809 A girl, sent by her parents to live with her two eccentric aunts, finds out on her sixteenth birthday that she is a witch.
## 4810 A disfigured concentration-camp survivor, unrecognizable after facial reconstruction surgery, searches ravaged postwar Berlin for the husband who might have betrayed her to the Nazis.
## 4811 Four months after the death of her husband, a woman on the brink of motherhood is tormented in her home by a strange woman who wants her unborn baby.
## 4812 When investigative reporter Irwin "Fletch" Fletcher goes undercover to write a piece on the drug trade at a local beach, he's approached by wealthy businessman Alan Stanwyk, who offers him $50,000 to murder him. With sarcastic wit and a knack for disguises, Fletch sets out to uncover Stanwyk's story.
## 4813 Myles and Brody are best friends with two very different ways of finding love. Displeased with their current love lives, they make a pact to be together if neither finds love in ten year’s time. Now two months shy of their deadline, both friends set off to do whatever it takes to avoid ending up as each other’s last resort.
## 4814 As if the Penguin wasn't enough to contend with, a new vigilante has surfaced in Gotham City, and her strong-arm tactics give Batman cause for concern.
## 4815 A heroic tale of three blood brothers and their struggle in the midst of war and political upheaval. It is based on "The Assassination of Ma," a Qing Dynasty (1644-1911) story about the killing of general Ma Xinyi.
## 4816 Follow Ariel's adventures before she gave up her fins for true love. When Ariel wasn't singing with her sisters, she spent time with her mother, Queen Athena. Ariel is devastated when Athena is killed by pirates, and after King Triton outlaws all singing. Along with pals Flounder and Sebastian, Ariel sets off in hopes of changing her father's decision to ban music from the kingdom.
## 4817 An American oil company sends a man to Scotland to buy up an entire village where they want to build a refinery. But things don't go as expected.
## 4818 The impressionistic story of a Texas family in the 1950s. The film follows the life journey of the eldest son, Jack, through the innocence of childhood to his disillusioned adult years as he tries to reconcile a complicated relationship with his father. Jack finds himself a lost soul in the modern world, seeking answers to the origins and meaning of life while questioning the existence of faith.
## 4819 Isabella runs her own salon and isn’t afraid to speak her mind, while Prince Thomas runs his own country and is about to marry for duty rather than love. When Izzy and her fellow stylists get the opportunity of a lifetime to do the hair for the royal wedding, she and Prince Thomas learn that taking control of their own destiny requires following their hearts.
## 4820 Trying to reverse a family curse, brothers Jimmy and Clyde Logan set out to execute an elaborate robbery during the legendary Coca-Cola 600 race at the Charlotte Motor Speedway.
## 4821 Thomas and his fellow Gladers face their greatest challenge yet: searching for clues about the mysterious and powerful organization known as WCKD. Their journey takes them to the Scorch, a desolate landscape filled with unimaginable obstacles. Teaming up with resistance fighters, the Gladers take on WCKD’s vastly superior forces and uncover its shocking plans for them all.
## 4822 The government gets wind of a plot to destroy America involving a trio of nuclear weapons for which the whereabouts are unknown. It's up to a seasoned interrogator and an FBI agent to find out exactly where the nukes are.
## 4823 Times are changing for Manny the moody mammoth, Sid the motor mouthed sloth and Diego the crafty saber-toothed tiger. Life heats up for our heroes when they meet some new and none-too-friendly neighbors – the mighty dinosaurs.
## 4824 A young mouse named Fievel and his family decide to migrate to America, a "land without cats," at the turn of the 20th century. But somehow, Fievel ends up in the New World alone and must fend off not only the felines he never thought he'd have to deal with again but also the loneliness of being away from home.
## 4825 A leukemia patient attempts to end a 20-year feud with her sister to get her bone marrow.
## 4826 Ordered to teach a martial arts class of rambunctious bunny kittens, Po tells stories of each of the Furious Five's pasts.
## 4827 Lucy Harmon, an American teenager is arriving in the lush Tuscan countryside to be sculpted by a family friend who lives in a beautiful villa. Lucy visited there four years earlier and exchanged a kiss with an Italian boy with whom she hopes to become reacquainted.
## 4828 The story recounts the early life of Genghis Khan, a slave who went on to conquer half the world in the 11th century.
## 4829 A special crimes investigator forms an unlikely bond with a serial killer to bring down a global child sex trafficking syndicate.
## 4830 In 1863, Mississippi farmer Newt Knight serves as a medic for the Confederate Army. Opposed to slavery, Knight would rather help the wounded than fight the Union. After his nephew dies in battle, Newt returns home to Jones County to safeguard his family but is soon branded an outlaw deserter. Forced to flee, he finds refuge with a group of runaway slaves hiding out in the swamps. Forging an alliance with the slaves and other farmers, Knight leads a rebellion that would forever change history.
## 4831 Ray Breslin is the world's foremost authority on structural security. After analyzing every high security prison and learning a vast array of survival skills so he can design escape-proof prisons, his skills are put to the test. He's framed and incarcerated in a master prison he designed himself. He needs to escape and find the person who put him behind bars.
## 4832 A squad of British soldiers on training in the lonesome Scottish wilderness find a wounded Special Forces captain and the remains of his team. As they encounter zoologist Megan, it turns out that werewolves are active in the region. They have to prepare for some action as there will be a full moon tonight...
## 4833 A research scientist explores the boundaries and frontiers of consciousness. Using sensory deprivation and hallucinogenic mixtures from native American shamans, he explores these altered states of consciousness and finds that memory, time, and perhaps reality itself are states of mind.
## 4834 The story of the Buckman family and friends, attempting to bring up their children. They suffer/enjoy all the events that occur: estranged relatives, the 'black sheep' of the family, the eccentrics, the skeletons in the closet, and the rebellious teenagers.
## 4835 A man vows to bring justice to those responsible for his wife's death while protecting the only family he has left, his daughter.
## 4836 A boy named Harley and his family attend a taping of The Banana Splits TV show, which is supposed to be a fun-filled birthday for young Harley and business as usual for Rebecca, the producer of the series. But things take an unexpected turn - and the body count quickly rises. Can Harley, his mom and their new pals safely escape?
## 4837 Dr. Gero's Androids #13, #14, and #15 are awakened by the laboratory computers and immediately head to the mall where Goku is shopping. After Goku, Trunks, and Vegeta defeat #14 and #15, #13 absorbs their inner computers and becomes a super being greater than the original three separately were. Now it is up to Goku to stop him.
## 4838 Antoine is about to start his first year of medical school… for the third time. Benjamin, just out of high school, will make his first try. He soon realizes it's not exactly a walk in the park. In a fiercely competitive environment, with nights dedicated to hard studying rather than hard partying, the two freshmen will have to adapt and find a middle ground between despair for the present and hope for the future.
## 4839 A man glimpses the future Fate has planned for him – and chooses to fight for his own destiny. Battling the powerful Adjustment Bureau across, under and through the streets of New York, he risks his destined greatness to be with the only woman he's ever loved.
## 4840 Nazi hunter Ezra Lieberman discovers a sinister and bizarre plot to rekindle the Third Reich.
## 4841 Tony spends his Saturdays at a disco where his stylish moves raise his popularity among the patrons. But his life outside the disco is not easy and things change when he gets attracted to Stephanie.
## 4842 In seaside Italy, a Holocaust survivor with a daycare business takes in a 12-year-old street kid who recently robbed her.
## 4843 A woman who is robbed on her way to catch the 1:30 train to Boston is left stranded in New York City. She meets a man who helps her during the course of the night and the two form a romance.
## 4844 A movie spun out of equal parts folk tale, fable and real-life legend about the mysterious, 1930s Tennessee hermit who famously threw his own rollicking funeral party... while he was still alive.
## 4845 A man tries to uncover an unconventional psychologist's therapy techniques on his institutionalized wife, while a series of brutal attacks committed by a brood of mutant children coincides with the husband's investigation.
## 4846 Charles Price may have grown up with his father in the family shoe business in Northampton, central England, but he never thought that he would take his father's place. Charles has a chance encounter with the flamboyant drag queen cabaret singer Lola and everything changes.
## 4847 When LexCorp accidentally unleashes a murderous creature, Superman meets his greatest challenge as a champion. Based on the "The Death of Superman" storyline that appeared in DC Comics' publications in the 1990s.
## 4848 One little ancient British village still holds out against the Roman invaders. Asterix and Obelix are invited to help. They must face fog, rain, warm beer and boiled boar with mint sauce, but they soon have Governor Encyclopaedius Britannicus's Romans declining and falling. Until a wild race for a barrel of magic potion lands them in the drink.
## 4849 Lorenzo, Blue and Antonio have a lot in common: they are sixteen, attending the same class in the same school in a small town in the northeast, each have a family that loves them. And all three, though for different reasons, have come to be isolated from other peers. Their new friendship helps them to resist, until the mechanical attraction and fear the judgment of others do not grasp them unprepared.
## 4850 Coming out from jail, Lucas has decided to change his life and behave like a good citizen. But when he is taken hostage in a bank by a hare-brained robber, no cops can believe he is not part of the action.
## 4851 After total humiliation at her thirteenth birthday party, Jenna Rink wants to just hide until she's thirty. With a little magic, her wish is granted, but it turns out that being thirty isn't as always as awesome as she thought it would be!
## 4852 El Mariachi just wants to play his guitar and carry on the family tradition. Unfortunately, the town he tries to find work in has another visitor, a killer who carries his guns in a guitar case. The drug lord and his henchmen mistake el Mariachi for the killer, Azul, and chase him around town trying to kill him and get his guitar case.
## 4853 A murder in Paris’ Louvre Museum and cryptic clues in some of Leonardo da Vinci’s most famous paintings lead to the discovery of a religious mystery. For 2,000 years a secret society closely guards information that — should it come to light — could rock the very foundations of Christianity.
## 4854 While his mother is in rehab and his father is on a 'business trip' with his assistant, 14-year-old outsider Maik is spending the summer holidays bored and alone at his parents' villa, when rebellious teenager Tschick appears. Tschick, a Russian immigrant and an outcast, steals a car and decides to set off on a journey away from Berlin with Maik tagging along for the ride. So begins a wild adventure where the two experience the trip of a lifetime and share a summer that they will never forget.
## 4855 A comedy film that looks into the loosely connected lives of people with strange sexual fantasies.
## 4856 Nick Hume is a mild-mannered executive with a perfect life, until one gruesome night he witnesses something that changes him forever. Transformed by grief, Hume eventually comes to the disturbing conclusion that no length is too great when protecting his family.
## 4857 Exceptionally ambitious high schooler Matthew has aspirations for a career in politics when he falls in love with his gorgeous 19-year-old neighbor, Danielle. But Matthew's bright future is jeopardized when he finds Danielle was once a porn star. As Danielle's past catches up with her, Matthew's love for her forces him to re-evaluate his goals.
## 4858 Sally and Gillian Owens, born into a magical family, have mostly avoided witchcraft themselves. But when Gillian's vicious boyfriend, Jimmy Angelov, dies unexpectedly, the Owens sisters give themselves a crash course in hard magic. With policeman Gary Hallet growing suspicious, the girls struggle to resurrect Angelov -- and unwittingly inject his corpse with an evil spirit that threatens to end their family line.
## 4859 Alice is young hearing-impaired girl who, after a supposed visitation from the Virgin Mary, is inexplicably able to hear, speak and heal the sick. As word spreads and people from near and far flock to witness her miracles, a disgraced journalist hoping to revive his career visits the small New England town to investigate. When terrifying events begin to happen all around, he starts to question if these phenomena are the works of the Virgin Mary or something much more sinister.
## 4860 A young boxer and a call girl get caught up in a drug-smuggling scheme over the course of one night in Tokyo.
## 4861 Driving cross-country, Ray and his wife and daughter stop at a highway rest area where his daughter falls and breaks her arm. After a frantic rush to the hospital and a clash with the check-in nurse, Ray is finally able to get her to a doctor. While the wife and daughter go downstairs for an MRI, Ray, exhausted, passes out in a chair in the lobby. Upon waking up, they have no record or knowledge of Ray's family ever being checked in.
## 4862 The inspiring true story of Seretse Khama, the King of Bechuanaland (modern Botswana), and Ruth Williams, the London office worker he married in 1948 in the face of fierce opposition from their families and the British and South African governments. Seretse and Ruth defied family, Apartheid and empire - their love triumphed over every obstacle flung in their path and in so doing they transformed their nation and inspired the world.
## 4863 Captured by smugglers when he was just a hatchling, a macaw named Blu never learned to fly and lives a happily domesticated life in Minnesota with his human friend, Linda. Blu is thought to be the last of his kind, but when word comes that Jewel, a lone female, lives in Rio de Janeiro, Blu and Linda go to meet her. Animal smugglers kidnap Blu and Jewel, but the pair soon escape and begin a perilous adventure back to freedom -- and Linda.
## 4864 When Queen Elizabeth's reign is threatened by ruthless familial betrayal and Spain's invading army, she and her shrewd adviser must act to safeguard the lives of her people.
## 4865 New York City, 1957. Lionel Essrog, a private detective living with Tourette syndrome, tries to solve the murder of his mentor and best friend, armed only with vague clues and the strength of his obsessive mind.
## 4866 Peter Rabbit's feud with Mr. McGregor escalates to greater heights than ever before as they rival for the affections of the warm-hearted animal lover who lives next door.
## 4867 A teen winds up in over his head while dealing drugs with a rebellious partner in Cape Cod, Mass.
## 4868 Dorothy, saved from a psychiatric experiment by a mysterious girl, finds herself back in the land of her dreams, and makes delightful new friends, and dangerous new enemies.
## 4869 When spirited young woman, Fanny Price is sent away to live on the great country estate of her rich cousins, she's meant to learn the ways of proper society. But while Fanny learns 'their' ways, she also enlightens them with a wit and sparkle all her own.
## 4870 Television made him famous, but his biggest hits happened off screen. Television producer by day, CIA assassin by night, Chuck Barris was recruited by the CIA at the height of his TV career and trained to become a covert operative. Or so Barris said.
## 4871 Newly-paroled former US Army ranger Cameron Poe is headed back to his wife, but must fly home aboard a prison transport flight dubbed "Jailbird" taking the “worst of the worst” prisoners, a group described as “pure predators”, to a new super-prison. Poe faces impossible odds when the transport plane is skyjacked mid-flight by the most vicious criminals in the country led by the mastermind — genius serial killer Cyrus "The Virus" Grissom, and backed by black militant Diamond Dog and psychopath Billy Bedlam.
## 4872 A very rich and successful playboy amuses himself by stealing artwork, but may have met his match in a seductive detective.
## 4873 On Halloween, a group of friends encounter an "extreme" haunted house that promises to feed on their darkest fears. The night turns deadly as they come to the horrifying realization that some nightmares are real.
## 4874 Jack Malik is a struggling singer-songwriter in an English seaside town whose dreams of fame are rapidly fading, despite the fierce devotion and support of his childhood best friend, Ellie. After a freak bus accident during a mysterious global blackout, Jack wakes up to discover that he's the only person on Earth who can remember The Beatles.
## 4875 Medical-school dropout Wallace has been repeatedly burned by bad relationships. So while everyone around him, including his roommate Allan, seems to be finding the perfect partner, Wallace decides to put his love life on hold. It is then that he meets Chantry, an animator who lives with her longtime boyfriend Ben. Wallace and Chantry form an instant connection, striking up a close friendship. Still, there is no denying the chemistry between them, leading the pair to wonder, what if the love of your life is actually your best friend?
## 4876 Alberto (Claudio Bisio), post office manager of a small town in Brianza, under pressure of his wife Sylvia (Angela Finocchiaro), is willing to do anything to get the transfer to Milan. Even pretending to be disabled to climb in the ranking. But the trick does not work and as punishment, he is transferred in a small town in Campania, which to an inhabitant of the north is equivalent to a nightmare ...
## 4877 When the gang from the Hundred Acre Wood begin a honey harvest, young Piglet is excluded and told that he is too small to help. Feeling inferior, Piglet disappears and his pals Eeyore, Rabbit, Tigger, Roo and Winnie the Pooh must use Piglet's scrapbook as a map to find him. In the process they discover that this very small animal has been a big hero in a lot of ways.
## 4878 On September 1st, 1939, Nazi Germany invades Poland, unleashing World War II. On September 17th, the Soviet Red Army crosses the border. The Polish army, unable to fight on two fronts, is defeated. Thousands of Polish men, both military and government officials, are captured by the invaders. Their fate will only be known several years later.
## 4879 A wannabe rock star who fronts a Pennsylvania-based tribute band is devastated when his kick him out of the group he founded. Things begin to look up for Izzy when he is asked to join Steel Dragon, the heavy metal rockers he had been imitating for so long. This film is loosely based on the true story of the band Judas Priest.
## 4880 When the trail goes cold on a murder investigation of a policeman, an undercover narcotics officer is lured back to the force to help solve the case.
## 4881 Six-year-old Susan Walker has doubts about childhood's most enduring miracle—Santa Claus. Her mother told her the secret about Santa a long time ago, but, after meeting a special department store Santa who's convinced he's the real thing, Susan is given the most precious gift of all—something to believe in.
## 4882 When Sam Baldwin's wife dies, he is left to bring up his eight-year-old son Jonah alone, and decides to move to Seattle to make a new start. On Christmas Eve, Jonah rings a radio phone-in with his Christmas wish to find a new wife for his dad. Meanwhile in Baltimore, journalist Annie Reed, who is having doubts about her own relationship, is listening in.
## 4883 Bill Baker, an American oil-rig roughneck from Oklahoma, travels to Marseille to visit his estranged daughter, Allison, who is in prison for a murder she claims she did not commit. Confronted with language barriers, cultural differences, and a complicated legal system, Bill builds a new life for himself in France as he makes it his personal mission to exonerate his daughter.
## 4884 Career con man Roy sets his sights on his latest mark: recently widowed Betty, worth millions. And he means to take it all. But as the two draw closer, what should have been another simple swindle takes on the ultimate stakes.
## 4885 When the eternally optimistic Poppy, queen of the Trolls, learns that the Bergens no longer have any holidays on their calendar, she enlists the help of Branch and the rest of the gang on a delightfully quirky mission to fix something that the Bergens don't think is broken.
## 4886 Hard man Ricky is incarcerated in a futuristic prison where ultra-violence is his only means of survival in the corrupt, sadistic system. He must battle his way quite literally 'through' the feared 'gang of four', and undergo multiple tortures before facing the governor in one of the goriest climaxes ever seen.
## 4887 This animated take on Oliver Twist re-imagines Oliver as an adorable orphaned kitten who struggles to survive in New York City and falls in with a band of canine criminals led by an evil human. First, Oliver meets Dodger, a carefree mutt with street savoir faire. But when Oliver meets wealthy Jenny on one of the gang's thieving missions, his life changes forever.
## 4888 On the run in the year 1987, Bumblebee finds refuge in a junkyard in a small Californian beach town. Charlie, on the cusp of turning 18 and trying to find her place in the world, discovers Bumblebee, battle-scarred and broken. When Charlie revives him, she quickly learns this is no ordinary yellow VW bug.
## 4889 All Eyez on Me chronicles the life and legacy of Tupac Shakur, including his rise to superstardom as a hip-hop artist, actor, poet and activist, as well as his imprisonment and prolific, controversial time at Death Row Records. Against insurmountable odds, Tupac rose to become a cultural icon whose career and persona both continue to grow long after his passing.
## 4890 A socially awkward teenage math prodigy finds new confidence and new friendships when he lands a spot on the British squad at the International Mathematics Olympiad.
## 4891 Inquisitive journalist Grace Collier is horrified when she witnesses her neighbor, fashion model Danielle Breton, violently murder a man. Panicking, she calls the police. But when the detective arrives at the scene and finds nothing amiss, Grace is forced to take matters into her own hands. Her first move is to recruit private investigator Joseph Larch, who helps her to uncover a secret about Danielle's past that has them both seeing double.
## 4892 A Los Angeles journalist befriends a homeless Juilliard-trained musician, while looking for a new article for the paper.
## 4893 Mysterious Wakanda lies in the darkest heart of Africa, unknown to most of the world. An isolated land hidden behind closed borders, fiercely protected by its young king: Black Panther. But when brutal alien invaders attack, the threat leaves Black Panther with no option but to go against the sacred decrees of his people and ask for help from outsiders.
## 4894 An unemployed pot-smoking slacker and amateur drummer, Anthony Stoner ditches his strict parents and hits the road, eventually meeting kindred spirit Pedro de Pacas. While the drug-ingesting duo is soon arrested for possession of marijuana, Anthony and Pedro get released on a technicality, allowing them to continue their many misadventures and ultimately compete in a rock band contest, where they perform the raucous tune "Earache My Eye."
## 4895 Danny Ocean's team of criminals are back and composing a plan more personal than ever. When ruthless casino owner Willy Bank doublecrosses Reuben Tishkoff, causing a heart attack, Danny Ocean vows that he and his team will do anything to bring down Willy Bank along with everything he's got. Even if it means asking for help from an enemy.
## 4896 Afghanistan. War correspondent Elsa Casanova is taken hostage by the Taliban. Faced with her imminent execution, a Special Forces unit is dispatched to free her. In some of the world’s most breathtaking yet hostile landscapes, a relentless pursuit begins between her kidnappers who have no intention of letting their prey escape them and a group of soldiers who risk their lives in pursuit of their single aim – to bring her home alive. This strong, independent woman and these men of duty are thrown together and forced to confront situations of great danger that inextricably bind them – emotionally, violently and intimately.
## 4897 On his first day after being released from jail for 14 armed bank robberies, Lucas finds himself caught up in someone else's robbery. Perry has decided to hold up the local bank to raise money so that he can keep his daughter, Meg, and get her the treatment she needs. Dugan, a detective, assumes Lucas helped plan the robbery, and hence Lucas, Perry and Meg become three fugitives.
## 4898 Karl Anton Verloc and his wife own a small cinema in a quiet London suburb where they live seemingly happily. But Mrs. Verloc does not know that her husband has a secret that will affect their relationship and threaten her teenage brother's life.
## 4899 The familiar story of Lieutenant Bligh, whose cruelty leads to a mutiny on his ship. This version follows both the efforts of Fletcher Christian to get his men beyond the reach of British retribution, and the epic voyage of Lieutenant Bligh to get his loyalists safely to East Timor in a tiny lifeboat.
## 4900 In Venice Beach, naive Midwesterner JB bonds with local slacker KG and they form the rock band Tenacious D. Setting out to become the world's greatest band is no easy feat, so they set out to steal what could be the answer to their prayers... a magical guitar pick housed in a rock-and-roll museum some 300 miles away.
## 4901 John Arnold DeMarco is a man who believes he is Don Juan, the greatest lover in the world. Clad in a cape and mask, DeMarco undergoes psychiatric treatment with Dr. Jack Mickler to cure him of his apparent delusion. But the psychiatric sessions have an unexpected effect on the psychiatric staff and, most profoundly, Dr Mickler, who rekindles the romance in his complacent marriage.
## 4902 Twenty-five years after a streak of brutal murders shocked the quiet town of Woodsboro, a new killer has donned the Ghostface mask and begins targeting a group of teenagers to resurrect secrets from the town’s deadly past.
## 4903 A grieving mother transforms herself into a vigilante following the murders of her husband and daughter, eluding the authorities to deliver her own personal brand of justice.
## 4904 Genius Belgian detective Hercule Poirot investigates the murder of an American tycoon aboard the Orient Express train.
## 4905 Le Ly lives in a small Vietnamese village whose serenity is shattered when war breaks out. Caught between the Viet Cong and the South Vietnamese army, the village is all but destroyed. After being both brutalized and raped, Le Ly resolves to flee. She leaves for the city, surviving desperate situations, but surviving nonetheless. Eventually she meets a U.S. Marine named Steve Butler who treats her kindly and tells her he would like to be married -- maybe to her.
## 4906 When a doubting young boy takes an extraordinary train ride to the North Pole, he embarks on a journey of self-discovery that shows him that the wonder of life never fades for those who believe.
## 4907 A 17th-century nun becomes entangled in a forbidden lesbian affair with a novice. But it is Benedetta's shocking religious visions that threaten to shake the Church to its core.
## 4908 Believing they have left behind shadowy figures from their past, newlyweds Christian and Ana fully embrace an inextricable connection and shared life of luxury. But just as she steps into her role as Mrs. Grey and he relaxes into an unfamiliar stability, new threats could jeopardize their happy ending before it even begins.
## 4909 Young Cole Carter dreams of hitting the big time as a Hollywood disc jockey, spending his days and nights hanging with buddies and working on the one track that will set the world on fire. Opportunity comes knocking when he meets James Reed, a charismatic DJ who takes the 23-year-old under his wing. Soon, his seemingly clear path to success gets complicated when he starts falling for his mentor's girlfriend, jeopardizing his new friendship and the future he seems destined to fulfill.
## 4910 A wife, overwhelmed with hatred for her husband, inflicts an unspeakable wound on their son, as the family heads towards horrific destruction.
## 4911 Eva is a divorced soon-to-be empty-nester wondering about her next act. Then she meets Marianne, the embodiment of her perfect self. Armed with a restored outlook on being middle-aged and single, Eva decides to take a chance on her new love interest Albert — a sweet, funny and like-minded man. But things get complicated when Eva discovers that Albert is in fact the dreaded ex–husband of Marianne...
## 4912 With the aid of his girlfriend, Phyllis Potter, and best friend, Loomis, Grimm enters a Manhattan bank dressed as a clown, creates a hostage situation and executes a flawless robbery. The only thing left for the trio to do is make their getaway out of the city and to the airport. It sounds simple enough, but it seems that fate deserts them immediately after the bank heist. One mishap after another conspires to keep these robbers from reaching freedom.
## 4913 Amidst a nuclear war, a plane carrying a group of schoolboys crash lands on a deserted island. With no adult survivors, the boys are forced to fend for themselves. At first they cooperate, but when they split into two separate camps -- one led by the pragmatic Ralph and the other by militaristic Jack -- their society falls into disarray, leading to a disturbing examination of human nature and a chilling conclusion.
## 4914 It's the 1970s and San Diego anchorman Ron Burgundy is the top dog in local TV, but that's all about to change when ambitious reporter Veronica Corningstone arrives as a new employee at his station.
## 4915 Retired from active duty to train new IMF agents, Ethan Hunt is called back into action to confront sadistic arms dealer, Owen Davian. Hunt must try to protect his girlfriend while working with his new team to complete the mission.
## 4916 Avery, a teenager with a tendency towards perfectionism, enlists her friend Larson to help her prepare for her first time with her long-distance boyfriend.
## 4917 The result of the small handkerchiefs "Petits mouchoirs", 7 years later. The band, which erupted, is found on the occasion of the anniversary surprise organized for Max.
## 4918 At the NFL Draft, general manager Sonny Weaver has the opportunity to rebuild his team when he trades for the number one pick. He must decide what he's willing to sacrifice on a life-changing day for a few hundred young men with NFL dreams.
## 4919 When the beloved cellist of a world-renowned string quartet is diagnosed with a life threatening illness, the group's future suddenly hangs in the balance as suppressed emotions, competing egos and uncontrollable passions threaten to derail years of friendship and collaboration. As they are about to play their 25th anniversary concert — quite possibly their last — only their intimate bond and the power of music can preserve their legacy.
## 4920 A group of students investigates a series of mysterious bear killings, but learns that there are much more dangerous things going on. They start to follow a mysterious hunter, learning that he is actually a troll hunter.
## 4921 After hiding his loot and getting thrown in jail, Ruby, a brooding outlaw encounters Quentin, a dim-witted and garrulous giant who befriends him. After Quentin botches a solo escape attempt, they make a break together. Unable to shake the clumsy Quentin Ruby is forced to take him along as he pursues his former partners in crime to avenge the death of the woman he loved and get to the money.
## 4922 In the mid-1980s, the U.S. is poised on the brink of nuclear war. This shadow looms over the residents of a small town in Kansas as they continue their daily lives. Dr. Russell Oakes maintains his busy schedule at the hospital, Denise Dahlberg prepares for her upcoming wedding, and Stephen Klein is deep in his graduate studies. When the unthinkable happens and the bombs come down, the town's residents are thrust into the horrors of nuclear winter.
## 4923 Two babies are switched at birth. When the mistake is discovered 12 years later, it leads to complications in the lives of both families. One family is affluent, with dutiful and (apparently) contented children. The other family is poor, with rambunctious (even delinquent) children, often hungry, but with lots of laughter in the house.
## 4924 Gunning for revenge, outlaw Nat Love saddles up with his gang to take down enemy Rufus Buck, a ruthless crime boss who just got sprung from prison.
## 4925 An aspiring singer from southern Italy who's just been dumped moves north to Milan, where he falls in love and enters a TV singing competition show.
## 4926 Bernie works at a Las Vegas casino, where he uses his innate ability to bring about misfortune in those around him to jinx gamblers into losing. His imposing boss, Shelly Kaplow, is happy with the arrangement. But Bernie finds unexpected happiness when he begins dating attractive waitress Natalie Belisario.
## 4927 In Arborville, California, three high school students discover a strange, gelatinous substance that melts the flesh of any living creatures in its path and wreaks havoc across town.
## 4928 Dora, a girl who has spent most of her life exploring the jungle with her parents, now must navigate her most dangerous adventure yet: high school. Always the explorer, Dora quickly finds herself leading Boots (her best friend, a monkey), Diego, and a rag tag group of teens on an adventure to save her parents and solve the impossible mystery behind a lost Inca civilization.
## 4929 Arranged to marry a rich man, young Ada is crushed when her true love goes missing at sea during a migration attempt — until a miracle reunites them.
## 4930 Berlin in June of 1940. While Nazi propaganda celebrates the regime’s victory over France, a kitchen-cum-living room in Prenzlauer Berg is filled with grief. Anna and Otto Quangel’s son has been killed at the front. This working class couple had long believed in the ‘Führer’ and followed him willingly, but now they realise that his promises are nothing but lies and deceit. They begin writing postcards as a form of resistance and in a bid to raise awareness: Stop the war machine! Kill Hitler! Putting their lives at risk, they distribute these cards in the entrances of tenement buildings and in stairwells. But the SS and the Gestapo are soon onto them, and even their neighbours pose a threat.
## 4931 Join Barbie and her sisters Skipper, Stacie and Chelsea as their holiday vacation plans turn into a most unexpected adventure and heartwarming lesson. After a snowstorm diverts their plane, the girls find themselves far from their New York destination and their holiday dreams. Now stranded at a remote inn in the tiny town of Tannenbaum, the sisters are welcomed by new friends and magical experiences. In appreciation for the wonderful hospitality they receive, they use their musical talents to put on a performance for the whole town. Barbie and her sisters realize the joy of being together is what really makes A Perfect Christmas!
## 4932 Ypsilanti, Michigan, 1945. Engineer Preston Tucker dreams of designing the car of future, but his innovative envision will be repeatedly sabotaged by his own unrealistic expectations and the Detroit automobile industry tycoons.
## 4933 Life for a happy couple is turned upside down after their young son dies in an accident.
## 4934 When a bumbling New Yorker is dumped by his activist girlfriend, he travels to a tiny Latin American nation and becomes involved in its latest rebellion.
## 4935 In 18th century France, the Chevalier de Fronsac and his Native American friend Mani are sent by the King to the Gevaudan province to investigate the killings of hundreds by a mysterious beast.
## 4936 When Johnny is released from prison following a forgery charge, he quickly lands a job as a short-order cook at a New York diner. Following a brief fling with waitress Cora, Frankie develops an attraction for Cora's friend and fellow waitress Frankie. While Frankie resists Johnny's charms initially, she eventually relents when her best friend, Tim, persuades her to give Johnny a chance.
## 4937 In 1960, a team of Israeli secret agents is deployed to find Adolf Eichmann, the infamous Nazi architect of the Holocaust, supposedly hidden in Argentina, and get him to Israel to be judged.
## 4938 Over the course of 12 years, and three stages of life, Sidney Hall falls in love, writes the book of a generation and then disappears without a trace.
## 4939 It's mid 19th century, north of France. The story of a coal miner's town. They are exploited by the mine's owner. One day the decide to go on strike, and then the authorities repress them
## 4940 The true and infamous story of Australia's notorious criminal Mark 'Chopper' Read and his years of crime, interest in violence, drugs and prostitutes.
## 4941 1943. They have never stepped foot on French soil but because France was at war, Said, Abdelkader, Messaoud and Yassir enlist in the French Army, along with 130,000 other “indigenous” soldiers, to liberate the “fatherland” from the Nazi enemy. Heroes that history has forgotten…
## 4942 When a border guard with a sixth sense for identifying smugglers encounters the first person she cannot prove is guilty, she is forced to confront terrifying revelations about herself and humankind.
## 4943 Two cousins haven't spoken for almost twenty years, thanks to the enmity that their fathers feel toward one another. But an accident suddenly brings the cousins back together and thrusts them deep into the heart of the mafia.
## 4944 Jean-Claude is a loud-mouthed, know-it-all and full time boor who is best friends with Stef, a self-styled lady killer who would do better with the fairer sex if he could work up the ambition to wake up in the morning. Stef has decided that he may need some help in finding the woman of his dreams, and embracing loyalty rather than logic he turns to Jean-Claude for advice.
## 4945 The human city of Zion defends itself against the massive invasion of the machines as Neo fights to end the war at another front while also opposing the rogue Agent Smith.
## 4946 The fearless one-eyed weasel Buck teams up with mischievous possum brothers Crash & Eddie as they head off on a new adventure into Buck's home: The Dinosaur World.
## 4947 When ISIS took their homes, families and city, one group of men fought to take it all back. Based on true events, this is the story of the Nineveh SWAT team, a renegade police unit who waged a guerrilla operation against ISIS in a desperate struggle to save their home city of Mosul.
## 4948 Purl, an earnest ball of yarn, gets a job at a fast-paced, male-centered startup company. Things start to unravel as Purl tries to fit in with this tight-knit group, but she must ask herself how far is she willing to go to get the acceptance she yearns for and if, in the end, it is worth it.
## 4949 A widowed professor living in Paris develops a special relationship with a younger French woman.
## 4950 After surviving an assault from a squad of hit men, retired CIA black ops agent Frank Moses reassembles his old team for an all-out war. Frank reunites with old Joe, crazy Marvin and wily Victoria to uncover a massive conspiracy that threatens their lives. Only their expert training will allow them to survive a near-impossible mission -- breaking into CIA headquarters.
## 4951 For the past 60 years, a space-traveling smart-ass named Paul has been locked up in a top-secret military base, advising world leaders about his kind. But when he worries he’s outlived his usefulness and the dissection table is drawing uncomfortably close, Paul escapes on the first RV that passes by his compound in Area 51. Fortunately, it contains the two earthlings who are most likely to rescue and harbor an alien on the run.
## 4952 In this animated retelling of the story from the Bible's Book of Genesis, Joseph's gift of dream interpretation and his brilliantly colored coat inspires jealousy in his brothers.
## 4953 A victim of his own anger, the Kid is a Minneapolis musician on the rise with his band, the Revolution, escaping a tumultuous home life through music. While trying to avoid making the same mistakes as his truculent father, the Kid navigates the club scene and a rocky relationship with a captivating singer, Apollonia. But another musician, Morris, looks to steal the Kid's spotlight -- and his girl.
## 4954 High school student Lane Meyer sinks into suicidal depression when his girlfriend dumps him for jock Roy Stalin, the high school ski racing champion. Meanwhile, he has to deal with his eccentric family, a tenacious paperboy and an obnoxious neighbor whose mother is hosting a beautiful French exchange student named Monique.
## 4955 Charting the rise and fall of three corrupt real estate agents who accumulate absurd wealth in no time but fall into a vortex of fraud, greed and drugs.
## 4956 A David and Goliath law drama about a drug-addicted lawyer who takes on a health supply corporation while battling his own personal demons.
## 4957 Volunteer home-care worker Rika is assigned to visit a family, she is cursed and chased by two revengeful fiends: Kayako, a woman brutally murdered by her husband and her son Toshio. Each person that lives in or visits the haunted house is murdered or disappears.
## 4958 After reuniting with his first mentor Bruno and receiving his latest mission, an exiled Ciro is left to fearlessly confront whatever comes his way, navigating a new chapter of gang warfare while grappling with devastating memories of loss and trauma. Weaving between his past as an orphan in Naples' cruel underworld and present as a hardened, cunning assassin with nothing left to lose, Ciro is plunged into the cold, dark depths of a world where immortality is just another form of damnation.
## 4959 France, June 1944. On the eve of D-Day, some American paratroopers fall behind enemy lines after their aircraft crashes while on a mission to destroy a radio tower in a small village near the beaches of Normandy. After reaching their target, the surviving paratroopers realise that, in addition to fighting the Nazi troops that patrol the village, they also must fight against something else.
## 4960 Although theorised, no one is really ready when a mountain pass above the scenic and narrow Geiranger fjord in Norway collapses and creates a tsunami over 300 feet high. A geologist is one of those caught in the middle of it.
## 4961 A street-wise kid, Mark Sway, sees the suicide of Jerome Clifford, a prominent Louisiana lawyer, whose current client is Barry 'The Blade' Muldano, a Mafia hit-man. Before Jerome shoots himself, he tells Mark where the body of a Senator is buried. Clifford shoots himself and Mark is found at the scene, and both the FBI and the Mafia quickly realize that Mark probably knows more than he says.
## 4962 A former drug lord returns from prison determined to wipe out all his competition and distribute the profits of his operations to New York's poor and lower classes in this stylish and ultra violent modern twist on Robin Hood.
## 4963 In an alternative Victorian Age Gotham City, Batman begins his war on crime while he investigates a new series of murders by Jack the Ripper.
## 4964 For one month every year, five highly competitive friends hit the ground running in a no-holds-barred game of tag they’ve been playing since the first grade. This year, the game coincides with the wedding of their only undefeated player, which should finally make him an easy target. But he knows they’re coming...and he’s ready.
## 4965 A chilling vision of the House of Saddam Hussein comes to life through the eyes of the man who was forced to become the double of Hussein's sadistic son.
## 4966 Like millions of kids around the world, Santiago harbors the dream of being a professional footballer... However, living in the Barrios section of Los Angeles, he thinks it is only that--a dream. Until one day an extraordinary turn of events has him trying out for Premiership club Newcastle United.
## 4967 Instead of flying to Florida with his folks, Kevin ends up alone in New York, where he gets a hotel room with his dad's credit card—despite problems from a clerk and meddling bellboy. But when Kevin runs into his old nemeses, the Wet Bandits, he's determined to foil their plans to rob a toy store on Christmas Eve.
## 4968 Bruce Nolan toils as a 'human interest' television reporter in Buffalo, N.Y., but despite his high ratings and the love of his beautiful girlfriend, Bruce remains unfulfilled. At the end of the worst day in his life, he angrily ridicules God—and the Almighty responds, endowing Bruce with all of His divine powers.
## 4969 A ruthless criminal operative has less than 24 hours to exact revenge on her enemies and in the process forms an unexpected bond with the daughter of one of her past victims.
## 4970 In 1933, Welsh journalist Gareth Jones travels to Ukraine, where he experiences the horrors of a famine. Everywhere he goes he meets henchmen of the Soviet secret service who are determined to prevent news about the catastrophe from getting out. Stalin’s forced collectivisation of agriculture has resulted in misery and ruin—the policy is tantamount to mass murder.
## 4971 The story of Richard and Mildred Loving, an interracial couple, whose challenge of their anti-miscegenation arrest for their marriage in Virginia led to a legal battle that would end at the US Supreme Court.
## 4972 As a child, Ali Neuman narrowly escaped being murdered by Inkhata, a militant political party at war with Nelson Mandela's African National Congress. Only he and his mother survived the carnage of those years. But as with many survivors, the psychological scars remain.
## 4973 Harvard symbologist Robert Langdon is recruited by the Vatican to investigate the apparent return of the Illuminati - a secret, underground organization - after four cardinals are kidnapped on the night of the papal conclave.
## 4974 It's vacation time for Carter as he finds himself alongside Lee in Hong Kong wishing for more excitement. While Carter wants to party and meet the ladies, Lee is out to track down a Triad gang lord who may be responsible for killing two men at the American Embassy. Things get complicated as the pair stumble onto a counterfeiting plot. The boys are soon up to their necks in fist fights and life-threatening situations. A trip back to the U.S. may provide the answers about the bombing, the counterfeiting, and the true allegiance of sexy customs agent Isabella.
## 4975 During the Blitz of World War II, a female screenwriter works on a film celebrating England's resilience as a way to buoy a weary populace's spirits. Her efforts to dramatise the true story of two sisters who undertook their own maritime mission to rescue wounded soldiers are met with mixed feelings by a dismissive all-male staff.
## 4976 A dramatization of the 1968 strike at the Ford Dagenham car plant, where female workers walked out in protest against sexual discrimination.
## 4977 The "Memphis Belle" is a World War II bomber, piloted by a young crew on dangerous bombing raids into Europe. The crew only have to make one more bombing raid before they have finished their duty and can go home. In the briefing before their last flight, the crew discover that the target for the day is Dresden, a heavily-defended city that invariably causes many Allied casualties
## 4978 The adventures of two amiably aimless metal-head friends, Wayne and Garth. From Wayne's basement, the pair broadcast a talk-show called "Wayne's World" on local public access television. The show comes to the attention of a sleazy network executive who wants to produce a big-budget version of "Wayne's World"—and he also wants Wayne's girlfriend, a rock singer named Cassandra. Wayne and Garth have to battle the executive not only to save their show, but also Cassandra.
## 4979 Team America World Police follows an international police force dedicated to maintaining global stability. Learning that dictator Kim Jong il is out to destroy the world, the team recruits Broadway star Gary Johnston to go undercover. With the help of Team America, Gary manages to uncover the plan to destroy the world. Will Team America be able to save it in time? It stars… Samuel L Jackson, Tim Robbins, Sean Penn, Michael Moore, Helen Hunt, Matt Damon, Susan Sarandon, George Clooney, Danny Glover, Ethan Hawke, Alec Baldwin… or does it?
## 4980 Set in the African savannah, the film follows Kion as he assembles the members of the 'Lion Guard'. Throughout the film, the diverse team of young animals will learn how to utilize each of their unique abilities to solve problems and accomplish tasks to maintain balance within the Circle of Life, while also introducing viewers to the vast array of animals that populate the prodigious African landscape.
## 4981 In the ravaged near future, a savage motorcycle gang rules the road. Terrorizing innocent civilians while tearing up the streets, the ruthless gang laughs in the face ofa police force hell-bent on stopping them. But they underestimate one officer: Max Rockatansky. And when the bikers brutalize Max's best friend and family, they send him into a mad frenzy that leaves him with only one thing left in the world to live for – revenge!
## 4982 Louie Jeffries is happily married to Corinne. On their first anniversary, Louie is killed crossing the road. Louie is reincarnated as Alex Finch, and twenty years later, fate brings Alex and Louie's daughter, Miranda, together. It's not until Alex is invited to Louie's home that he begins to remember his former life, wife and best friend. Of course, there's also the problem that he's attracted to Louie's/his own daughter.
## 4983 A dysfunctional couple head to a remote lakeside cabin under the guise of reconnecting, but each has secret designs to kill the other. Before they can carry out their respective plans, unexpected visitors arrive and the couple is faced with a greater danger than anything they could have plotted.
## 4984 Igor Grom is a skilled policeman from St. Petersburg, known for his daring nature and uncompromising attitude towards the criminals of all kinds. Incredible strength, analytical mind and integrity – these qualities make Major Grom the perfect policeman. Working tirelessly, he always pushes through, and meets the challenges standing in the way.
## 4985 A portal transports Cpt. Artemis and an elite unit of soldiers to a strange world where powerful monsters rule with deadly ferocity. Faced with relentless danger, the team encounters a mysterious hunter who may be their only hope to find a way home.
## 4986 During a lunar eclipse, seven friends gather for dinner and decide to play a game in which they must share with each other the content of every message, email or phone call they receive throughout the evening.
## 4987 In 1947, Lord Mountbatten assumes the post of last Viceroy, charged with handing India back to its people, living upstairs at the house which was the home of British rulers, whilst 500 Hindu, Muslim and Sikh servants lived downstairs.
## 4988 During a summer stay on the mainland, Tinker Bell is accidentally discovered while investigating a little girl's fairy house. As the other fairies, led by the brash Vidia, launch a daring rescue in the middle of a fierce storm, Tink develops a special bond with the lonely, little girl.
## 4989 Jack London's classic adventure story about the friendship developed between a Yukon gold hunter and the mixed dog-wolf he rescues from the hands of a man who mistreats him.
## 4990 A group of young gunmen, led by Billy the Kid, become deputies to avenge the murder of the rancher who became their benefactor. But when Billy takes their authority too far, they become the hunted.
## 4991 An affair between the second in line to Britain's throne and the princess of the feuding Irish spells doom for the young lovers.
## 4992 Simon and Robyn are a young married couple whose life is going as planned until a chance run-in with Simon's high school acquaintance sends their world into a tailspin.
## 4993 Yorkshire, 1974. Fear, mistrust and institutionalised police corruption are running riot. Rookie journalist Eddie Dunford is determined to search for the truth in an increasingly complex maze of lies and deceit surrounding the police investigation into a series of child abductions. When young Clare Kemplay goes missing, Eddie and his colleague, Barry, persuade their editor to let them investigate links with two similar abductions that draw them into a deadly world of secrecy, intimidation, shocking revelations and police brutality.
## 4994 A somewhat daffy book editor on a rail trip from Los Angeles to Chicago thinks that he sees a murdered man thrown from the train. When he can find no one who will believe him, he starts doing some investigating of his own. But all that accomplishes is to get the killer after him.
## 4995 When rebellious street dancer Andie lands at the elite Maryland School of the Arts, she finds herself fighting to fit in while also trying to hold onto her old life. When she joins forces with the schools hottest dancer, Chase, to form a crew of classmate outcasts to compete in Baltimore s underground dance battle The Streets.
## 4996 Ben Campbell is a young, highly intelligent, student at M.I.T. who strives to succeed. Wanting a scholarship to transfer to Harvard School of Medicine to become a doctor, Ben learns that he cannot afford the $300,000 tuition as he comes from a poor, working-class background. But one evening, Ben is introduced by his unorthodox math professor to a small but secretive club. Students Jill, Choi, Kianna, and Fisher, who are being trained by Professor Rosa in to count cards at blackjack.
## 4997 Tensions rise when the trailblazing Mother of the Blues and her band gather at a Chicago recording studio in 1927. Adapted from August Wilson's play.
## 4998 On the night of the discovery of a duplicate Earth in the Solar system, an ambitious young student and an accomplished composer cross paths in a tragic accident.
## 4999 Frederick Abberline is an opium-huffing inspector from Scotland Yard who falls for one of Jack the Ripper's prostitute targets in this Hughes brothers adaption of a graphic novel that posits the Ripper's true identity.
## 5000 After accepting an invitation from a mysterious trainer, Ash, Misty and Brock meet Mewtwo, an artificially created Pokémon who wants to do battle.
## 5001 High school student Mitsuko navigates a series of bizarre alternate realities, each ending in bloody carnage.
## 5002 In the heat of the summer lays a lonesome house in the countryside where nine year old twin brothers await their mother’s return. When she comes home, bandaged after cosmetic surgery, nothing is like before and the children start to doubt whether this woman is actually who she says she is.
## 5003 A reporter and a blind, retired journalist try to solve a series of murders. The crimes are connected to experiments by a pharmaceutical company in secret research. The two end up becoming targets of the killer.
## 5004 A New York nightclub manager tries to save his brother and father from Russian mafia hitmen.
## 5005 Archetypal buddy cops Riggs and Murtaugh are back for another round of high-stakes action, this time setting their collective sights on bringing down a former Los Angeles police lieutenant turned black market weapons dealer. Lorna Cole joins as the beautiful yet hardnosed internal affairs sergeant who catches Riggs's eye.
## 5006 When brilliant video game maker Flynn hacks the mainframe of his ex-employer, he is beamed inside an astonishing digital world...and becomes part of the very game he is designing. In his mission through cyberspace, Flynn matches wits with a maniacal Master Control Program and teams up with Tron, a security measure created to bring balance to the digital environment.
## 5007 In the adorably different town of Uglyville, weirdness is celebrated, strangeness is special and beauty is embraced as more than meets the eye. After traveling to the other side of a mountain, Moxy and her UglyDoll friends discover Perfection -- a town where more conventional dolls receive training before entering the real world to find the love of a child.
## 5008 The story of Nola Darling's simultaneous sexual relationships with three different men is told by her and by her partners and other friends. All three men wanted her to commit solely to them; Nola resists being "owned" by a single partner.
## 5009 The wife of an American doctor suddenly vanishes in Paris and, to find her, he navigates a puzzling web of language, locale, laissez-faire cops, triplicate-form filling bureaucrats and a defiant, mysterious waif who knows more than she tells.
## 5010 A US soldier suffers a traumatic brain injury while fighting in Afghanistan and struggles to adjust to life back home in New Orleans. When she meets local mechanic James, the pair begin to forge an unexpected bond.
## 5011 Following the end of the acclaimed tv series, King Arthur will oppose Lancelot's army to get the throne back after his flee to Rome.
## 5012 A down and out young punk gets a job working with a seasoned repo man, but what awaits him in his new career is a series of outlandish adventures revolving around aliens, the CIA, and a most wanted '64 Chevy.
## 5013 Let's face it, rats are not the most beloved creatures on earth. However, maybe this little tale about the history of human and rat interaction will change the world's tune. At least that is the hope of Remy, the star of Ratatouille, and his reluctant brother Emile as they guide us through world history from a rat's perspective. Why can't we all just get along?
## 5014 After the Cuban Revolution, Che is at the height of his fame and power. Then he disappears, re-emerging incognito in Bolivia, where he organizes a small group of Cuban comrades and Bolivian recruits to start the great Latin American Revolution. Through this story, we come to understand how Che remains a symbol of idealism and heroism that lives in the hearts of people around the world.
## 5015 This film follows the remarkable and inspirational true story of Paul Potts, a shy, bullied shop assistant by day and an amateur opera singer by night.
## 5016 A Saiyan Space pod crash-lands on Earth out of which a wounded Saiyan crawls: Broly, the Legendary Super Saiyan. The wounded Broly shouts out in frustration and turns into normal form. The place soon freezes, trapping him in it and he falls into a coma.
## 5017 Following a bomb scare in the 1960s that locked the Webers into their bomb shelter for 35 years, Adam now ventures forth into Los Angeles to obtain food and supplies for his family, and a non-mutant wife for himself.
## 5018 An aging thief hopes to retire and live off his ill-gotten wealth when a young kid convinces him into doing one last heist.
## 5019 A punk rock band becomes trapped in a secluded venue after finding a scene of violence. For what they saw, the band themselves become targets of violence from a gang of white power skinheads, who want to eliminate all evidence of the crime.
## 5020 A catholic French couple sees their life upside down when their four daughters get married to men of different religion and origins.
## 5021 How to become a man when your mother and your closed circle have decided otherwise? This is the challenge Guillaume took up. The film recounts Guillaume's tragicomic battle from the young age of eight, as he adopts the role of a girl then of a homosexual... until, aged 30, he meets the woman who, after his mother, will become the other woman in his life. Beyond this story of a heterosexual coming-out, the film tells the tale of an actor who never stopped loving women, maybe even a little too much.
## 5022 Director F.W. Murnau makes a Faustian pact with a vampire to get him to star in his 1922 film "Nosferatu."
## 5023 Former Special Forces officer, Frank Martin will deliver anything to anyone for the right price, and his no-questions-asked policy puts him in high demand. But when he realizes his latest cargo is alive, it sets in motion a dangerous chain of events. The bound and gagged Lai is being smuggled to France by a shady American businessman, and Frank works to save her as his own illegal activities are uncovered by a French detective.
## 5024 Various lives converge on an isolated island, all connected by an author whose novel has become inextricably entwined with his own life.
## 5025 A bouncer with an anger management problem goes on a furious and resentful rampage after the murder of a friend.
## 5026 When famous DJ Alan Partridge’s radio station is taken over by a new media conglomerate, it sets in motion a chain of events which see Alan having to work with the police to defuse a potentially violent siege.
## 5027 Balto and the other sled dogs are feeling dejected because the mail that used to be delivered by dogsled is now being delivered by airplanes. But when a mail plane crashes in the mountains, the dogs come to the rescue.
## 5028 Julia Child and Julie Powell – both of whom wrote memoirs – find their lives intertwined. Though separated by time and space, both women are at loose ends... until they discover that with the right combination of passion, fearlessness and butter, anything is possible.
## 5029 In August of 1949, Life Magazine ran a banner headline that begged the question: "Jackson Pollock: Is he the greatest living painter in the United States?" The film is a look back into the life of an extraordinary man, a man who has fittingly been called "an artist dedicated to concealment, a celebrity who nobody knew." As he struggled with self-doubt, engaging in a lonely tug-of-war between needing to express himself and wanting to shut the world out, Pollock began a downward spiral.
## 5030 In this true story, Veronica Guerin is an investigative reporter for an Irish newspaper. As the drug trade begins to bleed into the mainstream, Guerin decides to take on and expose those responsible. Beginning at the bottom with addicts, Guerin then gets in touch with John Traynor, a paranoid informant. Not without some prodding, Traynor leads her to John Gilligan, the ruthless head of the operation, who does not take kindly to Guerin's nosing.
## 5031 In 1978, a Kiss concert was an epoch-making event. For the three teen fans in Detroit Rock City getting tickets to the sold-out show becomes the focal point of their existence. They'll do anything for tickets -- compete in a strip club's amateur-night contest, take on religious protesters, even rob a convenience store!
## 5032 Failed London banker Max Skinner inherits his uncle's vineyard in Provence, where he spent many childhood holidays. Upon his arrival, he meets a woman from California who tells Max she is his long-lost cousin and that the property is hers.
## 5033 An elderly heiress is killed by her husband who wants control of her fortunes. What ensues is an all-out murder spree as relatives and friends attempt to reduce the inheritance playing field, complicated by some teenagers who decide to camp out in a dilapidated building on the estate.
## 5034 After crashing his car, a cop who's recovering from eye surgery recruits an Uber driver to help him catch a heroin dealer. The mismatched pair soon find themselves in for a wild day of stakeouts and shootouts as they encounter the city's seedy side.
## 5035 In the occupied Netherlands during World War II, banker Walraven van Hall is asked to use his financial contacts to help the Dutch resistance. With his brother Gijs, he comes up with a risky plan to take out huge loans and use the money to finance the Resistance.
## 5036 London, England, May 2000. The peaceful life of elderly Joan Stanley is suddenly disrupted when she is arrested by the British Intelligence Service and accused of providing information to communist Russia during the forties.
## 5037 As Halloweentown prepares to celebrate its 1,000th anniversary, Marnie Piper and her brother Dylan return to Witch University, where trouble is in session from the Sinister Sisters and from someone who's plotting to use Marnie's powers for evil.
## 5038 Ray Eddy, an upstate New York trailer mom, is lured into the world of illegal immigrant smuggling. Broke after her husband takes off with the down payment for their new doublewide, Ray reluctantly teams up with Lila, a smuggler, and the two begin making runs across the frozen St. Lawrence River carrying illegal Chinese and Pakistani immigrants in the trunk of Ray's Dodge Spirit.
## 5039 Based on the famous book by Jules Verne the movie follows Phileas Fogg on his journey around the world. Which has to be completed within 80 days, a very short period for those days.
## 5040 Peter Parker is an outcast high schooler abandoned by his parents as a boy, leaving him to be raised by his Uncle Ben and Aunt May. Like most teenagers, Peter is trying to figure out who he is and how he got to be the person he is today. As Peter discovers a mysterious briefcase that belonged to his father, he begins a quest to understand his parents' disappearance – leading him directly to Oscorp and the lab of Dr. Curt Connors, his father's former partner. As Spider-Man is set on a collision course with Connors' alter ego, The Lizard, Peter will make life-altering choices to use his powers and shape his destiny to become a hero.
## 5041 In a series of escalating encounters, former security guard David Dunn uses his supernatural abilities to track Kevin Wendell Crumb, a disturbed man who has twenty-four personalities. Meanwhile, the shadowy presence of Elijah Price emerges as an orchestrator who holds secrets critical to both men.
## 5042 The life of celebrated but reclusive author, J.D. Salinger, who gained worldwide fame with the publication of his novel, The Catcher in the Rye.
## 5043 In 1971, a young woman moves from the French countryside to Paris and begins a passionate love affair with a feminist leader.
## 5044 Lovable and friendly, the trolls love to play around. But one day, a mysterious giant shows up to end the party. Poppy, the optimistic leader of the Trolls, and her polar opposite, Branch, must embark on an adventure that takes them far beyond the only world they’ve ever known.
## 5045 An American couple drift toward emptiness in postwar North Africa.
## 5046 A collection of key events mark Bruce Wayne's life as he journeys from beginner to Dark Knight.
## 5047 A man will become a criminal to save his family. Director: Shawn Welling Writer: Derek H. Potts Stars: Tom Vera, Tom Sizemore, Lee Majors |
## 5048 Barents Sea, August 12th, 2000. During a Russian naval exercise, and after suffering a serious accident, the K-141 Kursk submarine sinks with 118 crew members on board. While the few sailors who are still alive barely manage to survive, their families push for accurate information and a British officer struggles to obtain from the Russian government a permit to attempt a rescue before it is late. But general incompetence are against all their efforts.
## 5049 A martial arts instructor working at a police academy gets imprisoned after killing a man by accident. But when a vicious killer starts targeting martial arts masters, the instructor offers to help the police in return for his freedom.
## 5050 Estranged twins Maggie and Milo coincidentally cheat death on the same day, prompting them to reunite and confront the reasons their lives went so wrong. As the twins' reunion reinvigorates them, they realize the key to fixing their lives may just lie in repairing their relationship.
## 5051 Two doctors in Victorian England use manual stimulation of female genitalia to cure their patients' ills, leading to the invention of the vibrator.
## 5052 Joanna Eberhart has come to the quaint little town of Stepford, Connecticut with her family, but soon discovers there lies a sinister truth in the all too perfect behavior of the female residents.
## 5053 Diego, Manny and Sid return in this sequel to the hit animated movie Ice Age. This time around, the deep freeze is over, and the ice-covered earth is starting to melt, which will destroy the trio's cherished valley. The impending disaster prompts them to reunite and warn all the other beasts about the desperate situation.
## 5054 The brief life of Jean Michel Basquiat, a world renowned New York street artist struggling with fame, drugs and his identity.
## 5055 Beneath Anna Poliatova's striking beauty lies a secret that will unleash her indelible strength and skill to become one of the world's most feared government assassins.
## 5056 Woody Woodpecker enters a turf war with a big city lawyer wanting to tear down his home in an effort to build a house to flip.
## 5057 When Manny Singer's wife dies, his young daughter Molly becomes mute and withdrawn. To help cope with looking after Molly, he hires sassy housekeeper Corrina Washington, who coaxes Molly out of her shell and shows father and daughter a whole new way of life. Manny and Corrina's friendship delights Molly and enrages the other townspeople.
## 5058 A group of teens discover secret plans of a time machine, and construct one. However, things start to get out of control.
## 5059 Twenty-two years after the events of Jurassic Park, Isla Nublar now features a fully functioning dinosaur theme park, Jurassic World, as originally envisioned by John Hammond.
## 5060 Strange things begin to occurs as a tiny California coastal town prepares to commemorate its centenary. Inanimate objects spring eerily to life; Rev. Malone stumbles upon a dark secret about the town's founding; radio announcer Stevie witnesses a mystical fire; and hitchhiker Elizabeth discovers the mutilated corpse of a fisherman. Then a mysterious iridescent fog descends upon the village, and more people start to die.
## 5061 Mario, an exemplary man, lives in a village on the Galician coast. In the old people’s home, where he works as a nurse, everyone appreciates him. When the best known narco in the area, Antonio Padín, recently released from prison, enters the residence, Mario tries to make Antonio feel at home. Now, Padín's two sons, Kike and Toño, are in charge of the family business. The failure of an operation will put Kike in jail and cause them to owe a large debt to a Colombian supplier. Toño will turn to the nurse to try to convince his father to assume the debt. But Mario has his own plans.
## 5062 London, 1956. Genius actor and film director Laurence Olivier is about to begin the shooting of his upcoming movie, premiered in 1957 as The Prince and the Showgirl, starring Marilyn Monroe. Young Colin Clark, who dreams on having a career in movie business, manages to get a job on the set as third assistant director.
## 5063 The Japanese forces occupy Shanghai and slowly start spreading terror in the city. Chen Zhen, who was presumed dead, returns to fight against the Japanese and put an end to their tyrannical rule.
## 5064 A young man returns from Rome to his sister's satanic New York apartment house.
## 5065 Desperate to pay the bills and come through for their loved ones, three lifelong pals risk it all by embarking on a daring bid to knock off the very bank that absconded with their money.
## 5066 A guy has his life planned out until he is wooed, groomed and then dumped by an elusive woman.
## 5067 A mysterious woman, known as Madame M, kidnaps forty pre-teen girls and transports them to a remote island to train them as the most deadly assassins. CIA operative Jack Chen follows the case for 6 years with no leads, but when a series of assassinations begin to occur, Jack suspects that Madame M is back in business.
## 5068 Kale is a 17-year-old placed under house arrest after punching his teacher. He is confined to his house, and decides to use his free time spying on his neighbors. Things start to get weird when guests enter the Turner's house and don't come back out. Kale and his friends, Ronnie and Ashley, start to grow more and more interested in what is actually happening within the house of Robert Turner.
## 5069 On a faraway mountaintop, eight kids with guns watch over a hostage and a conscripted milk cow.
## 5070 Madrid, summer 2011. Economic crisis. 15-M movement and 1.5 million pilgrims waiting for the Pope’s arrival live side by side in a Madrid that’s hotter and more chaotic than ever. In this context, detectives Velarde and Alfaro must find what seems to be a serial killer. Their against-the-clock hunt will make them realise something they’d never imagined: neither of them are so very different from the killer.
## 5071 Dane Jensen is a driven, Chicago-based headhunter, working at a cut-throat job placement firm. When Dane's boss announces his retirement, he pits Dane against Lynn Vogel, Dane's equally driven but polar-opposite rival at the firm, in a battle for control over the company.
## 5072 The story of Florence Foster Jenkins, a New York heiress, who dreamed of becoming an opera singer, despite having a terrible singing voice.
## 5073 When Brent turns down his classmate Lola's invitation to the prom, she concocts a wildly violent plan for revenge.
## 5074 In this violent spaghetti western a murderous robber hijacks a payroll train, murders everyone aboard and then stashes his loot. A gunslinger learns about it and decides he wants the money for himself and so hatches an elaborate plot to get at it. He lures the crook into a rigged poker game, and afterward a gunfight ensues. The quick-drawing gunman makes short work of the robber, then teams up with an insurance agent to look for the hidden fortune. Unbeknownst to them, the robber had an ace up his sleeve...
## 5075 A sweeping drama set in the chaotic aftermath of the US invasion of Iraq, where the life of top UN diplomat Brazilian Sérgio Vieira de Mello hangs in the balance during the most treacherous mission of his career.
## 5076 Six people unwittingly find themselves locked in another series of escape rooms, slowly uncovering what they have in common to survive as they discover all the games that they've played before.
## 5077 After losing his wife seven years earlier, the eccentric Dr. John Dolittle, famed doctor and veterinarian of Queen Victoria’s England, hermits himself away behind the high walls of Dolittle Manor with only his menagerie of exotic animals for company. But when the young queen falls gravely ill, a reluctant Dolittle is forced to set sail on an epic adventure to a mythical island in search of a cure, regaining his wit and courage as he crosses old adversaries and discovers wondrous creatures.
## 5078 Two unlikely companions embark on a perilous adventure through the badlands of an unexplored planet as they try to escape a dangerous and disorienting reality, where all inner thoughts are seen and heard by everyone.
## 5079 Francesco is a psychoanalyst grappling with three hopeless causes: a bookseller in love with a book thief, a lesbian hell-bent on becoming straight after a heartbreak, and an 18-year-old in a relationship with a much older married man. Unfortunately, these patients are also his three beloved daughters!
## 5080 Rose Pamphyle lives with her widowed father and is destined to marry a son of the local mechanic. When she travels out of town and applies for a secretarial job with an insurance agency run by Louis Échard, he learns that Rose can type with extraordinary speed - using only two fingers. He tells her to compete in a speed-typing competition if she wants the job.
## 5081 A teenage girl is raised underground by a robot "Mother", designed to repopulate the earth following an extinction event. But their unique bond is threatened when an inexplicable stranger arrives with alarming news.
## 5082 As the home planet of the Green Lantern Corps faces a battle with an ancient enemy, Hal Jordan prepares new recruit Arisia for the coming conflict by relating stories of the first Green Lantern and several of Hal's comrades.
## 5083 A grieving couple retreats to their cabin 'Eden' in the woods, hoping to repair their broken hearts and troubled marriage. But nature takes its course and things go from bad to worse.
## 5084 A hard-nosed cop reluctantly teams up with a wise-cracking criminal temporarily paroled to him, in order to track down a killer.
## 5085 On a quiet suburban street tucked within a 'safe neighborhood', a babysitter must defend a twelve-year-old boy from strangers breaking into the house, only to discover that this is far from a normal home invasion.
## 5086 A rogue soldier turned outlaw is thrust into a relentless fight with a corrupt sheriff, his obedient deputies, and a dangerous drug cartel in order to protect his sister and her young daughter.
## 5087 The true story of the 4-year old son of a small-town pastor who, during emergency surgery, slips from consciousness and enters heaven. When he awakes, he recounts his experiences on the other side.
## 5088 Hamlet, Prince of Denmark, finds out that his uncle Claudius killed his father to obtain the throne, and plans revenge.
## 5089 Although living a comfortable life in Salon-de-Provence, a charming town in the South of France, Julie has been feeling depressed for a while. To please her, Philippe Abrams, a post office administrator, her husband, tries to obtain a transfer to a seaside town, on the French Riviera, at any cost. The trouble is that he is caught red-handed while trying to scam an inspector. Philippe is immediately banished to the distant unheard of town of Bergues, in the Far North of France...
## 5090 After five (or six) years of vanilla-wedded bliss, ordinary suburbanites John and Jane Smith are stuck in a huge rut. Unbeknownst to each other, they are both coolly lethal, highly-paid assassins working for rival organisations. When they discover they're each other's next target, their secret lives collide in a spicy, explosive mix of wicked comedy, pent-up passion, nonstop action and high-tech weaponry.
## 5091 When Keira Woods' daughter mysteriously vanishes in the cellar of their new house in the country, she soon discovers there is an ancient and powerful entity controlling their home that she will have to face or risk losing her family's souls forever.
## 5092 When Pippa and Thomas move into their dream apartment, they notice that their windows look directly into the apartment opposite – inviting them to witness the volatile relationship of the attractive couple across the street. But what starts as a simple curiosity turns into full-blown obsession with increasingly dangerous consequences.
## 5093 It's been five years since everything was awesome and the citizens are facing a huge new threat: LEGO DUPLO® invaders from outer space, wrecking everything faster than they can rebuild.
## 5094 A gang of South Korean thieves team up with a Hong Kong crew to steal a diamond necklace from a heavily-guarded casino safe in Macau. As the cops close in, old betrayals — and misunderstandings — resurface.
## 5095 A trainer attempts to retrain a vicious dog that’s been raised to kill black people.
## 5096 Depression-era bank robber John Dillinger's charm and audacity endear him to much of America's downtrodden public, but he's also a thorn in the side of J. Edgar Hoover and the fledgling FBI. Desperate to capture the elusive outlaw, Hoover makes Dillinger his first Public Enemy Number One and assigns his top agent, Melvin Purvis, the task of bringing him in dead or alive.
## 5097 Mia Thermopolis is now a college graduate and on her way to Genovia to take up her duties as princess. Her best friend Lilly also joins her for the summer. Mia continues her 'princess lessons'- riding horses side-saddle, archery, and other royal. But her complicated life is turned upside down once again when she not only learns that she is to take the crown as queen earlier than expected...
## 5098 When CIA Analyst Jack Ryan interferes with an IRA assassination, a renegade faction targets Jack and his family as revenge.
## 5099 True story of Ashraf Marwan, who was President Nasser's son-in-law and special adviser and confidant to his successor Anwar Sadat - while simultaneously Israeli Intelligence's most precious asset of the 20th century. Based on NYT bestselling book 'The Angel: The Egyptian Spy Who Saved Israel' by Uri Bar-Joseph.
## 5100 Sharing the same psychologist, kleptomaniac Roberto, who writes stories a bit too realistic and scary for kids, and a narcoleptic Beatrice, who documents everything in her life, begin to think that love could be the cure for their problems. But nothing comes easy to either of them, and, just like in one of Roberto's stories, the happy ending really needs to be sought after. Will they find their own?
## 5101 A plastic surgeon, romancing a much younger schoolteacher, enlists his loyal assistant to pretend to be his soon to be ex-wife, in order to cover up a careless lie. When more lies backfire, the assistant's kids become involved, and everyone heads off for a weekend in Hawaii that will change all their lives. A remake of Cactus Flower (1969).
## 5102 In a quiet suburban town in the summer of 1958, two recently orphaned sisters are placed in the care of their mentally unstable Aunt Ruth. But Ruth's depraved sense of discipline will soon lead to unspeakable acts of abuse and torture that involve her young sons, the neighborhood children, and one 12-year-old boy whose life will be changed forever.
## 5103 Married for ten years, in full crisis, thinking about divorce. But following a failed scientific experiment, they suddenly find one inside the body of the other.
## 5104 The haunted Lambert family seeks to uncover the mysterious childhood secret that has left them dangerously connected to the spirit world.
## 5105 Bud Spencer plays Banana Joe, a brawny yet friendly man who lives in a small rainforest village called Amantido with a huge number of his own children and regularly delivers bananas to a South American river port (hence his name). One day, the henchmen of a local gangster boss named Torsillo come ashore in Amantido to initiate the construction a banana processing plant. Of course, Joe (in typical direct-approach manner) evicts the goons, who promptly return to their boss. Torsillo finds out that Joe is trading bananas without a license and decides to exploit it. Upon his next delivery, Joe is apprehended by the police and given the choice of either acquiring a legal license or getting his boat taken away and himself arrested for illegal shipment. Joe travels to the nearest city, which to him is a new world, as he grew up in the rainforest.
## 5106 Awkward teenager Charlie Bartlett has trouble fitting in at a new high school. Charlie needs some friends fast, and decides that the best way to find them is to appoint himself the resident psychiatrist. He becomes one of the most popular guys in school by doling out advice and, occasionally, medication, to the student body.
## 5107 Greg Focker is ready to marry his girlfriend, Pam, but before he pops the question, he must win over her formidable father, humorless former CIA agent Jack Byrnes, at the wedding of Pam's sister. As Greg bends over backward to make a good impression, his visit to the Byrnes home turns into a hilarious series of disasters, and everything that can go wrong does, all under Jack's critical, hawklike gaze.
## 5108 Follows the heroic efforts of the crypto-zoological agency Monarch as its members face off against a battery of god-sized monsters, including the mighty Godzilla, who collides with Mothra, Rodan, and his ultimate nemesis, the three-headed King Ghidorah. When these ancient super-species, thought to be mere myths, rise again, they all vie for supremacy, leaving humanity's very existence hanging in the balance.
## 5109 In a soon to be demolished block of apartments, the residents resist the criminal methods used to force them to leave so a greedy tycoon can build his new skyscraper. When tiny mechanical aliens land for a recharge, they decide to stay and help out.
## 5110 It's been many years since Freddy Krueger's first victim, Nancy, came face-to-face with Freddy and his sadistic, evil ways. Now, Nancy's all grown up; she's put her frightening nightmares behind her and is helping teens cope with their dreams. Too bad Freddy's decided to herald his return by invading the kids' dreams and scaring them into committing suicide.
## 5111 A team of U.S. government agents is sent to investigate the bombing of an American facility in the Middle East.
## 5112 A retelling of France's iconic but ill-fated queen, Marie Antoinette, from her betrothal and marriage to Louis XVI at 15 to her reign as queen at 19 and ultimately the fall of Versailles.
## 5113 In the Old West, a 17-year-old Scottish boy teams up with a mysterious gunman to find the woman with whom he is infatuated.
## 5114 Based on the autobiographical novel, the tempestuous 6-year relationship between Liberace and his (much younger) lover, Scott Thorson, is recounted.
## 5115 When a crime brings them back to L.A., fugitive ex-con Dom Toretto reignites his feud with agent Brian O'Conner. But as they are forced to confront a shared enemy, Dom and Brian must give in to an uncertain new trust if they hope to outmaneuver him. And the two men will find the best way to get revenge: push the limits of what's possible behind the wheel.
## 5116 An unsuspecting, disenchanted man finds himself working as a spy in the dangerous, high-stakes world of corporate espionage. Quickly getting way over-his-head, he teams up with a mysterious femme fatale.
## 5117 Kenai finds his childhood human friend Nita and the two embark on a journey to burn the amulet he gave to her before he was a bear, much to Koda's dismay.
## 5118 Teddy Duncan's middle-class family embarks on a road trip from their home in Denver to visit Mrs. Duncans Parents, the Blankenhoopers, in Palm Springs. When they find themselves stranded between Denver and Utah, they try to hitch a ride to Las Vegas with a seemingly normal older couple in a station wagon from Roswell, New Mexico. It turns out that the couple believes they are the victims of alien abduction. The Duncan's must resort to purchasing a clunker Yugo to get to Utah, have their luggage stolen in Las Vegas, and survive a zany Christmas with Grandpa and Grandma Blankenhooper.
## 5119 A week in the life of the exploited, child newspaper sellers in turn-of-the-century New York. When their publisher, Joseph Pulitzer, tries to squeeze a little more profit out of their labours, they organize a strike, only to be confronted with the Pulitzer's hard-ball tactics.
## 5120 Three children accidentally get turned into fish after drinking a potion made by an eccentric scientist. The kids end up in the sea, with one problem. They must find and drink the antidote within 48 hours, or forever remain as fish.
## 5121 A single mother gives her son a beloved doll for his birthday, only to discover that it is possessed by the soul of a serial killer.
## 5122 Simon Phoenix, a violent criminal cryogenically frozen in 1996, escapes during a parole hearing in 2032 in the utopia of San Angeles. Police are incapable of dealing with his violent ways and turn to his captor, who had also been cryogenically frozen after being wrongfully accused of killing 30 innocent people while apprehending Phoenix.
## 5123 A man who specializes in debunking paranormal occurrences checks into the fabled room 1408 in the Dolphin Hotel. Soon after settling in, he confronts genuine terror.
## 5124 A family living on a farm finds mysterious crop circles in their fields which suggests something more frightening to come.
## 5125 When teenager Ren and his family move from big-city Chicago to a small town in the West, he's in for a real case of culture shock after discovering he's living in a place where music and dancing are illegal.
## 5126 Meet Jack Foley, a smooth criminal who bends the law and is determined to make one last heist. Karen Sisco is a federal marshal who chooses all the right moves … and all the wrong guys. Now they're willing to risk it all to find out if there's more between them than just the law.
## 5127 A former Secret Service agent grudgingly takes an assignment to protect a pop idol who's threatened by a crazed fan. At first, the safety-obsessed bodyguard and the self-indulgent diva totally clash. But before long, all that tension sparks fireworks of another sort, and the love-averse tough guy is torn between duty and romance.
## 5128 Jack is a charismatic larrikin who has just discovered the one thing he's really good at — go-kart racing. With the support of his mentor, Patrick, an old race car driver with a secret past, and his best mates Colin and Mandy, Jack must learn to control his recklessness if he is to defeat the best drivers in Australia, including the ruthless champion Dean, and win the National title.
## 5129 19-year-old Ben Burns unexpectedly returns home to his family's suburban home on Christmas Eve morning. Ben's mother, Holly, is relieved and welcoming but wary of her son staying clean. Over a turbulent 24 hours, new truths are revealed, and a mother's undying love for her son is tested as she does everything in her power to keep him safe.
## 5130 Based on the true story of acclaimed music icon "Dalida" born in Cairo, who gained celebrity in the 50s, singing in French, Spanish, Arabic, Hebrew, German, Italian, playing in awarded Youssef Chahine's picture "Le Sixième Jour", and who later committed suicide in 1987 in Paris, after selling more than 130 million records worldwide.
## 5131 Stuck at a crossroads in her personal life, it falls on high school English teacher Miss Stevens to chaperone three of her students — Billy, Margot and Sam — on a weekend trip to a drama competition.
## 5132 When a chance encounter brings together the cynical Dell and the quick-witted Kimberly, the stage is set for a tempestuous love affair that unfolds like a puzzle. As the film zigzags back and forth in time-from a meteor shower in LA, to an encounter in a Paris hotel room, to a fateful phone call — an unforgettable portrait of a relationship emerges.
## 5133 Rafael, a Seville citizen who has never left the Spanish region of Andalucia, decides to leave his homeland to follow Amaia, a Basque girl unlike other women he has known.
## 5134 Eight short stories of seduction and illicit encounters between lovers, filled with humor and eroticism, which use a circular structure located in the cosmopolitan atmosphere of a colonial city of Mexico.
## 5135 For their first day on the job as the new protectors of Metro City, Megamind and Minion are selling off the gadgets from their evil lair. But when one seemingly harmless "button" unleashes the gigantic robot MEGA-MEGAmind, the duo will have to resort to their old tricks to restore order.
## 5136 In Victorian England, a master criminal makes elaborate plans to steal a shipment of gold from a moving train.
## 5137 Richthofen goes off to war like thousands of other men. As fighter pilots, they become cult heroes for the soldiers on the battlefields. Marked by sportsmanlike conduct, technical exactitude and knightly propriety, they have their own code of honour. Before long he begins to understand that his hero status is deceptive. His love for Kate, a nurse, opens his eyes to the brutality of war.
## 5138 An imaginary world comes to life in a holiday tale of an eccentric toymaker, his adventurous granddaughter, and a magical invention that has the power to change their lives forever.
## 5139 A spoiled, wealthy yacht owner is thrown overboard and becomes the target of revenge from his mistreated employee.
## 5140 On the streets they call cash dead presidents. And that's just what a Vietnam veteran is after when he returns home from the war only to find himself drawn into a life of crime. With the aid of his fellow vets he plans the ultimate heist -- a daring robbery of an armored car filled with unmarked U.S. currency!
## 5141 Dirty tricks stand to soil an ambitious young press spokesman's idealism in a cutthroat presidential campaign where 'victory' is relative.
## 5142 After she discovers that her boyfriend has betrayed her, Hilary O'Neil is looking for a new start and a new job. She begins to work as a private nurse for a young man suffering from blood cancer. Slowly, they fall in love, but they always know their love cannot last because he is destined to die.
## 5143 Veteran catcher Crash Davis is brought to the minor league Durham Bulls to help their up and coming pitching prospect, "Nuke" Laloosh. Their relationship gets off to a rocky start and is further complicated when baseball groupie Annie Savoy sets her sights on the two men.
## 5144 Police officers at a station must solve a murder case.
## 5145 When architect-turned-recluse Bernadette Fox goes missing prior to a family trip to Antarctica, her 15-year-old daughter Bee goes on a quest with Bernadette's husband to find her.
## 5146 A young man in a personal tailspin flees the US to Italy, where he sparks up a romance with a woman harboring a dark, primordial secret.
## 5147 The world's greatest criminal and the world greatest loser share the same face... now they'll share the same life!
## 5148 Wealthy Sunny von Bülow lies brain-dead, husband Claus guilty of attempted murder; but he says he's innocent and hires Alan Dershowitz for his appeal.
## 5149 Jealousy flares after the headmistress of an elite boarding school for girls becomes obsessed with a new student.
## 5150 Rose Morgan, who still lives with her mother, is a professor of Romantic Literature who desperately longs for passion in her life. Gregory Larkin, a mathematics professor, has been burned by passionate relationships and longs for a sexless union based on friendship and respect.
## 5151 Pleasantly plump teenager Tracy Turnblad auditions to be on Baltimore's most popular dance show - The Corny Collins Show - and lands a prime spot. Through her newfound fame, she becomes determined to help her friends and end the racial segregation that has been a staple of the show.
## 5152 When Michèle, the CEO of a gaming software company, is attacked in her home by an unknown assailant, she refuses to let it alter her precisely ordered life. She manages crises involving family, all the while becoming engaged in a game of cat and mouse with her stalker.
## 5153 A young elephant, whose oversized ears enable him to fly, helps save a struggling circus, but when the circus plans a new venture, Dumbo and his friends discover dark secrets beneath its shiny veneer.
## 5154 After running away from her abusive mother, a streetwise teen seeks refuge with her father, but he rejects her when he learns that she's pregnant.
## 5155 The third film in the saga of the unlucky clerk Ugo Fantozzi, played by its creator, Paolo Villaggio.
## 5156 A sweet-natured Temp Agency operator and amateur Presidential look-alike is recruited by the Secret Service to become a temporary stand-in for the President of the United States.
## 5157 Kinsey is a portrait of researcher Alfred Kinsey, driven to uncover the most private secrets of a nation. What begins for Kinsey as a scientific endeavor soon takes on an intensely personal relevance, ultimately becoming an unexpected journey into the mystery of human behavior.
## 5158 Mere seconds before the Earth is to be demolished by an alien construction crew, Arthur Dent is swept off the planet by his friend Ford Prefect, a researcher penning a new edition of "The Hitchhiker's Guide to the Galaxy."
## 5159 Five young New Yorkers throw their friend a going-away party the night that a monster the size of a skyscraper descends upon the city. Told from the point of view of their video camera, the film is a document of their attempt to survive the most surreal, horrifying event of their lives.
## 5160 Twelve strangers wake up in a clearing. They don't know where they are—or how they got there. In the shadow of a dark internet conspiracy theory, ruthless elitists gather at a remote location to hunt humans for sport. But their master plan is about to be derailed when one of the hunted turns the tables on her pursuers.
## 5161 In 1967, during the making of “La Chinoise,” film director Jean-Luc Godard falls in love with 19-year-old actress Anne Wiazemsky and marries her.
## 5162 One night per year, the government sanctions a 12-hour period in which citizens can commit any crime they wish -- including murder -- without fear of punishment or imprisonment. Leo, a sergeant who lost his son, plans a vigilante mission of revenge during the mayhem. However, instead of a death-dealing avenger, he becomes the unexpected protector of four innocent strangers who desperately need his help if they are to survive the night.
## 5163 The story of a woman who is slowly losing her sight whilst trying to investigate the mysterious death of her twin sister.
## 5164 A privileged rich debutante and a cynical struggling entertainer share a turbulent, but strong childhood friendship over the years.
## 5165 Having recently found God, self-effacing young nurse Maud arrives at a plush home to care for Amanda, a hedonistic dancer left frail from a chronic illness. When a chance encounter with a former colleague throws up hints of a dark past, it becomes clear there is more to sweet Maud than meets the eye.
## 5166 Young orphan Heathcliff is adopted by the wealthy Earnshaw family and moves into their estate, Wuthering Heights. Soon, the new resident falls for his compassionate foster sister, Cathy. The two share a remarkable bond that seems unbreakable until Cathy, feeling the pressure of social convention, suppresses her feelings and marries Edgar Linton, a man of means who befits her stature. Heathcliff vows to win her back.
## 5167 A talented photographer stuck in a dead-end job inherits an antique Advent calendar that may be predicting the future -- and pointing her toward love.
## 5168 Electricity titans Thomas Edison and George Westinghouse compete to create a sustainable system and market it to the American people.
## 5169 A man awakens from a coma, only to discover that someone has taken on his identity and that no one, (not even his wife), believes him. With the help of a young woman, he sets out to prove who he is.
## 5170 Reeling from the unexpected death of her husband, Beth is left alone in the lakeside home he built for her. Soon she begins to uncover her recently deceased husband's disturbing secrets.
## 5171 After being hypnotized by his sister in law, Tom Witzky begins seeing haunting visions of a girl's ghost and a mystery begins to unfold around her.
## 5172 Book superstore magnate, Joe Fox and independent book shop owner, Kathleen Kelly fall in love in the anonymity of the Internet—both blissfully unaware that he's trying to put her out of business.
## 5173 Monsters under the bed are scary enough, but what happens when an entire house is out to get you? Three teens aim to find out when they go up against a decrepit neighboring home and unlock its frightening secrets.
## 5174 In the final days of World War II, the Nazis attempt to use black magic to aid their dying cause. The Allies raid the camp where the ceremony is taking place, but not before they summon a baby demon who is rescued by Allied forces and dubbed "Hellboy". Sixty years later, Hellboy serves the cause of good rather than evil as an agent in the Bureau of Paranormal Research & Defense, along with Abe Sapien - a merman with psychic powers, and Liz Sherman - a woman with pyrokinesis, protecting America against dark forces.
## 5175 A truffle hunter who lives alone in the Oregon wilderness must visit Portland to find the mysterious person who stole his beloved foraging pig.
## 5176 A trapeze artist must decide between her lust for Sergio, the Happy Clown, or her affection for Javier, the Sad Clown, both of whom are deeply disturbed.
## 5177 During shopping for Christmas, Frank and Molly run into each other. This fleeting short moment will start to change their lives, when they recognize each other months later in the train home and have a good time together. Although both are married and Frank has two little kids, they meet more and more often, their friendship becoming the most precious thing in their lives.
## 5178 Dylan and Jamie think it's going to be easy to add the simple act of sex to their friendship, despite what Hollywood romantic comedies would have them believe. They soon discover however that getting physical really does always lead to complications.
## 5179 In order to wish for immortality and avenge his father, Garlic Jr. collects the dragon balls, kidnapping Goku's son Gohan in the process. Goku, Kami, Piccolo, and Krillin unite to rescue Gohan and save the world from being sucked into a dead zone.
## 5180 Haunted by her past, a nurse travels from England to a remote Irish village in 1862 to investigate a young girl's supposedly miraculous fast.
## 5181 Internationally released Director's Cut of "Loro 1" and "Loro 2", which were released separately as two movies in Italy. The film talks about the group of businessmen and politicians – the Loro (Them) from the title – who live and act near to media tycoon and politician Silvio Berlusconi in the years between 2006 and 2009.
## 5182 In 1847, when Ireland is in the grip of the Great Famine that has ravaged the country for two long years, Feeney, a hardened Irish Ranger who has been fighting for the British Army abroad, returns home to reunite with his estranged family, only to discover the cruelest reality, a black land where death reigns.
## 5183 Robert McCall, who serves an unflinching justice for the exploited and oppressed, embarks on a relentless, globe-trotting quest for vengeance when a long-time girl friend is murdered.
## 5184 Somewhere in the Balkans, 1995. A team of aid workers must solve an apparently simple problem in an almost completely pacified territory that has been devastated by a cruel war, but some of the local inhabitants, the retreating combatants, the UN forces, many cows and an absurd bureaucracy will not cease to put obstacles in their way.
## 5185 The life of a respected British politician at the height of his career crumbles when he becomes obsessed with his son's lover.
## 5186 In 2019, Lincoln Six-Echo is a resident of a seemingly "Utopian" but contained facility. Like all of the inhabitants of this carefully-controlled environment, Lincoln hopes to be chosen to go to The Island — reportedly the last uncontaminated location on the planet. But Lincoln soon discovers that everything about his existence is a lie.
## 5187 Christian is an extremely talented as well as unpredictable football player. After his latest screw-up, the president of his team decides to assign him a personal tutor, to help him in controlling his temper. Valerio is a shy and solitary professor, the exact opposite of the champion. Sparks will fly between the two at first, but soon their relationship will change both for the better.
## 5188 An orphaned boy raised by underground creatures called Boxtrolls comes up from the sewers and out of his box to save his family and the town from the evil exterminator, Archibald Snatcher.
## 5189 When Will Stoneman's father dies, he is left alone to take care of his mother and their land. Needing money to maintain it, he decides to join a cross country dogsled race. This race will require days of racing for long hours, through harsh weather and terrain. This young man will need a lot of courage and a strong will to complete this race.
## 5190 A pack of naïve teenagers conspire to murder a mutual friend, whose aggressive demeanor has proved too much.
## 5191 Two men in 1930s Mississippi become friends after being sentenced to life in prison together for a crime they did not commit.
## 5192 A Muslim ambassador exiled from his homeland, Ahmad ibn Fadlan finds himself in the company of Vikings. While the behavior of the Norsemen initially offends ibn Fadlan, the more cultured outsider grows to respect the tough, if uncouth, warriors. During their travels together, ibn Fadlan and the Vikings get word of an evil presence closing in, and they must fight the frightening and formidable force, which was previously thought to exist only in legend.
## 5193 Evan McCauley has skills he never learned and memories of places he has never visited. Self-medicated and on the brink of a mental breakdown, a secret group that call themselves “Infinites” come to his rescue, revealing that his memories are real.
## 5194 A look behind the scenes at Bernie Madoff's massive Ponzi scheme, how it was perpetrated on the public and the trail of destruction it left in its wake, both for the victims and Madoff's family.
## 5195 A small fishing village must procure a local doctor to secure a lucrative business contract. When unlikely candidate and big city doctor Paul Lewis lands in their lap for a trial residence, the townsfolk rally together to charm him into staying. As the doctor’s time in the village winds to a close, acting mayor Murray French has no choice but to pull out all the stops and begin The Grand Seduction.
## 5196 The greatest Olympic Wrestling Champion brother team joins Team Foxcatcher led by multimillionaire sponsor John E. du Pont as they train for the 1988 games in Seoul - a union that leads to unlikely circumstances.
## 5197 When Kermit the Frog and the Muppets learn that their beloved theater is slated for demolition, a sympathetic human, Gary, and his puppet brother, Walter, swoop in to help the gang put on a show and raise the $10 million they need to save the day.
## 5198 Will Freeman is a good-looking, smooth-talking bachelor whose primary goal in life is avoiding any kind of responsibility. But when he invents an imaginary son in order to meet attractive single moms, Will gets a hilarious lesson about life from a bright, but hopelessly geeky 12-year-old named Marcus. Now, as Will struggles to teach Marcus the art of being cool, Marcus teaches Will that you're never too old to grow up.
## 5199 A small-town news reporter and a Greenpeace volunteer enlist the help of rival superpowers to save three majestic gray whales trapped under the ice of the Arctic Circle.
## 5200 When a rich man's son is kidnapped, he cooperates with the police at first but then tries a unique tactic against the criminals.
## 5201 Hours after the tragic death of their youngest brother in unexplained circumstances, three siblings have their lives thrown into chaos.
## 5202 A veteran actress comes face-to-face with an uncomfortable reflection of herself when she agrees to take part in a revival of the play that launched her career 20 years earlier.
## 5203 Superman and Supergirl take on the cybernetic being known as Brainiac, who boasts that he possesses "the knowledge and strength of 10,000 worlds."
## 5204 After India's father dies, her Uncle Charlie, who she never knew existed, comes to live with her and her unstable mother. She comes to suspect this mysterious, charming man has ulterior motives and becomes increasingly infatuated with him.
## 5205 When Lawrence III's scheme to capture the Legendary Pokémon Lugia upsets the balance of nature, it is up to Ash Ketchum and his friends to save the world.
## 5206 A group of idealistic, but frustrated, liberals succumb to the temptation of murdering rightwing pundits for their political beliefs.
## 5207 When young Buddy falls into Santa's gift sack on Christmas Eve, he's transported back to the North Pole and raised as a toy-making elf by Santa's helpers. But as he grows into adulthood, he can't shake the nagging feeling that he doesn't belong. Buddy vows to visit Manhattan and find his real dad, a workaholic publisher.
## 5208 American Matt Quigley answers Australian land baron Elliott Marston's ad for a sharpshooter to kill the dingoes on his property. But when Quigley finds out that Marston's real target is the aborigines, Quigley hits the road. Now, even American expatriate Crazy Cora can't keep Quigley safe in his cat-and-mouse game with the homicidal Marston.
## 5209 Reclusive author Loretta Sage writes about exotic places in her popular adventure novels that feature a handsome cover model named Alan. While on tour promoting her new book with Alan, Loretta gets kidnapped by an eccentric billionaire who hopes she can lead him to the ancient city's lost treasure that featured in her latest story. Alan, determined to prove he can be a hero in real life and not just on the pages of her books, sets off to rescue her.
## 5210 A manic-depressive mess of a father tries to win back his wife by attempting to take full responsibility of their two young, spirited daughters, who don't make the overwhelming task any easier.
## 5211 When hundreds of videotapes showing torture, murder and dismemberment are found in an abandoned house, they reveal a serial killer's decade-long reign of terror and become the most disturbing collection of evidence homicide detectives have ever seen.
## 5212 Carl Allen has stumbled across a way to shake free of post-divorce blues and a dead-end job: embrace life and say yes to everything.
## 5213 A recently-widowed science fiction writer considers whether to adopt a hyper-imaginative 6-year-old abandoned and socially-rejected boy who says he's really from Mars.
## 5214 Firemen brothers Brian and Stephen McCaffrey battle each other over past slights while trying to stop an arsonist with a diabolical agenda from torching Chicago.
## 5215 A bullied overweight teenager sees a glimpse of hope when her tormentors are brutally abducted by a mesmerizing stranger.
## 5216 Addie Moore and Louis Waters, a widow and widower, have lived next to each other for years. The pair have almost no relationship, but that all changes when Addie tries to make a connection with her neighbour.
## 5217 14-year-old Joe is the only child of Jeanette and Jerry — a housewife and a golf pro — in a small town in 1960s Montana. Nearby, an uncontrolled forest fire rages close to the Canadian border, and when Jerry loses his job (and his sense of purpose) he decides to join the cause of fighting the fire, leaving his wife and son to fend for themselves.
## 5218 Luciana is a factory worker married to the love of her life. She is living the simple and quiet life she’s always desired: she works and she is deeply in love with her husband Stefano, even if he doesn’t always have a job and they both need to struggle to keep on going. They are happy and always on each other’s side, but shortly after she finds out she’s pregnant, she gets fired and her world starts falling apart. After having tried to have a baby for years, the joy of impending motherhood lasts only a few months. Begging for help but with no one ready to listen to her, completely desperate and shattered, Luciana decides to kidnap the managing director of her former company, asking for the justice she deserves.
## 5219 To get revenge on her ex-boyfriend, an influencer attempts to transform an unpopular classmate into prom king.
## 5220 After the sudden death of their father, four children face cruel treatment from their ruthless grandmother.
## 5221 When her nation is invaded, a young princess is taken into the Princess Protection Program. She is relocated to Louisiana, where she stays with a covert agent and his tomboyish daughter, and must learn how to behave like an ordinary teenager.
## 5222 Loosely based on the Charles Dickens' classic novel, "Great Expectations" is a sensual tale of a young man's unforgettable passage into manhood, and the three individuals who will undeniably change his life forever. Through the surprising interactions of these vivid characters, "Great Expectations" takes a unique and contemporary look at life's great coincidences.
## 5223 Despite his dedication to the junior-high students who fill his classroom, idealistic teacher Dan Dunne leads a secret life of addiction that the majority of his students will never know. But things change when a troubled student Drey makes a startling discovery of his secret life, causing a tenuous bond between the two that could either end disastrously or provide a catalyst of hope.
## 5224 Spanning several decades, this powerful biopic offers a glimpse into the life of famed Cuban poet and novelist Reinaldo Arenas, an artist who was vilified for his homosexuality in Fidel Castro's Cuba.
## 5225 Working-class waitress Slim thought she was entering a life of domestic bliss when she married Mitch, the man of her dreams. After the arrival of their first child, her picture perfect life is shattered when she discovers Mitch's hidden possessive dark side, a controlling and abusive alter ego that can turn trust, love and tranquility into terror. Terrified for her child's safety, Slim flees with her daughter. Relentless in his pursuit and enlisting the aid of lethal henchmen, Mitch continually stalks the prey that was once his family.
## 5226 Kris Kringle's daughter, Noelle, sets off on a mission to find and bring back her brother, after he gets cold feet when it's his turn to take over as Santa.
## 5227 In the not-too-distant future, as a final response to crime and terrorism, the U.S. government plans to broadcast a signal that will make it impossible for anyone to knowingly break the law.
## 5228 Tel Aviv, Israel. The twisted paths of three very different men brutally collide due to a chain of unspeakable murders: a grieving father who has been doomed to seek vengeance and a police detective who boldly crosses the narrow boundary between law and crime meet a religion teacher suspected of being the murderer.
## 5229 Film geek Josh is looking for the subject of his new documentary when a chance meeting puts the perfect star in his sights—Dylan, his school's most popular junior. But Dylan's hopes of using the film to become Blossom Queen don't quite match with Josh's goal to make a hard-hitting exposé about popularity. Will Josh shoot the film as planned, or show Dylan as the truly interesting person she is?
## 5230 Sy "the photo guy" Parrish has lovingly developed photos for the Yorkin family since their son was a baby. But as the Yorkins' lives become fuller, Sy's only seems lonelier, until he eventually believes he's part of their family. When "Uncle" Sy's picture-perfect fantasy collides with an ugly dose of reality, what happens next "has the spine-tingling elements of the best psychological thrillers!"
## 5231 Because of his wavering health, Monsieur Henri can no longer live alone in his Paris appartment. Particularly grumpy, he ends up nonetheless accepting his son Paul's suggestion that he let one of his rooms out to a young female student. Far from falling for her charms, Henri uses her to orchestrate utter family chaos...
## 5232 A reporter becomes the target of a vicious smear campaign that drives him to the point of suicide after he exposes the CIA's role in arming Contra rebels in Nicaragua and importing cocaine into California. Based on the true story of journalist Gary Webb.
## 5233 In the small village where Amadeo lives there is no one good enough to challenge his skills at Table Football. But, while Amadeo may be a genius as a table football player in real life he's a loser. He's in love with Lara, his childhood friend, but he's so shy that he can't bring himself to confess his love for her. So he just hangs out in his quaint, timeless village. When Amadeo beats the village bully Flash at Table Football. The scene is set for an epic rivalry. Consumed with anger Flash vows to get even and 10 years later he returns as an International Superstar, a Football Icon and Galatico determined to wreak his revenge.
## 5234 In Bolivia, Butch Cassidy (now calling himself James Blackthorne) pines for one last sight of home, an adventure that aligns him with a young robber and makes the duo a target for gangs and lawmen alike.
## 5235 Alex and his sister run a business designed to break up relationships. They are hired by a rich man to break up the wedding of his daughter. The only problem is that they only have one week to do so.
## 5236 During a snowy winter in the small fictional town of Knight's Ridge, Massachusetts, a group of lifelong buddies hang out, drink and struggle to connect with the women who affect their decisions, dreams and desires.
## 5237 A mermaid is ripped from the Pacific, her tail is chopped off and she's thrown into a mental home where no one believes she is a mermaid.
## 5238 Thrust into an all-new adventure, a down-on-his-luck Capt. Jack Sparrow feels the winds of ill-fortune blowing even more strongly when deadly ghost sailors led by his old nemesis, the evil Capt. Salazar, escape from the Devil's Triangle. Jack's only hope of survival lies in seeking out the legendary Trident of Poseidon, but to find it, he must forge an uneasy alliance with a brilliant and beautiful astronomer and a headstrong young man in the British navy.
## 5239 After several years of living with a cult, Martha finally escapes and calls her estranged sister, Lucy, for help. Martha finds herself at the quiet Connecticut home Lucy shares with her new husband, Ted, but the memories of what she experienced in the cult make peace hard to find. As flashbacks continue to torment her, Martha fails to shake a terrible sense of dread, especially in regard to the cult's manipulative leader.
## 5240 Paris, France, 2001. Octave Parango, a young advertiser working at the Ross & Witchcraft advertising agency, lives a suicidal existence, ruled by cynicism, irresponsibility and debauchery. The obstacles he will encounter in developing a campaign for a new yogurt brand will force him to face the meaning of his work and the way he manages his relationship with those who orbit around his egotistic lifestyle.
## 5241 Chris is a once promising high school athlete whose life is turned upside down following a tragic accident. As he tries to maintain a normal life, he takes a job as a janitor at a bank, where he ultimately finds himself caught up in a planned heist.
## 5242 While planet Earth poises on the brink of nuclear self-destruction, a team of Russian and American scientists aboard the Leonov hurtles to a rendezvous with the still-orbiting Discovery spacecraft and its sole known survivor, the homicidal computer HAL.
## 5243 Rachel Keller is a journalist investigating a videotape that may have killed four teenagers. There is an urban legend about this tape: the viewer will die seven days after watching it. Rachel tracks down the video... and watches it. Now she has just seven days to unravel the mystery of the Ring so she can save herself and her son.
## 5244 The film is about a high school tech whiz (Laura Marano), who is determined to become prom queen. But on the big day, she suddenly wakes up having a bad hair day, and her destroyed prom dress, and everything that can go wrong, does go badly wrong. A police officer (Leigh-Allyn Baker) seeks the necklace that the teen somehow ends up possessing. Prom day goes really bad as the pair is pursued by a dogged jewel thief (Christian Campbell) on a wild ride cross around the city.
## 5245 When a team of explorers ventures into the catacombs that lie beneath the streets of Paris, they uncover the dark secret that lies within this city of the dead.
## 5246 The Black Rebels Motorcycle Club ride into the small California town of Wrightsville, eager to raise hell. Brooding gang leader Johnny Strabler takes a liking to Kathie, the daughter of the local lawman, as another club rolls into town.
## 5247 While attending college in Cape Town, Melea Martin feels constrained by the school's strict policies, and decides to set out on her own. Searching for a way to use her talents as a dancer and inspire the community around her, Melea rents a failing theater in order to put on a Hip-Hop Romeo and Juliet performance. But much like the Capulets and Montagues, conflicts between cast members threaten to bring the whole performance to a halt...
## 5248 The third part of Seventh Company adventures.
## 5249 New rules enforced by the Lady Mayoress mean that sex, weight, height and intelligence need no longer be a factor for joining the Police Force. This opens the floodgates for all and sundry to enter the Police Academy, much to the chagrin of the instructors. Not everyone is there through choice, though. Social misfit Mahoney has been forced to sign up as the only alternative to a jail sentence and it doesn't take long before he falls foul of the boorish Lieutenant Harris. But before long, Mahoney realises that he is enjoying being a police cadet and decides he wants to stay... while Harris decides he wants Mahoney out!
## 5250 Fletcher Reede is a fast-talking attorney and habitual liar. When his son Max blows out the candles on his fifth birthday he has just one wish - that his dad will stop lying for 24 hours. When Max's wish comes true, Fletcher discovers that his mouth has suddenly become his biggest liability.
## 5251 After an alien ship crash lands in a Russian city, many who see the inside and the occupants start to question their own existence while others demand the aliens leave Earth.
## 5252 An American girl on holiday in the English countryside with her family finds herself in hiding and fighting for her survival as war breaks out.
## 5253 The Words follows young writer Rory Jansen who finally achieves long sought after literary success after publishing the next great American novel. There's only one catch - he didn't write it. As the past comes back to haunt him and his literary star continues to rise, Jansen is forced to confront the steep price that must be paid for stealing another man's work, and for placing ambition and success above life's most fundamental three words.
## 5254 A thrilling mystery that unfurls in the alleys and on the rooftops of the French capital, Paris, over the course of one adventurous evening.
## 5255 Charly Matteï has turned his back on his life as an outlaw. For the last three years, he's led a peaceful life devoting himself to his wife and two children. Then, one winter morning, he's left for dead in the parking garage in Marseille's Old Port, with 22 bullets in his body. Against all the odds, he doesn't die...
## 5256 Igby Slocumb, a rebellious and sarcastic 17-year-old boy, is at war with the stifling world of old money privilege he was born into. With a schizophrenic father, a self-absorbed, distant mother, and a shark-like young Republican big brother, Igby figures there must be a better life out there -- and sets about finding it.
## 5257 Hunter, a newly pregnant housewife, finds herself increasingly compelled to consume dangerous objects. As her husband and his family tighten their control over her life, she must confront the dark secret behind her new obsession.
## 5258 Reunited after 15 years, famous chef Sasha and hometown musician Marcus feel the old sparks of attraction but struggle to adapt to each other's worlds.
## 5259 A spellbinding and romantic supernatural thriller. Ten years after an apocalyptic event left the world haunted by ghosts, Roni receives a threatening message from beyond the grave. Joining forces with a mysterious classmate, Kirk, Roni descends into a shadow world that blurs the bounds of the living and the dead-and begins a desperate race against time to stop a cunning killer.
## 5260 A young coach turns a losing high school football program around to go undefeated for 12 consecutive seasons.
## 5261 Sutter, a popular party animal, unexpectedly meets the introverted Aimee after waking up on a stranger's lawn. As Sutter deals with the problems in his life and Aimee plans for her future beyond school, an unexpected romance blossoms between them.
## 5262 In Disney's take on the Alexander Dumas tale, Mickey Mouse, Donald Duck and Goofy want nothing more than to perform brave deeds on behalf of their queen (Minnie Mouse), but they're stymied by the head Musketeer, Pete. Pete secretly wants to get rid of the queen, so he appoints Mickey and his bumbling friends as guardians to Minnie, thinking such a maneuver will ensure his scheme's success. The score features songs based on familiar classical melodies.
## 5263 A transfer student at a rough high school tries joining the cheer-leading squad and finds that she not only has to face off against the head cheerleader, but also against her former school in preparation for a cheer-off competition.
## 5264 A young girl is kidnapped during a powerful storm. Her mother joins forces with her mysterious neighbour to set off in pursuit of the kidnapper. Their journey will test their limits and expose the dark secrets of their past.
## 5265 A father struggles to keep his infant daughter alive in the wake of Hurricane Katrina.
## 5266 Bernardo is dumped by his girlfriend, his career as a rock music critic is beginning to decline and stars to see a psychologist but in the meantime he meets the problematic and shy Camilla, who disrupts his life.
## 5267 The employees of an independent music store learn about each other as they try anything to stop the store being absorbed by a large chain.
## 5268 Caught in a bizarre and terrifying time warp, college student Tree finds herself repeatedly reliving the day of her murder, ultimately realizing that she must identify the killer and the reason for her death before her chances of survival run out.
## 5269 High school student Ichigo Kurosaki lives an ordinary life, besides being able to see ghosts and the blurry memories of his mother's death under strange circumstances when he was a kid. His peaceful world suddenly breaks as he meets Rukia Kuchiki, a God of Death.
## 5270 French drama based on the 1996 kidnapping and killing of seven monks in Algeria. A group of Trappist monks reside in the monastery of Tibhirine in Algeria, where they live in harmony with the largely muslim population. When a bloody conflict between Algeria's army and Muslim Jihadi insurgents disrupts the peace, they are forced to consider fleeing the monastery and deserting the villagers they have ministered to. In the face of deadly violence the monks wrestle with their faith and their convictions, eventually deciding to stay and help their neighbours keep the army and the insurgents at bay.
## 5271 In the upscale Toronto strip club Exotica, dancer Christina is visited nightly by the obsessive Francis, a depressed tax auditor. Her ex-boyfriend, the club's MC, Eric, still jealously pines for her even as he introduces her onstage, but Eric is having his own relationship problems with the club's female owner. Thomas, a mysterious pet-shop owner, is about to become unexpectedly involved in their lives.
## 5272 A sumptuous and sensual tale of intrigue, romance and betrayal set against the backdrop of a defining moment in European history: two beautiful sisters, Anne and Mary Boleyn, driven by their family's blind ambition, compete for the love of the handsome and passionate King Henry VIII.
## 5273 In the aftermath of a family tragedy, an aspiring author is torn between love for her childhood friend and the temptation of a mysterious outsider. Trying to escape the ghosts of her past, she is swept away to a house that breathes, bleeds… and remembers.
## 5274 Cooler has resurrected himself as a robot and is enslaving the people of New Namek. Goku and the gang must help.
## 5275 A group of American soldiers stationed in Iraq at the end of the Gulf War find a map they believe will take them to a huge cache of stolen Kuwaiti gold hidden near their base, and they embark on a secret mission that's destined to change everything.
## 5276 An IT company hires an actor to serve as the company's president in order to help the business get sold to a cranky Icelander.
## 5277 A lawless poacher wants to capture a majestic and rare golden eagle, so he kidnaps the boy who knows where to find the bird. Not to worry -- the Rescue Aid Society's top agents, heroic mice Miss Bianca and Bernard, fly to Australia to save the day. Accompanying the fearless duo are bumbling albatross Wilbur and local field operative Jake the Kangaroo Rat.
## 5278 John Matrix, the former leader of a special commando strike force that always got the toughest jobs done, is forced back into action when his young daughter is kidnapped. To find her, Matrix has to fight his way through an array of punks, killers, one of his former commandos, and a fully equipped private army. With the help of a feisty stewardess and an old friend, Matrix has only a few hours to overcome his greatest challenge: finding his daughter before she's killed.
## 5279 After surviving a stabbing by a student, teacher Trevor Garfield moves from New York to Los Angeles. There, he resumes teaching as a substitute teacher. The education system, where violent bullies control the classrooms and the administration is afraid of lawsuits, slowly drives Garfield mad.
## 5280 Two doctors find their graveyard shift inundated with townspeople ravaged by sores. Among the wounded is Cherry Darling, a dancer whose leg was ripped from her body. As the invalids quickly become enraged aggressors, Cherry and her ex-boyfriend El Wray lead a team of accidental warriors into the night.
## 5281 Stephanie, a dedicated mother and popular vlogger, befriends Emily, a mysterious upper-class woman whose son Nicky attends the same school as Miles, Stephanie's son. When Emily asks her to pick Nicky up from school and then disappears, Stephanie undertakes an investigation that will dive deep into Emily's cloudy past.
## 5282 Storks deliver babies…or at least they used to. Now they deliver packages for a global internet retail giant. Junior, the company’s top delivery stork, is about to be promoted when he accidentally activates the Baby Making Machine, producing an adorable and wholly unauthorized baby girl...
## 5283 Widower Cedric Brown hires Nanny McPhee to care for his seven rambunctious children, who have chased away all previous nannies. Taunted by Simon and his siblings, Nanny McPhee uses mystical powers to instill discipline. And when the children's great-aunt and benefactor, Lady Adelaide Stitch, threatens to separate the kids, the family pulls together under the guidance of Nanny McPhee.
## 5284 After a top-secret experiment misfires, a scientist may be the only man left alive in the world.
## 5285 On the Caribbean island of Matul, white doctor David Menard is trying to stem the tide of cannibal zombies that are returning from the dead. Arriving on the island are Anne and reporter Peter West who are looking for Anne's missing father. The pair soon find themselves under attack from the zombies.
## 5286 A criminal organization has obtained two nuclear bombs and are asking for a 100 million pound ransom in the form of diamonds in seven days or they will use the weapons. The secret service sends James Bond to the Bahamas to once again save the world.
## 5287 A U.S Customs official uncovers a massive money laundering scheme involving Pablo Escobar.
## 5288 Jack and Caroline are a couple making a decent living when Jack suddenly loses his job. They agree that he should stay at home and look after the house while Caroline works. It's just that he's never done it before, and really doesn't have a clue...
## 5289 Faced with his own mortality, an ingenious alchemist tried to perfect an invention that would provide him with the key to eternal life. It was called the Cronos device. When he died more than 400 years later, he took the secrets of this remarkable device to the grave with him. Now, an elderly antiques dealer has found the hellish machine hidden in a statue and learns about its incredible powers. The more he uses the device, the younger he becomes...but nothing comes without a price. Life after death is just the beginning as this nerve-shattering thriller unfolds and the fountain of youth turns bloody.
## 5290 In Marseilles (France), skilled pizza delivery boy Daniel who drives a scooter finally has his dreams come true. He gets a taxi license. Caught by the police for a huge speed infraction, he will help Emilien, a loser inspector who can't drive, on the track of German bank robbers, so he doesn't lose his license and his dream job.
## 5291 J.R. is a fatherless boy growing up in the glow of a bar where the bartender, his Uncle Charlie, is the sharpest and most colorful of an assortment of quirky and demonstrative father figures. As the boy’s determined mother struggles to provide her son with opportunities denied to her — and leave the dilapidated home of her outrageous if begrudgingly supportive father — J.R. begins to gamely, if not always gracefully, pursue his romantic and professional dreams, with one foot persistently placed in Uncle Charlie’s bar.
## 5292 A showman introduces a small coastal town to a unique movie experience and capitalises on the Cuban Missile crisis hysteria with a kitschy horror extravaganza combining film effects, stage props and actors in rubber suits in this salute to the B-movie.
## 5293 A Beverly Hills teen discovers his parents are part of a gruesome orgy cult for the social elite.
## 5294 Between his tax problems and his legal battle with his wife for the custody of his daughter, these are hard times for the action movie star who finds that even Steven Seagal has pinched a role from him! This fictionalized version of Jean-Claude Van Damme returns to the country of his birth to seek the peace and tranquility he can no longer enjoy in the United States, but inadvertently gets involved in a bank robbery with hostages.
## 5295 The Limey follows Wilson, a tough English ex-con who travels to Los Angeles to avenge his daughter's death. Upon arrival, Wilson goes to task battling Valentine and an army of L.A.'s toughest criminals, hoping to find clues and piece together what happened. After surviving a near-death beating, getting thrown from a building and being chased down a dangerous mountain road, the Englishman decides to dole out some bodily harm of his own.
## 5296 Johnny Truelove likes to see himself as tough. He's the son of an underworld figure and a drug dealer. Johnny also likes to get tough when things don't go his way. When Jake Mazursky fails to pay up for Johnny, things get worse for the Mazursky family, as Johnny and his 'gang' kidnap Jake's 15 year old brother and holds him hostage. Problem now is what to do with 'stolen boy?'
## 5297 As her friends prep for a Life Day holiday celebration, Rey journeys with BB-8 on a quest to gain a deeper knowledge of the Force at a mysterious Jedi Temple. There, she embarks on a cross-timeline adventure through beloved moments in Star Wars history, coming into contact with iconic heroes and villains from all eras of the saga. But will she make it back in time for the Life Day feast?
## 5298 Best friends Toni and Paul decide to relinquish all of their belongings for 100 days, whereby they receive one of their items back on each day. During this challenge the two realize, that the only thing they cannot be without is their friendship. A story about contemporary materialism and the quest for the truely important things in life.
## 5299 The Addams family's lives begin to unravel when they face-off against a treacherous, greedy crafty reality-TV host while also preparing for their extended family to arrive for a major celebration.
## 5300 A conservative Midwest businessman ventures into the sordid underworld of pornography in search for his runaway teenage daughter who’s making porno films in the pits of Los Angeles.
## 5301 Miriam promises her lovers the gift of eternal life, but John, her companion for centuries, suddenly discovers that he is getting old minute by minute, so he looks for Dr. Sarah Roberts, a researcher on the mechanisms of aging, and asks her for help.
## 5302 When governments fail to act on behalf of captive missionaries, ex-Green Beret John James Rambo sets aside his peaceful existence along the Salween River in a war-torn region of Thailand to take action. Although he's still haunted by violent memories of his time as a U.S. soldier during the Vietnam War, Rambo can hardly turn his back on the aid workers who so desperately need his help.
## 5303 Shigemori is a lawyer tasked with defending Misumi in a murder trial. Misumi has previous convictions for murder and has confessed to the crime, but evidence in the case leads to Shigemori having doubts about what really happened.
## 5304 God lives in Brussels. On Earth though, God is a coward, with pathetical morals and being odious with his family. His daughter, Ea, is bored at home and can't stand being locked up in a small apartment in ordinary Brussels, until the day she decides to revolt against her dad...
## 5305 Stranded on a mountain after a tragic plane crash, two strangers must work together to endure the extreme elements of the remote, snow-covered terrain. When they realize help is not coming, they embark on a perilous journey across hundreds of miles of wilderness, pushing each other to survive and discovering their inner strength.
## 5306 As an epidemic of a lethal airborne virus - that kills within days - rapidly grows, the worldwide medical community races to find a cure and control the panic that spreads faster than the virus itself.
## 5307 When a reporter goes undercover as a nanny to get the inside scoop on a playboy prince, she gets tangled in some royal intrigue and ends up finding love - but will she be able to keep up her lie?
## 5308 Suffering from acute kidney failure, Boonmee has chosen to spend his final days surrounded by his loved ones in the countryside. Surprisingly, the ghost of his deceased wife appears to care for him, and his long lost son returns home in a non-human form. Contemplating the reasons for his illness, Boonmee treks through the jungle with his family to a mysterious hilltop cave—the birthplace of his first life.
## 5309 At an exclusive country club, an ambitious young caddy, Danny Noonan, eagerly pursues a caddy scholarship in hopes of attending college and, in turn, avoiding a job at the lumber yard. In order to succeed, he must first win the favour of the elitist Judge Smails, and then the caddy golf tournament which Smails sponsors.
## 5310 When Patrizia Reggiani, an outsider from humble beginnings, marries into the Gucci family, her unbridled ambition begins to unravel the family legacy and triggers a reckless spiral of betrayal, decadence, revenge, and ultimately… murder.
## 5311 Based on the hit animated television series, this feature film adaptation tells the story of how Blossom, Bubbles and Buttercup - three exuberant young girls - obtain their unique powers, become superheroes and join forces to foil evil mutant monkey Mojo Jojo's plan to take over the world.
## 5312 This war drama depicts the U.S. and Japanese forces in the naval Battle of Midway, which became a turning point for Americans during World War II.
## 5313 Maverick old-guard coach Jimmy McGinty is hired in the wake of a players' strike to help the Washington Sentinels advance to the playoffs. But that impossible dream hinges on whether his replacements can hunker down and do the job. So, McGinty dusts off his secret dossier of ex-players who never got a chance (or screwed up the one they were given) and knits together a bad-dream team of guys who just may give the Sentinels their title shot.
## 5314 In the 28th century, Valerian and Laureline are special operatives charged with keeping order throughout the human territories. On assignment from the Minister of Defense, the two undertake a mission to Alpha, an ever-expanding metropolis where species from across the universe have converged over centuries to share knowledge, intelligence, and cultures. At the center of Alpha is a mysterious dark force which threatens the peaceful existence of the City of a Thousand Planets, and Valerian and Laureline must race to identify the menace and safeguard not just Alpha, but the future of the universe.
## 5315 Two women plot revenge against the woman marrying their friend's ex-boyfriend.
## 5316 Three generations of men, including a pervert that constantly seeks for new kinds of satisfaction, an obese speed eater and a passionate embalmer.
## 5317 Two street basketball hustlers try to con each other, then team up for a bigger score.
## 5318 Adapted from the video game series of the same name, NiNoKuni follows high school peers Yuu and Haru who must travel between two separate yet parallel worlds to help save their childhood friend, Kotona, whose life is in danger. In this magical quest complicated by love, the three teens will be tasked with making the ultimate choice.
## 5319 Following the disappearance of the glamorous and secretive Evelyne Ducat during a blizzard in the highlands of southern France, the lives of five people inextricably linked to Evelyne are brought together to devastating effect as the local police investigate the case.
## 5320 Years after walking away from her past as a teenage private eye, Veronica Mars gets pulled back to her hometown - just in time for her high school reunion - in order to help her old flame Logan Echolls, who's embroiled in a murder mystery.
## 5321 Zachary is 20 years old. Dark and independent, he collects amorous conquests and school failure. Sarah is 18 years old. First class, fragile, she fills her emotional gaps with perfect control of his life. Nothing should close and yet, the year of the tank, for six months, they will live a love against which nothing can be, the true, the big one that marks a life forever.
## 5322 Martin, a mercenary, is sent from Europe by an anonymous biotech company to the Tasmanian wilderness on a hunt for the last Tasmanian tiger.
## 5323 A Salem resident attempts to frame her ex-lover's wife for being a witch in the middle of the 1692 witchcraft trials.
## 5324 Tom Ludlow is a disillusioned L.A. Police Officer, rarely playing by the rules and haunted by the death of his wife. When evidence implicates him in the execution of a fellow officer, he is forced to go up against the cop culture he's been a part of his entire career, ultimately leading him to question the loyalties of everyone around him.
## 5325 A master thief coincidentally is robbing a house where a murder—in which the President of The United States is involved—occurs in front of his eyes. He is forced to run, while holding evidence that could convict the President.
## 5326 After his retirement is interrupted by Gorr the God Butcher, a galactic killer who seeks the extinction of the gods, Thor Odinson enlists the help of King Valkyrie, Korg, and ex-girlfriend Jane Foster, who now wields Mjolnir as the Mighty Thor. Together they embark upon a harrowing cosmic adventure to uncover the mystery of the God Butcher’s vengeance and stop him before it’s too late.
## 5327 Young history buff Kevin can scarcely believe it when six dwarfs emerge from his closet one night. Former employees of the Supreme Being, they've purloined a map charting all of the holes in the fabric of time and are using it to steal treasures from different historical eras. Taking Kevin with them, they variously drop in on Napoleon, Robin Hood and King Agamemnon before the Supreme Being catches up with them.
## 5328 After a long journey, Philip arrives at the Usher mansion seeking his loved one, Madeline. Upon arriving, however, he discovers that Madeline and her brother Roderick Usher have been afflicted with a mysterious malady: Roderick's senses have become painfully acute, while Madeline has become catatonic. That evening, Roderick tells his guest of an old Usher family curse: any time there has been more than one Usher child, all of the siblings have gone insane and died horrible deaths. As the days wear on, the effects of the curse reach their terrifying climax.
## 5329 Connie is a wife and mother whose 11-year marriage to Edward has lost its sexual spark. When Connie literally runs into handsome book collector Paul, he sweeps her into an all-consuming affair. But Edward soon becomes suspicious and decides to confront the other man.
## 5330 Space Pirate Captain Harlock and his fearless crew face off against the space invaders who seek to conquer the planet Earth.
## 5331 Solomon and Tummler are two teenagers killing time in Xenia, Ohio, a small town that has never recovered from the tornado that ravaged the community in the 1970s.
## 5332 A group of rambunctious toddlers travel a trip to Paris. As they journey from the Eiffel Tower to Notre Dame, they learn new lessons about trust, loyalty and love.
## 5333 When a disc containing memoirs of a former CIA analyst falls into the hands of gym employees, Linda and Chad, they see a chance to make enough money for Linda to have life-changing cosmetic surgery. Predictably, events whirl out of control for the duo, and those in their orbit.
## 5334 Stillman, a heartbroken physics student, builds a time machine when his girlfriend breaks up with him. Going back in time, he attempts to save their relationship by fixing every mistake he made—while dragging his best friend along in the process.
## 5335 Chev Chelios, a hit man wanting to go straight, lets his latest target slip away. Then he awakes the next morning to a phone call that informs him he has been poisoned and has only an hour to live unless he keeps adrenaline coursing through his body while he searches for an antidote.
## 5336 Guy is a young film executive who's willing to do whatever it takes to make it in Hollywood. He begins working for famed producer Buddy Ackerman, a domineering, manipulative, coldhearted boss. When Guy also finds out that his cynical girlfriend, Dawn, has been using sex as a career move, he reaches his limit. Guy decides to exact revenge on Buddy by kidnapping him and subjecting him to cruel and unusual punishment.
## 5337 Juliet Forrest is convinced that the reported death of her father in a mountain car crash was no accident. Her father was a prominent cheese scientist working on a secret recipe. To prove it was murder, she enlists the services of private eye Rigby Reardon. He finds a slip of paper containing a list of people who are 'The Friends and Enemies of Carlotta'.
## 5338 Members of a Yorkshire branch of the Women's Institute cause controversy when they pose nude for a charity calendar.
## 5339 During the Cold War, an American scientist appears to defect to East Germany as part of a cloak and dagger mission to find the formula for a resin solution, but the plan goes awry when his fiancee, unaware of his motivation, follows him across the border.
## 5340 Five years after their summer together in Barcelona, Xavier, William, Wendy, Martine and Isabelle reunite.
## 5341 Rescued as a child by the legendary assassin Moody and trained in the family business, Anna is the world’s most skilled contract killer. When Moody, the man who was like a father to her and taught her everything she needs to know about trust and survival, is brutally killed, Anna vows revenge. As she becomes entangled with an enigmatic killer whose attraction to her goes way beyond cat and mouse, their confrontation turns deadly and the loose ends of a life spent killing will weave themselves ever tighter.
## 5342 Matthias Le Goff, an Olympic champion at the end of his career, makes a homophobic statement on TV. His punishment: coach the Shiny Shrimps, a flamboyant and amateur gay water-polo team. They have only one thing in mind: to qualify for the Gay Games in Croatia where the hottest international LGBT athletes compete. It's the start of a bumpy and joyful ride - Faster, Higher, Stronger.
## 5343 A soldier introduces himself to the Peterson family, claiming to be a friend of their son who died in action. After the young man is welcomed into their home, a series of accidental deaths seem to be connected to his presence.
## 5344 The Brothers Bloom are the best con men in the world, swindling millionaires with complex scenarios of lust and intrigue. Now they've decided to take on one last job – showing a beautiful and eccentric heiress the time of her life with a romantic adventure that takes them around the world.
## 5345 When the Nazi high command learns in late 1943 that Winston Churchill will be spending time at a country estate in Norfolk, it hatches an audacious scheme to kidnap the prime minister and spirit him to Germany for enforced negotiations with Hitler.
## 5346 Seen-it-all New York detective Frank Keller is unsettled - he has done twenty years on the force and could retire, and he hasn't come to terms with his wife leaving him for a colleague. Joining up with an officer from another part of town to investigate a series of murders linked by the lonely hearts columns he finds he is getting seriously and possibly dangerously involved with Helen, one of the main suspects.
## 5347 A young woman decides to make positive changes in her life by training for the New York City Marathon.
## 5348 A stoner and his dealer are forced to go on the run from the police after the pothead witnesses a cop commit a murder.
## 5349 An American woman, trapped in Islamic Iran by her brutish husband, must find a way to escape with her daughter as well.
## 5350 A court-appointed legal guardian defrauds her older clients and traps them under her care. But her latest mark comes with some unexpected baggage.
## 5351 Tad dreams of becoming an archaeologist traveling the world, uncovering hidden secrets and lost treasure, but his job working construction keeps him daydreaming instead of exploring. The chance of a lifetime comes when he is invited to attend archaeologist Sara Lavrof's presentation of her latest discovery - the papyrus that proves the existence of the Necklace of Midas, the legendary King who turned everything he touched into solid gold.
## 5352 A violent gang enlists the help of a hypnotherapist in an attempt to locate a painting which somehow vanished in the middle of a heist.
## 5353 The Team Rocket leader, Giovanni, has found Mewtwo in a remote area of the Johto region. As Giovanni tries to re-capture Mewtwo, Ash and his friends are kidnapped by Domino, a new Team Rocket member, while trying to rescue Pikachu from Jessie and James. The Clone Pokemon are also captured and are then used as bait for Mewtwo. The situation then becomes a battle between the wills of Mewtwo and Giovanni; and Mewtwo also tries to discover if it and the clones have a purpose in life, even though they are products of science.
## 5354 A shy and mute seamstress goes insane after being attacked and raped twice in one day. She wanders the New York streets at night in a sexy black dress with her attacker's gun strapped to her garter belt, blowing away any man who tries to pick her up.
## 5355 Twins, separated at birth, end up as a Hong Kong gangster and a New York concert pianist. When the pianist travels to Hong Kong for a concert, the two inevitably get mistaken for each other.
## 5356 A small time delinquent, turned police mechanic for a go fast task force, is forced to defend his innocence when his mentor is killed by dirty cops.
## 5357 Harry Sanborn is an aged music industry exec with a fondness for younger women like Marin, his latest trophy girlfriend. Things get a little awkward when Harry suffers a heart attack at the home of Marin's mother, Erica. Left in the care of Erica and his doctor, a love triangle starts to take shape.
## 5358 A look at the life of French designer Yves Saint Laurent from the beginning of his career in 1958 when he met his lover and business partner, Pierre Berge.
## 5359 During a solo voyage in the Indian Ocean, a veteran mariner awakes to find his vessel taking on water after a collision with a stray shipping container. With his radio and navigation equipment disabled, he sails unknowingly into a violent storm and barely escapes with his life. With any luck, the ocean currents may carry him into a shipping lane -- but, with supplies dwindling and the sharks circling, the sailor is forced to face his own mortality.
## 5360 Paul is a U.S. truck driver working in Iraq. After an attack by a group of Iraqis he wakes to find he is buried alive inside a coffin. With only a lighter and a cell phone it's a race against time to escape this claustrophobic death trap.
## 5361 Once called "Father Frank" for his efforts to rescue lives, Frank Pierce sees the ghosts of those he failed to save around every turn. He has tried everything he can to get fired, calling in sick, delaying taking calls where he might have to face one more victim he couldn't help, yet cannot quit the job on his own.
## 5362 Raj is a Mafia member. One day he meet a girl (Meera) while chasing by his rival gang and falls in love with her. Later he finds out that this girl is the daughter of the leader of his rival gang. Yet their love story continues until he was shot by his girlfriend upon a deep misunderstanding. After that incident these two lovers lives separate until their siblings fallen in love. With this new love story their paths intertwines again.
## 5363 When his new album fails to sell records, pop/rap superstar Conner4real goes into a major tailspin and watches his celebrity high life begin to collapse. He'll try anything to bounce back, anything except reuniting with his old rap group The Style Boyz.
## 5364 A young wizard accidentally conjures a spell that puts her family in jeopardy.
## 5365 Steelhead is a Chinese labourer who comes to Japan hoping for a better life. Unable to find honest work and bullied into the shadows with his fellow Chinese illegal immigrants, he soon finds himself ascending as the boss of a black market mob. After providing a deadly service to a powerful Yakuza crime boss, Steelhead’s rise to mafia power spirals rapidly out of control as he’s given reign over the dangerous and lucrative Shinjuku district.
## 5366 Ben Stiller, Jack Black and Robert Downey Jr. lead an ensemble cast in 'Tropic Thunder,' an action comedy about a group of self-absorbed actors who set out to make the most expensive war film. After ballooning costs force the studio to cancel the movie, the frustrated director refuses to stop shooting, leading his cast into the jungles of Southeast Asia, where they encounter real bad guys.
## 5367 Ip Man's peaceful life in Foshan changes after Gong Yutian seeks an heir for his family in Southern China. Ip Man then meets Gong Er who challenges him for the sake of regaining her family's honor. After the Second Sino-Japanese War, Ip Man moves to Hong Kong and struggles to provide for his family. In the mean time, Gong Er chooses the path of vengeance after her father was killed by Ma San.
## 5368 A group of recruits go through Advanced Infantry Training at Fort Polk, Louisiana's infamous Tigerland, last stop before Vietnam for tens of thousands of young men in 1971.
## 5369 When a group of trespassing seniors swim in a pool containing alien cocoons, they find themselves energized with youthful vigor.
## 5370 Admiral Kirk and his bridge crew risk their careers stealing the decommissioned Enterprise to return to the restricted Genesis planet to recover Spock's body.
## 5371 Failing in his desperate efforts to find his beloved owner, an abandoned dog eventually joins a canine revolt leading a revolution against their human abusers.
## 5372 Now, we find the rowdy extraterrestrial getting used to life with his new ʻohana. However, a malfunction in the ultimate creation of Dr. Jumba soon emerges, which reinstates his destructive programming and threatens to both ruin his friendship with Lilo and to short him out for good!
## 5373 Alice, now 19 years old, returns to the whimsical world she first entered as a child and embarks on a journey to discover her true destiny.
## 5374 The CIA’s hunt is on for the mastermind of a wave of terrorist attacks. Roger Ferris is the agency’s man on the ground, moving from place to place, scrambling to stay ahead of ever-shifting events. An eye in the sky – a satellite link – watches Ferris. At the other end of that real-time link is the CIA’s Ed Hoffman, strategizing events from thousands of miles away. And as Ferris nears the target, he discovers trust can be just as dangerous as it is necessary for survival.
## 5375 Years have passed since the Three Musketeers, Aramis, Athos and Porthos, have fought together with their friend, D'Artagnan. But with the tyrannical King Louis using his power to wreak havoc in the kingdom while his twin brother, Philippe, remains imprisoned, the Musketeers reunite to abduct Louis and replace him with Philippe.
## 5376 One year after their incredible adventures in the Lion, the Witch and the Wardrobe, Peter, Edmund, Lucy and Susan Pevensie return to Narnia to aid a young prince whose life has been threatened by the evil King Miraz. Now, with the help of a colorful cast of new characters, including Trufflehunter the badger and Nikabrik the dwarf, the Pevensie clan embarks on an incredible quest to ensure that Narnia is returned to its rightful heir.
## 5377 Hubert is a French policeman with very sharp methods. After being forced to take 2 months off by his boss, who doesn't share his view on working methods, he goes back to Japan, where he used to work 19 years ago, to settle the probate of his girlfriend who left him shortly after marriage without a trace.
## 5378 An NYPD hostage negotiator teams up with a federal agent to rescue dozens of tourists held hostage during a 10-hour seige at the U.S. Federal Reserve.
## 5379 After a mysterious chest opens a gateway through time, teen gamer Jack is transported to an ancient empire terrorized by a cruel barbarian king. Jack will need all of his gaming skills as he battles to defeat the barbarian, protect a beautiful princess, and somehow find his way back home.
## 5380 After the murder of his beloved wife, a man in search of redemption is set adrift in a world where nothing is as it seems. On his journey, he befriends slacker Jimmy "The Finn", becomes involved in rescuing his neighbor Colette from her own demons, and gets entangled in a web of deceit full of unexpected twists and turns.
## 5381 Seven friends - three women and four men - meet for dinner. Everyone should put their cell phone on the table. No matter what message comes in - anyone can read it and listen to the phone calls. However, this leads to a lot of chaos.
## 5382 In the bleak days of the Cold War, espionage veteran George Smiley is forced from semi-retirement to uncover a Soviet mole within his former colleagues at the heart of MI6.
## 5383 Substance-addicted Hollywood actress, Suzanne Vale is on the skids. After a spell at a detox centre her film company insists as a condition of continuing to employ her that she live with her mother, herself once a star and now a champion drinker. Such a set-up is bad news for Suzanne who has struggled for years to get out of her mother's shadow, and who still treats her like a child. Despite these and other problems, Suzanne begins to see the funny side of her situation, and also realises that not only do daughters have mothers—mothers do too.
## 5384 A couple, cheated by a vile businessman, kidnap his wife in retaliation—without knowing that their enemy is delighted they did.
## 5385 Failed hockey player-turned-golf whiz Happy Gilmore -- whose unconventional approach and antics on the grass courts the ire of rival Shooter McGavin -- is determined to win a PGA tournament so he can save his granny's house with the prize money. Meanwhile, an attractive tour publicist tries to soften Happy's image.
## 5386 CIA Analyst Jack Ryan is drawn into an illegal war fought by the US government against a Colombian drug cartel.
## 5387 This film, adapted from a work of fiction by author Tracy Chevalier, tells a story about the events surrounding the creation of the painting "Girl With A Pearl Earring" by 17th century Dutch master Johannes Vermeer. A young peasant maid working in the house of painter Johannes Vermeer becomes his talented assistant and the model for one of his most famous works.
## 5388 In this animated tale, a tiny village is destroyed by a surging glacier, which serves as the deadly domain for the evil Ice Lord, Nekron. The only survivor is a young warrior, Larn, who vows to avenge this act of destruction. The evil continues, however, as Nekron's palace of ice heads straight towards Fire Keep, the great fortress ruled by the good King Jarol. When Jarol's beautiful daughter, Teegra, is abducted by Nekron's sub-human ape-like creatures, Larn begins a daring search for her. What results is a tense battle between good and evil, surrounded by the mystical elements of the ancient past.
## 5389 When straight arrow FBI agent Roy Clayton heads up the investigation into a dangerous international conspiracy, all clues seem to lead back to former U.S. Special Operations officer Samir Horn.
## 5390 A young boy and his friends face off against a mysterious grave robber known only as the Tall Man, who keeps a mysterious arsenal of terrible weapons with him.
## 5391 In 1818, high-spirited young Fanny Brawne finds herself increasingly intrigued by the handsome but aloof poet John Keats, who lives next door to her family friends the Dilkes. After reading a book of his poetry, she finds herself even more drawn to the taciturn Keats. Although he agrees to teach her about poetry, Keats cannot act on his reciprocated feelings for Fanny, since as a struggling poet he has no money to support a wife.
## 5392 Verona and Burt have moved to Colorado to be close to Burt's parents but, with Veronica expecting their first child, Burt's parents decide to move to Belgium, now leaving them in a place they hate and without a support structure in place. They set off on a whirlwind tour of of disparate locations where they have friends or relatives, sampling not only different cities and climates but also different families. Along the way they realize that the journey is less about discovering where they want to live and more about figuring out what type of parents they want to be.
## 5393 Holidaymakers arriving in a Club Med camp on the Ivory Coast are determined to forget their everyday problems and emotional disappointments. Games, competitions, outings, bathing and sunburn accompany a continual succession of casual affairs.
## 5394 A pastor preoccupied with writing the perfect sermon fails to realize that his wife is having an affair and his children are up to no good.
## 5395 Four mathematicians who do not know each other are invited by a mysterious host on the pretext of resolving a great enigma. The room in which they find themselves turns out to be a shrinking room that will crush them if they do not discover in time what connects them all and why someone might wish to murder them.
## 5396 Slacker duo Beavis and Butt-Head wake to discover their TV has been stolen. Their search for a new one takes them on a clueless adventure across America, during which they manage to accidentally become America's most wanted.
## 5397 A quartet of humanoid turtles, trained by their mentor in ninjitsu, must learn to work together to face the menace of Shredder and the Foot Clan.
## 5398 John Rambo is released from prison by the government for a top-secret covert mission to the last place on Earth he'd want to return - the jungles of Vietnam.
## 5399 A woman wakes in a cryogenic chamber with no recollection of how she got there, and must find a way out before running out of air.
## 5400 Lyndon B. Johnson's amazing 11-month journey from taking office after JFK's assassination, through the fight to pass the 1964 Civil Rights Act and his own presidential campaign, culminating on the night LBJ is actually elected to the office – no longer the 'accidental President.'
## 5401 Directed by August Blom.
## 5402 Meet a tiny girl named Thumbelina who lives in harmony with nature in the magical world of the Twillerbees that's hidden among the wildflowers. At the whim of a spoiled young girl named Makena, Thumbelina and her two friends have their patch of wildflowers uprooted and are transported to a lavish apartment in the city.
## 5403 A brief fling between a male disc jockey and an obsessed female fan takes a frightening, and perhaps even deadly turn when another woman enters the picture.
## 5404 A group of people are trapped in a West Berlin movie theater infested with ravenous demons who proceed to kill and possess the humans one-by-one, thereby multiplying their numbers.
## 5405 Teenager Winnie Foster is growing up in a small rural town in 1914 with her loving but overprotective parents, but Winnie longs for a life of greater freedom and adventure.
## 5406 A troubled man talks to his suicidal sister's psychiatrist about their family history and falls in love with her in the process.
## 5407 Wisecracking, gum-chewing 12-year-old Gilly is well known in the foster system. Totally unmanageable, she has stayed with more families than she can remember and has outwitted them all. After all, how can she settle down when her real mother, the beautiful and glamourous Courtney, might be out there waiting for her? When Gilly is sent to live with the Trotters, the weirdest family yet, she isn’t planning to stick around. But cheerful, affectionate Maime Trotter isn’t giving up on Gilly just yet...
## 5408 When the Davison family comes under attack during their wedding anniversary getaway, the gang of mysterious killers soon learns that one of their victims harbors a secret talent for fighting back.
## 5409 As Batman hunts for the escaped Joker, the Clown Prince of Crime attacks the Gordon family to prove a diabolical point mirroring his own fall into madness.
## 5410 Jack Harper is one of the last few drone repairmen stationed on Earth. Part of a massive operation to extract vital resources after decades of war with a terrifying threat known as the Scavs, Jack’s mission is nearly complete. His existence is brought crashing down when he rescues a beautiful stranger from a downed spacecraft. Her arrival triggers a chain of events that forces him to question everything he knows and puts the fate of humanity in his hands.
## 5411 A video game expert Alex Rogan finds himself transported to another planet after conquering The Last Starfighter video game only to find out it was just a test. He was recruited to join the team of best Starfighters to defend their world from the attack.
## 5412 Carlo, a former mobster, is abducted by five privileged young men desperate to raise a $2 million ransom to save the sister of a friend. As Carlo plays mind games, however, his captors splinter -- each wondering whether one of their own had a hand in the crime.
## 5413 Eric O'Neill, a computer specialist who wants to be made an agent is assigned to clerk for Robert Hanssen, a senior agent with 25 years in the FBI, and to write down everything Hanssen does. O'Neill's told it's an investigation of Hanssen's sexual habits, however Hanssen is really suspected of spying for the Soviet Union and Russia for years and being responsible for the deaths of agents working for the United States.
## 5414 When Sheriff Roy Pulsipher finds himself in the afterlife, he joins a special police force and returns to Earth to save humanity from the undead.
## 5415 Lisa Spinelli is a Staten Island teacher who is unusually devoted to her students. When she discovers one of her five-year-olds is a prodigy, she becomes fascinated with the boy, ultimately risking her family and freedom to nurture his talent.
## 5416 An exiled detective is recruited to solve a series of mysterious deaths that threaten to delay the inauguration of Empress Wu.A bizarre murder mystery brings together the most powerful woman in China, the soon-to-be-Empress Wu Zetian and a formerly exiled detective, Dee Renjie at the infamous Imperial Palace. Hoping he will solve the crime before her coronation, Wu appoints Dee Chief Judge of the Empire and implores him to combine his indisputable wisdom with his unparalleled martial arts skills to save the future of her dynasty. Director Tsui Hark (Seven Swords) teams with stunt director Sammo Hung in this heart-pounding, epic thriller inspired by the incredible true story of one of the Tang Dynasty's most celebrated officials.
## 5417 When Miley Stewart (aka pop-star Hannah Montana) gets too caught up in the superstar celebrity lifestyle, her dad decides it's time for a total change of scenery. But sweet niblets! Miley must trade in all the glitz and glamour of Hollywood for some ol' blue jeans on the family farm in Tennessee, and question if she can be both Miley Stewart and Hannah Montana.
## 5418 Minnie Goetze is a 15-year-old aspiring comic-book artist, coming of age in the haze of the 1970s in San Francisco. Insatiably curious about the world around her, Minnie is a pretty typical teenage girl. Oh, except that she’s sleeping with her mother’s boyfriend.
## 5419 Years after their teenage daughter’s death, Lois and Doug Riley, an upstanding Indiana couple, are frozen by estranging grief. Doug escapes to New Orleans on a business trip. Compelled by urgencies he doesn’t understand, he insinuates himself into the life of an underage hooker, becoming her platonic guardian.
## 5420 For decades, next-door neighbors and former friends John and Max have feuded, trading insults and wicked pranks. When an attractive widow moves in nearby, their bad blood erupts into a high-stakes rivalry full of naughty jokes and adolescent hijinks.
## 5421 When a promised job for Texan Michael fails to materialize in Wyoming, Mike is mistaken by Wayne to be the hitman he hired to kill his unfaithful wife, Suzanne. Mike takes full advantage of the situation, collects the money, and runs. During his getaway, things go wrong, and soon get worse when he runs into the real hitman, Lyle.
## 5422 In a far-future time ruled by the supernatural, a young girl requests the help of a vampire hunter to kill the vampire who has bitten her and thus prevent her from becoming a vampire herself.
## 5423 During routine manoeuvres near Hawaii in 1980, the aircraft-carrier USS Nimitz is caught in a strange vortex-like storm, throwing the ship back in time to 1941—mere hours before the Japanese attack on Pearl Harbor.
## 5424 Samuel Pierret is a nurse who saves the wrong guy – a thief whose henchmen take Samuel's pregnant wife hostage to force him to spring their boss from the hospital. A race through the subways and streets of Paris ensues, and the body count rises. Can Samuel evade the cops and the criminal underground and deliver his beloved to safety?
## 5425 Painter Francisco Goya becomes involved with the Spanish Inquisition after his muse, Inés, is arrested by the church for heresy. Her family turns to him, hoping that his connection with fanatical Inquisitor Lorenzo, whom he is painting, can secure her release.
## 5426 The lives of two struggling musicians, who happen to be brothers, inevitably change when they team up with a beautiful, up-and-coming singer.
## 5427 Upon moving into the run-down Spiderwick Estate with their mother, twin brothers Jared and Simon Grace, along with their sister Mallory, find themselves pulled into an alternate world full of faeries and other creatures.
## 5428 A successful woman in New York City finds her life upended when she is forced to confront a dark truth that threatens to unravel her meticulously crafted life.
## 5429 Inspector Amaia Salazar must return to the Baztan valley in order to solve a series of suicides that seem to follow a similar pattern.
## 5430 A mystical, ancient dagger causes a notorious serial killer to magically switch bodies with a 17-year-old girl.
## 5431 Private detective and former football player Harry Moseby gets hired on to what seems a standard missing person case, as a former Hollywood actress whose only major roles came thanks to being married to a studio mogul wants Moseby to find and return her daughter. Harry travels to Florida to find her, but he begins to see a connection between the runaway girl, the world of Hollywood stuntmen, and a suspicious mechanic when an unsolved murder comes to light.
## 5432 Phoenix cop Ben Shockley is well on his way to becoming a derelict when he is assigned to transport a witness from Las Vegas. The witness turns out to be a belligerent prostitute with mob ties—and incriminating information regarding a high-ranking figure.
## 5433 When Bobby's car breaks down in the desert while on the run from some of the bookies who have already taken two of his fingers, he becomes trapped in the nearby small town where the people are stranger than anyone he's encountered. After becoming involved with a young married woman, her husband hires Bobby to kill her. Later, she hires Bobby to kill the husband.
## 5434 Kika, a cute cosmetologist, prepares Ramon for funeral when he revives. He proposes to the much older Kika who has his dad as lover. Did Ramon's dad murder his mom? What about the escaped rapist and the Psychologist video reporter.
## 5435 Tess McGill is an ambitious secretary with a unique approach for climbing the ladder to success. When her classy, but villainous boss breaks a leg skiing, Tess takes over her office, her apartment and even her wardrobe. She creates a deal with a handsome investment banker that will either take her to the top, or finish her off for good.
## 5436 Jarhead is a film about a US Marine Anthony Swofford’s experience in the Gulf War. After putting up with an arduous boot camp, Swofford and his unit are sent to the Persian Gulf where they are eager to fight, but are forced to stay back from the action. Swofford struggles with the possibility of his girlfriend cheating on him, and as his mental state deteriorates, his desire to kill increases.
## 5437 A thriller set in New York City during the winter of 1981, statistically one of the most violent years in the city's history, and centered on the lives of an immigrant and his family trying to expand their business and capitalize on opportunities as the rampant violence, decay, and corruption of the day drag them in and threaten to destroy all they have built.
## 5438 In Colombia just after the Great War, an old man falls from a ladder; dying, he professes great love for his wife. After the funeral, a man calls on the widow - she dismisses him angrily. Flash back more than 50 years to the day Florentino Ariza, a telegraph boy, falls in love with Fermina Daza, the daughter of a mule trader.
## 5439 Police commissioner Funes and three researchers of supernatural phenomena investigate inexplicable events that are occurring in the suburbs of Buenos Aires.
## 5440 In this live-action adaptation of the beloved fairytale, old woodcarver Geppetto fashions a wooden puppet, Pinocchio, who magically comes to life. Pinocchio longs for adventure and is easily led astray, encountering magical beasts, fantastical spectacles, while making friends and foes along his journey. However, his dream is to become a real boy, which can only come true if he finally changes his ways.
## 5441 Margherita, a director in the middle of an existential crisis, has to deal with the inevitable and still unacceptable loss of her mother.
## 5442 Ren MacCormack is transplanted from Boston to the small southern town of Bomont where loud music and dancing are prohibited. Not one to bow to the status quo, Ren challenges the ban, revitalizing the town and falling in love with the minister’s troubled daughter Ariel in the process.
## 5443 When a disease turns all of humanity into the living dead, the last man on earth becomes a reluctant vampire hunter.
## 5444 A young man finds out that he holds the key to restoring hope and ensuring survival for the human race, while an alien species called the Drej are bent on mankind's destruction.
## 5445 A gangster on the run sacrifices everything for his family and a woman he meets while on the lam.
## 5446 Billie Holiday spent much of her career being adored by fans. In the 1940s, the government targeted Holiday in a growing effort to racialize the war on drugs, ultimately aiming to stop her from singing her controversial ballad, "Strange Fruit."
## 5447 Liam wakes from a car crash with no memory of who he is. As he makes his way into town to look for help, he finds only dead bodies, all with strange pale eyes. Liam's first assessment is that a virus is present in the air, but he soon discovers the horrible truth: anyone who comes within a 50-foot radius of him dies instantly.
## 5448 Kenny Wells, a modern-day prospector, hustler, and dreamer, is desperate for a lucky break. Left with few options, Wells teams up with an equally luckless geologist to execute a grandiose, last-ditch effort: to find gold deep in the uncharted jungle of Indonesia.
## 5449 Inventor Flint Lockwood creates a machine that makes clouds rain food, enabling the down-and-out citizens of Chewandswallow to feed themselves. But when the falling food reaches gargantuan proportions, Flint must scramble to avert disaster. Can he regain control of the machine and put an end to the wild weather before the town is destroyed?
## 5450 In the wake of a freak accident, Lance suffers the worst tragedy and the greatest opportunity of his life. He is suddenly faced with the possibility of fame, fortune and popularity, if he can only live with the knowledge of how he got there.
## 5451 A group of men who were clearing brush for the government arrive back in town, claiming that their friend was abducted by aliens. Nobody believes them, and despite a lack of motive and no evidence of foul play, their friends' disappearance is treated as murder.
## 5452 When a virus leaks from a top-secret facility, turning all resident researchers into ravenous zombies and their lab animals into mutated hounds from hell, the government sends in an elite military task force to contain the outbreak. Alice and Rain are charged with leading the mission. But they only have three hours before the pathogen becomes airborne and infects the world.
## 5453 After a failed assassination attempt, a soldier finds himself stranded in the desert. Exposed to the elements, he must survive the dangers of the desert and battle the psychological and physical toll of the treacherous conditions.
## 5454 Frustrated with her mundane life, a Tokyo office worker becomes obsessed with a fictional movie that she mistakes for a documentary. Fixating on a scene where stolen cash is buried in North Dakota, she travels to America to find it.
## 5455 A young boy learns that he has extraordinary powers and is not of this earth. As a young man, he journeys to discover where he came from and what he was sent here to do. But the hero in him must emerge if he is to save the world from annihilation and become the symbol of hope for all mankind.
## 5456 After telling the story of Flint's last journey to young Jim Hawkins, Billy Bones has a heart attack and dies just as Jim and his friends are attacked by pirates. The gang escapes into the town where they hire out a boat and crew to find the hidden treasure, which was revealed by Bones before he died. On their voyage across the seas, they soon find out that not everyone on board can be trusted.
## 5457 Dr. Louis Creed's family moves into the country house of their dreams and discover a pet cemetery at the back of their property. The cursed burial ground deep in the woods brings the dead back to life -- with "minor" problems. At first, only the family's cat makes the return trip, but an accident forces a heartbroken father to contemplate the unthinkable.
## 5458 From the 1960's to the 1980's, evangelist Jim Baker and his ambitious wife, Tammy Faye, rose from humble beginnings to to build an empire based on big-time evangelical Christianity--only for the couple to fall from grace because of some all-too-human sins.
## 5459 At Pacific Palisades High, a poor Latino falls hard for a troubled girl from the affluent neighborhood.
## 5460 When Camille falls ill, she is forced to live with Philibert and Franck.
## 5461 It took a lot of cajoling to get Bob, a recently widowed architect, to go on a blind date at a quirky Irish-Italian eatery. Once there, he's smitten instantly not with his date but with the sharp-witted waitress. Everything seems to be going great until an unbelievable truth is revealed, one that could easily break both of their hearts for good.
## 5462 An American teenager who is obsessed with Hong Kong cinema and kung-fu classics makes an extraordinary discovery in a Chinatown pawnshop: the legendary stick weapon of the Chinese sage and warrior, the Monkey King. With the lost relic in hand, the teenager unexpectedly finds himself travelling back to ancient China to join a crew of warriors from martial arts lore on a dangerous quest to free the imprisoned Monkey King.
## 5463 A European prince terrorizes the local peasantry while using his castle as a refuge against the "Red Death" plague that stalks the land. Restored in 2018 by the Academy Film Archive and The Film Foundation. Restoration funding provided by the Hobson/Lucas Family Foundation.
## 5464 The action continues from [REC], with the medical officer and a SWAT team outfitted with video cameras are sent into the sealed off apartment to control the situation.
## 5465 A washed-up musician teams up with a teacher and a kids show personality to protect young children from a sudden outbreak of zombies.
## 5466 Manji, a highly skilled samurai, becomes cursed with immortality after a legendary battle. Haunted by the brutal murder of his sister, Manji knows that only fighting evil will regain his soul. He promises to help a young girl named Rin avenge her parents, who were killed by a group of master swordsmen led by ruthless warrior Anotsu. The mission will change Manji in ways he could never imagine.
## 5467 Tracy, a lonely college freshman in New York, is rescued from her solitude by her soon-to-be stepsister Brooke, an adventurous gal about town who entangles her in alluringly mad schemes.
## 5468 Uptight and straight-laced, FBI Special Agent Sarah Ashburn is a methodical investigator with a reputation for excellence--and hyper-arrogance. Shannon Mullins, one of Boston P.D.'s "finest," is foul-mouthed and has a very short fuse, and uses her gut instinct and street smarts to catch the most elusive criminals. Neither has ever had a partner, or a friend for that matter. When these two wildly incompatible law officers join forces to bring down a ruthless drug lord, they become the last thing anyone expected: buddies.
## 5469 Five bored, occasionally high and always ineffective Vermont state troopers must prove their worth to the governor or lose their jobs. After stumbling on a drug ring, they plan to make a bust, but a rival police force is out to steal the glory.
## 5470 A criminal who runs a brothel becomes obsessed with a beautiful college student. When she rejects him he sets her up by introducing her to a loan shark and when she can't pay, she is forced into working in the brothel. But when she gets the chance to escape she realizes she cannot return to her former life.
## 5471 Five friends go for a break at a remote cabin, where they get more than they bargained for, discovering the truth behind the cabin in the woods.
## 5472 Samantha Caine, suburban homemaker, is the ideal mom to her 8 year old daughter Caitlin. She lives in Honesdale, PA, is a school teacher and makes the best Rice Krispie treats in town. But when she receives a bump on her head, she begins to remember small parts of her previous life as a lethal, top-secret agent.
## 5473 In the 23rd century, inhabitants of a domed city freely experience all of life's pleasures — but no one is allowed to live past 30. Citizens can try for a chance at being "renewed" in a civic ceremony on their 30th birthday. Escape is the only other option.
## 5474 London publicist Helen, effortlessly slides between parallel storylines that show what happens when she does or does not catch a train back to her apartment. Love. Romantic entanglements. Deception. Trust. Friendship. Comedy. All come into focus as the two stories shift back and forth, overlap and surprisingly converge.
## 5475 A hospice nurse working at a spooky New Orleans plantation home finds herself entangled in a mystery involving the house's dark past.
## 5476 May 1944, a group of French servicewomen and resistance fighters are enlisted into the British Special Operations Executive commando group under the command of Louise Desfontaines and her brother Pierre. Their mission, to rescue a British army geologist caught reconnoitering the beaches at Normandy.
## 5477 Several years after the tragic death of their little girl, a doll maker and his wife welcome a nun and several girls from a shuttered orphanage into their home, soon becoming the target of the doll maker's possessed creation—Annabelle.
## 5478 In a post-apocalyptic wasteland, an orphaned teen must battle a ruthless warlord to save the girl of his dreams.
## 5479 Since Charlie is no longer there, the lives of Boris, Elie, and Maxime have been torn apart. These three men, who have nothing in common, all shared one thing: their love for Charlie. One loved her like a sister, one loved her like the woman of his dreams, one loved her like a friend. Except that Charlie is dead and none of them - not Boris, an accomplished businessman, not Elie, a night owl scriptwriter, and not Maxime, still living at home with his mother - know how to deal with it. But because she asked them to do so, they abruptly decide to undertake a journey together, heading for Corsica and the house that Charlie loved so much. Except that here they are stuck in a car together for over 500 miles. It's going to be a long journey. Boris, Elie and Maxime, three men, three generations, no affinity. But by the time they arrive at their destination, they will have realized one majorly important thing: Charlie has changed their lives forever.
## 5480 A law student's theory about the recent deaths of two Supreme Court justices embroils her in a far-reaching web of murder, corruption, and greed.
## 5481 A rebellious teenager must travel the country with his sick grandpa to get to his basketball game.
## 5482 Teenage outsider Adam sets out on an epic and daring quest to uncover the mystery behind his long-lost dad, only to find out that he is none other than the legendary Bigfoot! He has been hiding deep in the forest for years to protect himself and his family from HairCo., a giant corporation eager to run scientific experiments with his special DNA. As father and son start making up for lost time after the boy's initial disbelief, Adam soon discovers that he too is gifted with superpowers beyond his imagination. But little do they know, HairCo. is on their tail as Adam's traces have led them to Bigfoot!
## 5483 After witnessing her parents’ murder as a child in Bogota, Cataleya Restrepo grows up to be a stone-cold assassin. She works for her uncle as a hitman by day, but her personal time is spent engaging in vigilante murders that she hopes will lead her to her ultimate target: the mobster responsible for her parents' death.
## 5484 Having recently witnessed the horrific results of a top secret project to bring the dead back to life, a distraught teenager performs the operation on his girlfriend after she's killed in a motorcycle accident.
## 5485 When she receives word that her longtime platonic pal Michael O'Neal is getting married to debutante Kimberly Wallace, food critic Julianne Potter realizes her true feelings for Michael -- and sets out to sabotage the wedding.
## 5486 A small circle of friends suffering from post-collegiate blues must confront the hard truth about life, love and the pursuit of gainful employment. As they struggle to map out survival guides for the future, the Gen-X quartet soon begins to realize that reality isn't all it's cracked up to be.
## 5487 After Will Spann's wife suddenly vanishes at a gas station, his desperate search to find her leads him down a dark path that forces him to run from authorities and take the law into his own hands.
## 5488 Tianhuo Island is a beautiful paradise. It almost makes people forget that it is located in the "Ring of Fire", the world-famous Pacific Rim volcanic belt. Young geologist Li Xiaomeng brings her team here to develop the first volcanic monitoring system, the Suzaku. Li Xiaomeng's father, Li Wentao, a volcanic expert who has retired for many years, rushes to the crater after learning about it, trying to persuade her to leave. At the same time, expedition expert Zheng Nan dives in the beautiful underwater cave, preparing to give his girlfriend Jiahui a romantic proposal. The volcano erupts, and the fate of these people are entangled. In order to see tomorrow, they must work together to find a way to survive.
## 5489 Noah spends the perfect first night with the girl of his dreams Avery but gets relegated to the friend zone. He spends the next three years wondering what went wrong - until he gets the unexpected chance to travel back in time and alter that night, and his fate, over and over again.
## 5490 Bubba Ho-tep tells the "true" story of what really did become of Elvis Presley. We find Elvis as an elderly resident in an East Texas rest home, who switched identities with an Elvis impersonator years before his "death," then missed his chance to switch back. He must team up with JFK and fight an ancient Egyptian mummy for the souls of their fellow residents.
## 5491 Pro quarter-back, Paul Crewe and former college champion and coach, Nate Scarboro are doing time in the same prison. Asked to put together a team of inmates to take on the guards, Crewe enlists the help of Scarboro to coach the inmates to victory in a football game 'fixed' to turn out quite another way.
## 5492 Lloyd and Harry are two men whose stupidity is really indescribable. When Mary, a beautiful woman, loses an important suitcase with money before she leaves for Aspen, the two friends (who have found the suitcase) decide to return it to her. After some "adventures" they finally get to Aspen where, using the lost money they live it up and fight for Mary's heart.
## 5493 Modern treasure hunters, led by archaeologist Ben Gates, search for a chest of riches rumored to have been stashed away by George Washington, Thomas Jefferson and Benjamin Franklin during the Revolutionary War. The chest's whereabouts may lie in secret clues embedded in the Constitution and the Declaration of Independence, and Gates is in a race to find the gold before his enemies do.
## 5494 A once-celebrated kid detective, now 31, continues to solve the same trivial mysteries between hangovers and bouts of self-pity. Until a naive client brings him his first 'adult' case, to find out who brutally murdered her boyfriend.
## 5495 Nothing is as it seems when a woman experiencing misgivings about her new boyfriend joins him on a road trip to meet his parents at their remote farm.
## 5496 A troubled woman living in an isolated community finds herself pulled between the control of her oppressive family and the allure of a secretive outsider suspected of a series of brutal murders.
## 5497 China's deadliest special forces operative settles into a quiet life on the sea. When sadistic mercenaries begin targeting nearby civilians, he must leave his newfound peace behind and return to his duties as a soldier and protector.
## 5498 Animal pals Alex, Marty, Melman, and Gloria are still trying to make it back to New York's Central Park Zoo. They are forced to take a detour to Europe to find the penguins and chimps who broke the bank at a Monte Carlo casino. When French animal-control officer Capitaine Chantel DuBois picks up their scent, Alex and company are forced to hide out in a traveling circus.
## 5499 Gib, a beer-guzzling slob, and Alison, an uptight Ivy-Leaguer, are an unlikely duo stuck together on a cross-country trip during Christmas break. At first they get on each other's nerves but, as time passes, they find their divergent natures complement each other. Now they need to realize what they've already found before it's too late.
## 5500 A man obsessed with conspiracy theories becomes a target after one of his theories turns out to be true. Unfortunately, in order to save himself, he has to figure out which theory it is.
## 5501 A thirteen-year-old French girl deals with moving to a new city and school in Paris, while at the same time her parents are getting a divorce.
## 5502 The story of Nobel Prize winner Marie Curie and her extraordinary scientific discoveries—through the prism of her marriage to husband Pierre—and the seismic and transformative effects their discovery of radium had on the 20th century.
## 5503 While standing in the doorway of the video shop where he works, Bazil is inadvertently shot in the head. Now homeless and jobless, he is taken in by a troupe of misfits who live in a giant mound of trash. There Bazil begins his quest for revenge against the people who produced the gun that shot him.
## 5504 On a high mountain plain lives a lamb with wool of such remarkable sheen that he breaks into high-steppin' dance. But there comes a day when he loses his lustrous coat and, along with it, his pride. It takes a wise jackalope - a horn-adorned rabbit - to teach the moping lamb that wooly or not, it's what's inside that'll help him rebound from life's troubles.
## 5505 John McClane is back and badder than ever, and this time he's working for Homeland Security. He calls on the services of a young hacker in his bid to stop a ring of Internet terrorists intent on taking control of America's computer infrastructure.
## 5506 Sent to Mexico to help take care of aging Father Benito, young Father Amaro faces a moral challenge when he meets a 16-year-old girl who he starts an affair with. Likewise, the girl's mother had been having an affair with Father Benito. Father Amaro must choose between a holy or sinful life.
## 5507 A former basketball all-star, who has lost his wife and family foundation in a struggle with addiction, attempts to regain his soul and salvation by becoming the coach of a disparate ethnically mixed high school basketball team at his alma mater.
## 5508 A young woman befriends a lonely widow who's harboring a dark and deadly agenda toward her.
## 5509 Rural England, 1865. Katherine, suffocated by her loveless marriage to a bitter man and restrained by his father's tyranny, unleashes an irresistible force within her, so powerful that she will stop at nothing to get what she wants.
## 5510 When Kylie Bucknell is sentenced to home detention, she's forced to come to terms with her unsociable behaviour, her blabbering mother and a hostile spirit who seems less than happy about the new living arrangement.
## 5511 After trying to rescue a man on the subway tracks, two teens wake up in a room dominated by a mysterious black sphere that sends them to hunt down and kill aliens hiding on Earth.
## 5512 Molly Gunn, the freewheeling daughter of a deceased rock legend, is forced to get a job when her manager steals her money. As nanny for precocious Ray, the oft ignored daughter of a music executive she learns what it means to be an adult while teaching Ray how to be a child.
## 5513 A look at a few chapters in the life of Poppy, a cheery, colorful, North London schoolteacher whose optimism tends to exasperate those around her.
## 5514 Brave new steps put Scott's career in jeopardy. With a new partner and determination, can he still succeed?
## 5515 Widowed U.S. president Andrew Shepherd, one of the world's most powerful men, can have anything he wants -- and what he covets most is Sydney Ellen Wade, a Washington lobbyist. But Shepherd's attempts at courting her spark wild rumors and decimate his approval ratings.
## 5516 In 1561, Mary Stuart, widow of the King of France, returns to Scotland, reclaims her rightful throne and menaces the future of Queen Elizabeth I as ruler of England, because she has a legitimate claim to the English throne. Betrayals, rebellions, conspiracies and their own life choices imperil both Queens. They experience the bitter cost of power, until their tragic fate is finally fulfilled.
## 5517 A 34 year old single woman, Nancy, hung-over again, exhausted by the endless fruitless set ups by her friends, traveling across London to toast another 10 years of her parent's successful happy magical marriage runs in with a 40 year old divorcee, Jack, who mistakes her for his 24 year old blind date. Nancy, deciding to go with it, happens to hop on the most chaotic yet hilarious journey of her life which neither of them will ever forget.
## 5518 Wimpy Greg Heffley, now in seventh grade, thinks he has it all together. He has mastered middle school and gotten rid of the Cheese Touch. However, Greg's older brother, Rodrick, is itching to cut him down to size. He gets the perfect opportunity when their mother tries to force the boys to bond. Rodrick may be Greg's chief tormentor, but he feels his constant pranks are just what his little brother needs to prepare him for life's hard knocks.
## 5519 On a rainy London night in 1946, novelist Maurice Bendrix has a chance meeting with Henry Miles, husband of his ex-mistress Sarah, who abruptly ended their affair two years before. Bendrix's obsession with Sarah is rekindled; he succumbs to his own jealousy and arranges to have her followed.
## 5520 Poindexter "Fool" Williams, his brother Leroy, and their family face eviction from their rented home in South Central Los Angeles. Their landlords are a greedy, uncaring couple who live in a mansion that's as huge as it is eerie. Leroy has a plan to burglarize the mansion, but what the boys find inside is not what they expected.
## 5521 A gangster, Nino, is in the Cash Money Brothers, making a million dollars every week selling crack. A cop, Scotty, discovers that the only way to infiltrate the gang is to become a dealer himself.
## 5522 An ex-convict (Tyrese) gets tangled up with a gang after his car is hijacked with his son inside.
## 5523 Out-of-control, trash-talking buddy cops Marcus Burnett and Mike Lowrey of the Miami Narcotics Task Force reunite, and bullets fly, cars crash and laughs explode as they pursue a whacked-out drug lord from the streets of Miami to the barrios of Cuba. But the real fireworks result when Marcus discovers that playboy Mike is secretly romancing Marcus’ sexy sister.
## 5524 The Double Deuce is the meanest, loudest and rowdiest bar south of the Mason-Dixon Line, and Dalton has been hired to clean it up. He might not look like much, but the Ph.D.-educated bouncer proves he's more than capable -- busting the heads of troublemakers and turning the roadhouse into a jumping hot-spot. But Dalton's romance with the gorgeous Dr. Clay puts him on the bad side of cutthroat local big shot Brad Wesley.
## 5525 The story, set in 1885, follows a British officer (Heath Ledger) who resigns his post when he learns of his regiment's plan to ship out to the Sudan for the conflict with the Mahdi. His friends and fiancée send him four white feathers which symbolize cowardice. To redeem his honor he disguises himself as an Arab and secretly saves the lives of those who branded him a coward.
## 5526 An American journalism student in London scoops a big story, and begins an affair with an aristocrat as the incident unfurls.
## 5527 A summer fling born under the Sicilian sun quickly develops into a heartbreaking love story that forces a boy and girl to grow up too quickly.
## 5528 After saving the life of their heir apparent, tenacious loner Snake Eyes is welcomed into an ancient Japanese clan called the Arashikage where he is taught the ways of the ninja warrior. But, when secrets from his past are revealed, Snake Eyes' honor and allegiance will be tested – even if that means losing the trust of those closest to him.
## 5529 A woman's seaside vacation takes a dark turn when her obsession with a young mother forces her to confront secrets from her past.
## 5530 Alex Truelove is on a quest to lose his virginity, an event eagerly awaited by his patient girlfriend and cheered on with welcome advice by his rowdy friends. But Alex, a super gregarious dude, is oddly unmotivated. A magical house party throws Alex into the presence of Elliot, a hunky college guy, who pegs Alex as gay and flirts hard. Alex is taken aback but after a series of setbacks on the girlfriend front he takes the plunge and learns some interesting new facts about himself.
## 5531 Suzanne Stone wants to be a world-famous news anchor and she is willing to do anything to get what she wants. What she lacks in intelligence, she makes up for in cold determination and diabolical wiles. As she pursues her goal with relentless focus, she is forced to destroy anything and anyone that may stand in her way, regardless of the ultimate cost or means necessary.
## 5532 The Candyman, a murderous soul with a hook for a hand, is accidentally summoned to reality by a skeptic grad student researching the monster's myth.
## 5533 The story of Oscar Wilde, genius, poet, playwright and the First Modern Man. The self-realisation of his homosexuality caused Wilde enormous torment as he juggled marriage, fatherhood and responsibility with his obsessive love for Lord Alfred Douglas.
## 5534 The reinvigorated elderly group that left Earth comes back to visit their relatives. Will they all decide to go back to the planet where no one grows old, or will they be tempted to remain on Earth?
## 5535 The inhabitants of the British Isles have lost their battle against the onslaught of disease, as the deadly rage virus has killed every citizen there. Six months later, a group of Americans dare to set foot on the isles, convinced the danger has come and gone. But it soon becomes all too clear that the scourge continues to live, waiting to pounce on its next victims.
## 5536 Sophie and Vincent’s small butcher shop is on the brink of bankruptcy and their marriage is falling apart. Their lives are turned upside down when Vincent accidentally kills a vegan activist who vandalized their shop. Overwhelmed and terrified of being accused of murder, their only solution is to get rid of the body by turning it into ham. To their surprise the ham is so popular that it may save their business… that is if they’re ready to keep “hunting"!
## 5537 The story of Rudolf Nureyev, whose escape to the West stunned the world at the height of the Cold War. With his magnetic presence, Nureyev emerged as ballet’s most famous star, a wild and beautiful dancer limited by the world of 1950s Leningrad. His flirtation with Western artists and ideas led him into a high-stakes game of cat and mouse with the KGB.
## 5538 Based on the classic novel by Orson Scott Card, Ender's Game is the story of the Earth's most gifted children training to defend their homeplanet in the space wars of the future.
## 5539 Nazi skinheads in Melbourne take out their anger on local Vietnamese, who are seen as threatening racial purity. Finally the Vietnamese have had enough and confront the skinheads in an all-out confrontation, sending the skinheads running. A woman who is prone to epileptic seizures joins the skins' merry band, and helps them on their run from justice, but is her affliction also a sign of impurity?
## 5540 A retired businesswoman – who tries to control everything around her – decides to write her own obituary. A young journalist takes up the task of finding out the truth, and the result is a life-altering friendship.
## 5541 Psychiatrist Sam Foster has a new patient, Henry Letham, who claims to be suicidal. In trying to diagnose him, Sam visits Henry's prior therapist and also finds Henry's mother -- even though Henry has said that he murdered both of his parents. As reality starts to contradict fact, Sam spirals into an unstable mental state. Then he finds a clue as to how and when Henry may try to kill himself, and races to try to stop him.
## 5542 Rhode Island State Trooper Charlie Baileygates has a multiple personality disorder. One personality is crazy and aggressive, while the other is more friendly and laid back. Both of these personalities fall in love with the same woman named Irene after Charlie loses his medication.
## 5543 On Halloween night, a young woman finds herself as the obsession of a sadistic murderer known as Art the Clown.
## 5544 Rahul embarks on a journey to a small town in Tamil Nadu to fulfill the last wish of his grandfather: to have his ashes immersed in the Holy water of Rameshwaram. En route, he meets a woman hailing from a unique family down South. As they find love through this journey in the exuberant lands of South India, an unanticipated drive awaits them.
## 5545 When a gunman takes five lives with six shots, all evidence points to the suspect in custody. On interrogation, the suspect offers up a single note: "Get Jack Reacher!" So begins an extraordinary chase for the truth, pitting Jack Reacher against an unexpected enemy, with a skill for violence and a secret to keep.
## 5546 Two women, Nic and Jules, brought a son and daughter into the world through artificial insemination. When one of their children reaches age, both kids go behind their mothers' backs to meet with the donor. Life becomes so much more interesting when the father, two mothers and children start to become attached to each other.
## 5547 The beautiful princess Odette is transformed into a swan by an evil sorcerer's spell. Held captive at an enchanted lake, she befriends Jean-Bob the frog, Speed the turtle and Puffin the bird. Despite their struggle to keep the princess safe, these good-natured creatures can do nothing about the sorcerer's spell, which can only be broken by a vow of everlasting love.
## 5548 An egotistical saxophone player and a young singer meet on V-J Day and embark upon a strained and rocky romance, even as their careers begin a long uphill climb.
## 5549 Robin Hood comes home after fighting in the Crusades to learn that the noble King Richard is in exile and that the despotic King John now rules England, with the help of the Sheriff of Rottingham. Robin Hood assembles a band of fellow patriots to do battle with King John and the Sheriff.
## 5550 A coroner finds a capsule in the head of a heavily mutilated corpse, containing a phone number and single word: the name of his daughter.
## 5551 Yale University, 1961. Stanley Milgram designs a psychology experiment that still resonates to this day, in which people think they’re delivering painful electric shocks to an affable stranger strapped into a chair in another room. Despite his pleads for mercy, the majority of subjects don’t stop the experiment, administering what they think is a near-fatal electric shock, simply because they’ve been told to do so. With Nazi Adolf Eichmann’s trial airing in living rooms across America, Milgram strikes a nerve in popular culture and the scientific community with his exploration into people’s tendency to comply with authority. Celebrated in some circles, he is also accused of being a deceptive, manipulative monster, but his wife Sasha stands by him through it all.
## 5552 The Coast Guard makes a daring rescue attempt off the coast of Cape Cod after a pair of oil tankers are destroyed during a blizzard in 1952.
## 5553 Lilo, Stitch, Jumba, and Pleakley have finally caught all of Jumba's genetic experiments and found the one true place where each of them belongs. Stitch, Jumba and Pleakley are offered positions in the Galactic Alliance, turning them down so they can stay on Earth with Lilo, but Lilo realizes her alien friends have places where they belong – and it's finally time to say "aloha".
## 5554 A collection of seven vignettes, which each address a question concerning human sexuality. From aphrodisiacs to sexual perversion to the mystery of the male orgasm, characters like a court jester, a doctor, a queen and a journalist adventure through lab experiments and game shows, all seeking answers to common questions that many would never ask.
## 5555 Six actors portray six personas of music legend Bob Dylan in scenes depicting various stages of his life, chronicling his rise from unknown folksinger to international icon and revealing how Dylan constantly reinvented himself.
## 5556 When three women living on the edge of the American frontier are driven mad by harsh pioneer life, the task of saving them falls to the pious, independent-minded Mary Bee Cuddy. Transporting the women by covered wagon to Iowa, she soon realizes just how daunting the journey will be, and employs a low-life drifter, George Briggs, to join her. The unlikely pair and the three women head east, where a waiting minister and his wife have offered to take the women in. But the group first must traverse the harsh Nebraska Territories marked by stark beauty, psychological peril and constant threat.
## 5557 Carla Moran, a hard-working single mother, is raped in her bedroom by someone — or something — that she cannot see. Despite skeptical psychiatrists, she is repeatedly attacked by this invisible force. Could this be a case of hysteria or something more horrific?
## 5558 Naruto, Shikamaru, and Sakura are executing their mission of delivering a lost pet to a certain village. However, right in the midst of things, troops led by the mysterious knight, Temujin, attack them. In the violent battle, the three become separated. Temujin challenges Naruto to a fight and at the end of the fierce battle, both fall together from a high cliff...
## 5559 A New York writer on sex and love is finally getting married to her Mr. Big. But her three best girlfriends must console her after one of them inadvertently leads Mr. Big to jilt her.
## 5560 Now 25, brilliant Marta seems to have her whole life ahead after majoring in philosophy, but she has to face the ugly truth for young graduates in Italy: a complete lack of work opportunities outside of temp jobs. While babysitting for single mother Sonia, she starts to work at the call center of a company selling junk to housewives, quickly rising through its ranks and experiencing first-hand the fanatical and exploitative competition culture pushed on young employees. Around her revolve other people, like delusional supervisor Daniela, her boss Claudio, fragile coworker Lucio, and well-meaning but inconsistent union official Giorgio.
## 5561 Ash, Pikachu and his friends try and stop a pair of thieves hiding out in the canals and alleyways of Altomare, the age-old water capital. Joining the adventure are two new legendary Pokémon, a pair of siblings named Latias and Latios, who serve as peacekeepers and protectors of the Soul Dew - a priceless treasure with a mysterious power.
## 5562 A single mother and her slacker sister find an unexpected way to turn their lives around in the off-beat dramatic comedy. In order to raise the tuition to send her young son to private school the mom starts an unusual business – a biohazard removal/crime scene clean-up service.
## 5563 When 54 high school girls throw themselves in front of a subway train it appears to be only the beginning of a string of suicides around the country. Does the new all-girl group Desert have anything to do with it? Detective Kuroda tries to find the answer, which isn't as simple as he had hoped.
## 5564 Two New York cops get involved in a gang war between members of the Yakuza, the Japanese Mafia. They arrest one of their killers and are ordered to escort him back to Japan. However, in Japan he manages to escape, and as they try to track him down, they get deeper and deeper into the Japanese Mafia scene and they have to learn that they can only win by playing the game—the Japanese way.
## 5565 A legendary secret service agent comes out of hiding and returns to France to help the son he's never met get out of trouble.
## 5566 CW Briggs is a veteran insurance investigator, with many successes. Betty Ann Fitzgerald is a new employee in the company he works for, with the task of reorganizing the office. They don't like each other - or at least that's what they think. During a night out with the rest of the office employees, they go to watch Voltan, a magician who secretly hypnotizes both of them.
## 5567 As a serial killer stalks the city, Julia — a young actress who just moved to town with her husband — notices a mysterious stranger watching her from across the street.
## 5568 A playboy has the tables turned on him when he finds himself being used as a plaything by an undesirable woman.
## 5569 Six Californians start a club to discuss the works of Jane Austen. As they delve into Austen's literature, the club members find themselves dealing with life experiences that parallel the themes of the books they are reading.
## 5570 In the combustible action franchise's final installment, maverick detectives Martin Riggs and Roger Murtaugh square off against Asian mobster Wah Sing Ku, who's up to his neck in slave trading and counterfeit currency. With help from gumshoe Leo Getz and smart-aleck rookie cop Lee Butters, Riggs and Murtaugh aim to take down Ku and his gang.
## 5571 For Ted, prom night went about as bad as it’s possible for any night to go. Thirteen years later, he finally gets another chance with his old prom date, only to run up against other suitors including the sleazy detective he hired to find her.
## 5572 A woman turns to prescription medication as a way of handling her anxiety concerning her husband's upcoming release from prison.
## 5573 George, a lonely and fatalistic teen who's made it all the way to his senior year without ever having done a real day of work, is befriended by Sally, a popular but complicated girl who recognizes in him a kindred spirit.
## 5574 Mary Surratt is the lone female charged as a co-conspirator in the assassination trial of Abraham Lincoln. As the whole nation turns against her, she is forced to rely on her reluctant lawyer to uncover the truth and save her life.
## 5575 In Santiago, Chile, the schoolteacher Luisa proposes a debate about sex with the parents of her students with the intention of giving classes about sex education to the youngsters.
## 5576 When her social-climbing father is relocated from small-town North to his native Rome, 12-year-old Caterina enrolls to his old school, finding herself in an completely different environment where students rigidly divide themselves in subcultures based on social class and their parents' political affiliation.
## 5577 As World War II rages, the elite Sixth Ranger Battalion is given a mission of heroic proportions: push 30 miles behind enemy lines and liberate over 500 American prisoners of war.
## 5578 Cristina is a rich, spoiled princess visiting Rome with her royal parents. The mission of their visit is to marry her off to a super-wealthy corporate type and thereby start to turn around the losses their small kingdom is experiencing in its casino business. These less-than-noble intentions get derailed when Barnaba, a zany bus driver enters their lives and falls madly in love with the gorgeous Cristina. He is nuts enough to succeed in this romantic chase after royalty, as love seems to fuel his determination to rid Cristina of her elitism and to make her see his own irrepressible attractions.
## 5579 A mentally disturbed man takes residence in a halfway house. His mind gradually slips back into the realm created by his illness, where he replays a key part of his childhood.
## 5580 Set in northern Australia before World War II, an English aristocrat who inherits a sprawling ranch reluctantly pacts with a stock-man in order to protect her new property from a takeover plot. As the pair drive 2,000 head of cattle over unforgiving landscape, they experience the bombing of Darwin by Japanese forces firsthand.
## 5581 As a renowned producer and close associate of Dan Rather, Mary Mapes believes she’s broken the biggest story of the 2004 election: revelations of a sitting U.S. President’s military service. But when allegations come pouring in, sources change their stories, document authenticity is questioned, and the casualties begin to mount.
## 5582 Xavier is a 40-year-old father of two who still finds life very complicated. When the mother of his children moves to New York, he can't bear them growing up far away from him and so he decides to move there as well.
## 5583 Meet Joel Goodson, an industrious, college-bound 17-year-old and a responsible, trustworthy son. However, when his parents go away and leave him home alone in the wealthy Chicago suburbs with the Porsche at his disposal he quickly decides he has been good for too long and it is time to enjoy himself. After an unfortunate incident with the Porsche Joel must raise some cash, in a risky way.
## 5584 After his wife falls under the influence of a drug dealer, an everyday guy transforms himself into Crimson Bolt, a superhero with the best intentions, though he lacks for heroic skills.
## 5585 Three friends attempt to recapture their glory days by opening up a fraternity near their alma mater.
## 5586 When a devastating attack shatters Mark Hogancamp and wipes away all memories, no one expected recovery. Putting together pieces from his old and new life, Mark meticulously creates a wondrous town named Marwen where he can heal and be heroic. As he builds an astonishing art installation — a testament to the most powerful women he knows — through his fantasy world, he draws strength to triumph in the real one.
## 5587 Raised by her father, an ex-CIA agent, in the wilds of Finland, Hanna's upbringing has been geared to making her the perfect assassin. Sent into the world by her father on a mission, Hanna journeys across Europe, eluding agents dispatched after her by a ruthless intelligence operative. As she nears her ultimate target, Hanna faces startling revelations about her existence.
## 5588 Jake Huard, from a shipbuilders family, promised his dying mother he'ld make it to Anapolis Naval Academy. Thanks to tenaciously bugging a Congressman, he's selected despite dubious grades. Once inside, Jake soon proves sub-standard academically. Constantly challenged to his limits, repeatedly made the 'over-cocky' reason for the entire class to suffer, Jake nearly quits, but after facing his utterly un-supportive father's gloating returns just in time. Stubborn Jake finds support withs mates as well as Senor Ali, his lover-to-be, and a discipline he may excel in: the 'brigade' boxing tournament, open to all ranks.
## 5589 Two friends hired to police a small town that is suffering under the rule of a rancher find their job complicated by the arrival of a young widow.
## 5590 A trailer is burning in the middle of a plain. The bodies of two adulterous lovers are found. Scenes from both families, before and after the dramatic events, suggest an unusual connection between them. But what is their secret?
## 5591 After a bizarre and near fatal encounter with a serial killer, a newswoman is sent to a rehabilitation center whose inhabitants may not be what they seem.
## 5592 Tracy is a normal 13-year-old trying to make it in school. After befriending the most popular girl at school, Evie, Tracy's world is turned upside down when Evie introduces her to a world of sex, drugs and cash. But it isn't long before Tracy's new world and attitude finally takes a toll on her, her family, and old friends.
## 5593 Troy, the popular captain of the basketball team, and Gabriella, the brainy and beautiful member of the academic club, break all the rules of East High society when they secretly audition for the leads in the school's musical. As they reach for the stars and follow their dreams, everyone learns about acceptance, teamwork, and being yourself.
## 5594 The Fellowship of the Ring embark on a journey to destroy the One Ring and end Sauron's reign over Middle-earth.
## 5595 Cairo, 2011. A police officer investigates the murder of a woman in a luxurious hotel in the days leading up to the Egyptian revolution.
## 5596 Beatrix Potter, the author of the beloved children's book "The Tale of Peter Rabbit", struggles for love, happiness and success.
## 5597 Mort Rainey, a writer just emerging from a painful divorce with his ex-wife, is stalked at his remote lake house by a psychotic stranger and would-be scribe who claims Rainey swiped his best story idea. But as Rainey endeavors to prove his innocence, he begins to question his own sanity.
## 5598 At the dawn of the space-race, two radio-obsessed teens discover a strange frequency over the airwaves in what becomes the most important night of their lives and in the history of their small town.
## 5599 In 1981, an enthusiastic young adventurer follows his dreams into the Bolivian Amazon jungle with two friends and a guide with a mysterious past. Their journey quickly turns into a terrifying ordeal as the darkest elements of human nature and the deadliest threats of the wilderness lead to an all-out fight for survival.
## 5600 In a remote woodland cabin, a small town doctor discovers Nell — a beautiful young hermit woman with many secrets.
## 5601 A young man from a modest family gets the chance of a lifetime to reveal his hidden talent for piano but can he find the strength and courage to live up to the challenge?
## 5602 Two brothers live in the economically-depressed Rust Belt, when a cruel twist of fate lands one in prison. His brother is then lured into one of the most violent crime rings in the Northeast.
## 5603 New York, 1929, a war rages between two rival gangsters, Fat Sam and Dandy Dan. Dan is in possession of a new and deadly weapon, the dreaded "splurge gun". As the custard pies fly, Bugsy Malone, an all-round nice guy, falls for Blousey Brown, a singer at Fat Sam's speakeasy. His designs on her are disrupted by the seductive songstress Tallulah who wants Bugsy for herself.
## 5604 The true story of Andrea and Franco Antonello, a father and autistic son who traveled by motorbike for three months between the United States and South America.
## 5605 Puss in Boots is on a mission to recover the Princess' stolen ruby from the notorious French thief, Whisperer. Reluctantly accompanied by three little kittens, Three Diablos, Puss must tame them before they endanger the mission.
## 5606 A blind Vietnam vet, trained as a swordfighter, comes to America and helps to rescue the son of a fellow soldier.
## 5607 A timid, nearsighted chemistry teacher discovers a magical potion that can transform him into a suave and handsome Romeo. The Jekyll and Hyde game works well enough until the concoction starts to wear off at the most embarrassing times.
## 5608 It's almost graduation day for high school seniors Troy, Gabriella, Sharpay, Chad, Ryan and Taylor — and the thought of heading off in separate directions after leaving East High has these Wildcats thinking they need to do something they'll remember forever. Together with the rest of the Wildcats, they stage a spring musical reflecting their hopes and fears about the future and their unforgettable experiences growing up together. Will their final show break them apart or bring them together for the greatest moment in Wildcat history?
## 5609 After a teenager has a terrifying vision of him and his friends dying in a plane crash, he prevents the accident only to have Death hunt them down, one by one.
## 5610 There is just one week until Kate Mercer's 45th wedding anniversary and the planning for the party is going well. But then a letter arrives for her husband. The body of his first love has been discovered, frozen and preserved in the icy glaciers of the Swiss Alps. By the time the party is upon them, five days later, there may not be a marriage left to celebrate.
## 5611 James Bond tracks his archnemesis, Ernst Blofeld, to a mountaintop retreat in the Swiss alps where he is training an army of beautiful, lethal women. Along the way, Bond falls for Italian contessa Tracy Draco, and marries her in order to get closer to Blofeld.
## 5612 Two policemen, one an old-timer, the other his volatile younger partner, find themselves suspended when a video of their strong-arm tactics becomes the media's cause du jour. Low on cash and with no other options, these two embittered soldiers descend into the criminal underworld to gain their just due, but instead find far more than they wanted awaiting them in the shadows.
## 5613 In Los Angeles at the turn of the 1970s, drug-fueled detective Larry "Doc" Sportello investigates the disappearance of an ex-girlfriend.
## 5614 In small-town Texas, affable and popular mortician Bernie Tiede strikes up a friendship with Marjorie Nugent, a wealthy widow well known for her sour attitude. When she becomes controlling and abusive, Bernie goes to great lengths to remove himself from her grasp.
## 5615 Even though he's 35, Alex acts more like he's 13, spending his days as the world's oldest video game tester and his evenings developing the next big Xbox game. But when he gets kicked out of his apartment, he's forced to move in with his grandmother.
## 5616 A prim and proper schoolgirl goes against her grandmother's wishes when she dates a motorcycle-riding juvenile delinquent.
## 5617 A passionate telling of the story of Sada Abe, a woman whose affair with her master led to an obsessive and ultimately destructive sexual relationship.
## 5618 On Christmas eve, Serge is the only on-call emergency doctor available. Struck by a crippling back-ache, he gets help from a pizza delivery boy who will need to step in the doctor's shoes.
## 5619 In the near future, a popular uprising in Mexico City interrupts a wedding held at the home of a wealthy family. After the riots have been quashed, they discover the bride has gone missing and plea with the military to help locate her.
## 5620 An epic fantasy adventure based on the timeless Arthurian legend, The Green Knight tells the story of Sir Gawain, King Arthur's reckless and headstrong nephew, who embarks on a daring quest to confront the eponymous Green Knight, a gigantic emerald-skinned stranger and tester of men.
## 5621 After reckless young lawyer Gordon Bombay gets arrested for drunk driving, he must coach a kids hockey team for his community service. Gordon has experience on the ice, but isn't eager to return to hockey, a point hit home by his tense dealings with his own former coach, Jack Reilly. The reluctant Gordon eventually grows to appreciate his team, which includes promising young Charlie Conway, and leads them to take on Reilly's tough players.
## 5622 Chaos reigns at the natural history museum when night watchman Larry Daley accidentally stirs up an ancient curse, awakening Attila the Hun, an army of gladiators, a Tyrannosaurus rex and other exhibits.
## 5623 Through a series of daring escapades deep within a dark and dangerous criminal underworld, Han Solo meets his mighty future copilot Chewbacca and encounters the notorious gambler Lando Calrissian.
## 5624 An enigmatic vagrant cons himself into the home life of an arrogant upper-class family, turning their lives into a psychological nightmare in the process.
## 5625 Three young women vacationing in Paris find themselves whisked away to Monte Carlo after one of the girls is mistaken for a British heiress.
## 5626 A female executive and a night janitor conspire to commit a daring diamond heist from their mutual employer, The London Diamond Corporation.
## 5627 Timon the meerkat and Pumbaa the warthog are best pals and the unsung heroes of the African savanna. This prequel to the smash Disney animated adventure takes you back -- way back -- before Simba's adventure began. You'll find out all about Timon and Pumbaa and tag along as they search for the perfect home and attempt to raise a rambunctious lion cub.
## 5628 After failing to kill stubborn survivor Laurie and taking a bullet or six from former psychiatrist Dr. Sam Loomis, Michael Myers has followed Laurie to the Haddonfield Memorial Hospital, where she's been admitted for Myers' attempt on her life. The institution proves to be particularly suited to serial killers, however, as Myers cuts, stabs and slashes his way through hospital staff to reach his favorite victim.
## 5629 Harlem's legendary Cotton Club becomes a hotbed of passion and violence as the lives and loves of entertainers and gangsters collide.
## 5630 While racing to a boxing match, Frank, Mike, John and Rey get more than they bargained for. A wrong turn lands them directly in the path of Fallon, a vicious, wise-cracking drug lord. After accidentally witnessing Fallon murder a disloyal henchman, the four become his unwilling prey in a savage game of cat and mouse as they are mercilessly stalked through the urban jungle in this taut suspense drama.
## 5631 In a future world, young people are increasingly becoming addicted to an illegal (and potentially deadly) battle simulation game called Avalon. When Ash, a star player, hears of rumors that a more advanced level of the game exists somewhere, she gives up her loner ways and joins a gang of explorers. Even if she finds the gateway to the next level, will she ever be able to come back to reality?
## 5632 Following a grueling five-week shift at an Alaskan oil refinery, workers led by sharpshooter John Ottway, are flying home for a much-needed vacation. But a brutal storm causes their plane to crash in the frozen wilderness, and only eight men, including Ottway, survive. As they trek southward toward civilization and safety, Ottway and his companions must battle mortal injuries, the icy elements, and a pack of hungry wolves.
## 5633 The small city of Tarker's Mill is startled by a series of sadistic murders. The population fears that this is the work of a maniac. During a search a mysterious, hairy creature is observed. This strange appearance is noticed once a month. People lock themselves up at night, but there's one boy who's still outside, he's preparing the barbecue.
## 5634 After a lightning bolt zaps a robot named Number 5, the lovable machine starts to think he's human and escapes the lab. Hot on his trail is his designer, Newton, who hopes to get to Number 5 before the military does. In the meantime, a spunky animal lover mistakes the robot for an alien and takes him in, teaching her new guest about life on Earth.
## 5635 After the collapse of Earth's ecosystem, Vesper, a 13-year-old girl struggling to survive with her paralyzed Father, meets a mysterious Woman with a secret that forces Vesper to use her wits, strength and bio-hacking abilities to fight for the possibility of a future.
## 5636 For Nick, Kurt and Dale, the only thing that would make the daily grind more tolerable would be to grind their intolerable bosses into dust. Quitting is not an option, so, with the benefit of a few-too-many drinks and some dubious advice from a hustling ex-con, the three friends devise a convoluted and seemingly foolproof plan to rid themselves of their respective employers... permanently.
## 5637 Respected lawyer, Henry Turner survives a convenience-store shooting only to find he has lost his memory, and has serious speech and mobility issues. After also losing his job—where he no longer 'fits in'—his loving wife and daughter give him all their love and support.
## 5638 When a young rape victim takes justice into her own hands and becomes a serial killer, it's up to Dirty Harry Callahan, on suspension from the SFPD, to bring her to justice.
## 5639 After the highs of winning the world championships, the Bellas find themselves split apart and discovering there aren't job prospects for making music with your mouth. But when they get the chance to reunite for an overseas USO tour, this group of awesome nerds will come together to make some music, and some questionable decisions, one last time.
## 5640 The re-imagining of VE Day in 1945, when Princess Elizabeth and her sister, Margaret were allowed out from Buckingham Palace for the night to join in the celebrations, and encounter romance and danger.
## 5641 Aidan Bloom, a struggling actor, father and husband, is 35 years old and still trying to find a purpose for his life. He and his wife are barely getting by financially and Aidan passes his time by fantasizing about being the great futuristic Space-Knight he'd always dreamed he'd be as a little kid. When his ailing father can no longer afford to pay for private school for his two kids and the only available public school is on its last legs, Aidan reluctantly agrees to attempt to home-school them. Through teaching them about life his way, Aidan gradually discovers some of the parts of himself he couldn't find.
## 5642 Desperate to repay his debt to his ex-wife, an ex-con plots a heist at his new employer's country home, unaware that a second criminal has also targeted the property, and rigged it with a series of deadly traps.
## 5643 Woody Allen stars as Val Waxman, a two-time Oscar winner turned washed-up, neurotic director in desperate need of a comeback. When it comes, Waxman finds himself backed into a corner: Work for his ex-wife Ellie or forfeit his last shot. Is Val blinded by love when he opts for the reconnect? Is love blind when it comes to Ellie's staunch support? Literally and figuratively, the proof is the picture.
## 5644 Married small-time crooks Lou-Jean and Clovis Poplin lose their baby to the state of Texas and resolve to do whatever it takes to get him back. Lou-Jean gets Clovis out of jail, and the two steal their son from his foster home, in addition to taking a highway patrolman hostage. As a massive dragnet starts to pursue them across Texas, the couple become unlikely folk heroes and even start to bond with the captive policeman.
## 5645 As the war between the vampires and the Lycans rages on, Selene, a former member of the Death Dealers (an elite vampire special forces unit that hunts werewolves), and Michael, the werewolf hybrid, work together in an effort to unlock the secrets of their respective bloodlines.
## 5646 The nightmare isn't over as unstoppable killer Michael Myers escapes from Laurie Strode's trap to continue his ritual bloodbath. Injured and taken to the hospital, Laurie fights through the pain as she inspires residents of Haddonfield, to rise up against Myers. Taking matters into their own hands, the Strode women and other survivors form a vigilante mob to hunt down Michael and end his reign of terror once and for all.
## 5647 When their father passes away, four grown, world-weary siblings return to their childhood home and are requested -- with an admonition -- to stay there together for a week, along with their free-speaking mother and a collection of spouses, exes and might-have-beens. As the brothers and sisters re-examine their shared history and the status of each tattered relationship among those who know and love them best, they reconnect in hysterically funny and emotionally significant ways.
## 5648 Fourteen year old Nim, more determined than ever to protect her island and all the wildlife that call it home, faces off against resort developers and animal poachers. Soon she realizes she can’t depend on her animal cohorts alone and must make her first human friend – Edmund, who’s run away to the island from the mainland – to save her home.
## 5649 Teenager Les Anderson thinks his life can't get any worse after he flunks his driver's exam, but he's wrong. Even though he didn't receive his license, Les refuses to break his date with the cool Mercedes Lane, and he decides to lift his family's prize luxury car for the occasion. Unfortunately, Mercedes sneaks some booze along and passes out drunk, and a confused Les makes the bad decision of enlisting his rebellious friend, Dean, to help.
## 5650 A romantic comedy about a man, a woman and a football team. Based on Nick Hornby's best selling autobiographical novel, Fever Pitch. English teacher Paul Ashworth believes his long standing obsession with Arsenal serves him well. But then he meets Sarah. Their relationship develops in tandem with Arsenal's roller coaster fortunes in the football league, both leading to a nail biting climax.
## 5651 A young boy must discover the origins of his extraordinary powers before he is captured by authorities hell-bent on condemning him for an accidental murder.
## 5652 With the Third Reich at its peak in 1942, the Czech resistance in London plans the most ambitious military operation of WWII – Anthropoid. Two young recruits are sent to Prague to assassinate the most ruthless Nazi leader – Reinhardt Heydrich, head of the SS, the Gestapo and the architect of the Final Solution.
## 5653 When carefree teenager Jay sleeps with her older boyfriend for the first time, she learns that she is the latest recipient of a fatal curse that is passed from victim to victim via sexual intercourse. Death, Jay learns, will creep inexorably toward her as either a friend or a stranger. Jay's friends don't believe her seemingly paranoid ravings, until they too begin to see the phantom assassins and band together to help her defend herself.
## 5654 After the death of her mother, Sara moves to the South Side of Chicago to live with her father and gets transferred to a majority-black school. Her life takes a turn for the better when befriends Chenille and her brother Derek, who helps her with her dancing skills.
## 5655 Nine translators, hired to translate the eagerly awaited final book of a bestselling trilogy, are confined in a luxurious bunker.
## 5656 In the midst of a marital crisis, a High Court judge must decide if she should order a life-saving blood transfusion for a teen with cancer despite his family's refusal to accept medical treatment for religious reasons.
## 5657 Quiet Jose woos cafe worker Ana, but she is unaware he has intentions other than the purely romantic.
## 5658 A couple is going through marital troubles made worse when a previously unknown grandson shows up.
## 5659 While investigating noises in his house one balmy Texas night in 1989, Richard Dane puts a bullet in the brain of a low-life burglar. Although he’s hailed as a small-town hero, Dane soon finds himself fearing for his family’s safety when Freddy’s ex-con father rolls into town, hell-bent on revenge.
## 5660 Something bizarre has come over the land. The kingdom is deteriorating. People are beginning to act strange... What's even more strange is that people are beginning to see dragons, which shouldn't enter the world of humans. Due to all these bizarre events, Ged, a wandering wizard, is investigating the cause. During his journey, he meets Prince Arren, a young distraught teenage boy. While Arren may look like a shy young teen, he has a severe dark side, which grants him strength, hatred, ruthlessness and has no mercy, especially when it comes to protecting Teru. For the witch Kumo this is a perfect opportunity. She can use the boy's "fears" against the very one who would help him, Ged.
## 5661 In a post-war alternative timeline, Japan is divided into the North, controlled by the Union, and the South, controlled by the United States. A mysterious high tower rises within the borders of the Union. Three high school students promise to cross the border with a self-built airplane and unravel the secret of the tower.
## 5662 Casey is attacked at random on the street and enlists in a local dojo led by a charismatic and mysterious Sensei in an effort to learn how to defend himself. What he uncovers is a sinister world of fraternity, violence and hypermasculinity and a woman fighting for her place in it.
## 5663 The gruesome Nazi Zombies are back to finish their mission, but our hero is not willing to die. He is gathering his own army to give them a final fight.
## 5664 Raimund Gregorius, having saved a beautiful Portuguese woman from leaping to her death, stumbles upon a mesmerizing book by a Portuguese author, which compels him to suddenly abandon the boring life he has led for years and to embark on an enthralling adventure. In search of the author, Gregorius acts as detective, pulling together pieces of a puzzle that involves political and emotional intrigue and the highest possible stakes. His voyage is one that transcends time and space, delving into the realms of history, medicine and love, all in search of true meaning to his life.
## 5665 In his squalid apartment, a man tries to squash with his shoe an insect of some kind that is moving around the room.
## 5666 One day in 1984, Todd Bowden, a brilliant high school boy fascinated by the history of Nazism, stumbles across an old man whose appearance resembles that of Kurt Dussander, a wanted Nazi war criminal. A month later, Todd decides to knock on his door.
## 5667 When Ann, husband George, and son Georgie arrive at their holiday home they are visited by a pair of polite and seemingly pleasant young men. Armed with deceptively sweet smiles and some golf clubs, they proceed to terrorize and torture the tight-knit clan, giving them until the next day to survive.
## 5668 Danny Ocean reunites with his old flame and the rest of his merry band of thieves in carrying out three huge heists in Rome, Paris and Amsterdam – but a Europol agent is hot on their heels.
## 5669 Jeffrey Dahmer struggles with a difficult family life as a young boy. During his teenage years he slowly transforms, edging closer to the serial killer he was to become.
## 5670 Nathalie teaches philosophy at a high school in Paris. She is passionate about her job and particularly enjoys passing on the pleasure of thinking. Married with two children, she divides her time between her family, former students and her very possessive mother. One day, Nathalie’s husband announces he is leaving her for another woman. With freedom thrust upon her, Nathalie must reinvent her life.
## 5671 Fight everyone and trust no one: it's the code of survival practiced by martial-arts master Casey Bowman after his life of domestic bliss is shattered by a savage act of violence. Vowing revenge, the fearless American stealthily tracks the killer from Osaka to Bangkok to Rangoon with the help of a wise and crafty sensei. His only clues: a series of victims whose necks bear the distinctive mark of strangulation by barbed wire. Fighting to avenge as well as to survive, Casey must sharpen his razor-like responses and take his battle skills to the next level, even using deep meditation to fake his own death. His target: the sinister drug lord Goro, who is flooding the streets with deadly meth cooked at his remote jungle factory. To prepare for his ultimate confrontation, Casey must finally become an invisible warrior worthy of the name Ninja. But just when his prey is cornered, an unexpected twist shows Casey that his battle is only beginning: he truly can trust no one.
## 5672 Despite being well into adulthood, brothers Doug and Steve Butabi still live at home and work in the flower shop owned by their dad. They exist only to hit on women at discos, though they're routinely unsuccessful until a chance run-in with Richard Grieco gets them inside the swank Roxbury club. Mistaken for high rollers, they meet their dream women, Vivica and Cambi, and resolve to open a club of their own.
## 5673 Four African-American Vietnam veterans return to Vietnam. They are in search of the remains of their fallen squad leader and the promise of buried treasure. These heroes battle forces of humanity and nature while confronted by the lasting ravages of the immorality of the Vietnam War.
## 5674 A traumatised veteran, unafraid of violence, tracks down missing girls for a living. When a job spins out of control, his nightmares overtake him as a conspiracy is uncovered leading to what may be his death trip or his awakening.
## 5675 When college friends reunite after 15 years over the Christmas holidays, they discover just how easy it is for long-forgotten rivalries and romances to be reignited.
## 5676 A young short-con grifter suffers both injury and the displeasure of reuniting with his criminal mother, all the while dating an unpredictable young lady.
## 5677 Brennan Huff and Dale Doback might be grown men. But that doesn't stop them from living at home and turning into jealous, competitive stepbrothers when their single parents marry. Brennan's constant competition with Dale strains his mom's marriage to Dale's dad, leaving everyone to wonder whether they'll ever see eye to eye.
## 5678 Following a childhood tragedy, Dewey Cox follows a long and winding road to music stardom. Dewey perseveres through changing musical styles, an addiction to nearly every drug known and bouts of uncontrollable rage.
## 5679 A Camorra boss fakes his own death in order to start a new life elsewhere with his family, but a nurse happens to see him alive and well after the funeral. A hitman is promptly sent to get rid of her, only to find out that she's his first and unforgotten love. He decides to protect her, becoming himself a target.
## 5680 An artist falls for a married young woman while he's commissioned to paint her portrait. The two invest in the risky tulip market in hopes to build a future together.
## 5681 The "black sheep" son of a wealthy family meets a young psychiatric patient who's been raised in isolation her entire life. He takes the naive young woman home for his brother's wedding an improbable romance blooms, as she impresses everyone with her genuine, simple charms.
## 5682 Rachel Singer is a former Mossad agent who tried to capture a notorious Nazi war criminal – the Surgeon of Birkenau – in a secret Israeli mission that ended with his death on the streets of East Berlin. Now, 30 years later, a man claiming to be the doctor has surfaced, and Rachel must return to Eastern Europe to uncover the truth. Overwhelmed by haunting memories of her younger self and her two fellow agents, the still-celebrated heroine must relive the trauma of those events and confront the debt she has incurred.
## 5683 Nicole and Chase live next door to each other but are worlds apart. However, they plot a scheme to date each other in order to attract the interest and jealousy of their respective romantic prey. But in the mist of planning a gala centennial celebration, Nicole and Chase find that the one they always wanted was closer than they ever thought.
## 5684 A free-spirited woman "kidnaps" a yuppie for a weekend of adventure. But the fun quickly takes a dangerous turn when her ex-con husband shows up.
## 5685 Brewster, an aging minor-league baseball player, stands to inherit 300 million dollars if he can successfully spend 30 million dollars in 30 days without anything to show for it, and without telling anyone what he's up to... A task that's a lot harder than it sounds!
## 5686 A police chief about to retire pledges to help a woman find her daughter's killer.
## 5687 When a new murder victim is discovered with all the signs of Jigsaw's hand, Detective Eric Matthews begins a full investigation and apprehends Jigsaw with little effort. But for Jigsaw, getting caught is just another part of his plan. Eight more of his victims are already fighting for their lives and now it's time for Matthews to join the game.
## 5688 Political strategist Dominic Cummings leads a popular but controversial campaign to convince British voters to leave the European Union from 2015 up until the present day.
## 5689 British soldiers guarding the Kajaki Dam set out to rescue a three-man team after one of them loses a leg to a landmine.
## 5690 Thor fights to restore order across the cosmos… but an ancient race led by the vengeful Malekith returns to plunge the universe back into darkness. Faced with an enemy that even Odin and Asgard cannot withstand, Thor must embark on his most perilous and personal journey yet, one that will reunite him with Jane Foster and force him to sacrifice everything to save us all.
## 5691 A suburban family is torn apart when fourteen-year-old Annie meets her first boyfriend online. After months of communicating via online chat and phone, Annie discovers her friend is not who he originally claimed to be. Shocked into disbelief, her parents are shattered by their daughter's actions and struggle to support her as she comes to terms with what has happened to her once innocent life.
## 5692 At a high-school party, four friends find that losing their collective virginity isn't as easy as they had thought. But they still believe that they need to do so before college. To motivate themselves, they enter a pact to all "score" by their senior prom.
## 5693 On a trip to Colombia, a group of college students encounter a fifty-foot boa constrictor, hungry for blood.
## 5694 After the strange death of his young son at their new home, Daniel hears a ghostly plea for help, spurring him to seek out a renowned paranormal expert.
## 5695 An adaptation of Milena Agus' eponymous novel set after WWII, "Mal de Pierres" ("Mal di Pietre") spans 20 years, following the destiny of a passionate, free-spirited woman who is in a loveless marriage and falls for another man.
## 5696 Two unpopular teenagers, Gary and Wyatt, fail at all attempts to be accepted by their peers. Their desperation to be liked leads them to "create" a woman via their computer. Their living and breathing creation is a gorgeous woman, Lisa, whose purpose is to boost their confidence level by putting them into situations which require Gary and Wyatt to act like men.
## 5697 The true story of Texas congressman Charlie Wilson's covert dealings in Afghanistan, where his efforts to assist rebels in their war with the Soviets had some unforeseen and long-reaching effects.
## 5698 Laura and Massimo's relationship hangs in the balance as they try to overcome trust issues while a tenacious Nacho works to push them apart.
## 5699 When the island's dormant volcano begins roaring to life, Owen and Claire mount a campaign to rescue the remaining dinosaurs from this extinction-level event.
## 5700 Benjamin is meant to be a great doctor, he’s certain of it. But his first experience as a junior doctor in the hospital ward where his father works doesn’t turn out the way he hoped it would. Responsibility is overwhelming, his father is all but present, and his co-junior partner, a foreign doctor, is far more experimented than he is. This internship will force Benjamin to confront his limits… and start his way to adulthood.
## 5701 Alice Kingsleigh returns to Underland and faces a new adventure in saving the Mad Hatter.
## 5702 The first story focused on Tai and Kari Kamiya four years before their adventure in the Digital World. It shows their first encounter with Digimon and what happened to them (as well as the other children). Tai and Kari wake one morning to find a Digi-Egg that came out of their computer the night before and the egg soon hatches, revealing a Botamon. The Digimon then evolves into Koromon and then Agumon (not the same one that became friends with Tai in the series, and yet, somehow, both Koromon and Kari remember each other), who then goes out and unintentionally destroys a good part of the neighborhood with Kari riding on his back. A second Digi-Egg appears in the sky to reveal an evil digimon, Parrotmon. Agumon then Digivolves to Greymon but isn't strong enough to beat Parrotmon and is knocked out. Tai grabs Kari's whistle and wakes up Greymon, who defeats Parrotmon and disappears with him.
## 5703 When the young orphan boy James spills a magic bag of crocodile tongues, he finds himself in possession of a giant peach that flies him away to strange lands.
## 5704 An Australian couple take a sailing trip in the Pacific to forget about a terrible accident. While on the open sea, in dead calm weather conditions, they come across a ship with one survivor who is not at all what he seems.
## 5705 Dating coach Alex 'Hitch' Hitchens mentors a bumbling client, Albert, who hopes to win the heart of the glamorous Allegra Cole. While Albert makes progress, Hitch faces his own romantic setbacks when proven techniques fail to work on Sara Melas, a tabloid reporter digging for dirt on Allegra Cole's love life. When Sara discovers Hitch's connection to Albert – now Allegra's boyfriend – it threatens to destroy both relationships.
## 5706 Desperate for an online following, a rideshare driver has figured out a deadly plan to go viral and he will stop at nothing to get his five minutes of fame.
## 5707 Johnny is a long-serving MI5 officer. His boss dies suddenly, leaving behind an inexplicable file which threatens the stability of the organisation.
## 5708 Deoxys, a Pokémon from outer space, terrorizes the high-tech city Ash Ketchum and his friends are visiting.
## 5709 Monroe Hutchens is the heavyweight champion of Sweetwater, a maximum security prison. He was convicted to a life sentence due to a passionate crime. Iceman Chambers is the heavyweight champion, who lost his title due to a rape conviction to ten years in Sweetwater. WHen these two giants collide in the same prison, they fight against each other disputing who is the real champion.
## 5710 A group of scientists have developed the Resonator, a machine which allows whoever is within range to see beyond normal perceptible reality. But when the experiment succeeds, they are immediately attacked by terrible life forms.
## 5711 Jimi, a computer game designer, finds that his latest product has been infected by a virus which has given consciousness to the main character of the game, Solo. Tormented by the memory of his fled girlfriend Lisa and begged by Solo to end its useless "life", Jimi begins a search for people who can help him both to discover what happened to Lisa and to delete his game before it is released.
## 5712 Love blossoms for Lily over double Meaty Boy burgers at mid-day when uber-computer nerd Jarrod comes in and leaves with free extra large fries. After gatecrashing Jarrod's party and proving her skills on the game console, Lily goes down to Jarrod's home town with him so he can settle an old score with a past school bully.
## 5713 The story revolves around Alain, a busy businessman who is always in a rush. In his life, there is no room for spare time or family. But one day, he suffers a stroke, which makes him lose his grasp of language and use one word in place of another.
## 5714 As an asteroid nears Earth, a man finds himself alone after his wife leaves in a panic. He decides to take a road trip to reunite with his high school sweetheart. Accompanying him is a neighbor who inadvertently puts a wrench in his plan.
## 5715 In 1970s England, three blue-collar friends spend their days joking, drinking, fighting and chasing girls. Freddie wants to leave their working-class world but cool, charismatic Bruce and lovable loser Snork are happy with life the way it is. When Freddie gets a new job as a door-to-door salesman and bumps into his old school sweetheart Julie, the gang are forced to make choices that will change their lives for ever.
## 5716 Titus Andronicus returns from the wars and sees his sons and daughters taken from him, one by one. Shakespeare's goriest and earliest tragedy.
## 5717 Craig, a young boy living in a small town befriends an older, reclusive billionaire, Mr. Harrigan. The two form a bond over books and an iPhone, but when the man passes away the boy discovers that not everything dead is gone.
## 5718 To spice up a dinner party, old friends agree to share every private message that pops up on their phones -- with disastrous results.
## 5719 JJ, aka John Shaft Jr., may be a cyber security expert with a degree from MIT, but to uncover the truth behind his best friend’s untimely death, he needs an education only his dad can provide. Absent throughout JJ’s youth, the legendary locked-and-loaded John Shaft agrees to help his progeny navigate Harlem’s heroin-infested underbelly.
## 5720 Master chef Kate Armstrong runs her life and her kitchen with intimidating intensity. However, a recipe for disaster may be in the works when she becomes the guardian of her young niece while crossing forks with the brash sous-chef who just joined her staff. Though romance blooms in the face of rivalry, Kate needs to look outside the kitchen to find true happiness.
## 5721 A mysterious spacecraft captures Russian and American space capsules and brings the two superpowers to the brink of war. James Bond investigates the case in Japan and comes face to face with his archenemy Blofeld.
## 5722 The Simpsons host a Disney+ Day party and everyone is on the list… except Homer. With friends from across the service and music fit for a Disney Princess, Plusaversary is Springfield's event of the year.
## 5723 Plagued by strange memories, Neo's life takes an unexpected turn when he finds himself back inside the Matrix.
## 5724 Jocelyn is a selfish and misogynist businessman. He tries to seduce a young pretty woman by pretending to be handicapped, till the day he meets her sister, who is also in a wheelchair.
## 5725 In a seemingly perfect community, without war, pain, suffering, differences or choice, a young boy is chosen to learn from an elderly man about the true pain and pleasure of the "real" world.
## 5726 Marnie Piper prepares to begin a new school year, she asks the Halloweentown Hot Witches' Council to work toward openness between Halloweentown and the mortal world. She proposes to bring a group of Halloweentown students to her own high school in the mortal world.
## 5727 Justin McLeod is a former teacher who lives as a recluse on the edge of town after his face is disfigured from an automobile accident ten years earlier, in which a boy was incinerated—and for which he was convicted of involuntary manslaughter.
## 5728 To find Ilona and unlock the secrets of her disappearance, Karas must plunge deep into the parallel worlds of corporate espionage, organized crime and genetic research - where the truth imprisons whoever finds it first and miracles can be bought but at a great price.
## 5729 In the immense city of Tokyo, the darkness of the afterlife lurks some of its inhabitants who are desperately trying to escape the sadness and isolation of the modern world.
## 5730 It's the most exciting time of year at Third Street Elementary-- the end of the School Year! But boredom quickly sets in for protagonist TJ Detweiler, as his friends are headed for Summer Camp. One day, while passing by the school on his bike, he notices a green glow coming from the school's auditorium. This is the work of the insidious ex-principal of Third Street, Phillium Benedict and his gang of ninjas and secret service look-alikes! Benedict is planning to get rid of Summer Vacation using his newly-acquired Tractor Beam, which he stole from the US Military Base in an effort to raise US Test Scores, and it's up to the Recess Gang to stop him!
## 5731 Two missionaries (Bud Spencer and Terence Hill) come into conflict with the authorities when they turn their missionary into a parrot farm. The Bishop of Maracaibo calls them his 'black sheep' and the Monsignore has been called to check on their behavior. Like usual, our heroes help the poor to defend themselves and provoke some funny fist fights in the process. (from Wikipedia)
## 5732 A self-indulgent private investigator winds up on a cruise ship full of rich patrons, gorgeous women, murderous terrorists, and scarce food.
## 5733 The gang that created Airplane and The Naked Gun sets its sights on Top Gun in this often hilarious spoof starring Charlie Sheen, who previously only inspired laughs with his personal life. He plays Topper Harley, a fighter pilot with an ax to grind: clearing the family name. He gets involved in a relationship with Valerie Golino, a woman with an unusually talented stomach. But his mission is to avenge his father. Lloyd Bridges, late in his career, revealed an aptitude for this kind of silliness, here as a commander who is both incredibly dim and delightfully accident prone. Directed by Jim Abrahams, the film makes fun of a variety of other films as well, from Dances with Wolves to The Fabulous Baker Boys. It was so successful that they all returned in the sequel, Hot Shots! Part Deux.
## 5734 When the Sun begins to expand in such a way that it will inevitably engulf and destroy the Earth in a hundred years, united mankind finds a way to avoid extinction by propelling the planet out of the Solar System using gigantic engines, moving it to a new home located four light years away, an epic journey that will last thousands of years.
## 5735 Lucille Ball and Desi Arnaz face a crisis that could end their careers and another that could end their marriage.
## 5736 A small Sicilian town elects a new, honest major but quickly learns that playing by the rules is not as easy as it seems
## 5737 Your favorite Madagascar pals are back in an all-new adventure! Alex's favorite holiday, Valentine's Day, brings hilarious surprises and excitement for the entire gang. Melman plans a big surprise for Gloria, Marty tries to impress a new friend and everyone wants to get their hands on King Julien's love potion. You'll fall in LOVE with Madly Madagascar!
## 5738 A runaway train, transporting deadly, toxic chemicals, is barreling down on Stanton, Pennsylvania, and proves to be unstoppable until a veteran engineer and young conductor risk their lives to try and stop it with a switch engine.
## 5739 Boozer, skirt chaser, careless father. You could create your own list of reporter Steve Everett's faults but there's no time. A San Quentin Death Row prisoner is slated to die at midnight – a man Everett has suddenly realized is innocent.
## 5740 Laurie Strode comes to her final confrontation with Michael Myers, the masked figure who has haunted her since she narrowly escaped his killing spree on Halloween night four decades ago.
## 5741 After a treacherous attack, Secret Service agent Mike Banning is charged with attempting to assassinate President Trumbull. Chased by his own colleagues and the FBI, Banning begins a race against the clock to clear his name.
## 5742 In the future, a strange fungus has changed nearly everyone into a thoughtless, flesh-eating monster. When a scientist and a teacher find a girl who seems to be immune to the fungus, they all begin a journey to save humanity.
## 5743 The sensuous wife of a lunch wagon proprietor and a rootless drifter begin a sordidly steamy affair and conspire to murder her Greek husband.
## 5744 It has been twenty years since Don Diego de la Vega fought Spanish oppression in Alta California as the legendary romantic hero, Zorro. Having escaped from prison he transforms troubled bandit Alejandro into his successor, in order to foil the plans of the tyrannical Don Rafael Montero who robbed him of his freedom, his wife and his precious daughter.
## 5745 Advice columnist, Dan Burns is an expert on relationships, but somehow struggles to succeed as a brother, a son and a single parent to three precocious daughters. Things get even more complicated when Dan finds out that the woman he falls in love with is actually his brother's new girlfriend.
## 5746 Following an assassination attempt on Senator Padmé Amidala, Jedi Knights Anakin Skywalker and Obi-Wan Kenobi investigate a mysterious plot that could change the galaxy forever.
## 5747 When a San Francisco exec wins a New Zealand inn, she ditches city life to remodel and flip the rustic property with help from a handsome contractor.
## 5748 A warrior-assassin is forced to hide in a small town in the American Badlands after refusing a mission.
## 5749 A journey deep into an uncharted and treacherous land, where fantastical creatures await the legendary Clades—a family of explorers whose differences threaten to topple their latest, and by far most crucial, mission.
## 5750 Two crew members wake up on an abandoned spacecraft with no idea who they are, how long they've been asleep, or what their mission is. The two soon discover they're actually not alone – and the reality of their situation is more horrifying than they could have imagined.
## 5751 Peter Klaven is a successful real estate agent who, upon getting engaged to the woman of his dreams, Zooey, discovers, to his dismay and chagrin, that he has no male friend close enough to serve as his Best Man. Peter immediately sets out to rectify the situation, embarking on a series of bizarre and awkward "man-dates."
## 5752 Topper Harley is found to be working as an odd-job-man in a monastery. The CIA want him to lead a rescue mission into Iraq, to rescue the last rescue team, who went in to rescue the last rescue team—who went in to rescue hostages left behind after Desert Storm.
## 5753 Having cleared his name, genius mechanic Lino has only one goal in mind: getting revenge on the corrupt cops who killed his brother and his mentor.
## 5754 Major Ronan Jackson, an accomplished fighter pilot for the Israel Defense Forces and son of a U.S. Senator, is shot down while flying through Syrian airspace. After miraculously surviving the crash, Jackson is taken captive by a group of Hezbollah militiamen. A squad of elite soldiers, led by Gunnery Sergeant Dave Torres, risk their own lives in the hopes of saving an ally they've never met.
## 5755 At the age of 51 and after 20 months on unemployment, Thierry starts a new job that soon brings him face to face with a moral dilemma. How much is he willing to accept to keep his job?
## 5756 Bobby Walker lives the proverbial American dream: great job, beautiful family, shiny Porsche in the garage. When corporate downsizing leaves him and two co-workers jobless, the three men are forced to re-define their lives as men, husbands and fathers.
## 5757 Goku and Kuririn are given an assignment by Kame-Sen'nin: "Retrieve the sleeping princess from Lucifer and I will take you as my students." But the mission proves to be more perilous than originally thought.
## 5758 When Scott learns that his longtime cyber-buddy from Berlin is a gorgeous young woman, he and his friends embark on a trip across Europe.
## 5759 Six strangers find themselves in circumstances beyond their control, and must use their wits to survive.
## 5760 Three fairy tale princesses find themselves engaged to the same guy, Prince Charming.
## 5761 Joe Pendleton is a quarterback preparing to lead his team to the superbowl when he is almost killed in an accident. An overanxious angel plucks him to heaven only to discover that he wasn't ready to die, and that his body has been cremated. A new body must be found, and that of a recently-murdered millionaire is chosen. His wife and accountant—the murderers—are confused by this development, as he buys the L.A. Rams in order to once again quarterback them into the Superbowl.
## 5762 Over the course of three days Ross, a college dropout addicted to crystal-meth, encounters a variety of oddball folks - including a stripper named Nikki and her boyfriend, the local meth producer, The Cook - but all he really wants to do is hook up with his old girlfriend, Amy.
## 5763 A journalist duo go on a tour of serial killer murder sites with two companions, unaware that one of them is a serial killer himself.
## 5764 In early 1950s Vietnam, a young American becomes entangled in a dangerous love triangle when he falls for the beautiful mistress of a British journalist. As war is waged around them, the trio sinks deeper into a world of drugs, passion, and betrayal where nothing is as it seems.
## 5765 A recent widow invites her husband's troubled best friend to live with her and her two children. As he gradually turns his life around, he helps the family cope and confront their loss.
## 5766 He's Ace Ventura: Pet Detective. Jim Carrey is on the case to find the Miami Dolphins' missing mascot and quarterback Dan Marino. He goes eyeball to eyeball with a man-eating shark, stakes out the Miami Dolphins and woos and wows the ladies. Whether he's undercover, under fire or underwater, he always gets his man… or beast!
## 5767 In 1944 Poland, a Jewish shop keeper named Jakob is summoned to ghetto headquarters after being caught out after curfew. While waiting for the German Kommondant, Jakob overhears a German radio broadcast about Russian troop movements. Returned to the ghetto, the shopkeeper shares his information with a friend and then rumors fly that there is a secret radio within the ghetto.
## 5768 Rose, a desperate mother takes her adopted daughter, Sharon, to the town of Silent Hill in an attempt to cure her of her ailment. After a violent car crash, Sharon disappears and Rose begins a desperate search to get her back. She descends into the center of the twisted reality of a town's terrible secret. Pursued by grotesquely deformed creatures and townspeople stuck in permanent purgatory, Rose begins to uncover the truth behind the apocalyptic disaster that burned the town 30 years earlier.
## 5769 Sinister things begin happening to kidnappers who are holding a young boy for ransom in a remote cabin.
## 5770 Dragon Hunters is a fantastic tale telling the adventures of two dragon hunters: the world has become a vast conglomerate of islands of varying size and shape. This babbling universe is mainly peopled with ruthless rogues, surly peasants and illiterate, petty lords Their main concerns revolve around two fundamental rules : Eat and don't get eaten.
## 5771 When a younger girl called Emily Rose dies, everyone puts blame on the exorcism which was performed on her by Father Moore prior to her death. The priest is arrested on suspicion of murder. The trial begins with lawyer Erin Bruner representing Moore, but it is not going to be easy, as no one wants to believe what Father Moore says is true.
## 5772 As a swingin' fashion photographer by day and a groovy British superagent by night, Austin Powers is the '60s' most shagadelic spy, baby! But can he stop megalomaniac Dr. Evil after the bald villain freezes himself and unthaws in the '90s? With the help of sexy sidekick Vanessa Kensington, he just might.
## 5773 On a small town college campus, a philosophy professor in existential crisis gives his life new purpose when he enters into a relationship with his student.
## 5774 Lina Inverse and Naga the White Serpent are back! What begins as a routine bandit-stomping turns into the adventure of a lifetime involving magical golems, an ancient Elven weapon and even someone bent on destroying the world. It's a predicament only Lina and Naga could get themselves in to.
## 5775 A young woman begins a new life at the Apollonide bordello, a high-class brothel in Paris at the turn of the 20th century.
## 5776 A career criminal nabbed by Mexican authorities is placed in a tough prison where he learns to survive with the help of a 9-year-old boy.
## 5777 Bertram Pincus, a cranky, people-hating Manhattan dentist, develops the unwelcome ability to see dead people. Really annoying dead people. Even worse, they all want something from him, particularly Frank Herlihy, a smooth-talking ghost, who pesters him into a romantic scheme involving his widow Gwen. They are soon entangled in a hilarious predicament between the now and the hereafter!
## 5778 Unable to find her runaway son, a woman deceives two of her ex-lovers from her youth, a mild-mannered teacher and a tough journalist, that each is the real father in order to obtain their help.
## 5779 A journey into uncharted and forbidden territory through three tales tangled in space and time.
## 5780 Spenser, a former Boston patrolman who just got out from prison, teams up with Hawk, an aspiring fighter, to unravel the truth behind the death of two police officers.
## 5781 A straight-edged teacher finds trouble when an honors student is willing to do anything to get an A.
## 5782 When aspiring model Jesse moves to Los Angeles, her youth and vitality are devoured by a group of beauty-obsessed women who will take any means necessary to get what she has.
## 5783 It is 2046 when a mysterious alien force begins their annihilation of the human race. Leaving behind the one person she loves, Mikako joins the interstellar battle as a pilot. And so - while Mikako risks her life to save mankind - Noboru waits. The two lovers, worlds apart, desperately strive to remain connected as the gap between them widens at a frightening pace.
## 5784 In an ancient time when majestic fire-breathers soared through the skies, a knight named Bowen comes face to face and heart to heart with the last dragon on Earth, Draco. Taking up arms to suppress a tyrant king, Bowen soon realizes his task will be harder than he'd imagined: If he kills the king, Draco will die as well.
## 5785 New Orleans businessman Michael Courtland’s life is shattered when his wife and daughter are tragically killed in a botched kidnap rescue attempt. Many years later whilst visiting Italy he meets and falls in in love with Sandra Portinari, who bears a striking resemblance to his wife.
## 5786 2020: A year so [insert adjective of choice here], even the creators of Black Mirror couldn't make it up… but that doesn't mean they don't have a little something to add. This comedy event that tells the story of the dreadful year that was — and perhaps still is? The documentary-style special weaves together some of the world's most (fictitious) renowned voices with real-life archival footage.
## 5787 After suffering a personal tragedy, and desperate for justice, Jacob Kanon, a veteran New York City police detective, embarks on the search for a twisted killer who is leaving a bloody trail of elaborate murders across Europe.
## 5788 Two youths, Niño and Compi, enter the world of drug smuggling in the Strait of Gibraltar; while two police officers, Jesús and Eva, try to eradicate the contraband.
## 5789 A group of high-school friends must come to terms with the fact that one of them, Samson, killed another, Jamie. Faced with the brutality of death, each must decide whether to turn their friend in to the police, or to help him escape the consequences of his dreadful deed.
## 5790 Natsu Dragneel and his friends travel to the island Kingdom of Stella, where they will reveal dark secrets, fight the new enemies and once again save the world from destruction.
## 5791 Dede is a sole parent trying to bring up her son Fred. When it is discovered that Fred is a genius, she is determined to ensure that Fred has all the opportunities that he needs, and that he is not taken advantage of by people who forget that his extremely powerful intellect is harboured in the body and emotions of a child.
## 5792 Ed Okin used to have a boring life. He used to have trouble getting to sleep. Then one night, he met Diana. Now, Ed's having trouble staying alive.
## 5793 Five years after an unexplained malfunction causes the death of 15 tour-goers and staff on the opening night of a Halloween haunted house tour, a documentary crew travels back to the scene of the tragedy to find out what really happened.
## 5794 Comedian Kevin Hart performs in front of a crowd of 50,000 people at Philadelphia's outdoor venue, Lincoln Financial Field.
## 5795 Michael ‘Jay’ Cochran has just left the Navy after 12 years and he's not quite sure what he's going to do, except that he knows he wants a holiday. He decides to visit Tiburon Mendez, a powerful but shady Mexican businessman who he once flew to Alaska for a hunting trip. Arriving at the Mendez mansion in Mexico, he is immediately surprised by the beauty and youth of Mendez’s wife, Miryea.
## 5796 Lyon Gaultier is a deserter in the Foreign Legion arriving in the USA entirely hard up. He finds his brother between life and death and his sister-in-law without the money needed to heal her husband and to maintain her child. To earn the money needed, Gaultier decides to take part in some very dangerous clandestine fights.
## 5797 Claire, a romantically spurned 50-year-old divorced teacher, creates a fake Facebook profile of a 24-year-old woman to spy on her on-and-off lover.
## 5798 Prince Akeem Joffer is set to become King of Zamunda when he discovers he has a son he never knew about in America – a street savvy Queens native named Lavelle. Honoring his royal father's dying wish to groom this son as the crown prince, Akeem and Semmi set off to America once again.
## 5799 When the child Arthur’s father is murdered, Vortigern, Arthur’s uncle, seizes the crown. Robbed of his birthright and with no idea who he truly is, Arthur comes up the hard way in the back alleys of the city. But once he pulls the sword Excalibur from the stone, his life is turned upside down and he is forced to acknowledge his true legacy... whether he likes it or not.
## 5800 A deadly airborne virus finds its way into the USA and starts killing off people at an epidemic rate. Col Sam Daniels' job is to stop the virus spreading from a small town, which must be quarantined, and to prevent an over reaction by the White House.
## 5801 When her husband abruptly ends their marriage, empty nester Kate embarks on a solo second honeymoon in Africa, finding purpose and potential romance.
## 5802 Annie's life is a mess. But when she finds out her lifetime best friend is engaged, she simply must serve as Lillian's maid of honor. Though lovelorn and broke, Annie bluffs her way through the expensive and bizarre rituals. With one chance to get it perfect, she’ll show Lillian and her bridesmaids just how far you’ll go for someone you love.
## 5803 A seemingly mild mannered man -- who has just murdered his entire family -- quickly adopts a new identity and leaves town. After building a new relationship with a widow and her teenage daughter, he struggles to hide his true identity and maintain a grip on reality.
## 5804 A coming-of-age story centered around a small-town singer brokenhearted by the death of her brother in a car crash, who had secretly submitted her for a summer session at a performing arts academy in Los Angeles. In the academy, she experiences a whole new way of life in the big city, far from the small town lifestyle she's used to.
## 5805 A young journalist, an experienced cameraman and a discredited reporter find their bold plan to capture Bosnia's top war criminal quickly spiraling out of control when a UN representative mistakes them for a CIA hit squad.
## 5806 Ninja Assassin follows Raizo, one of the deadliest assassins in the world. Taken from the streets as a child, he was transformed into a trained killer by the Ozunu Clan, a secret society whose very existence is considered a myth. But haunted by the merciless execution of his friend by the Clan, Raizo breaks free from them and vanishes. Now he waits, preparing to exact his revenge.
## 5807 When Lady Tremaine steals the Fairy Godmother's wand and changes history, it's up to Cinderella to restore the timeline and reclaim her prince.
## 5808 The East High Wildcats are gearing up for big fun as they land the coolest summer jobs imaginable. Troy, Gabriella, Chad, and Taylor have scored sweet gigs at the Lava Springs Country Club owned by Sharpay and Ryan's family. Sharpay's first rule of business: Get Troy. As Troy experiences a life of privilege he's never known, will he give up the Wildcats and Gabriella to rise to the top?
## 5809 Kate Pierce is reluctantly spending Christmas with her mom’s new boyfriend and his son Jack. But when the North Pole and Christmas are threatened to be destroyed, Kate and Jack are unexpectedly pulled into a new adventure with Santa Claus.
## 5810 Moshimo, Japan. The annual fireworks festival is about to take place and a group of schoolboys, arguing over whether they are round or flat when viewed from different angles, set out to find it out.
## 5811 Pop superstar Jordan Jaye (Matthew Espinosa) has a big dream he just wants to live like a regular teenager. When he's chased down by some excited female fans, he finds a perfect hideout and a reluctant new friend from a small town, high-school art student, Emily Lowe (Sarah Jeffery, Descendants). Despite being from different worlds, they soon discover they have way more in common than they ever imagined. Over the course of several days, the two embark on an unexpected journey of friendship, first love and self-discovery -- proving that maybe opposites really do attract.
## 5812 Captures a generational moment - young people on the cusp of truly growing up, tiring of their reflexive cynicism, each in their own ways struggling to connect and define what it means to love and be loved. Six New Yorkers juggle love, friendship, and the keenly challenging specter of adulthood. Sam Wexler is a struggling writer who's having a particularly bad day. When a young boy gets separated from his family on the subway, Sam makes the questionable decision to bring the child back to his apartment and thus begins a rewarding, yet complicated, friendship. Sam's life revolves around his friends — Annie, whose self-image keeps her from commitment; Charlie and Mary Catherine, a couple whose possible move to Los Angeles tests their relationship; and Mississippi, a cabaret singer who catches Sam's eye.
## 5813 Ramona is a little girl with a very big imagination and a nose for mischief. Her playful antics keep everyone in her loving family on their toes, including her older sister Beezus, who's just trying to survive her first year of high school. Through all the ups and downs of childhood, Ramona and Beezus learn that anything's possible when you believe in yourself and rely on each other.
## 5814 A drama about explorer John Smith and the clash between Native Americans and English settlers in the 17th century.
## 5815 Nicky Larson is tasked to recover the perfume of Cupid, a perfume that would make anyone who uses it irresistible.
## 5816 The film is based on a real story that happened in 1943 in the Sobibor concentration camp in German-occupied Poland. The main character of the movie is the Soviet-Jewish soldier Alexander Pechersky, who at that time was serving in the Red Army as a lieutenant. In October 1943, he was captured by the Nazis and deported to the Sobibor concentration camp, where Jews were being exterminated in gas chambers. But, in just 3 weeks, Alexander was able to plan an international uprising of prisoners from Poland and Western Europe. This uprising resulted in being the only successful one throughout the war, which led to the largest escape of prisoners from a Nazi concentration camp.
## 5817 When the pets accidentally get separated from their vacationing owners, Chance, Shadow, and Sassy navigate the mean streets of San Francisco, trying to find their home across the Golden Gate Bridge. But the road is blocked by a series of hazards, both man and beast.
## 5818 The angel Gabriel comes to Earth to collect a soul which will end the stalemated war in Heaven, and only a former priest and a little girl can stop him.
## 5819 In a strange world where people share numerous deformities, the same problem we all face challenges each of them: to find someone who accepts you as you are. Sometimes, that means finding yourself first.
## 5820 Laura, a Spanish woman living in Buenos Aires, returns to her hometown outside Madrid with her Argentinian husband and children. However, the trip is upset by unexpected events that bring secrets into the open.
## 5821 An operative for an elite private intelligence firm finds her priorities irrevocably changed after she is tasked with infiltrating an anarchist group known for executing covert attacks upon major corporations.
## 5822 Framed for the murder of her husband, Libby Parsons survives the long years in prison with two burning desires sustaining her -- finding her son and solving the mystery that destroyed her once-happy life. Standing between her and her quest; however, is her parole officer, Travis Lehman. Libby poses a challenge to the cynical officer, one that forces him to face up to his own failings while pitting him against his superiors and law enforcement colleagues.
## 5823 Based on the true story of Jack DiNorscio, a mobster who defended himself in court for what would be the longest mafia trial in U.S. history.
## 5824 Captain Jack Sparrow crosses paths with a woman from his past, and he's not sure if it's love -- or if she's a ruthless con artist who's using him to find the fabled Fountain of Youth. When she forces him aboard the Queen Anne's Revenge, the ship of the formidable pirate Blackbeard, Jack finds himself on an unexpected adventure in which he doesn't know who to fear more: Blackbeard or the woman from his past.
## 5825 Emma Corrigan, a girl with a few secrets on a turbulent plane ride, thinks she’s about to die, Emma spills them all to the handsome stranger sitting next to her. At least, she thought he was a stranger. But then, her company’s young and elusive CEO, arrives at the office. It’s him. And he knows every single humiliating detail about Emma.
## 5826 A wooden puppet embarks on a thrilling adventure to become a real boy.
## 5827 Down-on-his-luck race car driver Jim Douglas teams up with a little VW Bug that has a mind of its own, not realizing Herbie's worth until a sneaky rival plots to steal him.
## 5828 The Saint-Tropez police launch a major offensive against dangerous drivers. Marechal Cruchot (Louis de Funès) relishes the assignment, which he pursues with a manic zeal. Cruchot is after an offending driver, who turns out to be Josépha (Claude Gensac), the widow of a highly regarded police colonel. When they meet, Cruchot falls instantly in love....
## 5829 When a depressed woman is burglarized, she finds a new sense of purpose by tracking down the thieves alongside her obnoxious neighbor. But they soon find themselves dangerously out of their depth against a pack of degenerate criminals.
## 5830 A team from the United States is going to compete against Korea in a Tae Kwon Do tournament. The team consists of fighters from all over the country--can they overcome their rivalry and work together to win?
## 5831 The story of the forbidden relationship between a 'low born' boy and a 'high born' girl in an alternate reality where every person's relationships and life worth are determined by their innate 'frequencies'.
## 5832 Following his great success with "North by Northwest," director Alfred Hitchcock makes a daring choice for his next project: an adaptation of Robert Bloch's novel "Psycho." When the studio refuses to back the picture, Hitchcock decides to pay for it himself in exchange for a percentage of the profits. His wife, Alma Reville, has serious reservations about the film but supports him nonetheless. Still, the production strains the couple's marriage.
## 5833 Set in 1845, this drama follows a group of settlers as they embark on a punishing journey along the Oregon Trail. When their guide leads them astray, the expedition is forced to contend with the unforgiving conditions of the high plain desert.
## 5834 Five years after they defeated Gozer, the Ghostbusters are out of business. When Dana begins to have ghost problems again, the boys come out of retirement to aid her and hopefully save New York City from a new paranormal threat.
## 5835 When Flora rescues a squirrel she names Ulysses, she is amazed to discover he possesses unique superhero powers, which take them on an adventure of humorous complications that ultimately change Flora's life--and her outlook--forever.
## 5836 Prima ballerina, Dominika Egorova faces a bleak and uncertain future after she suffers an injury that ends her career. She soon turns to Sparrow School, a secret intelligence service that trains exceptional young people to use their minds and bodies as weapons. Dominika emerges as the most dangerous Sparrow after completing the sadistic training process. As she comes to terms with her new abilities, she meets a CIA agent who tries to convince her that he is the only person she can trust.
## 5837 A DEA agent and an undercover Naval Intelligence officer who have been tasked with investigating one another find they have been set up by the mob -- the very organization the two men believe they have been stealing money from.
## 5838 A blind concert violinist gets a cornea transplant allowing her to see again. However, she gets more than she bargained for when she realizes her new eye can see ghosts. She sets out to find the origins of the cornea and discover the fate of its former host.
## 5839 A miserable conman and his partner pose as Santa and his Little Helper to rob department stores on Christmas Eve. But they run into problems when the conman befriends a troubled kid.
## 5840 A teenage skateboarder becomes suspected of being connected with a security guard who suffered a brutal death in a skate park called "Paranoid Park".
## 5841 Alex Owens, a teen juggling between two odd jobs, aspires to become a successful ballet dancer. Nick, who is her boss and lover, supports and encourages her to fulfil her dream.
## 5842 A ruthless Columbian drug lord has been using a cold-blooded assassin nicknamed The Devil to wipe out his competition. Sensing a threat to the US, the DEA hires a Marine sniper to kill The Devil, and capture the kingpin.
## 5843 Crazed members of a sadistic family return to their childhood home to terrorize the new owners.
## 5844 A precocious and obsessive teenager develops a crush on a naive writer with harrowing consequences.
## 5845 A grieving doctor is being contacted by his late wife through his patient's near death experiences.
## 5846 Four years after Jurassic Park's genetically bred dinosaurs ran amok, multimillionaire John Hammond shocks chaos theorist Ian Malcolm by revealing that he has been breeding more beasties at a secret location. Malcolm, his paleontologist ladylove and a wildlife videographer join an expedition to document the lethal lizards' natural behavior in this action-packed thriller.
## 5847 Captain Jean-Luc Picard and the crew of the Enterprise-D find themselves at odds with the renegade scientist Soran who is destroying entire star systems. Only one man can help Picard stop Soran's scheme...and he's been dead for seventy-eight years.
## 5848 Trainer Oronzo Canà is called to manage Longobarda, the team of a small town of Northern Italy, when it's promoted to the First Division. His only task is not to go back to the Second Division, but even the team's owner plays against Longobarda since the First Division is too expensive, and the young Brazilian player bought for the team is affected by deep 'saudade'. Written by Alessio F. Bragadini
## 5849 The next great psycho horror slasher has given a documentary crew exclusive access to his life as he plans his reign of terror over the sleepy town of Glen Echo, all the while deconstructing the conventions and archetypes of the horror genre for them.
## 5850 John Winger, an indolent sad sack in his 30s, impulsively joins the U.S. Army after losing his job, his girlfriend and his apartment.
## 5851 Fred, a raffish safe blower, takes refuge in the Paris Metro after being chased by the henchmen of a shady businessman from whom he has just stolen some documents. While hiding out in the back rooms and conduits of the Metro, Fred encounters a subterranean society of eccentric characters and petty criminals.
## 5852 When a sudden plague of blindness devastates a city, a small group of the afflicted band together to triumphantly overcome the horrific conditions of their imposed quarantine.
## 5853 Anakin Skywalker, a young slave strong with the Force, is discovered on Tatooine. Meanwhile, the evil Sith have returned, enacting their plot for revenge against the Jedi.
## 5854 Adam West and Burt Ward returns to their iconic roles of Batman and Robin. The film sees the superheroes going up against classic villains like The Joker, The Riddler, The Penguin and Catwoman, both in Gotham City… and in space.
## 5855 Mary Poppins returns to the Banks family and helps them evade grave dangers by taking them on magical, musical adventures.
## 5856 A cryptic message from Bond’s past sends him on a trail to uncover a sinister organization. While M battles political forces to keep the secret service alive, Bond peels back the layers of deceit to reveal the terrible truth behind SPECTRE.
## 5857 Retired C.I.A. agent Frank Moses reunites his unlikely team of elite operatives for a global quest to track down a missing portable nuclear device.
## 5858 Checco, an uneducated but self-satisfied fellow from Milan, who has always dreamed of becoming a police officer, fails his entrance exam for the third time. It must be said that at the oral examination Checco said that the reason why he wanted to join the police was benefits in kind and cronyism! But the young man has connections and he soon finds himself a security agent at the Milan Cathedral. Of course the bumbling idiot proves a living catastrophe! Spotted by Sufien, an Arab terrorist who is preparing an attack against the cathedral, Checco appears as the perfect sucker. To manipulate him, he sends his charming sister Farah to him, with the mission to seduce him...
## 5859 Herbert West once again revives the dead. This time, he brings Dan's ex-girlfriend's heart back inside a 'perfect' body. Dr. Hill returns as the evil nemesis who lost his head.
## 5860 A bank robber tries to turn himself in because he's falling in love and wants to live an honest life...but when he realizes the Feds are more corrupt than him, he must fight back to clear his name.
## 5861 When a systems engineer blows the whistle on a dangerous technology, Charlie's Angels from across the globe are called into action, putting their lives on the line to protect society.
## 5862 Ted Morgan has been treading water for most of his life. After his wife leaves him, Ted realizes he has nothing left to live for. Summoning the courage for one last act, Ted decides to go home and face the people he feels are responsible for creating the shell of a person he has become. But life is tricky. The more determined Ted is to confront his demons, to get closure, and to withdraw from his family, the more Ted is yanked into the chaos of their lives. So, when Ted Morgan decides to kill himself, he finds a reason to live.
## 5863 An immature, newly unemployed comic must navigate the murky waters of adulthood after her fling with a graduate student results in an unplanned pregnancy.
## 5864 Eccentric British painter J.M.W. Turner lives his last 25 years with gusto and secretly becomes involved with a seaside landlady, while his faithful housekeeper bears an unrequited love for him.
## 5865 The rough-hewn boss of a lumber crew courts trouble when he steps in to protect the youngest member of his team from an abusive father.
## 5866 Twelve-year-old Dre Parker could have been the most popular kid in Detroit, but his mother's latest career move has landed him in China. Dre immediately falls for his classmate Mei Ying but the cultural differences make such a friendship impossible. Even worse, Dre's feelings make him an enemy of the class bully, Cheng. With no friends in a strange land, Dre has nowhere to turn but maintenance man Mr. Han, who is a kung fu master. As Han teaches Dre that kung fu is not about punches and parries, but maturity and calm, Dre realizes that facing down the bullies will be the fight of his life.
## 5867 Routinely exploited by her wicked stepmother, the downtrodden Samantha Montgomery is excited about the prospect of meeting her Internet beau at the school's Halloween dance.
## 5868 The men of Bravo Company are facing a battle that's all uphill… up Hamburger Hill. Fourteen war-weary soldiers are battling for a mud-covered mound of earth so named because it chews up soldiers like chopped meat. They are fighting for their country, their fellow soldiers and their lives. War is hell, but this is worse. Hamburger Hill tells it the way it was, the way it really was. It's a raw, gritty and totally unrelenting dramatic depiction of one of the fiercest battles of America's bloodiest war. This happened. Hamburger Hill - war at its worst, men at their best.
## 5869 Gaetano and Delia, a separated couple, try to pick up the pieces of their broken love, recalling all the faults and the mistakes which led them to where they are now.
## 5870 Chronicles Jack Harris, one of the pioneers of internet commerce, as he wrestles with his morals and struggles not to drown in a sea of conmen, mobsters, drug addicts, and pornstars.
## 5871 Fourth 'Bring It On' movie is set at a cheerleader camp in Florida with a 'West Side Story' musical feel has the female captain of the West Side Sharks meeting and romancing a male member of the East Coast Jets amid their different team rivalries.
## 5872 After bowler Roy Munson swindles the wrong crowd and is left with a hook for a hand, he settles into impoverished obscurity. That is, until he uncovers the next big thing: an Amish kid named Ishmael. So, the corrupt and the hopelessly naive hit the circuit intent on settling an old score with Big Ern.
## 5873 By 2017, the global economy has collapsed and U.S. society has become a totalitarian police state, censoring all cultural activity. The government pacifies the populace by broadcasting a number of game shows in which convicted criminals fight for their lives, including the gladiator-style The Running Man, hosted by the ruthless Damon Killian, where “runners” attempt to evade “stalkers” and certain death for a chance to be pardoned and set free.
## 5874 After fighting his demons for decades, John Rambo now lives in peace on his family ranch in Arizona, but his rest is interrupted when Gabriela, the granddaughter of his housekeeper María, disappears after crossing the border into Mexico to meet her biological father. Rambo, who has become a true father figure for Gabriela over the years, undertakes a desperate and dangerous journey to find her.
## 5875 SANJAY'S SUPER TEAM follows the daydream of a young Indian boy, bored with his father's religious meditation, who imagines "a kind of ancient, Hindu version of The Avengers," with the gods appearing like superheros.
## 5876 Nat Turner, a former slave in America, leads a liberation movement in 1831 to free African-Americans in Virginia that results in a violent retaliation from whites.
## 5877 Three friends discover a mysterious machine that takes pictures 24 hours into the future and conspire to use it for personal gain, until disturbing and dangerous images begin to develop.
## 5878 An orphan in a facility run by the mean Miss Hannigan, Annie believes that her parents left her there by mistake. When a rich man named Oliver "Daddy" Warbucks decides to let an orphan live at his home to promote his image, Annie is selected. While Annie gets accustomed to living in Warbucks' mansion, she still longs to meet her parents. So Warbucks announces a search for them and a reward, which brings out many frauds.
## 5879 A baseball legend almost finished with his distinguished career at the age of forty has one last chance to prove who he is, what he is capable of, and win the heart of the woman he has loved for the past four years.
## 5880 A band of determined Russian soldiers fight to hold a strategic building in their devastated city against a ruthless German army, and in the process become deeply connected to a Russian woman who has been living there.
## 5881 A band of medieval mercenaries take revenge on a noble lord who decides not to pay them by kidnapping the betrothed of the noble's son. As the plague and warfare cut a swathe of destruction throughout the land, the mercenaries hole up in a castle and await their fate.
## 5882 The adventures of the Lafayette Escadrille, young Americans who volunteered for the French military before the U.S. entered World War I, and became the country's first fighter pilots.
## 5883 World War I has left golfer Rannulph Junuh a poker-playing alcoholic, his perfect swing gone. Now, however, he needs to get it back to play in a tournament to save the financially ravaged golf course of a long-ago sweetheart. Help arrives in the form of mysterious caddy Bagger Vance.
## 5884 A cop who moonlights as a hit man agrees to kill the hated mother of a desperate drug dealer in exchange for a tumble with the young man's virginal sister.
## 5885 A team of explorers discover a clue to the origins of mankind on Earth, leading them on a journey to the darkest corners of the universe. There, they must fight a terrifying battle to save the future of the human race.
## 5886 Ten years after their divorce, Jane and Jake Adler unite for their son's college graduation and unexpectedly end up sleeping together. But Jake is married, and Jane is embarking on a new romance with her architect. Now, she has to sort out her life—just when she thought she had it all figured out.
## 5887 Aspiring filmmakers Mel Funn, Marty Eggs and Dom Bell go to a financially troubled studio with an idea for a silent movie. In an effort to make the movie more marketable, they attempt to recruit a number of big name stars to appear, while the studio's creditors attempt to thwart them.
## 5888 A DEA agent investigates the disappearance of a legendary Army ranger drill sergeant and several of his cadets during a training exercise gone severely awry.
## 5889 An orphaned dinosaur raised by lemurs joins an arduous trek to a sancturary after a meteorite shower destroys his family home.
## 5890 A confident young cop is shown the ropes by a veteran partner in the dangerous gang-controlled barrios of Los Angeles, where the gang culture is enforced by the colors the members wear.
## 5891 A scheming raccoon fools a mismatched family of forest creatures into helping him repay a debt of food, by invading the new suburban sprawl that popped up while they were hibernating – and learns a lesson about family himself.
## 5892 A young girl of about 10 years lives in a solitary peasant's house on the edge of the jurassic mountains in the East of France. One day in autumn, when she is on her way to school through the forest, she observes a hunting fox. Of course, the fox flees from her, but the girl feels a strong desire to meet the fox again.
## 5893 After the re-emergence of the world's first mutant, world-destroyer Apocalypse, the X-Men must unite to defeat his extinction level plan.
## 5894 A single mother, plagued by the violent death of her husband, battles with her son's fear of a monster lurking in the house, but soon discovers a sinister presence all around her.
## 5895 Upon discovering her husband's infidelity, Sandy leaves the suburbs and moves into the city. There, she befriends Aram, a guy whose wife only married him so she could get a green card. Sandy hires Aram to be her nanny, and it isn't long until Aram and Sandy find out they get along wonderfully and start to date. But is their relationship real or is it, in fact, just a rebound for both of them?
## 5896 Lola, a striking teenaged girl who is on the cusp of adulthood, who longs to rush into the adult world of independence, freedom and sexual exploits, but is tenaciously held back by her mother.
## 5897 A woman struggles to recover from a brutal attack by setting out on a mission for revenge.
## 5898 A story based on the life of a struggling Long Island single mom who became one of the country's most successful entrepreneurs.
## 5899 Skipper, Kowalski, Rico and Private join forces with undercover organization The North Wind to stop the villainous Dr. Octavius Brine from destroying the world as we know it.
## 5900 Shrek challenges Donkey, Puss in Boots and his other fairy tale character friends to spend the night in Lord Farquaad's haunted castle, telling scary stories to see who can resist becoming scared and stay the longest.
## 5901 Arnold and his friends must recover a stolen document in order to prevent the neighborhood from being bulldozed.
## 5902 Arthur is a 30-year-old child who will inherit $750 million if he complies with his family's demands and marries the woman of their choosing.
## 5903 Rob Schneider writes and stars in this comedy about a nerdy con man whose swindling ways land him a stiff prison sentence. Terrified at the prospect of being raped in prison he enlists the aid of a mysterious kung-fu expert to teach him how to fight.
## 5904 Nerdy accountant Harold and his irrepressible friend, Kumar, get stoned watching television and find themselves utterly bewitched by a commercial for White Castle. Convinced there must be one nearby, the two set out on a late-night odyssey that takes them deep into New Jersey. Somehow, the boys manage to run afoul of rednecks, cops and even a car-stealing Neil Patrick Harris before getting anywhere near their beloved sliders.
## 5905 In 2047, a group of astronauts are sent to investigate and salvage the starship Event Horizon which disappeared mysteriously 7 years before on its maiden voyage. However, it soon becomes evident that something sinister resides in its corridors, and that the horrors that befell the Event Horizon's previous journey are still present.
## 5906 Dito Montiel, a successful author, receives a call from his long-suffering mother, asking him to return home and visit his ailing father. Dito recalls his childhood growing up in a violent neighborhood in Queens, N.Y., with friends Antonio, Giuseppe, Nerf and Mike.
## 5907 In New York, former convict Pete Koslow, related to the Polish mafia, must deal with both Klimek the General, his ruthless boss, and the twisted ambitions of two federal agents, as he tries to survive and protect the lives of his loved ones.
## 5908 A fresh and distinctive take on Charles Dickens’ semi-autobiographical masterpiece, The Personal History of David Copperfield, set in the 1840s, chronicles the life of its iconic title character as he navigates a chaotic world to find his elusive place within it. From his unhappy childhood to the discovery of his gift as a storyteller and writer, David’s journey is by turns hilarious and tragic, but always full of life, colour and humanity.
## 5909 A band of Mexicans find their U. S. land claims denied and all the records destroyed in a courthouse fire. Their leader, Louis Chama, encourages them to use force to regain their land. A wealthy landowner wanting the same decides to hire a gang of killers with Joe Kidd to track Chama.
## 5910 A mysterious woman comes to compete in a quick-draw elimination tournament, in a town taken over by a notorious gunman.
## 5911 When missile technology is used to enhance toy action figures, the toys soon begin to take their battle programming too seriously.
## 5912 When the local FBI office receives a letter from a terrorist known only as 'The Citizen', it's quickly determined that he's planning his next act at the Miss America beauty pageant. Because tough-as-nails Gracie Hart is the only female Agent at the office, she's chosen to go undercover as the contestant from New Jersey.
## 5913 Six friends hire a medium to hold a séance via Zoom during lockdown — but they get far more than they bargained for as things quickly go wrong. When an evil spirit starts invading their homes, they begin to realize they might not survive the night.
## 5914 A botched store robbery places Wonder Woman in a global battle against a powerful and mysterious ancient force that puts her powers in jeopardy.
## 5915 On the Arabian Peninsula in the 1930s, two warring leaders come face to face. The victorious Nesib, Emir of Hobeika, lays down his peace terms to rival Amar, Sultan of Salmaah. The two men agree that neither can lay claim to the area of no man’s land between them called The Yellow Belt. In return, Nesib adopts Amar’s two boys Saleeh and Auda as a guarantee against invasion. Twelve years later, Saleeh and Auda have grown into young men. Saleeh, the warrior, itches to escape his gilded cage and return to his father’s land. Auda cares only for books and the pursuit of knowledge. One day, their adopted father Nesib is visited by an American from Texas. He tells the Emir that his land is blessed with oil and promises him riches beyond his wildest imagination. Nesib imagines a realm of infinite possibility, a kingdom with roads, schools and hospitals all paid for by the black gold beneath the barren sand. There is only one problem. The precious oil is located in the Yellow Belt.
## 5916 Ash, May, Brock, and Max come upon the festival of the Wishing Star of Seven Nights. During their enjoyment, the legendary Pokemon--Jirachi, descends from the heavens and befriends Max. Jirachi, with the power to grant any wish, is sought after by many people wanting to claim its power. One man seeks to use its legendary power to revive an ancient Pokemon known as Groudon, unaware of the dangers hidden within Jirachi's powers
## 5917 Uncle Remus draws upon his tales of Br'er Rabbit to help little Johnny deal with his confusion over his parents' separation as well as his new life on the plantation.
## 5918 Inspector Amaia Salazar confronts the origins of her nightmares as she unfolds the darkest secrets of the Baztan valley. Part 3 in the Baztan Trilogy.
## 5919 Explore the mysterious and dangerous home of the king of the apes as a team of explorers ventures deep inside the treacherous, primordial island.
## 5920 A man with the ability to enter peoples' memories takes on the case of a brilliant, troubled sixteen-year-old girl to determine whether she is a sociopath or a victim of trauma.
## 5921 An awkward office drone becomes increasingly unhinged after a charismatic and confident look-alike takes a job at his workplace and seduces the woman he desires.
## 5922 A veteran call girl and a runaway prostitute witness a murder which sends them on an out-of-control roller coaster ride through the twilight zone of sex-for-sale.
## 5923 A rare mutation has occurred within the vampire community - The Reaper. A vampire so consumed with an insatiable bloodlust that they prey on vampires as well as humans, transforming victims who are unlucky enough to survive into Reapers themselves. Blade is asked by the Vampire Nation for his help in preventing a nightmare plague that would wipe out both humans and vampires.
## 5924 Cool black private eye John Shaft is hired by a crime lord to find and retrieve his kidnapped daughter.
## 5925 After his crew breaks up, a gifted but insecure hip-hop dancer teaches at a top ballet school in Paris, where he falls for an aspiring ballerina.
## 5926 When Andrew Briggman—a young soldier in the US invasion of Afghanistan—witnesses other recruits killing innocent civilians under the direction of a sadistic Sergeant, he considers reporting them to higher-ups. However, the heavily-armed and increasingly-violent platoon becomes suspicious that someone in their ranks has turned on them, and Andrew begins to fear that he'll be the next target.
## 5927 Long before he even met Shrek, the notorious fighter, lover and outlaw Puss in Boots becomes a hero when he sets off on an adventure with the tough and street smart Kitty Softpaws and the mastermind Humpty Dumpty to save his town. This is the true story of The Cat, The Myth, The Legend... The Boots.
## 5928 Jennifer is a writer working on a new novel and, needing to get out of the city to finish it, hires a riverside apartment in upstate New York to finish her book—attracting the attention of a number of rowdy male locals.
## 5929 Kenya McQueen, a corporate lawyer, finds love in the most unexpected place when she agrees to go on a blind date with Brian Kelly, a sexy and free-spirited landscaper.
## 5930 A white blood cell policeman, with the help of a cold pill, must stop a deadly virus from destroying the human they live in, Frank.
## 5931 An ex-soldier, a teen and a cop collide in New Orleans as they hunt for the source behind a dangerous new pill that grants users temporary superpowers.
## 5932 In 1969, a young Beijing student, Chen Zhen, is sent to live among the nomadic herdsmen of Inner Mongolia. Caught between the advance of civilization from the south and the nomads' traditional enemies - the marauding wolves - to the north; humans and animals, residents and invaders alike, struggle to find their true place in the world
## 5933 A man trying to put his life back on track gets some advice from an unexpected benefactor -- the ex-footballer Eric Cantona.
## 5934 Winnie the Pooh, Piglet, Owl, Kanga, Roo, and Rabbit are preparing a suitable winter home for Eeyore, the perennially dejected donkey, but Tigger's continual bouncing interrupts their efforts. Rabbit suggests that Tigger go find others of his kind to bounce with, but Tigger thinks "the most wonderful thing about tiggers is" he's "the only one!" Just in case though, the joyously jouncy feline sets out to see if he can find relatives.
## 5935 The archetypical renegade Texas Ranger wages war against a drug kingpin with automatic weapons, his wits and martial arts after a gun battle leaves his partner dead. All of this inevitably culminates in a martial arts showdown between the drug lord and the ranger, and involving the woman they both love.
## 5936 In a small Minnesota town, the annual beauty pageant is being covered by a TV crew. Former winner Gladys Leeman wants to make sure her daughter follows in her footsteps; explosions, falling lights, and trailer fires prove that. As the Leemans are the richest family in town, the police are pretty relaxed about it all. Despite everything, main rival (but sweet) Amber Atkins won't give up without a fight.
## 5937 Unexpectedly widowed, prim and proper housewife Grace Trevethyn finds herself in dire financial straits when she inherits massive debts her late husband had been accruing for years. Faced with losing her house, she decides to use her talent for horticulture and hatches a plan to grow potent marijuana which can be sold at an astronomical price, thus solving her financial crisis.
## 5938 Super-Hero partners Scott Lang and Hope van Dyne, along with with Hope's parents Janet van Dyne and Hank Pym, and Scott's daughter Cassie Lang, find themselves exploring the Quantum Realm, interacting with strange new creatures and embarking on an adventure that will push them beyond the limits of what they thought possible.
## 5939 When his young daughter's beloved companion — an android named Yang — malfunctions, Jake searches for a way to repair him. In the process, Jake discovers the life that has been passing in front of him, reconnecting with his wife and daughter across a distance he didn't know was there.
## 5940 Caroline and Lloyd are a married couple constantly at each other's throats, masters at crafting acid-tongued barbs at the other's expense. Indeed, they are so obsessed with belittling each other that they never stop -- not even at gunpoint. The gunman is Gus, a thief on the run from the police, who kidnaps the couple as an insurance policy, planning to use their home as a hideout. But their incessant bickering proves more than Gus bargained for, forcing him -- for the sake of his own sanity -- into the unenviable role of peacemaker. To make things even worse for Gus, he discovers that he has taken the couple hostage the night of their big Christmas party, and the guests are already on the way. Not wanting to leave Lloyd and Caroline unattended, Gus opts to attend the party, pretending to be the couple's marriage counselor. This naturally leads to a series of comic confusions, as the hostage crisis and marital tensions head towards their inevitable conclusion.
## 5941 Down-on-their luck brothers, Lars and Ernie Smuntz, aren't happy with the crumbling old mansion they inherit... until they discover the estate is worth millions. Before they can cash in, they have to rid the house of its single, stubborn occupant—a tiny and tenacious mouse.
## 5942 Suk-gyu is desperately looking for his runaway daughter. He spares neither money nor effort and after a while his search leads to results. One of his contacts claims to have found the girl. But joy is replaced by shock when he finds out that she works as a prostitute in the center of Seoul. Suk-gyu decides to pose as a client to get close to his daughter. But just before the long awaited and dreaded reunion, panic breaks out at nearby Seoul Station. The place is very popular with the homeless of the Korean capital. And one of them, who had died during the day, comes alive again and start attacking and eating another misfortunate. The undead cannibal epidemic spreads like wildfire. The authorities hermetically close off the city center and decide to wait out the end of the outbreak, until there’s no one left.
## 5943 New York in the 1920s. Max Perkins, a literary editor is the first to sign such subsequent literary greats as Ernest Hemingway and F. Scott Fitzgerald. When a sprawling, chaotic 1,000-page manuscript by an unknown writer falls into his hands, Perkins is convinced he has discovered a literary genius.
## 5944 An aspiring actor discovers that his spacious new apartment comes complete with eight friendly ghosts.
## 5945 A New York girl sets her father up with a beautiful woman in a shaky marriage while her half sister gets engaged.
## 5946 The auto-biographical story of Howard Stern, the radio-rebel who is now also a TV-personality, an author and a movie star.
## 5947 Three single women in a picturesque Rhode Island village have their wishes granted - at a cost - when a mysterious and flamboyant man arrives in their lives.
## 5948 When her great aunt dies, famed horror hostess Elvira heads for the uptight new England town of Falwell to claim her inheritance of a haunted house, a witch's cookbook and a punk rock poodle. But once the stuffy locals get an eyeful of the scream queen's ample assets, all hell busts out & breaks loose.
## 5949 A modern retelling of Snow White set against students in their freshman year of college in the greek system.
## 5950 Burglary. Drugs. Assault. Rape. The students at Brandel High are more than new Principal Rick Latimer bargained for. Gangs fight to control the school using knives - even guns - when they have to. When Latimer and the head of security try to clean up the school and stop the narcotics trade, they run up against a teenage mafia. A violent confrontation on the campus leads to a deadly showdown with the drug dealer's gang, and one last chance for Latimer to save his career... and his life.
## 5951 A nutty inventor, his frustrated wife, a philosopher cousin, his much younger fiancée, a randy doctor, and a free-thinking nurse spend a summer weekend in and around a stunning - and possibly magical - country house.
## 5952 While gathering evidence to support closing a tropical U.S. Air Force base, a congressional aide warms to its generous captain.
## 5953 In 1943, two British intelligence officers concoct Operation Mincemeat, wherein their plan to drop a corpse with false papers off the coast of Spain would fool Nazi spies into believing the Allied forces were planning to attack by way of Greece rather than Sicily.
## 5954 Cintia is modern princess, she's connected, decided and loves music. This "pop" princess used to live with their parents in a huge castle with a nice view to the city. Every night she looked through the window and watch the view dreaming with a prince she didn't met yet. But one day her castle crumbles with everything around her, after her parents divorce she went to live with her aunt and stops believing in love. What she didn't knew was that there was a charming prince in her history, that wanted to break the ice around our modern day cinderella.
## 5955 When troubled musical prodigy Charlotte seeks out Elizabeth, the new star pupil of her former school, the encounter sends both musicians down a sinister path with shocking consequences.
## 5956 When the naked body of a teenage girl is found on the banks of the River Baztán, it is quickly linked to a similar murder one month before. Soon, rumours are flying in the nearby village of Elizondo. Is this the work of a ritualistic killer or is it the basajaun, the ‘invisible guardian’ of Basque mythology? Inspector Amaia Salazar leads the investigation, taking her back to the heart of the Basque country where she was born, and where she hoped never to return. Shrouded in mist and surrounded by impenetrable forests, it is a place of unresolved conflicts and a terrible secret from Amaia’s childhood that will come back to haunt her. Faced with the superstitions of the village, Amaia must fight the demons of her past to confront the reality of a serial killer on the loose. But as she is drawn deeper into the investigation, she feels the presence of something darker lurking in the shadows…
## 5957 Warriors called "Saints" are the champions of hope who have always appeared since the Age of Myth whenever evil threatens the world. In this present day story, many years since the long fought "Holy War" we find Saori Kido, a girl troubled by her mysterious powers. She is saved by a boy, Seiya "Bronze Saint" from a sudden attack by an assassin, through the accident Saori realizes her destiny and mission and decides to go to "Sanctuary" with Seiya and his company of Bronze Saints. In Sanctuary they confront "Pope" and wage a desperate battle against the greatest Saints, the "Gold Saints".
## 5958 Doormat Wesley Gibson discovers that his recently murdered father - who Wesley never knew - belonged to a secret guild of assassins. After a leather-clad sexpot drafts Wesley into the society, he hones his innate killing skills and turns avenger.
## 5959 While vacationing at a remote cabin, a young girl and her two fathers are taken hostage by four armed strangers who demand that the family make an unthinkable choice to avert the apocalypse. With limited access to the outside world, the family must decide what they believe before all is lost.
## 5960 A father left in charge of his three children while mum goes away on a 10-day holiday… What could possibly go wrong?
## 5961 Two young people arrive in New York to spend a weekend, but once they arrive they're met with bad weather and a series of adventures.
## 5962 A human child raised by wolves, must face off against a menacing tiger named Shere Khan, as well as his own origins.
## 5963 An exploration of the life and music of Miles Davis.
## 5964 Six young ninjas are tasked with defending their island home of Ninjago. By night, they’re gifted warriors using their skill and awesome fleet of vehicles to fight villains and monsters. By day, they’re ordinary teens struggling against their greatest enemy....high school.
## 5965 Jennifer and Vince, virtual strangers, find themselves strapped for cash and decide to stage a fake engagement and wedding just for the gifts
## 5966 After being evicted from their Manhattan apartment, a couple buy what looks like the home of their dreams—only to find themselves saddled with a bank-account-draining nightmare. Struggling to keep their relationship together as their rambling mansion falls to pieces around them, the two watch in hilarious horror as everything—including the kitchen sink—disappears into the Money Pit.
## 5967 Remember that really cute girl/guy who said they'd call – and didn't? Maybe they lost your number. Maybe they're in the hospital. Maybe they're awed by your looks, brains or success. Or maybe... They're just not that into you.
## 5968 With his first Dogma-95 film director Lars von Trier opens up a completely new film platform. With a mix of home-video and documentary styles the film tells the story of a group of young people who have decided to get to know their “inner-idiots” and thus not only facing and breaking their outer appearance but also their inner.
## 5969 A British crime novelist travels to her publisher's upmarket summer house in Southern France to seek solitude in order to work on her next book. However, the unexpected arrival of the publisher's daughter induces complications and a subsequent crime.
## 5970 A timid and socially alienated 17-year-old high school student's life is turned upside down when she switches places with her sinister mirror image.
## 5971 Two years after the murder of his son and father, a retired hitman sets in motion a carefully crafted revenge plan against the killer: his own brother.
## 5972 When three overworked and under-appreciated moms are pushed beyond their limits, they ditch their conventional responsibilities for a jolt of long overdue freedom, fun, and comedic self-indulgence.
## 5973 Eliza and Debbie are two sisters who don't always get along. But their relationship is put to the test when Debbie's life is in danger, and Eliza might have to give up her power to talk to animals....
## 5974 A Chinese chef accidentally gets involved with a news reporter who filmed a drug bust that went awry and is now being chased by gangs who are trying to get the video tape.
## 5975 After years of outrunning ruthless bounty hunters, escaped convict Riddick suddenly finds himself caught between opposing forces in a fight for the future of the human race. Now, waging incredible battles on fantastic and deadly worlds, this lone, reluctant hero will emerge as humanity's champion - and the last hope for a universe on the edge of annihilation.
## 5976 Mill Valley, Pennsylvania, Halloween night, 1968. After playing a joke on a school bully, Stella and her friends decide to sneak into a supposedly haunted house that once belonged to the powerful Bellows family, unleashing dark forces that they will be unable to control.
## 5977 When a wounded Christian Grey tries to entice a cautious Ana Steele back into his life, she demands a new arrangement before she will give him another chance. As the two begin to build trust and find stability, shadowy figures from Christian’s past start to circle the couple, determined to destroy their hopes for a future together.
## 5978 Return to the forest and join Bambi as he reunites with his father, The Great Prince, who must now raise the young fawn on his own. But in the adventure of a lifetime, the proud parent discovers there is much he can learn from his spirited young son.
## 5979 Spike Lee's take on the "Son of Sam" murders in New York City during the summer of 1977 centering on the residents of an Italian-American South Bronx neighborhood who live in fear and distrust of one another.
## 5980 A group of U.S. soldiers returning from Iraq struggle to integrate back into family and civilian life, while living with the memory of a war that threatens to destroy them long after they've left the battlefield.
## 5981 Ally Darling is realizing she's a little lost in life. Her latest romance has just fizzled out, and she's just been fired from her marketing job. Then she reads an eye-opening magazine article that warns that 96 percent of women who've been with 20 or more lovers are unlikely to find a husband. Determined to turn her life around and prove the article wrong, Ally embarks on a mission to find the perfect mate from among her numerous ex-boyfriends.
## 5982 A Bollywood update of Jane Austen's classic tale, in which Mrs. Bakshi is eager to find suitable husbands for her four unmarried daughters. When the rich single gentlemen Balraj and Darcy come to visit, the Bakshis have high hopes, though circumstance and boorish opinions threaten to get in the way of romance.
## 5983 When the Muppets graduate from Danhurst College, they take their song-filled senior revue to New York City, only to learn that it isn't easy to find a producer who's willing to back a show starring a frog and a pig. Of course, Kermit the Frog and Miss Piggy won't take no for an answer, launching a search for someone to take them to Broadway.
## 5984 A small town is taken over by an alien plague, turning residents into zombies and all forms of mutant monsters.
## 5985 Set during the occupation of Iraq, a squad of U.S. soldiers try to protect a small village.
## 5986 Two friends' tour of Europe takes a dark turn when one of them contracts a mysterious illness. They race to find out what it is and how to cure it before the sickness consumes him completely.
## 5987 Agents J and K are back...in time. J has seen some inexplicable things in his 15 years with the Men in Black, but nothing, not even aliens, perplexes him as much as his wry, reticent partner. But when K's life and the fate of the planet are put at stake, Agent J will have to travel back in time to put things right. J discovers that there are secrets to the universe that K never told him - secrets that will reveal themselves as he teams up with the young Agent K to save his partner, the agency, and the future of humankind.
## 5988 A college student moonlighting as a chauffeur picks up two mysterious women for a night of party-hopping across LA. But when he uncovers their bloodthirsty intentions—and their dangerous, shadowy underworld—he must fight to stay alive.
## 5989 In a fantasy world of opposing kingdoms, a 15-year old girl must find the fabled MirrorMask in order to save the kingdom and get home.
## 5990 After years of increases in the greenhouse effect, havoc is wreaked globally in the form of catastrophic hurricanes, tornadoes, tidal waves, floods and the beginning of a new Ice Age. Paleoclimatologist, Jack Hall tries to warn the world while also shepherding to safety his son, trapped in New York after the city is overwhelmed by the start of the new big freeze.
## 5991 A police chief in northern France tries to solve a case where an old woman was brutally murdered.
## 5992 A virus spreads through an office complex causing white collar workers to act out their worst impulses.
## 5993 Goku and friends must stop a band of space pirates from consuming fruit from the Tree of Might before it's destructive powers drain Earth's energy.
## 5994 When some very creepy things start happening around school, the kids at Herrington High make the chilling discovery that their faculty is being controlled by body-snatching aliens.
## 5995 Three of the original five "young guns" — Billy the Kid (Emilio Estevez), Jose Chavez y Chavez (Lou Diamond Phillips), and Doc Scurlock (Kiefer Sutherland) — return in Young Guns, Part 2, which is the story of Billy the Kid and his race to safety in Old Mexico while being trailed by a group of government agents led by Pat Garrett.
## 5996 Two fathers' lives intersect when one of them is involved in a terrible and sudden hit-and-run car accident that leaves the other's son dead. In response, the two men react in unexpected ways as a reckoning looms in the near future.
## 5997 Five different criminals face imminent death after botching a job quite badly.
## 5998 The story of the Tuskegee Airmen, the first African-American pilots to fly in a combat squadron during World War II.
## 5999 The true story of Richard Kuklinski, the notorious contract killer and family man.
## 6000 It’s 1974 and Sam Bicke has lost everything. His wife leaves him with his three kids, his boss fires him, his brother turns away from him, and the bank won’t give him any money to start anew. He tries to find someone to blame for his misfortunes and comes up with the President of the United States who he plans to murder.
## 6001 After losing his wife and his memory in a car accident, a single father undergoes an experimental treatment that causes him to question who he really is.
## 6002 David loses his white collar job, his fiancée and his house after one night with con man Marcello. He tracks him down to exact revenge, but ends up becoming his disciple in order to win back everything.
## 6003 A British spy ship has sunk and on board was a hi-tech encryption device. James Bond is sent to find the device that holds British launching instructions before the enemy Soviets get to it first.
## 6004 Jenn has washed ashore a small tropical island and it doesn’t take her long to realize she’s completely alone. She must spend her days not only surviving the elements, but must also fend off the malevolent force that comes out each night.
## 6005 Greg founded a company called Alibi.com that creates any type of alibi. With his associate, Augustin, and Medhi his new employee, they devise unstoppable stratagems and stagings to cover their clients. But meeting Flo, a pretty blonde who hates men who lie, will complicate Greg's life, which begins by hiding the true nature of his activity. During the presentation to parents, Greg understands that Gérard, the father of Flo, is also one of their clients.
## 6006 Set in the 1920s French Riviera, a master magician is commissioned to try and expose a psychic as a fraud.
## 6007 A romantically challenged morning show producer is reluctantly embroiled in a series of outrageous tests by her chauvinistic correspondent to prove his theories on relationships and help her find love. His clever ploys, however, lead to an unexpected result.
## 6008 Millionaire industrialist Steven Taylor is a man who has everything but what he craves most: the love and fidelity of his wife. A hugely successful player in the New York financial world, he considers her to be his most treasured acquisition. But she needs more than simply the role of dazzling accessory.
## 6009 A robotics company vying to win a lucrative military contract team up with a corrupt CIA agent to conduct an illegal live field test. They deploy four weaponized prototype robots into a suspected drug manufacturing camp in the Golden Triangle, assuming they'd be killing drug runners that no one would miss. Six doctors on a humanitarian mission witness the brutal slaughter and become prime targets.
## 6010 A father survives a plane crash in rural Appalachia, but becomes suspicious of the elderly couple who take him in to nurse him back to health with the ancient remedies.
## 6011 Ever since she sustained a traumatic head injury, Christine Lucas has suffered from anterograde amnesia, unable to form new memories and having forgotten the last 15 years of her life. Every morning, she becomes reacquainted with her husband, Ben, and the other constants in her life. Terrifying truths about her past begin to emerge, causing her to question everything -- and everyone -- around her.
## 6012 Iris invites her friend Jack to stay at her family's island getaway after the death of his brother. At their remote cabin, Jack's drunken encounter with Hannah, Iris' sister, kicks off a revealing stretch of days.
## 6013 In the year 2159, two classes of people exist: the very wealthy who live on a pristine man-made space station called Elysium, and the rest, who live on an overpopulated, ruined Earth. Secretary Rhodes, a hard line government official, will stop at nothing to enforce anti-immigration laws and preserve the luxurious lifestyle of the citizens of Elysium. That doesn’t stop the people of Earth from trying to get in, by any means they can. When unlucky Max is backed into a corner, he agrees to take on a daunting mission that, if successful, will not only save his life, but could bring equality to these polarized worlds.
## 6014 A serial killer brutally slays and dismembers several gay men in New York's S&M and leather districts. The young police officer Steve Burns is sent undercover onto the streets as a decoy for the murderer. Working almost completely isolated from his department, he has to learn and practice the complex rules and signals of this little society.
## 6015 A prequel to the first two Underworld films, this fantasy explains the origins of the feud between the Vampires and the Lycans. Aided by his secret love, Sonja, courageous Lucian leads the Lycans in battle against brutal Vampire king Viktor. Determined to break the king's enslavement of his people, Lucian faces off against the Death Dealer army in a bid for Lycan independence.
## 6016 A crew of savvy former strip club employees band together to turn the tables on their Wall Street clients.
## 6017 Adam Jones is a Chef who destroyed his career with drugs and diva behavior. He cleans up and returns to London, determined to redeem himself by spearheading a top restaurant that can gain three Michelin stars.
## 6018 Twenty years ago in the sleepy mining town of Valentine Bluffs, a fatal mining disaster occurred on Valentine's Day while some of the crew was decorating for a party. The sole survivor of the accident killed the remaining crewmembers and warned the town not to celebrate Valentine's Day again. When a group of teenagers decides to defy that order, a murderous maniac in mining gear begins dispatching townsfolk in bloody and creative ways.
## 6019 From his village in northern Senegal, Yao is a 13-year-old boy ready to do anything to meet his hero: Seydou Tall, a famous French actor. Invited to Dakar to promote his new book, the latter goes to his country of origin for the first time. To fulfill his dream, the young Yao organizes his fugue and brave 387 kilometers alone to the capital. Touched by this child, the actor decides to flee his obligations and to accompany him home. But on the dusty and uncertain roads of Senegal, Seydou understands that while rolling towards the village of the child, it also rolls towards its roots.
## 6020 Set in a small English town in 1959, a woman decides, against polite but ruthless local opposition, to open a bookshop, a decision which becomes a political minefield.
## 6021 Joker teams up with Lex Luthor to destroy the world one brick at a time. It's up to Batman, Superman and the rest of the Justice League to stop them.
## 6022 Roberto, a drummer in a rock band, keeps receiving weird phone calls and being followed by a mysterious man. One night he manages to catch up with his persecutor and tries to get him to talk but in the ensuing struggle he accidentally stabs him. He runs away, but he understands his troubles have just begun when the following day he receives an envelope with photos of him killing the man. Someone is killing all his friends and trying to frame him for the murders.
## 6023 In 1940, the world is besieged by World War II. Wendy, all grown up, has two children; including Jane, who does not believe Wendy's stories about Peter Pan.
## 6024 A withdrawn young man, Leland Fitzgerald is imprisoned for the murder of a mentally disabled boy, who also happened to be the brother of his girlfriend, Becky. As the community struggles to deal with the killing, Pearl Madison, a teacher at the prison, decides to write about Leland's case. Meanwhile, others affected by the murder, including Becky and her sister, Julie, must contend with their own problems.
## 6025 Three young people on a road trip from Colorado to New Jersey talk to a trucker on their CB radio, then must escape when he turns out to be a psychotic killer.
## 6026 Ray Ferrier is a divorced dockworker and less-than-perfect father. Soon after his ex-wife and her new husband drop off his teenage son and young daughter for a rare weekend visit, a strange and powerful lightning storm touches down.
## 6027 For Peter Parker, life is busy. Between taking out the bad guys as Spider-Man and spending time with the person he loves, Gwen Stacy, high school graduation cannot come quickly enough. Peter has not forgotten about the promise he made to Gwen’s father to protect her by staying away, but that is a promise he cannot keep. Things will change for Peter when a new villain, Electro, emerges, an old friend, Harry Osborn, returns, and Peter uncovers new clues about his past.
## 6028 A visit to a natural history museum proves catastrophic for two high school rivals, an overachiever and a jock, when an ancient Aztec statue casts a spell that causes them to switch bodies and see exactly what it's like to walk in the other's shoes.
## 6029 A midwestern teacher questions his sexuality after a former student makes a comment about him at the Academy Awards.
## 6030 In the West End of 1950s London, plans for a movie version of a smash-hit play come to an abrupt halt after a pivotal member of the crew is murdered. When world-weary Inspector Stoppard and eager rookie Constable Stalker take on the case, the two find themselves thrown into a puzzling whodunit within the glamorously sordid theater underground, investigating the mysterious homicide at their own peril.
## 6031 The story of the kidnapping of 16-year-old John Paul Getty III and the desperate attempt by his devoted mother to convince his billionaire grandfather Jean Paul Getty to pay the ransom.
## 6032 A teenager finds herself transported to a deep forest setting where a battle between the forces of good and the forces of evil is taking place. She bands together with a rag-tag group characters in order to save their world—and ours.
## 6033 Fa Mulan gets the surprise of her young life when her love, Captain Li Shang asks for her hand in marriage. Before the two can have their happily ever after, the Emperor assigns them a secret mission, to escort three princesses to Chang'an, China. Mushu is determined to drive a wedge between the couple after he learns that he will lose his guardian job if Mulan marries into the Li family.
## 6034 An agoraphobic psychologist and a female detective must work together to take down a serial killer who copies serial killers from the past.
## 6035 A police shootout leaves four thieves dead during an explosive armed robbery attempt in Chicago. Their widows have nothing in common except a debt left behind by their spouses' criminal activities. Hoping to forge a future on their own terms, they join forces to pull off a heist.
## 6036 The story centers around a graduating class of "less-gifted" students in a private Versailles high school. Only a miracle has brought the students this far along, and after a practical joke misfires and the whole school is dynamited, the students are in deep trouble. They have to present themselves in court for their punishment and it could not be worse: If they don't pass their high-school graduation exams, they go to prison!
## 6037 Sarah Jordan, an American living in London in 1984, is married to the son of a wealthy British industrialist. She encounters Nick Callahan, a renegade doctor, whose impassioned plea for help to support his relief efforts in war-torn Africa moves her deeply. As a result, Sarah embarks upon a journey of discovery that leads to danger, heartbreak and romance in the far corners of the world.
## 6038 A fictional documentary-style expose on the rivalry between two tennis stars who battled it out in a 1999 match that lasted seven days.
## 6039 The Tooth Fairy is back. 15 years after the events of the first movie, Corey, now grown up but mentally scarred has gone to a class reunion. However, the Tooth Fairy is back, and this time - You better have flossed properly.
## 6040 Will and his new girlfriend Kira are invited to a dinner with old friends at the house of Will’s ex Eden and her new partner David. Although the evening appears to be relaxed, Will soon gets a creeping suspicion that their charming host David is up to something.
## 6041 A rich man's daughter is held captive in an abandoned apartment by two former convicts who abducted her and hold her ransom in exchange for her father's money.
## 6042 The story of an encounter between a bourgeois man and a poor woman, because their teenage children fall in love.
## 6043 Follows the story of a group of high school teenagers and their parents as they attempt to navigate the many ways the internet has changed their relationships, their communication, their self-image, and their love lives.
## 6044 One day, Horton the elephant hears a cry from help coming from a speck of dust. Even though he can't see anyone on the speck, he decides to help it. As it turns out, the speck of dust is home to the Whos, who live in their city of Whoville. Horton agrees to help protect the Whos and their home.
## 6045 Three scouts and lifelong friends join forces with one badass cocktail waitress to become the world’s most unlikely team of heroes. When their peaceful town is ravaged by a zombie invasion, they’ll fight for the badge of a lifetime and put their scouting skills to the test to save mankind from the undead.
## 6046 Annabelle is the wise-beyond-her-years newcomer to an exclusive Catholic girls school. Having been expelled from her first two schools she's bound to stir some trouble. Sparks fly though when sexual chemistry appears between her and the Head of her dorm and English teacher, Simone Bradley. Annabelle pursues her relentlessly and until the end the older woman manages to avoid the law.
## 6047 The continuing adventures of Lilo, a little Hawaiian girl, and Stitch, the galaxy's most-wanted extraterrestrial. Stitch, Pleakley, and Dr. Jumba are all part of the household now, but what Lilo and Stitch don't know is that Dr. Jumba brought his other alien "experiments" to Hawaiʻi as well.
## 6048 Bolt is the star of the biggest show in Hollywood. The only problem is, he thinks it's real. After he's accidentally shipped to New York City and separated from Penny, his beloved co-star and owner, Bolt must harness all his "super powers" to find a way home.
## 6049 When a Las Vegas performer-turned-snitch named Buddy Israel decides to turn state's evidence and testify against the mob, it seems that a whole lot of people would like to make sure he's no longer breathing.
## 6050 Five medical students want to find out if there is life after death. They plan to stop one of their hearts for a few seconds, thus simulating death, and then bring the person back to life.
## 6051 In an isolated family mansion, a group of rich 20-somethings decides to play Bodies Bodies Bodies, a game where one of them is secretly a "killer" while the rest tries to "escape". Things take a turn for the worse when real bodies start turning up, setting off a paranoid and dangerous chain of events.
## 6052 A defense attorney works to get his teenage client acquitted of murdering his wealthy father.
## 6053 On the planet Latimer, Takeshi Kovacs must protect a tattooist while investigating the death of a yakuza boss alongside a no-nonsense CTAC.
## 6054 A Minnesota police officer crosses paths with a committed and tireless vigilante as he follows the trail of a ruthless predator responsible for several abductions and murders.
## 6055 It's a jungle out there for Blu, Jewel and their three kids after they're hurtled from Rio de Janeiro to the wilds of the Amazon. As Blu tries to fit in, he goes beak-to-beak with the vengeful Nigel, and meets the most fearsome adversary of all: his father-in-law.
## 6056 Five young friends find the mysterious and fiercely powerful Book of the Dead, and unable to resist its temptation, release a violent demon on a bloodthirsty quest to possess them all.
## 6057 At Adams College, the jocks rule the school from their house on high, the Alpha Beta fraternity. So when a group of socially-challenged misfits try to go Greek, they're instantly rejected by every house on campus. Deciding to start their own fraternity to protect their outcast brothers, the campus nerds soon find themselves in a battle royale as the Alpha Betas try to crush their new rivals.
## 6058 The embodiment of ultimate evil, a glowing orb terrorizes a young girl with bizarre stories of dark fantasy, eroticism and horror.
## 6059 The charismatic criminal Dobermann, who got his first gun when he was christened, leads a gang of brutal robbers. After a complex and brutal bank robbery, they are being hunted by the Paris police. The hunt is led by the sadistic cop Christini, who only has one goal: to catch Dobermann at any cost.
## 6060 Young Anthony Soprano is growing up in one of the most tumultuous eras in Newark, N.J., history, becoming a man just as rival gangsters start to rise up and challenge the all-powerful DiMeo crime family. Caught up in the changing times is the uncle he idolizes, Dickie Moltisanti, whose influence over his nephew will help shape the impressionable teenager into the all-powerful mob boss, Tony Soprano.
## 6061 Rebellious, quick-witted Erica Vandross is a 17-year-old firecracker living with her single mom, Laurie, and her mom's new boyfriend, Bob, in L.A.'s San Fernando Valley. When Bob's mentally unbalanced son, Luke, arrives from rehab to live with the family, Erica finds her domestic and personal life overwhelmed. With Luke and her sidekicks Kala and Claudine in tow, Erica acts out by exposing a high school teacher's dark secret.
## 6062 A socially awkward veterinary assistant with a lazy eye and obsession with perfection descends into depravity after developing a crush on a boy with perfect hands.
## 6063 When Sarah Marshall dumps aspiring musician Peter Bretter for rock star Aldous Snow, Peter's world comes crashing down. His best friend suggests that Peter should get away from everything and to fly off to Hawaii to escape all his problems. After arriving in Hawaii and meeting the beautiful Rachel Jansen, Peter is shocked to see not only Aldous Snow in Hawaii, but also Sarah Marshall.
## 6064 Charlie gets released from an insane asylum and moves in with Miranda, the young daughter he left behind. Charlie believes that there is treasure hidden beneath the local Costco, so he puts together a plan to unearth the loot. By convincing Miranda to quit her job at McDonald's and instead work at the wholesale store, he is able to obtain a key. Although Miranda is skeptical, she helps her father with his irrational quest.
## 6065 14 years after making a film about his journey across the USA, Borat risks life and limb when he returns to the United States with his young daughter, and reveals more about the culture, the COVID-19 pandemic, and the political elections.
## 6066 Antoinette, a school teacher, is looking forward to her long planned summer holidays with her secret lover Vladimir, the father of one of her pupils. When learning that Vladimir cannot come because his wife organized a surprise trekking holiday in the Cévennes National Park with their daughter and a donkey to carry their load, Antoinette decides to follow their track, by herself, with Patrick, a protective donkey.
## 6067 After making a harrowing escape from war-torn South Sudan, a young refugee couple struggle to adjust to their new life in a small English town that has an unspeakable evil lurking beneath the surface.
## 6068 The son of an atheist, authoritarian father, believed to be liberal, wants to become a priest.
## 6069 What would you do on the last day on Earth? With the end of the world only hours away, the self-absorbed James heads to the ultimate party-to-end-all-parties. On his way there, he saves the life of a young girl named Rose who is searching desperately for her missing father. This simple act sets James on a path to redemption.
## 6070 Advertising executive Nick Beame learns that his wife is sleeping with his employer. In a state of despair, he encounters a bumbling thief whose attempted carjacking goes awry when Nick takes him on an involuntary joyride. Soon the betrayed businessman and the incompetent crook strike up a partnership and develop a robbery-revenge scheme. But it turns out that some other criminals in the area don't appreciate the competition.
## 6071 Because of the actions of her irresponsible parents, a young girl is left alone on a decrepit country estate and survives inside her fantastic imagination.
## 6072 When a destructive space entity is spotted approaching Earth, Admiral Kirk resumes command of the Starship Enterprise in order to intercept, examine, and hopefully stop it.
## 6073 An Icelandic couple live with their herd of sheep on a beautiful but remote farm. When they discover a mysterious newborn on their land, they decide to keep it and raise it as their own. This unexpected development and the prospects of a new family brings them much joy before ultimately destroying them.
## 6074 Belgian sleuth Hercule Poirot's Egyptian vacation aboard a glamorous river steamer turns into a terrifying search for a murderer when a picture-perfect couple's idyllic honeymoon is tragically cut short.
## 6075 In 1998, an auction of the estate of the Duke and Duchess of Windsor causes great excitement. For one woman, Wally Winthrop, it has much more meaning. Wally becomes obsessed by their historic love story. As she learns more about the sacrifices involved, Wally gains her own courage to find happiness.
## 6076 When a covert mission to rescue a kidnapped CIA operative uncovers a chilling plot, an elite, highly trained U.S. SEAL team speeds to hotspots around the globe, racing against the clock to stop a deadly terrorist attack.
## 6077 New Yorkers Skip Donahue and Harry Monroe have no jobs and no prospects, so they decide to flee the city and find work elsewhere, landing jobs wearing woodpecker costumes to promote the opening of a bank. When their feathery costumes are stolen and used in a bank robbery, they no longer have to worry about employment — they're sent to prison.
## 6078 U.S. Marshal Sam Gerard is accompanying a plane load of convicts from Chicago to New York. The plane crashes spectacularly, and Mark Sheridan escapes. But when Diplomatic Security Agent John Royce is assigned to help Gerard recapture Sheridan, it becomes clear that Sheridan is more than just another murderer.
## 6079 Forensic psychologist Alex Cross travels to North Carolina and teams with escaped kidnap victim Kate McTiernan to hunt down "Casanova," a serial killer who abducts strong-willed women and forces them to submit to his demands. The trail leads to Los Angeles, where the duo discovers that the psychopath may not be working alone.
## 6080 Obelix falls for a new arrival in his home village in Gaul, but is heartbroken when her true love arrives to visit her. However, the lovers are kidnapped by Romans; Asterix and Obelix set out to rescue them on a dangerous journey that will involve gladiators, slavers and beauracracy - and a personal encounter with the Emperor himself, Julius Caesar...
## 6081 A young Greek woman falls in love with a non-Greek and struggles to get her family to accept him while she comes to terms with her heritage and cultural identity.
## 6082 A young woman fakes her own death in an attempt to escape her nightmarish marriage, but discovers it is impossible to elude her controlling husband.
## 6083 A Chechen Muslim illegally immigrates to Hamburg and becomes a person of interest for a covert government team which tracks the movements of potential terrorists.
## 6084 What happens when a man and a woman share a common passion? They fall in love. And this is what happens to Jean-René, the boss of a small chocolate factory, and Angélique, a gifted chocolate maker he has just hired. What occurs when a highly emotional man meets a highly emotional woman? They fall in love, and this is what occurs to Jean-René and Angélique who share the same handicap. But being pathologically timid does not make things easy for them. So whether they will manage to get together, join their solitudes and live happily ever after is a guessing matter.
## 6085 A Californian family inherits a castle in Romania. This is especially exciting to the son, who is obsessed with monsters. And he is not disappointed.
## 6086 Three female employees of the Federal Reserve plot to steal money that is about to be destroyed.
## 6087 Powerful businessman Russ Duritz is self-absorbed and immersed in his work. But by the magic of the moon, he meets Rusty, a chubby, charming 8-year-old version of himself who can't believe he could turn out so badly – with no life and no dog. With Rusty's help, Russ is able to reconcile the person he used to dream of being with the man he's actually become.
## 6088 In a bizarre Breton library that collects rejected, never published manuscripts, a young editor discovers a novel that she considers a masterpiece. It was written by a certain Henri Pick, a cook who died two years earlier and who, according to his widow, had never read a book in his life or written anything but a shopping list... Did he have a secret life? When the book becomes a huge best-seller, Jean- Michel Rouche, a skeptical and stubborn literary critic, teams up with Joséphine, Pick’s daughter, to unravel the mystery.
## 6089 Cissy, Reggie, and Wilf are in a home for retired musicians. Every year, there is a concert to celebrate Composer Giuseppe Verdi's birthday and they take part. Jean, who used to be married to Reggie, arrives at the home and disrupts their equilibrium. She still acts like a diva, but she refuses to sing. Still, the show must go on, and it does.
## 6090 When an evil emperor executes their leader, his band of knights – bound by duty and honour – embarks on a journey of vengeance that will not come to an end until they've destroyed their mortal foe.
## 6091 Benny and Claire, a down-on-their-luck couple, find a discarded Chitauri weapon referred to as 'Item 47'.
## 6092 The tiny girl meets a fairy prince who saves her from the creatures of the woods.
## 6093 Two salesmen trash a company truck on an energy drink-fueled bender. Upon their arrest, the court gives them a choice: do hard time or spend 150 service hours with a mentorship program. After one day with the kids, however, jail doesn't look half bad.
## 6094 After a defecting Russian general reveals a plot to assassinate foreign spies, James Bond is assigned a secret mission to dispatch the new head of the KGB to prevent an escalation of tensions between the Soviet Union and the West.
## 6095 Doug Harris is a loveable but socially awkward groom-to-be with a problem: he has no best man. With less than two weeks to go until he marries the girl of his dreams, Doug is referred to Jimmy Callahan, owner and CEO of Best Man, Inc., a company that provides flattering best men for socially challenged guys in need. What ensues is a hilarious wedding charade as they try to pull off the big con, and an unexpected budding bromance between Doug and his fake\n best man Jimmy.
## 6096 Kate and Charlie like to have a good time. Their marriage thrives on a shared fondness for music, laughter… and getting smashed. When Kate’s partying spirals into hard-core asocial behavior, compromising her job as an elementary schoolteacher, something’s got to give. But change isn’t exactly a cakewalk. Sobriety means she will have to confront the lies she’s been spinning at work, her troubling relationship with her mother, and the nature of her bond with Charlie.
## 6097 A loser of a crook and his wife strike it rich when a botched bank job's cover business becomes a spectacular success.
## 6098 No beau? No problem! To earn money for college, a high schooler creates a dating app that lets him act as a stand-in boyfriend.
## 6099 In the prehistoric past, Keda, a young and inexperienced hunter, struggles to return home after being separated from his tribe when bison hunting goes awry. On his way back he will find an unexpected ally.
## 6100 After Shideh's building is hit by a missile during the Iran-Iraq War, a superstitious neighbor suggests that the missile was cursed and might be carrying malevolent Middle-Eastern spirits. She becomes convinced a supernatural force within the building is attempting to possess her daughter Dorsa, and she has no choice but to confront these forces if she is to save her daughter and herself.
## 6101 Feature film adaptation of Shakespeare's Scottish play about General Macbeth whose ambitious wife urges him to use wicked means in order to gain power of the throne over the sitting king, Duncan.
## 6102 After the birth of Renesmee, the Cullens gather other vampire clans in order to protect the child from a false allegation that puts the family in front of the Volturi.
## 6103 Taran is an assistant pigkeeper with boyish dreams of becoming a great warrior. However, he has to put the daydreaming aside when his charge, an oracular pig named Hen Wen, is kidnapped by an evil lord known as the Horned King. The villain hopes Hen will show him the way to The Black Cauldron, which has the power to create a giant army of unstoppable soldiers.
## 6104 Alex, Marty, and other zoo animals find a way to escape from Madagascar when the penguins reassemble a wrecked airplane. The precariously repaired craft stays airborne just long enough to make it to the African continent. There the New Yorkers encounter members of their own species for the first time. Africa proves to be a wild place, but Alex and company wonder if it is better than their Central Park home.
## 6105 Hong Kong cop Chan Ka-Kui returns, working with Interpol to track down and arrest an illegal weapons dealer. Chan later realizes that things are not as simple as they appear and soon finds himself to be a pawn of an organization posing as Russian intelligence.
## 6106 Andy is a new teacher at an inner city high school that is unlike any he has seen before. There are metal detectors at the front door and the place is basically run by a tough kid named Peter Stegman. Soon, Andy and Stegman become enemies and Stegman will stop at nothing to protect his turf and drug dealing business.
## 6107 When Terry Griffith loses her high school's writing competition, she's convinced that it's because she's a girl. So Terry decides to change high schools and pose as a boy to prove her point. Her brother, Buddy, helps her pass as a guy so well that she is soon making friends with the boys at school, including the attractive Rick, who becomes her new best friend. But her gender-swapping makes things difficult when she falls in love with him.
## 6108 Max imagines running away from his mom and sailing to a far-off land where large talking beasts—Ira, Carol, Douglas, the Bull, Judith and Alexander—crown him as their king, play rumpus, build forts and discover secret hideaways.
## 6109 Haunted by memories of a patient's death, a nurse takes a job at an antiquated hospital for children. Soon she learns that the kids fear a ghost that prowls the floors and will not allow anyone to leave. Amy tries to protect them and convince the other staffers of the evil that lurks there.
## 6110 Four corrupted fascist libertines round up 9 teenage boys and girls and subject them to 120 days of sadistic physical, mental and sexual torture.
## 6111 A medieval English knight is magically transported to present day where he ends up falling for a high school science teacher.
## 6112 Two lifelong friends head up to an isolated Scottish Highlands village for a weekend hunting trip that descends into a never-ending nightmare as they attempt to cover up a horrific hunting accident.
## 6113 In 1947, long-retired and near the end of his life, Sherlock Holmes grapples with an unreliable memory and must rely on his housekeeper's son as he revisits the still-unsolved case that led to his retirement.
## 6114 When Molly Hale's sadness of her father's disappearance gets to her, she unknowingly uses the Unown to create her own dream world along with Entei, who she believes to be her father. When Entei kidnaps Ash's mother, Ash along with Misty & Brock invade the mansion looking for his mom and trying to stop the mysteries of Molly's Dream World and Entei!
## 6115 Lewis, Sheriff and Tony are three friends vacationing in Malaysia. Sheriff and Tony eventually leave to pursue careers in New York, but Lewis stays behind to work with orangutans. Two years later, Sheriff and Tony learn that, because of their past actions, Lewis has been arrested for drug possession. With Lewis facing a death sentence, the friends are left with a difficult decision: return to Malaysia and split Lewis' sentence, or let him die.
## 6116 A working woman, mother a three children, realizes that, when her youngest one is about to go to Canada to continue her education, she will end up out of her most precious goal, being a mother.
## 6117 Parent and child journey through the outskirts of society a decade after a pandemic has wiped out half the world's population. As a father struggles to protect his child, their bond—and the character of humanity—is tested.
## 6118 Chief Inspector Jacques Clouseau is dead. At least that is what the world—and Charles Dreyfus—believe when a dead body is discovered in Clouseau's car after being shot off the road. Naturally, Clouseau knows differently and, taking advantage of not being alive, sets out to discover why an attempt was made on his life.
## 6119 A chronicle of the lives of several teenagers who attend a New York high school for students gifted in the performing arts.
## 6120 Professor Phillip Goodman devotes his life to exposing phony psychics and fraudulent supernatural shenanigans. His skepticism soon gets put to the test when he receives news of three chilling and inexplicable cases -- disturbing visions in an abandoned asylum, a car accident deep in the woods and the spirit of an unborn child. Even scarier -- each of the macabre stories seems to have a sinister connection to the professor's own life.
## 6121 Wife and mother Valerie Plame has a double life as a CIA operative, hiding her vocation from family and friends. Her husband, Joseph Wilson, writes a controversial article in The New York Times, refuting stories about the sale of enriched uranium to Iraq, Then Valerie's secret work and identity is leaked to the press. With her cover blown and other people endangered, Valerie's career and personal life begin to unravel.
## 6122 Arthur Bishop is a 'mechanic' - an elite assassin with a strict code and unique talent for cleanly eliminating targets. It's a job that requires professional perfection and total detachment, and Bishop is the best in the business. But when he is ordered to take out his mentor and close friend Harry, Bishop is anything but detached.
## 6123 Trainees in the FBI's psychological profiling program must put their training into practice when they discover a killer in their midst.
## 6124 The Wind in the Willows: Concise version of Kenneth Grahame's story of the same name. J. Thaddeus Toad, owner of Toad Hall, is prone to fads, such as the newfangled motor car. This desire for the very latest lands him in much trouble with the wrong crowd, and it is up to his friends, Mole, Rat and Badger to save him from himself. - The Legend of Sleepy Hollow: Retelling of Washington Irving's story set in a tiny New England town. Ichabod Crane, the new schoolmaster, falls for the town beauty, Katrina Van Tassel, and the town Bully Brom Bones decides that he is a little too successful and needs "convincing" that Katrina is not for him.
## 6125 People in the future live in a totalitarian society. A technician named THX 1138 lives a mundane life between work and taking a controlled consumption of drugs that the government uses to make puppets out of people. As THX is without drugs for the first time he has feelings for a woman and they start a secret relationship.
## 6126 Malasaña neighborhood, Madrid, Spain, 1976. While political turmoil ravages the streets all over the country, the Olmedo family arrives in the big city and settles into their new apartment. They soon discover that they are not the only ones roaming its corridors.
## 6127 Arnaud, facing an uncertain future and a dearth of choices in a small French coastal town, meets and falls for the apocalyptic-minded Madeleine, who joins an army boot camp to learn military and survival skills to prepare for the upcoming environmental collapse. Intrigued and excited by Madeleine’s wild ideas, Arnaud signs up for the boot camp himself. They soon realize that the boot camp is harder than they’d imagined, but the experience nonetheless cements them together as the couple continues to explore their young love.
## 6128 Three years after his wife, acclaimed photographer Isabelle Reed, dies in a car crash, Gene keeps everyday life going with his shy teenage son, Conrad. A planned exhibition of Isabelle’s photographs prompts Gene's older son, Jonah, to return to the house he grew up in - and for the first time in a very long time, the father and the two brothers are living under the same roof.
## 6129 A 12-year-old boy searches for the one thing that will enable him to win the affection of the girl of his dreams. To find it he must discover the story of the Lorax, the grumpy yet charming creature who fights to protect his world.
## 6130 When 13 year old Maria Merryweather's father dies, leaving her orphaned and homeless, she is forced to leave her luxurious London life to go and live with Sir Benjamin, an eccentric uncle she didn't know she had, at the mysterious Moonacre Manor.
## 6131 A film adaptation of Shakespeare's comedy about lovers whose romantic affections are manipulated by fairy magic. The setting is updated to a Tuscan hill town in the late 19th century.
## 6132 Assassin Robert Rath arrives at a funeral to kill a prominent mobster, only to witness a rival hired gun complete the job for him -- with grisly results. Horrified by the murder of innocent bystanders, Rath decides to take one last job and then return to civilian life. But finding his way out of the world of contract killing grows ever more dangerous as Rath falls for his female target and becomes a marked man himself.
## 6133 Countless wiseguy films are spoofed in this film that centers on the neuroses and angst of a powerful Mafia racketeer who suffers from panic attacks. When Paul Vitti needs help dealing with his role in the "family," unlucky shrink Dr. Ben Sobel is given just days to resolve Vitti's emotional crisis and turn him into a happy, well-adjusted gangster.
## 6134 John and his buddy, Jeremy are emotional criminals who know how to use a woman's hopes and dreams for their own carnal gain. Their modus operandi: crashing weddings. Normally, they meet guests who want to toast the romantic day with a random hook-up. But when John meets Claire, he discovers what true love – and heartache – feels like.
## 6135 When Russia's first nuclear submarine malfunctions on its maiden voyage, the crew must race to save the ship and prevent a nuclear disaster.
## 6136 James Bond must investigate a mysterious murder case of a British agent in New Orleans. Soon he finds himself up against a gangster boss named Mr. Big.
## 6137 The National Lampoon name became globally recognized after the monumental success of Animal House—but before the glory days, it was a scrappy yet divinely subversive magazine and radio show that introduced the world to comedic geniuses like Bill Murray, Chevy Chase, John Belushi, and Gilda Radner. The driving force behind National Lampoon was Doug Kenney, and his truly wild and crazy story unfolds in A Futile and Stupid Gesture from Harvard to Hollywood to Caddyshack and beyond.
## 6138 A woman takes the law into her own hands after police ignore her pleas to arrest the man responsible for her husband's death, and finds herself not only under arrest for murder but falling in love with an officer.
## 6139 In order to release his kidnapped sister, sports car mechanic Jackie Chan has to beat a super-criminal street racer.
## 6140 Pierre, a professional dancer, suffers from a serious heart disease. While he is waiting for a transplant which may (or may not) save his life, he has nothing better to do than look at the people around him, from the balcony of his Paris apartment.
## 6141 Axel heads for the land of sunshine and palm trees to find out who shot police Captain Andrew Bogomil. Thanks to a couple of old friends, Axel's investigation uncovers a series of robberies masterminded by a heartless weapons kingpin—and the chase is on.
## 6142 Desperate to avoid his family’s judgment about his perpetual single status, Peter convinces his best friend Nick to join him for the holidays and pretend that they’re now in a relationship. But when Peter’s mother sets him up on a blind date with her handsome trainer James, the plan goes awry.
## 6143 A man ahead of his time, Cyrano de Bergerac dazzles whether with ferocious wordplay at a verbal joust or with brilliant swordplay in a duel. But, convinced that his appearance renders him unworthy of the love of a devoted friend, the luminous Roxanne, Cyrano has yet to declare his feelings for her—and Roxanne has fallen in love, at first sight, with Christian.
## 6144 Oppressed by her family setting, dead-end school prospects and the boys law in the neighborhood, Marieme starts a new life after meeting a group of three free-spirited girls. She changes her name, her dress code, and quits school to be accepted in the gang, hoping that this will be a way to freedom.
## 6145 Two outsiders, both shaped by the circumstances that have brought them together, forge a deep and lasting love.
## 6146 Famille : Groupe de personnes réunies par des liens de parenté et un fort sentiment de solidarité morale et matérielle. Quand Alain a épousé Nathalie, il ne savait pas qu'il épouserait aussi sa famille. Ce samedi, comme toutes les semaines, ils sont invités à dîner chez son beau-frère, Jean-Pierre à Créteil. C'est vrai, Alain en a marre de ces dîners familiaux, mais il ne sait pas encore ce qui l'attend véritablement ce soir-là... Ni les jours qui suivent
## 6147 Set during a sultry summer in a French suburb, Marie is desperate to join the local pool's synchronized swimming team, but is her interest solely for the sake of sport or for a chance to get close to Floriane, the bad girl of the team? Sciamma, and the two leads, capture the uncertainty of teenage sexuality with a sympathetic eye in this delicate drama of the angst of coming-of-age.
## 6148 When an Egyptian terrorism suspect "disappears" on a flight from Africa to Washington DC, his American wife and a CIA analyst find themselves caught up in a struggle to secure his release from a secret detention facility somewhere outside the US.
## 6149 A young woman struggling with addiction comes into possession of an ancient puzzle box, unaware that its purpose is to summon the Cenobites, a group of sadistic supernatural beings from another dimension.
## 6150 Day in and day out, lovers Cynthia and Evelyn enact an elaborate sadomasochistic fantasy as mistress and maid. But as their ritual of domination and submission begins to turn stale, Cynthia yearns for something more conventional, while Evelyn tries to push their taboos even further.
## 6151 The Zoosters are back in an all-new holiday adventure. When Santa and his reindeer crash onto the island of Madagascar it's up to Alex, Marty, Gloria, Melman and those wacky penguins to save Christmas. Get ready for a sleigh full of laughs in this hilarious new holiday classic.
## 6152 While delivering a parking ticket to a small village in the Florida everglades, Officer Dave Speed finds himself in the middle of a radiation experiment conducted by the American government and NASA, where a detonated nuclear missile gives him a multitude of superpowers.
## 6153 Charlie Lang is a simple, kindhearted New York City cop. When he realizes he has no money to tip waitress Yvonne Biasi, Lang offers her half the winnings of his lottery ticket. Amazingly, the ticket happens to be a winner, in the sum of $4 million. True to his word, Lang proceeds to share the prize money with Biasi, which infuriates his greedy wife, Muriel. Not content with the arrangement, Muriel begins scheming to take all the money.
## 6154 Four best friends (Tibby, Lena, Carmen & Bridget) who buy a mysterious pair of pants that fits each of them, despite their differing sizes, and makes whoever wears them feel fabulous. When faced with the prospect of spending their first summer apart, the pals decide they'll swap the pants so that each girl in turn can enjoy the magic.
## 6155 It's a major double-cross when former police officer Brian O'Conner teams up with his ex-con buddy Roman Pearce to transport a shipment of "dirty" money for shady Miami-based import-export dealer Carter Verone. But the guys are actually working with undercover agent Monica Fuentes to bring Verone down.
## 6156 After being involuntarily discharged from the U.S. Special Forces, James Harper decides to support his family by joining a private contracting organization alongside his best friend and under the command of a fellow veteran. Overseas on a covert mission, Harper must evade those trying to kill him while making his way back home.
## 6157 A reformed hunter becomes involved in a deadly game of cat and mouse when he and the local sheriff set out to track a vicious killer who may have kidnapped his daughter years ago.
## 6158 Humanity's desperate battle to reclaim the Earth from Godzilla continues. The key to defeating the King of the Monsters may be Mechagodzilla, a robotic weapon thought to have been lost nearly 20,000 years ago.
## 6159 A blocked screenwriter, Ezio, is trying to finish a story about two off-kilter families thrown together when their teenage children announce they’re getting married. So Ezio writes himself into the story with a romantic part—a development his characters welcome, as they’ve got some ideas of their own for bigger and better roles.
## 6160 A streetwise man flees South Central Los Angeles, heading to the suburbs and his lottery-winner uncle and cousin, to avoid a neighborhood thug with a grudge who has just escaped from prison.
## 6161 Timmy Robinson's best friend in the whole wide world is a six-foot tall rotting zombie named Fido. But when Fido eats the next-door neighbor, Mom and Dad hit the roof, and Timmy has to go to the ends of the earth to keep Fido a part of the family. A boy-and-his-dog movie for grown ups, "Fido" will rip your heart out.
## 6162 After a former elite agent rescues a 12-year-old Chinese girl who's been abducted, they find themselves in the middle of a standoff between Triads, the Russian Mafia and high-level corrupt New York City politicians and police.
## 6163 The evil Dr. Kochin uses the dragon balls to resurrect his mentor, Dr. Wheelo, in an effort to take over the world. Dr. Wheelo, his body having been destroyed by the avalanche that killed him fifty years before, desires the body of the strongest fighter in the world as his new vessel. Believing Roshi to be the world's strongest warrior, Dr. Kochin abducts Bulma and forces Roshi to surrender himself to save her. When Goku hears of their abduction, he goes to their rescue.
## 6164 A US Army officer, who made a "friendly fire" mistake that was covered up, has been reassigned to a desk job. He is tasked to investigate a female chopper commander's worthiness to be awarded the Medal of Honor. At first all seems in order. But then he begins to notice inconsistencies between the testimonies of the witnesses...
## 6165 With a reputation for seducing members of the opposite sex, regardless of their marital status, a notorious womanizer discovers a beauty who seems impervious to his charms. However, as he continues to pursue the indifferent lady, he finds himself falling in love.
## 6166 With the help of a talking freeway billboard, a "wacky weatherman" tries to win the heart of an English newspaper reporter, who is struggling to make sense of the strange world of early-90s Los Angeles.
## 6167 At the height of the Cold War, a Soviet spacecraft crash lands after a mission gone awry, leaving the commander as its only survivor. After a renowned Russian psychologist is brought in to evaluate the commander’s mental state, it becomes clear that something dangerous may have come back to Earth with him…
## 6168 An estranged family gathers together in New York for an event celebrating the artistic work of their father.
## 6169 The story of a young man who arrives in Hollywood during the 1930s hoping to work in the film industry, falls in love, and finds himself swept up in the vibrant café society that defined the spirit of the age.
## 6170 An orphaned child's dreams—and nightmares—manifest physically as he sleeps.
## 6171 The Hangover crew heads to Thailand for Stu's wedding. After the disaster of a bachelor party in Las Vegas last year, Stu is playing it safe with a mellow pre-wedding brunch. However, nothing goes as planned and Bangkok is the perfect setting for another adventure with the rowdy group.
## 6172 Rome, 1989. Luca Molinari meets Claudia in a party, both of them are stressed about the upcoming final exams. Luca falls in love with the girl and now spends his time looking for her. He is assisted by his inseparable friends: Alice, Richard, Simon and Maximilian in his journey to find the girl he has fallen in love with.
## 6173 A family wedding reignites the ancient feud between next-door neighbors and fishing buddies John and Max. Meanwhile, a sultry Italian divorcée opens a restaurant at the local bait shop, alarming the locals who worry she'll scare the fish away. But she's less interested in seafood than she is in cooking up a hot time with Max.
## 6174 It's vacation time for outdoorsy Chicago man Chet Ripley, along with his wife, Connie, and their two kids, Buck and Ben. But a serene weekend of fishing at a Wisconsin lakeside cabin gets crashed by Connie's obnoxious brother-in-law, Roman Craig, his wife, Kate, and the couple's two daughters. As the excursion wears on, the Ripleys find themselves at odds with the stuffy Craig family.
## 6175 Thomas Jerome Newton is an alien who has come to Earth in search of water to save his home planet. Aided by lawyer Oliver Farnsworth, Thomas uses his knowledge of advanced technology to create profitable inventions. While developing a method to transport water, Thomas meets Mary-Lou, a quiet hotel clerk, and begins to fall in love with her. Just as he is ready to leave Earth, Thomas is intercepted by the U.S. government, and his entire plan is threatened.
## 6176 A female assassin during the Tang Dynasty begins to question her loyalties when she falls in love with one of her targets.
## 6177 Four fighters from different backgrounds come together to train under an ex MMA rising star and then ultimately have to fight each other and the traitor in their midst.
## 6178 Twenty-something Richard travels to Thailand and finds himself in possession of a strange map. Rumours state that it leads to a solitary beach paradise, a tropical bliss - excited and intrigued, he sets out to find it.
## 6179 After getting into a serious car accident, a TV director discovers an underground sub-culture of scarred, omnisexual car-crash victims who use car accidents and the raw sexual energy they produce to try to rejuvenate his sex life with his wife.
## 6180 Danny Ocean and his gang attempt to rob the five biggest casinos in Las Vegas in one night.
## 6181 When her son's alleged kidnapper is released for lack of solid evidence, a reputable and well-known attorney takes matters into her own hands with unintended and spectacularly disastrous consequences.
## 6182 Young, wild poet Arthur Rimbaud and his mentor Paul Verlaine engage in a fierce, forbidden romance while feeling the effects of a hellish artistic lifestyle.
## 6183 Identical 9-year-olds from very different backgrounds: orphaned Amanda and wealthy Alyssa meet at summer camp and decide to switch places -- and play matchmaker between Alyssa's dad, Roger, and the kind social worker who cares for Amanda.
## 6184 Joan Jett and Cherie Currie, two rebellious teenagers from Southern California, become the frontwomen for the Runaways -- the now-legendary group that paved the way for future generations of female rockers. Under the Svengali-like influence of impresario Kim Fowley, the band becomes a huge success.
## 6185 Just before stubborn millionaire Edwina Cutwater dies, she asks her uptight lawyer, Roger Cobb, to amend her will so that her soul will pass to the young, vibrant Terry Hoskins – but the spiritual transference goes awry. Edwina enters Roger's body instead, forcing him to battle Edwina for control of his own being.
## 6186 A man stranded in the Arctic is finally about to receive his long awaited rescue. However, after a tragic accident, his opportunity is lost and he must then decide whether to remain in the relative safety of his camp or embark on a deadly trek through the unknown for potential salvation.
## 6187 He invents puzzles. He’s committed body and soul to his work and needs silence to be able to concentrate. She is an accomplished pianist and can’t live without music. She must prepare for a competition that could change her life. They are going to be forced to coexist without seeing each other.
## 6188 Decades after Sarah Connor prevented Judgment Day, a lethal new Terminator is sent to eliminate the future leader of the resistance. In a fight to save mankind, battle-hardened Sarah Connor teams up with an unexpected ally and an enhanced super soldier to stop the deadliest Terminator yet.
## 6189 Chili Palmer is a Miami mobster who gets sent by his boss, the psychopathic "Bones" Barboni, to collect a bad debt from Harry Zimm, a Hollywood producer who specializes in cheesy horror films. When Chili meets Harry's leading lady, the romantic sparks fly. After pitching his own life story as a movie idea, Chili learns that being a mobster and being a Hollywood producer really aren't all that different.
## 6190 14-year-old basketball phenom Terron Forte has to navigate the under-the-table world of amateur athletics when he is recruited to an elite NCAA prep school.
## 6191 A girl falls for the "perfect" guy, who happens to have a very fatal flaw: he's a hitman on the run from the crime cartels who employ him.
## 6192 A vampiric doctoral student tries to follow the philosophy of a nocturnal comrade and control her thirst for blood.
## 6193 Miles Logan is a jewel thief who just hit the big time by stealing a huge diamond. However, after two years in jail, he comes to find out that he hid the diamond in a police building that was being built at the time of the robbery. In an attempt to regain his diamond, he poses as an LAPD detective.
## 6194 Brantley Foster, a well-educated kid from Kansas, has always dreamed of making it big in New York, but once in New York, he learns that jobs - and girls - are hard to get. When Brantley visits his uncle, Howard Prescott, who runs a multi-million-dollar company, he is given a job in the company's mail room.
## 6195 Childlike Englishman, Mr. Bean, is an incompetent watchman at the Royal National Gallery. After the museum's board of directors' attempt to have him fired is blocked by the chairman, who has taken a liking to Bean, they send him to Los Angeles to act as their ambassador for the unveiling of a historic painting to humiliate him. Fooled, Mr. Bean must now successfully unveil the painting or risk his and a hapless Los Angeles curator's termination.
## 6196 A group of families on a tropical holiday discover that the secluded beach where they are staying is somehow causing them to age rapidly – reducing their entire lives into a single day.
## 6197 Paulette lives alone in a housing project in the Paris suburbs. With her meager pension, she can no longer make ends meet.
## 6198 Newly single, 35, and uninspired by his job, Jesse Fisher worries that his best days are behind him. But no matter how much he buries his head in a book, life keeps pulling Jesse back. When his favorite college professor invites him to campus to speak at his retirement dinner, Jesse jumps at the chance. He is prepared for the nostalgia of the dining halls and dorm rooms, the parties and poetry seminars; what he doesn’t see coming is Zibby – a beautiful, precocious, classical-music-loving sophomore. Zibby awakens scary, exciting, long-dormant feelings of possibility and connection that Jesse thought he had buried forever.
## 6199 Frank Drebin is persuaded out of retirement to go undercover in a state prison. There he has to find out what top terrorist, Rocco, has planned for when he escapes. Adding to his problems, Frank's wife, Jane, is desperate for a baby.
## 6200 When disc jockey Grant Mazzy reports to his basement radio station in the Canadian town of Pontypool, he thinks it's just another day at work. But when he hears reports of a virus that turns people into zombies, Mazzy barricades himself in the radio booth and tries to figure out a way to warn his listeners about the virus and its unlikely mode of transmission.
## 6201 A Michigan farmer and a prospector form a partnership in the California gold country. Their adventures include buying and sharing a wife, hijacking a stage, kidnapping six prostitutes, and turning their mining camp into a boom town. Along the way there is plenty of drinking, gambling, and singing. They even find time to do some creative gold mining.
## 6202 In 1949, composer Roman Strauss is executed for the murder of his wife. In 1990s Los Angeles, a detective comes across a mute amnesiac woman who is somehow linked to the Strauss murder.
## 6203 A year after losing his friend in a tragic 4,000-foot fall, former ranger Gabe Walker and his partner, Hal, are called to return to the same peak to rescue a group of stranded climbers, only to learn the climbers are actually thieving hijackers who are looking for boxes full of money.
## 6204 A woman with a metal plate in her head from a childhood car accident embarks on a bizarre journey, bringing her into contact with a firefighter who's reunited with his missing son after 10 years.
## 6205 A legendary late-night talk show host's world is turned upside down when she hires her only female staff writer. Originally intended to smooth over diversity concerns, her decision has unexpectedly hilarious consequences as the two women separated by culture and generation are united by their love of a biting punchline.
## 6206 In the aftermath of World War II, a British colonel and his wife are assigned to live in Hamburg during the post-war reconstruction, but tensions arise with the German widower who lives with them.
## 6207 Self-described misanthrope Elle Reid has her protective bubble burst when her 18-year-old granddaughter, Sage, shows up needing help. The two of them go on a day-long journey that causes Elle to come to terms with her past and Sage to confront her future.
## 6208 It's the ultimate buddy cop movie except for one thing: they're not cops. When two struggling pals dress as police officers for a costume party, they become neighborhood sensations. But when these newly-minted “heroes” get tangled in a real life web of mobsters and dirty detectives, they must put their fake badges on the line.
## 6209 An anthology film presenting remakes of three episodes from the TV series "Kick the Can", "It's a Good Life" and "Nightmare at 20,000 Feet" and featuring one original story "Time Out".
## 6210 The sorcerer and his apprentice Galen are on a mission to kill an evil dragon to save the King’s daughter from being sacrificed according to a pact that the King himself made with the dragon to protect his kingdom.
## 6211 An unprecedented series of violent tornadoes is sweeping across Oklahoma. Tornado chasers, headed by Dr. Jo Harding, attempt to release a groundbreaking device that will allow them to track them and create a more advanced warning system. They are joined by Jo's soon to be ex-husband Bill, a former tornado chaser himself, and his girlfriend Melissa.
## 6212 Marcos' life turns upside down after he loses the same day his girlfriend and his job. Marcos' life turns wild after to meet Raquel.
## 6213 A story about how a new baby's arrival impacts a family, told from the point of view of a delightfully unreliable narrator, a wildly imaginative 7 year old named Tim.
## 6214 The true story of Whitey Bulger, the brother of a state senator and the most infamous violent criminal in the history of South Boston, who became an FBI informant to take down a Mafia family invading his turf.
## 6215 A lonely boy discovers a mysterious egg that hatches a sea creature of Scottish legend.
## 6216 A Super Namekian named Slug comes to invade Earth. But the Z Warriors do their best to stop Slug and his gang.
## 6217 A lazy law school grad adopts a kid to impress his girlfriend, but everything doesn't go as planned and he becomes the unlikely foster father.
## 6218 An all-expenses-paid international search for a rare copy of the book 'The Nine Gates of the Kingdom of Shadows' brings an unscrupulous book dealer deep into a world of murder, double-dealing and satanic worship.
## 6219 A fur trapper leaves his wife and daughter behind to kill a rogue wolf in the remote wilderness, but they soon become increasingly worried when their peaceful existence is disrupted.
## 6220 Bored and frustrated suburban homemaker Connie and her best pal JoJo, a vlogger with dreams, turn a hobby into a multi-million-dollar counterfeit coupon caper. After firing off a letter to the conglomerate behind a box of cereal gone stale, and receiving an apology along with dozens of freebies, the duo hatch an illegal coupon club scheme that scams millions from mega-corporations and delivers deals to legions of fellow coupon clippers. On the trail to total coupon dominance, a hapless Loss Prevention Officer from the local supermarket chain joins forces with a determined U.S. Postal Inspector in hot pursuit of these newly minted “Queenpins” of pink collar crime.
## 6221 Peter is thrilled that his Grandpa is coming to live with his family. That is, until Grandpa moves into Peter's room, forcing him upstairs into the creepy attic. And though he loves his Grandpa, he wants his room back - so he has no choice but to declare war.
## 6222 A young girl named June with a big imagination makes an incredible discovery -- the amusement park of her dreams has come to life. Filled with the world's wildest rides operated by fun-loving animals, the excitement never ends. But when trouble hits, June and her misfit team of furry friends begin an unforgettable journey to save the park.
## 6223 Murphy is an American living in Paris who enters a highly sexually and emotionally charged relationship with the unstable Electra. Unaware of the seismic effect it will have on their relationship, they invite their pretty neighbor into their bed.
## 6224 Anna returns home after spending time in a psychiatric facility following her mother's tragic death and discovers that her mother's former nurse, Rachel, has moved into their house and become engaged to her father. Soon after she learns this shocking news, Anna is visited by her mother's ghost, who warns her that Rachel has evil intentions.
## 6225 Following the arrest of her mother, Ramona, young Vanessa Lutz decides to go in search of her estranged grandmother. On the way, she is given a ride by school counselor Bob Wolverton. During the journey, Lutz begins to realize that Bob is the notorious I-5 Killer and manages to escape by shooting him several times. Wounded but still very much alive, Bob pursues Lutz across the state in this modern retelling of Little Red Riding Hood.
## 6226 An airline pilot and his wife are forced to face the consequences of her alcoholism when her addictions threaten her life and their daughter's safety. While the woman enters detox, her husband must face the truth of his enabling behavior.
## 6227 Russian terrorists conspire to hijack the aircraft with the president and his family on board. The commander in chief finds himself facing an impossible predicament: give in to the terrorists and sacrifice his family, or risk everything to uphold his principles - and the integrity of the nation.
## 6228 In the midst of World War II, the battle under the sea rages and the Nazis have the upper hand as the Allies are unable to crack their war codes. However, after a wrecked U-boat sends out an SOS signal, the Allies realise this is their chance to seize the 'enigma coding machine'.
## 6229 An ordinary guy suddenly finds himself forced to fight a gladiator-like battle for a dark website that streams the violence for viewers. In order to survive and rescue his kidnapped ex-girlfriend, he must battle Nix, a heavily armed and much more experienced fighter.
## 6230 Two high school students become stranded on a tropical island and must rely on each other for survival. They learn more about themselves and each other while falling in love.
## 6231 After moving to Pasadena, Texas, country boy Bud Davis starts hanging around a bar called Gilley's, where he falls in love with Sissy, a cowgirl who believes the sexes are equal. They eventually marry, but their relationship is turbulent due to Bud's traditional view of gender roles. Jealousy over his rival leads to their separation, but Bud attempts to win Sissy back by triumphing at Gilley's mechanical bull-riding competition.
## 6232 From the director of Wolf Creek comes this terrifying look at nature's perfect killing machine. When a group of tourists stumble into the remote Australian river territory of an enormous crocodile, the deadly creature traps them on a tiny mud island with the tide quickly rising and darkness descending. As the hungry predator closes in, they must fight for survival against all odds.
## 6233 Two cops are given the 'dirty' job of staking out the home of an escaped convict's ex-girlfriend. Chris and the beautiful girlfriend accidentally meet and fall in love. Just as Chris confesses, the convict appears, but will she betray him ?
## 6234 A stunt pilot comes across a prototype jetpack that gives him the ability to fly. However, evil forces of the world also want this jetpack at any cost.
## 6235 Away at college, Sidney thought she'd finally put the shocking murders that shattered her life behind her... until a copycat killer begins acting out a real-life sequel.
## 6236 A self-help seminar inspires a sixty-something woman to romantically pursue her younger co-worker.
## 6237 During the U.S.-led occupation of Baghdad in 2003, Chief Warrant Officer Roy Miller and his team of Army inspectors are dispatched to find weapons of mass destruction believed to be stockpiled in the Iraqi desert. Rocketing from one booby-trapped and treacherous site to the next, the men search for deadly chemical agents but stumble instead upon an elaborate cover-up that threatens to invert the purpose of their mission.
## 6238 Years after his squad was ambushed during the Gulf War, Major Ben Marco finds himself having terrible nightmares. He begins to doubt that his fellow squad-mate Sergeant Raymond Shaw, now a vice-presidential candidate, is the hero he remembers him being. As Marco's doubts deepen, Shaw's political power grows, and, when Marco finds a mysterious implant embedded in his back, the memory of what really happened begins to return.
## 6239 Bachelor football star Joe Kingman seems to have it all. He is wealthy and carefree, and his team is on the way to capturing a championship. Suddenly, he is tackled by some unexpected news: He has a young daughter, the result of a last fling with his ex-wife. Joe must learn to balance his personal and professional lives with the needs of his child.
## 6240 On Christmas Eve, divorced dad Scott Calvin and his son discover Santa Claus has fallen off their roof. When Scott takes the reins of the magical sleigh, he finds he is now the new Santa, and must convince a world of disbelievers, including himself.
## 6241 Cinderella, an orphaned girl with an evil stepmother, has big dreams and with the help of her Fabulous Godmother, she perseveres to make them come true.
## 6242 A man in his mid-20s, still living at home with his mother and stepfather, puts all his eggs in one basket: the girl who works at his local coffee shop. The problem is, she has a serious boyfriend. As they become closer, the line between friendship and intimacy is blurred, and the situation forces both to examine where they are in their lives.
## 6243 A tale of cheats and impostors, taking its inspiration from true facts and from one of the most intriguing characters of recent decades: the spy Francisco Paesa.
## 6244 A teen gang in a South London housing estate must team up with the other residents to protect their neighbourhood from a terrifying alien invasion.
## 6245 Nick cannot stop obsessing over his ex-girlfriend, Tris, until Tris' friend Norah suddenly shows interest in him at a club. Thus begins an odd night filled with ups and downs as the two keep running into Tris and her new boyfriend while searching for Norah's drunken friend, Caroline, with help from Nick's band mates. As the night winds down, the two have to figure out what they want from each other.
## 6246 A decorated Marine goes on a rescue mission to save his two young sons from an unhuman threat. As their journey takes them in increasingly dangerous directions, the boys will need to leave their childhoods behind.
## 6247 All the couples are back for a wedding in Las Vegas, but plans for a romantic weekend go awry when their various misadventures get them into some compromising situations that threaten to derail the big event.
## 6248 After a mobster agrees to cooperate with an FBI investigation in order to stay out of prison, he's relocated by the authorities to a life of suburban anonymity as part of a witness protection program. It's not long before a couple of his new neighbours figure out his true identity and come knocking to see if he'd be up for one more hit—suburban style.
## 6249 Paris, one morning. A group of young people from different backgrounds. They launch into a strange ballet in the metro tunnels and the city's streets. They seem to follow a plan. Their gestures are precise, almost dangerous. They converge towards the same point, a department store, at the moment it is about to shut. Night begins.
## 6250 Financial TV host Lee Gates and his producer Patty are put in an extreme situation when an irate investor takes over their studio.
## 6251 A young Englishman marries a glamorous American. When he brings her home to meet the parents, she arrives like a blast from the future - blowing their entrenched British stuffiness out the window.
## 6252 A young French teenage girl after moving to a new city falls in love with a boy and is thinking of having sex with him because her girlfriends have already done it.
## 6253 Evan Hansen, a high schooler with social anxiety, unintentionally gets caught up in a lie after the family of a classmate who committed suicide mistakes one of Hansen’s letters for their son’s suicide note.
## 6254 While undergoing heart surgery, a man experiences a phenomenon called ‘anesthetic awareness’, which leaves him awake but paralyzed throughout the operation. As various obstacles present themselves, his wife must make life-altering decisions while wrestling with her own personal drama.
## 6255 Brigitte has escaped the confines of Bailey Downs but she's not alone. Another werewolf is tailing her closely and her sister's specter haunts her. An overdose of Monkshood - the poison that is keeping her transformation at bay - leads to her being incarcerated in a rehabilitation clinic for drug addicts where her only friend is an eccentric young girl by the name of Ghost.
## 6256 An account of the days of First Lady, Jacqueline Kennedy, in the immediate aftermath of John F. Kennedy's assassination in 1963.
## 6257 The true story of the relationship between Alan Bennett and the singular Miss Shepherd, a woman of uncertain origins who ‘temporarily’ parked her van in Bennett’s London driveway and proceeded to live there for 15 years.
## 6258 Gru and his wife Lucy must stop former '80s child star Balthazar Bratt from achieving world domination.
## 6259 After a hard day at work and a condominium-board meeting, accountant Ugo Fantozzi goes on a trip with his family. Unfortunately, he will face a nasty surprise upon his return.
## 6260 Bomber is an unemployed boat captain. One day he meets Jerry, a manager of boxers who are struck by the force of his fists. That is when they see the chance to win big money.
## 6261 Alice Tate, mother of two, with a marriage of 16 years, finds herself falling for the handsome sax player, Joe. Stricken with a backache, she consults herbalist Dr. Yang, who realizes that her problems are not related to her back, but in her mind and heart. Dr. Yang's magical herbs give Alice wondrous powers, taking her out of well-established rut.
## 6262 A woman tries to exonerate her brother's murder conviction by proving that the crime was committed by a supernatural phenomenon.
## 6263 A frustrated, unemployed teacher joins forces with a scammer and his girlfriend in a blackmailing scheme.
## 6264 In the distant technological future, civilization has reached its ultimate Net-based form. An "infection" in the past caused the automated systems to spiral out of order, resulting in a multi-leveled city structure that replicates itself infinitely in all directions. Now humanity has lost access to the city's controls, and is hunted down and purged by the defense system known as the Safeguard. In a tiny corner of the city, a little enclave known as the Electro-Fishers is facing eventual extinction, trapped between the threat of the Safeguard and dwindling food supplies. A girl named Zuru goes on a journey to find food for her village, only to inadvertently cause doom when an observation tower senses her and summons a Safeguard pack to eliminate the threat. With her companions dead and all escape routes blocked, the only thing that can save her now is the sudden arrival of Killy the Wanderer, on his quest for the Net Terminal Genes, the key to restoring order to the world.
## 6265 A biopic of French pop star Claude Francois, most famous for co-writing the song 'My Way'. Tracing his life from his childhood in Egypt through his success in France to his untimely death in Paris in 1978.
## 6266 Bill Dancer and his young companion Curly Sue are the classic homeless folks with hearts of gold. Their scams are aimed not at turning a profit, but at getting enough to eat. When they scam the rich and beautiful Grey Ellison into believing she backed her Mercedes into Bill, they're only hoping for a free meal. But Grey is touched, and over the objections of her snotty fiancé.
## 6267 George Banks is an ordinary, middle-class man whose 22 year-old daughter Annie has decided to marry a man from an upper-class family, but George can't think of what life would be like without his daughter. His wife tries to make him happy for Annie, but when the wedding takes place at their home and a foreign wedding planner takes over the ceremony, he becomes slightly insane.
## 6268 Accused of the genocide of Mayan people, retired general Enrique is trapped in his mansion by massive protests. Abandoned by his staff, the indignant old man and his family must face the devastating truth of his actions and the growing sense that a wrathful supernatural force is targeting them for his crimes.
## 6269 Primatologist Davis Okoye shares an unshakable bond with George, the extraordinarily intelligent, silverback gorilla who has been in his care since birth. But a rogue genetic experiment gone awry mutates this gentle ape into a raging creature of enormous size. To make matters worse, it’s soon discovered there are other similarly altered animals. As these newly created alpha predators tear across North America, destroying everything in their path, Okoye teams with a discredited genetic engineer to secure an antidote, fighting his way through an ever-changing battlefield, not only to halt a global catastrophe but to save the fearsome creature that was once his friend.
## 6270 Isabelle, a 17-year-old student, loses her virginity during a quick holiday romance. When she returns home, she begins a secret life as a prostitute for a year.
## 6271 After the disastrous food storm in the first film, Flint and his friends are forced to leave the town. Flint accepts the invitation from his idol Chester V to join The Live Corp Company, which has been tasked to clean the island, and where the best inventors in the world create technologies for the betterment of mankind. When Flint discovers that his machine still operates and now creates mutant food beasts like living pickles, hungry tacodiles, shrimpanzees and apple pie-thons, he and his friends must return to save the world.
## 6272 A group of teenage girls heading into the city hook up with a gang of drug-addled ne'er-do-wells and are brutally murdered. The killers find their way to the home of one of their victim's parents, where both father and mother exact a horrible revenge.
## 6273 Giulia and Carlo have been happy together for three years, but Giulia's announcement that she is pregnant sends him into a secret panic. Terrified at his imminent entry into the adult world of irreversible responsibilities, Carlo finds himself tempted by a bewitching 18-year-old girl, Francesca, whom he meets by chance at a wedding. The possibility of one last youthful crazy fling before the impending prison of parenthood proves to be too attractive to resist.
## 6274 A 1939 test pilot asks his best friend to use him as a guinea pig for a cryogenics experiment. Daniel McCormick wants to be frozen for a year so that he doesn't have to watch his love lying in a coma. The next thing Daniel knows is that he's been awoken in 1992.
## 6275 A brother and sister driving home through an isolated countryside from college encounter a flesh-eating creature in the midst of its ritualistic eating spree.
## 6276 Ingrid becomes obsessed with a social network star named Taylor Sloane who seemingly has a perfect life. But when Ingrid decides to drop everything and move west to be Taylor's friend, her behaviour turns unsettling and dangerous.
## 6277 When Travis, the mouthy son of a criminal, disappears in the Amazon in search of a treasured artifact, his father sends in Beck, who becomes Travis's rival for the affections of Mariana, a mysterious Brazilian woman. With his steely disposition, Beck is a man of few words -- but it takes him all the discipline he can muster to work with Travis to nab a tyrant who's after the same treasure.
## 6278 While vacationing in St. Moritz, a British couple receive a clue to an imminent assassination attempt, only to learn that their daughter has been kidnapped to keep them quiet.
## 6279 Alejandro, a freshman, and Sofia, who’s doing her thesis, meet in college. They build an asymmetrical relationship: he’s in love while she just wants to see her sexual desires fulfilled.
## 6280 Olaf is on a mission to harness the best holiday traditions for Anna, Elsa, and Kristoff.
## 6281 Buzz Lightyear must battle Emperor Zurg with the help of three hopefuls who insist on being his partners.
## 6282 A demonic force has chosen Freddy Krueger as its portal to the real world. Can Heather Langenkamp play the part of Nancy one last time and trap the evil trying to enter our world?
## 6283 When a willful young man tries to venture beyond his sequestered Pennsylvania hamlet, his actions set off a chain of chilling incidents that will alter the community forever.
## 6284 With his carefree lifestyle on the line, a wealthy charmer poses as a ranch hand to get a hardworking farmer to sell her family’s land before Christmas.
## 6285 In order to win the Street Dance Championships, a dance crew is forced to work with ballet dancers from the Royal Dance School in exchange for rehearsal space.
## 6286 After years of treatment at a mental institution for the criminally insane, serial killer Norman Bates is finally released. Deciding to move back into his long-dead mother's infamous old house, he soon finds himself tormented by 'her' demands and begins to question his own sanity.
## 6287 A troubled loner, Bob Maconel, imagines blowing up the tower in Los Angeles where he works. He takes a revolver to his office intent on killing colleagues, and then himself. At home, he holds conversations with his fish, who encourage him to do it. His supervisor picks on him. As he's screwing his courage to the sticking place, he drops a bullet; while on the floor looking for it, another colleague does exactly what Bob has been planning. Bob emerges a hero and the one colleague he likes, a woman with a bright smile, is severely wounded. Can Bob help her through despair and find himself and joy in life? Or, as everyone says, is this impossible for a man like him?
## 6288 In response to political pressure from Senator Lillian DeHaven, the U.S. Navy begins a program that would allow for the eventual integration of women into its services. The program begins with a single trial candidate, Lieutenant Jordan O'Neil, who is chosen specifically for her femininity. O'Neil enters the grueling training program under the command of Master Chief John James Urgayle, who unfairly pushes O'Neil until her determination wins his respect.
## 6289 A man named Mr. Smith delivers a woman's baby during a shootout, and is then called upon to protect the newborn from the army of gunmen.
## 6290 An ambitious young woman, desperate for followers and fame, fakes a trip to Paris to up her social media presence. When a terrifying incident takes place in the real world and becomes part of her imaginary trip, her white lie becomes a moral quandary that offers her all the attention she’s wanted.
## 6291 In suburban Chicago during the late 1980s, ten-year-old Jake Doyle embarks on a herculean quest to get the latest and greatest video game system for Christmas.
## 6292 Celeste and Jesse met in high school and got married young. They laugh at the same jokes and finish each other’s sentences. They are forever linked in their friends’ minds as the perfect couple – she, a high-powered businesswoman and budding novelist; he, a free spirit who keeps things from getting boring. Their only problem is that they have decided to get divorced. Can their perfect relationship withstand this minor setback?
## 6293 Sam Flynn, the tech-savvy and daring son of Kevin Flynn, investigates his father's disappearance and is pulled into The Grid. With the help of a mysterious program named Quorra, Sam quests to stop evil dictator Clu from crossing into the real world.
## 6294 In the glamorous world of New York City, Rebecca Bloomwood is a fun-loving girl who is really good at shopping - a little too good, perhaps. She dreams of working for her favorite fashion magazine, but can't quite get her foot in the door - until ironically, she snags a job as an advice columnist for a financial magazine published by the same company.
## 6295 When David Greene receives a football scholarship to a prestigious prep school in the 1950s, he feels pressure to hide the fact that he is Jewish from his classmates and teachers, fearing that they may be anti-Semitic. He quickly becomes the big man on campus thanks to his football skills, but when his Jewish background is discovered, his worst fears are realized and his friends turn on him with violent threats and public ridicule.
## 6296 Capitol Policeman John Cale has just been denied his dream job with the Secret Service of protecting President James Sawyer. Not wanting to let down his little girl with the news, he takes her on a tour of the White House, when the complex is overtaken by a heavily armed paramilitary group. Now, with the nation's government falling into chaos and time running out, it's up to Cale to save the president, his daughter, and the country.
## 6297 Georgia Nicolson is fourteen, lives with nosey parents who don't understand her, an annoying three year old sister and has to wear a beret to school. She would, however, rather be blonde, have a smaller nose and a boyfriend. Revolving around her hilarious journal entries, prepare to be engulfed in the world of the soaring joys and bottomless angst of being a teenager.
## 6298 Cool government operative James Bond searches for a stolen invention that can turn the sun's heat into a destructive weapon. He soon crosses paths with the menacing Francisco Scaramanga, a hitman so skilled he has a seven-figure working fee. Bond then joins forces with the swimsuit-clad Mary Goodnight, and together they track Scaramanga to a Thai tropical isle hideout where the killer-for-hire lures the slick spy into a deadly maze for a final duel.
## 6299 A picture-perfect family is torn apart after Tyler finds a cache of disturbing images in his father's possession. He begins to suspect that the man he trusts most in the world may be responsible for the murder of 13 women ten years prior.
## 6300 A teenager transitions from female to male, and his family must come to terms with that fact.
## 6301 Mother and daughter bicker over everything -- what Anna wears, whom she likes and what she wants to do when she's older. In turn, Anna detests Tess's fiancé. When a magical fortune cookie switches their personalities, they each get a peek at how the other person feels, thinks and lives.
## 6302 Teenagers Zach and Josh have been best friends their whole lives, but when a gruesome accident leads to a cover-up, the secret drives a wedge between them and propels them down a rabbit hole of escalating paranoia and violence.
## 6303 After a zombie becomes involved with the girlfriend of one of his victims, their romance sets in motion a sequence of events that might transform the entire lifeless world.
## 6304 Doug Glatt, a slacker who discovers he has a talent for brawling, is approached by a minor league hockey coach and invited to join the team as the "muscle." Despite the fact that Glatt can't skate, his best friend, Pat, convinces him to give it a shot, and Glatt becomes a hero to the team and their fans, until the league's reigning goon becomes threatened by Glatt's success and decides to even the score.
## 6305 Set several years after the first film, Ariel and Prince Eric are happily married with a daughter, Melody. In order to protect Melody from the Sea Witch, Morgana, they have not told her about her mermaid heritage. Melody is curious and ventures into the sea, where she meets new friends. But will she become a pawn in Morgana's quest to take control of the ocean from King Triton?
## 6306 Determined to keep Annabelle from wreaking more havoc, demonologists Ed and Lorraine Warren bring the possessed doll to the locked artifacts room in their home, placing her “safely” behind sacred glass and enlisting a priest’s holy blessing. But an unholy night of horror awaits as Annabelle awakens the evil spirits in the room, who all set their sights on a new target—the Warrens' ten-year-old daughter, Judy, and her friends.
## 6307 Tamara has been separated from Diego for two years. She finally leaves home to live the student adventure in Paris with his girlfriend Sam. In a galley apartment, they accept a cohabit with Wagner. Problem: Diego is part of the lot, and he is no more single.
## 6308 Flying at 40,000 feet in a state-of-the art aircraft that she helped design, Kyle Pratt's 6-year-old daughter Julia vanishes without a trace. Or did she? No one on the plane believes Julia was ever onboard. And now Kyle, desperate and alone, can only count on her own wits to unravel the mystery and save her daughter.
## 6309 The eccentric and childish Pee-wee Herman embarks on a big adventure when his beloved bicycle is stolen. Armed with information from a fortune-teller and a relentless obsession with his prized possession, Pee-wee encounters a host of odd characters and bizarre situations as he treks across the country to recover his bike.
## 6310 Three strippers seeking thrills encounter a young couple in the desert. After dispatching the boyfriend, they take the girl hostage and begin scheming on a crippled old man living with his two sons in the desert, reputedly hiding a tidy sum of cash. They become house guests of the old man and try and seduce the sons in an attempt to locate the money, not realizing that the old man has a few sinister intentions of his own.
## 6311 Two siblings who discover their seemingly normal mom is a former thief in witness protection. Mom is forced to pull one last job, and the kids team up to rescue her over the course of an action-packed night.
## 6312 Kate and Matt discover that a part of their house can grant wishes. In the wake of two miscarriages, what they want most is a child.
## 6313 Rachel Watson, devastated by her recent divorce, spends her daily commute fantasizing about the seemingly perfect couple who live in a house that her train passes every day, until one morning she sees something shocking happen there and becomes entangled in the mystery that unfolds.
## 6314 Based on the book "Walt Before Mickey" covers the early years of Walt Disney's career. The legendary Walt Disney had a tumultuous childhood, yet he was determined to overcome obstacles in his path, before the creation of his first iconic character: Mickey Mouse.
## 6315 After 39 years together, Ben and George finally tie the knot, but George loses his job as a result, and the newlyweds must sell their New York apartment and live apart, relying on friends and family to make ends meet.
## 6316 Unjustly accused of staging a spooky practical joke complete with ghosts, Daphne, Velma, Fred and Shaggy are suspended from Coolsville High. To clear their names, they team up to solve the supernatural mystery…and head straight into nonstop laughs and adventure.
## 6317 Mr. Müller is not satisfied with his new work at the Goethe-Gesamtschule. The early getting up and correcting exams annoy him. Director Gerster wants to improve the image of the Goethe-Gesamtschule because she wants to be a symbol of the new company. To achieve this, she wants to take away the partnership from the Schillergymnasium with a Thai school. So, Mr. Müller, Mrs. Schnabelstedt and the 10b must go on a school trip to Thailand.
## 6318 In New York City, Clary Fray, a seemingly ordinary teenager, learns that she is descended from a line of Shadowhunters — half-angel warriors who protect humanity from evil forces. After her mother disappears, Clary joins forces with a group of Shadowhunters and enters Downworld, an alternate realm filled with demons, vampires, and a host of other creatures. Clary and her companions must find and protect an ancient cup that holds the key to her mother's future.
## 6319 A guarded woman who finds out she's dying of cancer but, when she meets her match, the threat of falling in love is scarier than death.
## 6320 When Mitchie gets a chance to attend Camp Rock, her life takes an unpredictable twist, and she learns just how important it is to be true to yourself.
## 6321 Jerry Shaw and Rachel Holloman are two strangers whose lives are suddenly thrown into turmoil by a mysterious woman they have never met. Threatening their lives and family, the unseen caller uses everyday technology to control their actions and push them into increasing danger. As events escalate, Jerry and Rachel become the country's most-wanted fugitives and must figure out what is happening to them.
## 6322 Tom and Hannah have been platonic friends for 10 years. He's a serial dater, while she wants marriage but hasn't found Mr. Right. Just as Tom is starting to think that he is relationship material after all, Hannah gets engaged. When she asks Tom to be her 'maid' of honor, he reluctantly agrees just so he can attempt to stop the wedding and woo her.
## 6323 Jan Schlickmann is a cynical lawyer who goes out to 'get rid of' a case, only to find out it is potentially worth millions. The case becomes his obsession, to the extent that he is willing to give up everything—including his career and his clients' goals—in order to continue the case against all odds.
## 6324 A lawyer takes on a new client that wants to sue a dating website because it guarantees love.
## 6325 Three friends making a web series about their town discover that their neighbors are being killed and replaced by creatures who are perfect copies of their victims.
## 6326 Check out the hilarious story of luck and misadventures of Tino, a family man whose life is transformed after he wins the lottery. Dazzled by wealth, this boaster spends all his money on a life of luxury and ostentation. But after finding out that he is bankrupt, he faces comical situations: besides not telling his wife he is broke because she is pregnant and cannot get upset, Tino must accept help from his neighbor who is an extremely thrifty financial adviser and the only one capable of getting him out of the rut.
## 6327 A dangerous CIA renegade resurfaces after a decade on the run. When the safe house he's remanded to is attacked by mercenaries, a rookie operative escapes with him. Now, the unlikely allies must stay alive long enough to uncover who wants them dead.
## 6328 An American woman is stranded in Tokyo after breaking up with her boyfriend. Searching for direction in life, she trains to be a râmen chef under a tyrannical Japanese master.
## 6329 A divorced mother honks impatiently at a deranged middle-aged stranger at a red light while running late on her way to work. His road rage escalates to horrifyingly psychotic proportions as he becomes single-mindedly determined to teach her a deadly lesson for provoking him.
## 6330 Two former cops start investigating the series of murders that tanked their careers when the killings begin again.
## 6331 A lone-wolf scientist sequestered in a mansion near a small desert town arouses the suspicion of the town's doctor when his lab assistant is found dead from a case of acromegaly which took only four days to develop. As the doctor investigates, aided by the scientist's new, and very female, assistant, they discover that, far worse, something much larger and hungrier than it ever should be, is devouring local cattle - and humans - in increasingly large quantities.
## 6332 A light hearted romantic-road comedy produced by Big Band Story in association with the French TV network TF1. The film had its world premiere in Festival de la Fiction TV, La Rochelle. The film stars popular French TV stars Rayane Bensetti, Lucie Lucas, Cécile Rebboah & Xavier Robic.
## 6333 The life of super-yuppie J.C. is thrown into turmoil when she inherits a baby from a distant relative.
## 6334 The Middle Eastern oil industry is the backdrop of this tense drama, which weaves together numerous story lines. Bennett Holiday is an American lawyer in charge of facilitating a dubious merger of oil companies, while Bryan Woodman, a Switzerland-based energy analyst, experiences both personal tragedy and opportunity during a visit with Arabian royalty. Meanwhile, veteran CIA agent Bob Barnes uncovers an assassination plot with unsettling origins.
## 6335 Two small-town aspiring musicians chase their pop star dreams at a global music competition, where high stakes, scheming rivals and onstage mishaps test their bond.
## 6336 Nate Foster, a young, idealistic FBI agent, goes undercover to take down a radical white supremacy terrorist group. The bright up-and-coming analyst must confront the challenge of sticking to a new identity while maintaining his real principles as he navigates the dangerous underworld of white supremacy. Inspired by real events.
## 6337 A special-ops team is dispatched to fight supernatural beings that have taken over a European city.
## 6338 A woman, accidentally caught in a dark deal, turns the tables on her captors and transforms into a merciless warrior evolved beyond human logic.
## 6339 Three very different women who are hiding a secret are forced to work together to save their own skin.
## 6340 Set against the backdrop of the succession of Queen Elizabeth I, and the Essex Rebellion against her, the story advances the theory that it was in fact Edward De Vere, Earl of Oxford who penned Shakespeare's plays.
## 6341 While traveling abroad, a guy falls for a Romanian beauty whose unreachable heart has its origins in her violent, charismatic ex.
## 6342 An unusual explorer named Gum and his kindly niece adopt three orphans -- Pauline, Petrova and Posy -- and raise them as sisters in 1930s London. But the girls must fend for themselves when Gum doesn't return from one of his adventures. Together, they nurture their passions for acting, aviation and ballet in this charming TV adaptation of Noel Streatfield's novel.
## 6343 Jim Davis is an ex-Army Ranger who finds himself slipping back into his old life of petty crime after a job offer from the LAPD evaporates. His best friend is pressured by his girlfriend Sylvia to find a job, but Jim is more interested in hanging out and making cash from small heists, while trying to get a law enforcement job so he can marry his Mexican girlfriend.
## 6344 A man's obsession with owning the designer deerskin jacket of his dreams leads him to turn his back on his humdrum life in the suburbs, blow his life savings, and even turn him to crime.
## 6345 A star athlete and top student, Luce's idealized image is challenged by one of his teachers when his unsettling views on political violence come to light, putting a strain on family bonds while igniting intense debates on race and identity.
## 6346 A psychiatrist with intense acrophobia (fear of heights) goes to work for a mental institution run by doctors who appear to be crazier than their patients, and have secrets that they are willing to commit murder to keep.
## 6347 Torrente, The Stupid Arm of The Law by Santiago Segura stars Javier Cámara as a corrupt, poor, delusional, sexist, egocentric, drunk and right-winged Madrid cop named Torrente. This over the top comedy shows Torrente on his search for heroin drug dealers and the outrageous characters he passes on his way. A cult film and one of the funniest Spanish films was the most successful box-office film.
## 6348 Tormented by a past life, garbage man Clean attempts a life of quiet redemption. But when his good intentions mark him a target of a local crime boss, Clean is forced to reconcile with the violence of his past.
## 6349 In 1870s America, a peaceful American settler kills his family's murderer which unleashes the fury of a notorious gang leader. His cowardly fellow townspeople then betray him, forcing him to hunt down the outlaws alone.
## 6350 When Sid accidentally destroys Manny's heirloom Christmas rock and ends up on Santa's naughty list, he leads a hilarious quest to the North Pole to make things right and ends up making things much worse. Now it's up to Manny and his prehistoric posse to band together and save Christmas for the entire world!
## 6351 When a vintage Jack-in-the-box is opened by a dying woman, she enters into a deal with the demon within that would see her illness cured in return for helping it claim six innocent victims.
## 6352 Ella lives in a magical world in which each child, at the moment of their birth, is given a virtuous "gift" from a fairy godmother. Ella's so-called gift, however, is obedience. This birthright proves itself to be quite the curse once Ella finds herself in the hands of several unscrupulous characters whom she quite literally cannot disobey. Determined to gain control of her life and decisions, Ella sets off on a journey to find her fairy godmother who she hopes will lift the curse. The path, however, isn't easy -- Ella must outwit a slew of unpleasant obstacles including ogres, giants, wicked stepsisters, elves and Prince Charmont's evil uncle, who wants to take over the crown and rule the kingdom.
## 6353 After federal agents arrest a drug czar and put him on trial, the cartel leader's vicious son storms a prep school and takes its students hostage. They rebel against the armed intruders and try to take back their academy by any means necessary.
## 6354 After undergoing radical surgery for injuries from a motorcycle accident, a young woman develops a strange phallic growth on her body and a thirst for human blood—the only nourishment that will now sustain her.
## 6355 Jamie returns to his hometown in search of answers to his wife's murder, which occurred after receiving a weird package containing a ventriloquist dummy named Billy, which may be linked to the legend of ventriloquist Mary Shaw. Destined to find out the truth, Jamie goes to the town of Raven's Fair, where Shaw used to perform and is buried. But Jamie is in for more than he expected.
## 6356 An aging cop is assigned the ordinary task of escorting a fast-talking witness from police custody to a courthouse, but they find themselves running the gauntlet as other forces try to prevent them from getting there.
## 6357 Vivien, an accomplished student with a passion for physics, and Roy, a troubled young man, are involved in an accident that forces them to reclaim their lives one minute at the time.
## 6358 For five men, the opportunity to share a penthouse in the city -- in which to carry on extramarital affairs -- is a dream come true, until the dead body of an unknown woman turns up. Realizing that her killer must be one of their group, the men are gripped by paranoia as each one suspects another. Friendships are tested, loyalties are questioned, and marriages crumble while fear and suspicion run rampant.
## 6359 After a series of gory murders commited by mobs of townspeople against visiting tourists, the corpses appear to be coming back to life and living normally as locals in the small town.
## 6360 Based on the play 'Cyrano de Bergerac', large-nosed C.D. Bales falls for the beautiful Roxanne—while she falls for his personality but another man's looks.
## 6361 This time around Edmund and Lucy Pevensie, along with their pesky cousin Eustace Scrubb find themselves swallowed into a painting and on to a fantastic Narnian ship headed for the very edges of the world.
## 6362 After a botched assassination attempt, the mismatched duo finds themselves in Paris, struggling to retrieve a precious list of names, as the murderous crime syndicate's henchmen try their best to stop them. Once more, Lee and Carter must fight their way through dangerous gangsters; however, this time, the past has come back to haunt Lee. Will the boys get the job done once and for all?
## 6363 Advertising executive Nick Marshall is as cocky as they come, but what happens to a chauvinistic guy when he can suddenly hear what women are thinking? Nick gets passed over for a promotion, but after an accident enables him to hear women's thoughts, he puts his newfound talent to work against Darcy, his new boss, who seems to be infatuated with him.
## 6364 A young man washes ashore, his memory gone - but his past comes back to haunt him after he is nursed back to health and his killing ability is needed when he takes on a powerful drug lord.
## 6365 The six-member crew of the International Space Station is tasked with studying a sample from Mars that may be the first proof of extra-terrestrial life, which proves more intelligent than ever expected.
## 6366 After an extremely regrettable one night stand, two strangers wake up to find themselves snowed in after sleeping through a blizzard that put all of Manhattan on ice. They're now trapped together in a tiny apartment, forced to get to know each other way more than any one night stand should.
## 6367 Obsessed with the BBC production of "Pride and Prejudice", a woman travels to a Jane Austen theme park in search for her perfect gentleman.
## 6368 Mary is a good Christian girl who goes to a good Christian high school where she has good Christian friends and a perfect Christian boyfriend. Her life seems perfect, until the day that she finds out that her boyfriend may be gay — and that she’s pregnant.
## 6369 In 1968 the lives of a retired doorman, hotel manager, lounge singer, busboy, beautician and others intersect in the wake of Robert F. Kennedy's assassination at the Ambassador Hotel in Los Angeles.
## 6370 Ray Tango and Gabriel Cash are narcotics detectives who, while both being extremely successful, can't stand each other. Crime Lord Yves Perret, furious at the loss of income that Tango and Cash have caused him, frames the two for murder. Caught with the murder weapon on the scene of the crime, the two have no alibi. Thrown into prison with most of the criminals they helped convict, it appears that they are going to have to trust each other if they are to clear their names and catch the evil Perret.
## 6371 Jamilah has her whole life figured out. She's the president of her black sorority, captain of their champion step dance crew, is student liaison to the college dean, and her next move is on to Harvard Law School. She's got it all, right? But when the hard-partying white girls from Sigma Beta Beta embarrass the school, Jamilah is ordered to come to the rescue. Her mission is to not only teach the rhythmically-challenged girls how to step dance, but to win the Steptacular, the most competitive of dance competitions. With the SBBs reputations and charter on the line, and Jamilah's dream of attending Harvard in jeopardy, these outcast screw-ups and their unlikely teacher stumble through one hilarious misstep after another. Cultures clash, romance blossoms, and sisterhood prevails as everyone steps out of their comfort zones.
## 6372 Ariane Felder is pregnant! This is surprising with her being a young hardened judge with strict morals. But what is more surprising is that, according to paternity testing, the child's father is none other than Bob, a criminal from the prosecution charged with an atrocious attack! Ariane doesn't remember any of what has happened, so she has no idea what to expect...
## 6373 After discovering her boyfriend is married, Carly soon meets the wife he's been cheating on. And when yet another affair is discovered, all three women team up to plot mutual revenge on the three-timing SOB.
## 6374 The luxuriantly bearded Pirate Captain is a boundlessly enthusiastic, if somewhat less-than-successful, terror of the High Seas. With a rag-tag crew at his side, and seemingly blind to the impossible odds stacked against him, the Captain has one dream: to beat his bitter rivals Black Bellamy and Cutlass Liz to the much coveted Pirate of the Year Award. It’s a quest that takes our heroes from the shores of exotic Blood Island to the foggy streets of Victorian London. Along the way they battle a diabolical queen and team up with a haplessly smitten young scientist, but never lose sight of what a pirate loves best: adventure!
## 6375 While working a job at an exclusive ski resort to support her Dad, Kim learns to snowboard and is so good at it that she enters a competition with a huge cash prize. She has to dig deep to overcome her fears, but her life gets more complicated through her spoken-for boss, Jonny.
## 6376 When he starts dating drop-dead gorgeous Molly, insecure airport security agent Kirk can't believe it. As his friends and family share their doubts about the relationship lasting, Kirk does everything he can to avoid losing Molly forever.
## 6377 In a prison for the criminally insane, deranged anthropologist Ethan Powell is set to be examined by a bright young psychiatrist, Theo Caulder. Driven by ambition and a hunger for the truth, Caulder will eventually risk everything—even put his very life on the line—in a harrowing attempt to understand the bizarre actions of this madman.
## 6378 New York gangster Ben 'Bugsy' Siegel takes a brief business trip to Los Angeles. A sharp-dressing womanizer with a foul temper, Siegel doesn't hesitate to kill or maim anyone crossing him. In L.A. the life, the movies, and most of all strong-willed Virginia Hill detain him while his family wait back home. Then a trip to a run-down gambling joint at a spot in the desert known as Las Vegas gives him his big idea.
## 6379 A struggling actor seems doomed to live life as a loser. When he finally snatches a lead role as a superhero named “Badman,” he feels like everything is possible, but fate strikes again.
## 6380 After losing her waitressing job, Katie Franklin takes a job as a caretaker to a wealthy elderly man in his sprawling, empty Chicago estate. The two grow close, but when he unexpectedly passes away and names Katie as his sole heir, she and her husband Adam are pulled into a complex web of lies, deception, and murder. If she's going to survive, Katie will have to question everyone's motives — even the people she loves.
## 6381 A private investigator helps a former flame solve the murder of her wealthy grandfather, who lived in a sprawling estate surrounded by his idiosyncratic family.
## 6382 A chilling real-time thriller featuring a teenager, Casey, battling with an anonymous cyber-stalker.
## 6383 An ex-cop turned con threatens to jump to his death from a Manhattan hotel rooftop. The NYPD dispatch a female police psychologist to talk him down. However, unbeknownst to the police on the scene, the suicide attempt is a cover for the biggest diamond heist ever pulled.
## 6384 Rodney Copperbottom is a young robot inventor who dreams of making the world a better place, until the evil Ratchet takes over Big Weld Industries. Now, Rodney's dreams – and those of his friends – are in danger of becoming obsolete.
## 6385 In order to avoid a jail sentence, Sean Boswell heads to Tokyo to live with his military father. In a low-rent section of the city, Shaun gets caught up in the underground world of drift racing
## 6386 While on a family vacation, rafting expert Gail takes on a pair of armed killers while navigating a spectacularly violent river.
## 6387 When an alien race and factions within Starfleet attempt to take over a planet that has "regenerative" properties, it falls upon Captain Picard and the crew of the Enterprise to defend the planet's people as well as the very ideals upon which the Federation itself was founded.
## 6388 Jen's romantic getaway with her wealthy married boyfriend is disrupted when his friends arrive for an impromptu hunting trip. Tension mounts at the house until the situation culminates in an unexpected way.
## 6389 Los Angeles Police Department detective Russell Poole has spent years trying to solve his biggest case -- the murders of The Notorious B.I.G. and Tupac Shakur -- but after two decades, the investigation remains open. Jack Jackson, a reporter desperate to save his reputation and career, is determined to find out why. In search of the truth, the two team up and unravel a growing web of institutional corruption and lies.
## 6390 A psychotic man, troubled by his childhood abuse, loose in NYC, kills young women and local girl American models and takes their scalps as trophies. Will he find the perfect woman in photographer Anna, and end his killing spree.
## 6391 A movies special effects man is hired by a government agency to help stage the assassination of a well known gangster. When the agency double cross him, he uses his special effects to trap the gangster and the corrupt agents.
## 6392 Steve Russell is a small-town cop. Bored with his bland lifestyle, Russell turns to fraud as a means of shaking things up. Before long, Russell's criminal antics have landed him behind bars, where he encounters the charismatic Phillip Morris. Smitten, Russell devotes his entire life to being with Morris regardless of the consequences.
## 6393 In October 1991, a confluence of weather conditions combined to form a killer storm in the North Atlantic. Caught in the storm was the sword-fishing boat Andrea Gail.
## 6394 Annie Wilson, young widow and mother of three, makes her living foretelling others' futures—though her own has become cloudier than even she can see. Threatened by a client's violent husband and plagued by visions of a missing local woman, Annie finds herself pulled into a thicket of lies and deception in which her extraordinary gift may ultimately get her killed.
## 6395 Three New York businessmen decide to take a "Wild West" vacation that turns out not to be the relaxing vacation they had envisioned.
## 6396 After breaking up with Mark Darcy, Bridget Jones's 'happily ever after' hasn't quite gone according to plan. Fortysomething and single again, she decides to focus on her job as top news producer and surround herself with old friends and new. For once, Bridget has everything completely under control. What could possibly go wrong? Then her love life takes a turn and Bridget meets a dashing American named Jack, the suitor who is everything Mr. Darcy is not. In an unlikely twist she finds herself pregnant, but with one hitch she can only be fifty percent sure of the identity of her baby's father.
## 6397 A man must survive a prison where hardened criminals battle to the death for the warden's entertainment.
## 6398 Daryl is a normal 10-year-old boy in many ways. However, unbeknown to his foster parents and friends, Daryl is actually a government-created robot with superhuman reflexes and mental abilities. Even his name has a hidden meaning -- it's actually an acronym for Data Analyzing Robot Youth Life-form. When the organization that created him deems the "super soldier" experiment a failure and schedules Daryl to be disassembled, it is up to a few rogue scientists to help him escape.
## 6399 A Harvard anthropologist is sent to Haiti to retrieve a strange powder that is said to have the power to bring human beings back from the dead. In his quest to find the miracle drug, the cynical scientist enters the rarely seen netherworld of walking zombies, blood rites and ancient curses. Based on the true life experiences of Wade Davis and filmed on location in Haiti, it's a frightening excursion into black magic and the supernatural.
## 6400 Melanie Parker, an architect and mother of Sammy, and Jack Taylor, a newspaper columnist and father of Maggie, are both divorced. They meet one morning when overwhelmed Jack is left unexpectedly with Maggie and forgets that Melanie was to take her to school. As a result, both children miss their school field trip and are stuck with the parents. The two adults project their negative stereotypes of ex-spouses on each other, but end up needing to rely on each other to watch the children as each must save his job. Humor is added by Sammy's propensity for lodging objects in his nose and Maggie's tendency to wander.
## 6401 Walter Sparrow is an animal control officer that becomes obsessed with a mysterious book that seems to be based on his own life. As soon as he opens the book, he notices strange parallels between what he reads and what he's experienced. But now he's worried that a fictional murder might materialize.
## 6402 Based on Mariane Pearl's account of the terrifying and unforgettable story of her husband, Wall Street Journal reporter Danny Pearl's life and death.
## 6403 Two years after defeating a satanic cult led by his babysitter Bee, Cole's trying to forget his past and focus on surviving high school. But when old enemies unexpectedly return, Cole will once again have to outsmart the forces of evil.
## 6404 Aliens disguised as clowns crash land on Earth in a rural town to capture unsuspecting victims in cotton candy cocoons for later consumption.
## 6405 In pre-revolution Cuba, Katey Miller is about to defy everyone's expectations. Instead of a parent-approved suitor, Katey is drawn to the sexy waiter, Javier, who spends his nights dancing in Havana's nightclubs. As she secretly learns to dance with Javier, she learns the meanings of love, sensuality and independence.
## 6406 Melodrama about a bomber on board an airplane, an airport almost closed by snow, and various personal problems of the people involved.
## 6407 Set in 1954, a group of Florida high schoolers seek out to lose their virginity which leads them to seek revenge on a sleazy nightclub owner and his redneck sheriff brother for harassing them.
## 6408 When Jay and Silent Bob learn that their comic-book alter egos, Bluntman and Chronic, have been sold to Hollywood as part of a big-screen movie that leaves them out of any royalties, the pair travels to Tinseltown to sabotage the production.
## 6409 Journalist Laura works at home, isolating herself from others. While she lies to her mother and brother, Raul, on the phone about having an active social life, Laura's days consist of gazing at her neighbors, eating canned food and going to clubs to bring home strangers. As the anniversary of her father's death draws near, Laura develops a relationship with Arturo, a charismatic actor who shares her taste for rough sex.
## 6410 A crooked cop, a mob boss and the young girl they abuse are the denizens of a city's criminal underworld. It's a world that ordinary Arthur Poppington doesn't understand and doesn't belong in, but is committed to fighting when he changes into a vigilante super-hero of his own making, Defendor. With no power other than courage Defendor takes to the streets to protect the city's innocents.
## 6411 A precocious girl, her nasty parents, two punk-rock losers and a weak-kneed salesman inadvertently become the guests of two ghoulish senior citizens in their dark, haunted mansion. The old couple makes and collects dolls that, when not sitting still like good little mannequins, creep around in the night, offing the guests one by one.
## 6412 A psychosomatically deaf, dumb and blind boy becomes a master pinball player and the object of a religious cult.
## 6413 A group of women involved in the Women's Liberation Movement hatched a plan to invade the stage and disrupt the live broadcast at the 1970 Miss World competition in London, resulting in overnight fame for the newly-formed organization. When the show resumed, the results caused an uproar and turned the Western ideal of beauty on its head.
## 6414 Gloria finds a power she never knew she had when she is drawn into a dangerous world of cross-border crime. Surviving will require all of her cunning, inventiveness, and strength.
## 6415 A man spreads the rumor of his fake homosexuality with the aid of his neighbor, to prevent his imminent firing at his work.
## 6416 A nine-year-old boy gets a plastic Indian and a cupboard for his birthday and finds himself involved in adventure when the Indian comes to life and befriends him.
## 6417 A couple of thirtysomething best friends unwittingly become entangled in an international conspiracy when one’s ex-boyfriend shows up at their apartment with a team of deadly assassins on his trail.
## 6418 The true story of Forrest Tucker, from his audacious escape from San Quentin at the age of 70 to an unprecedented string of heists that confounded authorities and enchanted the public. Wrapped up in the pursuit are a detective, who becomes captivated with Forrest’s commitment to his craft, and a woman, who loves him in spite of his chosen profession.
## 6419 Young monster kids try to make peace between the world of humans and the world of the monsters.
## 6420 Years after their successful restaurant review tour of Northern Britain, Steve Coogan and Rob Brydon are commissioned for a new tour in Italy.
## 6421 A dethroned queen bee at a posh private high school strikes a secret deal with an unassuming new student to enact revenge on one another’s enemies.
## 6422 Two Brooklyn siblings' summer in a rural Oahu town takes an exciting turn when a journal pointing to long-lost treasure sets them on an adventure, leading them to reconnect with their Hawaiian heritage.
## 6423 A demoted police officer assigned to a call dispatch desk is conflicted when he receives an emergency phone call from a kidnapped woman.
## 6424 A man and woman are drawn together, entangled in the lifecycle of an ageless organism. Identity becomes an illusion as they struggle to assemble the loose fragments of wrecked lives.
## 6425 Sidney returns home to Woodsboro on the last stop of her book tour, which brings about the return of Ghost Face and puts her family, friends, and the whole town in danger.
## 6426 Battle-scarred and disillusioned by the war, Corporal Chris Merrimette is put in charge of a unit whose next mission is to resupply a remote outpost on the edge of Taliban-controlled territory. While driving through the hostile Helmand province, a Navy SEAL flags down their convoy and enlists the unit on an operation of international importance: they must help an Afghan woman famous for her defiance of the Taliban escape the country. Without tanks or air support, Merrimette and his team will need all the courage and firepower they can muster to fight their way across the war-torn country and shepherd the woman to safety.
## 6427 Miss Havisham, a wealthy spinster who wears an old wedding dress and lives in the dilapidated Satis House, asks Pip's Uncle Pumblechook to find a boy to play with her adopted daughter Estella. Pip begins to visit Miss Havisham and Estella, with whom he falls in love, then Pip—a humble orphan—suddenly becomes a gentleman with the help of an unknown benefactor.
## 6428 What starts as a poignant medical documentary about Deborah Logan's descent into Alzheimer's disease and her daughter's struggles as caregiver degenerates into a maddening portrayal of dementia at its most frightening, as hair-raising events begin to plague the family and crew and an unspeakable malevolence threatens to tear the very fabric of sanity from them all.
## 6429 Alice is a thirty-something woman married to João, has a son and is very successful professionally. Alice is the typical workaholic, whose work is her largest and only pleasure. On the other hand her personal life does not exist: no sexual activity, zero libido, zero personal life. The lack of a sex life in Alice's life is overflowing in Marcela's, her stunning neighbor. A true expert on the subject, Marcela is the owner of a sex shop and knows everything when the theme is the search for pleasure. Like in the typical comedy of errors, the lives of Alice and Marcela will cross and both will undergo huge transformations after this encounter.
## 6430 After her fiancee admits to infidelity while on a business trip in France, a woman attempts to get her lover back and marry him by traveling to Paris despite her crippling fear of flying. On the way she unwittingly smuggles something of value that has a charming crook chasing her across France as she chases after her future husband.
## 6431 A year after Amber helped Richard secure the crown. The two are set to tie the knot in a royal Christmas wedding — but their plans are jeopardized when Amber finds herself second-guessing whether or not she's cut out to be queen, and Richard is faced with a political crisis that threatens to tarnish not only the holiday season but the future of the kingdom.
## 6432 An aging, out-of-work actress accepts one last job, though the consequences of her decision affect her in ways she didn't consider.
## 6433 The story of a young, gay, black, con artist who, posing as the son of Sidney Poitier, cunningly maneuvers his way into the lives of a white, upper-class New York family.
## 6434 A troubled young man is drawn to a mythical place called Midian where a variety of monsters are hiding from humanity.
## 6435 A successful and married black man contemplates having an affair with a white girl from work. He's quite rightly worried that the racial difference would make an already taboo relationship even worse.
## 6436 When a prisoner transfer van is attacked, the cop in charge must fight those inside and outside while dealing with a silent foe: the icy temperatures.
## 6437 With no means for defeating Godzilla Earth, mankind watches as King Ghidorah, clad in a golden light, descends on the planet. The heavens and earth shake once again as the war moves to a higher dimension.
## 6438 When a romance between a widow and a notorious libertine takes an unexpected turn, Mademoiselle de Joncquières becomes instrumental to one lover’s plans for revenge.
## 6439 In 1985, against the backdrop of Thatcherism, Brian Jackson enrolls in the University of Bristol, a scholarship boy from seaside Essex with a love of knowledge for its own sake and a childhood spent watching University Challenge, a college quiz show. At Bristol he tries out for the Challenge team and falls under the spell of Alice, a lovely blond with an extensive sexual past.
## 6440 Based on Wes Craven's 1977 suspenseful cult classic, The Hills Have Eyes is the story of a family road trip that goes terrifyingly awry when the travelers become stranded in a government atomic zone. Miles from nowhere, the Carter family soon realizes the seemingly uninhabited wasteland is actually the breeding ground of a blood-thirsty mutant family...and they are the prey.
## 6441 Following the death of his father, young Danny Madigan takes comfort in watching action movies featuring the indestructible Los Angeles cop Jack Slater. After being given a magic ticket by theater manager Nick, Danny is sucked into the screen and bonds with Slater. When evil fictional villain Benedict gets his hands on the ticket and enters the real world, Danny and Jack must follow and stop him.
## 6442 During the early 16th Century idealistic German monk Martin Luther, disgusted by the materialism in the church, begins the dialogue that will lead to the Protestant Reformation.
## 6443 A chronicle biopic of the 22-year career of soccer star Roberto Baggio, including depictions of his difficult debut as a player, his deep rifts with some of his coaches, his triumph over injuries and personal discovery of Buddism.
## 6444 When an overachieving college senior makes a wrong turn, her road trip becomes a life-changing fight for survival in rural Kentucky.
## 6445 A head injury causes a woman to develop an extraordinary amount of confidence and believe she's drop dead gorgeous.
## 6446 A harried prehistoric bird mother entrusts her precious, soon-to-hatch egg to Sid. When she recommends him to her neighbours, business booms at his new egg-sitting service. However, dastardly pirate bunny, Squint, who is seeking revenge on the herd, steals, camouflages and hides all the eggs. Once again, with Squint’s twin brother assisting, Manny, Diego and the rest of the gang come to the rescue and take off on a daring mission that turns into the world’s first Easter egg hunt.
## 6447 Recently fired and facing eviction, a new dad has his life turned upside down when he meets a wealthy couple who offer a path to financial security... but at a price.
## 6448 A French woman mourning over the death of her husband three years prior is courted by a Swedish co-worker.
## 6449 In 1978, $20 million was stolen from a Detroit bank. One of the robbers was caught, one was found dead, and the third disappeared. The money was never found. Seven years later, the robber who was caught was released from jail. He immediately went to Miami, only to be found dead the next day. Now FBI agents Doug Bennet and Steve Forest have been called in to investigate the case while posing as Miami police officers. Somewhere in Miami the third robber is hiding with his $20 million, and he has a seven-year head start on the authorities.
## 6450 Chon Wang, a clumsy imperial guard trails Princess Pei Pei when she is kidnapped from the Forbidden City and transported to America. Wang follows her captors to Nevada, where he teams up with an unlikely partner, outcast outlaw Roy O'Bannon, and tries to spring the princess from her imprisonment.
## 6451 When Claire Spencer starts hearing ghostly voices and seeing spooky images, she wonders if an otherworldly spirit is trying to contact her. All the while, her husband tries to reassure her by telling her it's all in her head. But as Claire investigates, she discovers that the man she loves might know more than he's letting on.
## 6452 In a locked down train station, a homicide detective conducts an interview with a tormented monkey who is suspected of murder.
## 6453 The story of four characters whose lives intertwine amid the hustle and bustle of the Coney Island amusement park in the 1950s: Ginny, an emotionally volatile former actress now working as a waitress in a clam house; Humpty, Ginny’s rough-hewn carousel operator husband; Mickey, a handsome young lifeguard who dreams of becoming a playwright; and Carolina, Humpty’s long-estranged daughter, who is now hiding out from gangsters at her father’s apartment.
## 6454 The Seasoning House - where young girls are prostituted to the military. An orphaned deaf mute is enslaved to care for them. She moves between the walls and crawlspaces, planning her escape. Planning her ingenious and brutal revenge.
## 6455 Dorothy wakes up in post-tornado Kansas, only to be whisked back to Oz to try to save her old friends the Scarecrow, the Lion, the Tin Man and Glinda from a devious new villain, the Jester. Wiser the owl, Marshal Mallow, China Princess and Tugg the tugboat join Dorothy on her latest magical journey through the colorful landscape of Oz to restore order and happiness to Emerald City.
## 6456 Tyler knows a lot about accidents. So much so, he is scared to do anything that might endanger him, like riding his bike, or climbing into his treehouse. While in an old library, he is mystically transported into the unknown world of books, and he has to try and get home again.
## 6457 The Civil War has ended, but Colonel Morsman Carver is on one final mission – to kill Gideon, no matter what it takes. Launched by a gunshot and propelled by rage, the relentless pursuit takes the two men through frigid snow-capped mountains and arid deserts, far from the comforts and codes of civilisation, into the bloodiest recesses of their own souls.
## 6458 Based on one of the most shocking and gruesome murder cases in Brazil, the film presents Daniel Cravinhos's point of view of the events that led to the death of Marísia and Manfred von Richthofen, his girlfriend’s parents.
## 6459 Two teenage girls in suburban Connecticut rekindle their unlikely friendship after years of growing apart. In the process, they learn that neither is what she seems to be, and that a murder might solve both of their problems.
## 6460 Two years after choosing not to kill the man who killed his son, former police sergeant Leo Barnes has become head of security for Senator Charlene Roan, the front runner in the next Presidential election due to her vow to eliminate the Purge. On the night of what should be the final Purge, a betrayal from within the government forces Barnes and Roan out onto the street where they must fight to survive the night.
## 6461 A psychologist who begins working with a young boy who has suffered a near-fatal fall finds himself drawn into a mystery that tests the boundaries of fantasy and reality.
## 6462 When a cure is found to treat mutations, lines are drawn amongst the X-Men—led by Professor Charles Xavier—and the Brotherhood, a band of powerful mutants organised under Xavier's former ally, Magneto.
## 6463 An aimless young man who is scalping tickets, gambling and drinking, agrees to coach a Little League team from the Cabrini Green housing project in Chicago as a condition of getting a loan from a friend.
## 6464 When talented young writer Elizabeth Wurtzel earns a scholarship to Harvard, she sees it as her chance to escape the pressures of her working-class background and concentrate on her true talent. But what starts out so promising leads to self-destructive behavior and paralyzing depression that reflects an entire generation's struggle to navigate the effects of divorce, drugs, sex, and high expectations.
## 6465 40 years ago, a Celebi was being attacked by a Pokemon Hunter. Luckily, a young boy named Yukinari saved Celebi. Using its Time Traveling power, Celebi transported itself and Yukinari 40 years into the future. There, Satoshi, Kasumi, and Takeshi assist Yukinari to the healing lake in the forest so they can heal the wounded Celebi. Unfortunately an evil Team Rocket member, Vicious, tries to capture Celebi using his technology. As Satoshi and Co. try to get away from Vicious, they also run into Musashi, Kojiro, and Nyarth, who also want to capture Celebi. Soon it becomes a race against time to get Celebi and Yukinari back to the forest before Celebi is caught and is used to destroy the forest and themselves.
## 6466 Jay, a failed musician, walked out of his family and now earns a living as head bartender in a trendy London pub. Every Wednesday afternoon a woman comes to his house for graphic, almost wordless, sex. One day Jay follows her and finds out about the rest of her life (and that her name is Claire). This eventually disrupts their relationship.
## 6467 Kat is an aspiring singer-songwriter who dreams of making it big. However, her dreams are stalled by her reality: a conniving and cruel stepfamily and a demoralizing job working as a singing elf at billionaire Terrence Wintergarden’s Santa Land.
## 6468 In late 1967, a young orphaned boy goes to live with his loving grandma in the rural Alabama town of Demopolis. As the boy and his grandmother encounter some deceptively glamorous but thoroughly diabolical witches, she wisely whisks him away to a seaside resort. Regrettably, they arrive at precisely the same time that the world's Grand High Witch has gathered.
## 6469 Maya, a 40-year-old woman struggling with frustrations from unfulfilled dreams. Until that is, she gets the chance to prove to Madison Avenue that street smarts are as valuable as book smarts, and that it is never too late for a second act.
## 6470 Serena Bruno is an architect who studied and got several masters in different countries of the world but she decides to go back to Italy so she can live and work there. She will soon find out that her native country is not as open minded and she will struggle to find a job that she truly loves and is passionate about. Along the way she will meet Francesco a gay man who will help and support her throughout her journey.
## 6471 A young woman grieving the loss of her mother, a famous scream queen from the 1980s, finds herself pulled into the world of her mom's most famous movie. Reunited, the women must fight off the film's maniacal killer.
## 6472 An extremely wealthy elderly man dying from cancer undergoes a radical medical procedure that transfers his consciousness to the body of a healthy young man but everything may not be as good as it seems when he starts to uncover the mystery of the body's origins and the secret organization that will kill to keep its secrets.
## 6473 A woman seeking revenge for her murdered father hires a famous gunman, but he's very different from what she expects.
## 6474 Based on Mary Shelley's novel, "Frankenstein" tells the story of Victor Frankenstein, a promising young doctor who, devastated by the death of his mother during childbirth, becomes obsessed with bringing the dead back to life. His experiments lead to the creation of a monster, which Frankenstein has put together with the remains of corpses. It's not long before Frankenstein regrets his actions.
## 6475 In a future Earth barren of all flora and fauna, the planet's ecosystems exist only in large pods attached to spacecraft. When word comes in that the pods are to be jettisoned into space and destroyed so that the spacecraft can be reused for commercial purposes, most of the crew of the Valley Forge rejoice at the prospect of going home. Not so for botanist Freeman Lowell who loves the forest and its creatures, so decides to take matters into his own hands to protect what he loves.
## 6476 Three stories about the world of opioids collide: a drug trafficker arranges a multi-cartel Fentanyl smuggling operation between Canada and the U.S., an architect recovering from an OxyContin addiction tracks down the truth behind her son's involvement with narcotics, and a university professor battles unexpected revelations about his research employer, a drug company with deep government influence bringing a new "non-addictive" painkiller to market.
## 6477 Paris in the 1920s. Marguerite Dumont is a wealthy woman with a passion for music and the opera. For years, she has performed regularly for a circle of guests. But Marguerite sings tragically out of tune and no one has ever told her. Her husband and her close friends have always encouraged her in her illusions. Things become very complicated the day she gets it into her head to perform in front of a genuine public, at the Opera.
## 6478 The immature and cheap douche bag Fábio Clóvis marries the pseudo-intellectual Miá and they travel in a cruise to Europe on board of a fancy passenger vessel. Fabio and Miá are invited to have dinner with the wealthy Beto Assunção and his gorgeous wife Laura in a VIP restaurant on the vessel. Soon Fábio discovers that Beto was Miá's boyfriend and Miá learns that Fábio had a crush on Laura that was his classmate. Meanwhile the cynical chamber maid Suzana Mello and her estranged husband, the entertainer Wilson, make a bet that Fábio and Miá will split before the end of the trip and poison their relationship. When the ship arrives in Casablanca, Fábio meets his bothersome childhood friend Cabeça that affects their honeymoon.
## 6479 A washed-up '80s pop star gets a chance at a comeback when reigning pop diva Cora Corman invites him to write & record a duet with her, but there's a problem--Alex hasn't written a song in years; he's never written lyrics and he has to come up with a hit in a matter of days.
## 6480 Two friends are invited for a weekend to a luxury island with their boss. The boss gets killed and nobody seems to notice, except for the two friends. In order not to become suspects of murder they treat the body as a puppet and make people believe he's still alive. The killer wants to do his job so when he is informed that the stiff is still alive he's got to shoot him again, and again, and again.
## 6481 Rémy and Mélanie live next door to each other in Paris but have never met. The two thirty-year-old Parisians search for connections online, but never have much success. Falling deeper into loneliness and depression, both decide to start attending regular therapy. With the help of their therapists, they uncover the real roots of their issues, and find that the connection they were both searching for is much closer than they thought.
## 6482 A crime syndicate places a hit on a billionaire's daughter, making her the target of an elite assassin squad. A small band of down-and-out mercenaries protects her, fighting tooth and nail to stop the assassins from reaching their target.
## 6483 Three years later Michele (The Invisible boy) meets his mother and his twin sister. Both have stories and superpowers but their intentions may not be what Michele thinks.
## 6484 A playboy business tycoon, Liu Xuan, purchases the Green Gulf, a wildlife reserve, for a sea reclamation project, and uses sonar technology to get rid of the sea life in the area. Unknown to him, the Green Gulf is the home of merpeople, and the sonar has caused many of them to succumb to illness or die. Xuan's business ventures in the area are threatened when he crosses paths with the mermaid, Shan, who is sent to avenge her people.
## 6485 Looking to mine for gold, greedy industrialist Bartholomew Bogue seizes control of the Old West town of Rose Creek. With their lives in jeopardy, Emma Cullen and other desperate residents turn to bounty hunter Sam Chisolm for help. Chisolm recruits an eclectic group of gunslingers to take on Bogue and his ruthless henchmen. With a deadly showdown on the horizon, the seven mercenaries soon find themselves fighting for more than just money once the bullets start to fly.
## 6486 Brooklyn mobster and prolific hit man Jimmy Conlon has seen better days. Longtime best friend of a mob boss, Jimmy is haunted by the sins of his past—as well as a dogged police detective who’s been one step behind Jimmy for 30 years. But when Jimmy’s estranged son becomes a target, Jimmy must make a choice between the crime family he chose and the real family he abandoned long ago. Now, with nowhere safe to turn, Jimmy has just one night to figure out exactly where his loyalties lie and to see if he can finally make things right.
## 6487 In 2041, humans live side-by-side with robots and androids. A well-known cybernetic engineer, Alex Garel, returns to his hometown to create a new model of robot child.
## 6488 After being infected in the wake of a violent pandemic and with only 48 hours to live, a father struggles to find a new home for his baby daughter.
## 6489 The Hartmann family is turned upside down when mother Angelika decides to take in the refugee Diallo, against her husband's will. Amidst the typical chaos of our time, hope remains that the family finds its stability, confidence and peace again - just like the whole country.
## 6490 An improv group deals with several crises, including the loss of their lease and one member hitting the big time.
## 6491 Victor Maynard is a middle-aged, solitary assassin who lives to please his formidable mother, despite his own peerless reputation for lethal efficiency. His professional routine is interrupted when he finds himself drawn to one of his intended victims. After sparing her life, he unexpectedly acquires a young apprentice. Believing Victor to be a private detective, his two new companions tag along, while he attempts to thwart the murderous attentions of his unhappy client.
## 6492 A young man searches for the "master" to obtain the final level of martial arts mastery known as the glow. Along the way he must fight an evil martial arts expert and rescue a beautiful singer from an obsessed music promoter.
## 6493 Altruistic Jane finds herself facing her worst nightmare as her younger sister announces her engagement to the man Jane secretly adores.
## 6494 After he reunites with an old pal through Facebook, a mild-mannered accountant is lured into the world of international espionage.
## 6495 Aging pals Billy, Paddy, Archie, and Sam have been best friends since childhood. When Billy finally proposes to his much-younger girlfriend, all four friends go to Las Vegas to celebrate the end of Billy's longtime bachelorhood and relive their glory days. However, the four quickly realize that the intervening decades have changed Sin City and tested their friendship in ways they had not imagined.
## 6496 Po and the Furious Five uncover the legend of three of kung fu's greatest heroes: Master Thundering Rhino, Master Storming Ox, and Master Croc.
## 6497 Moments from death a young man is rescued by a renowned warrior. Realizing unsurpassed physical potential in the young boy he trains him into the most dangerous man alive. As he becomes a young man he goes on a lone mission of vengeance against the vicious slave traders who enslaved him as a youth and the treacherous warlord who killed his father.
## 6498 Darcy and Tom gather their families for the ultimate destination wedding but when the entire party is taken hostage, “’Til Death Do Us Part” takes on a whole new meaning in this hilarious, adrenaline-fueled adventure as Darcy and Tom must save their loved ones—if they don’t kill each other first.
## 6499 An undercover MI6 agent is sent to Berlin during the Cold War to investigate the murder of a fellow agent and recover a missing list of double agents.
## 6500 An underachieving vocal coach is motivated by her father, the king of movie-trailer voice-overs, to pursue her aspirations of becoming a voice-over star. Amidst pride, sexism and family dysfunction, she sets out to change the voice of a generation.
## 6501 After Kick-Ass’ insane bravery inspires a new wave of self-made masked crusaders, he joins a patrol led by the Colonel Stars and Stripes. When these amateur superheroes are hunted down by Red Mist — reborn as The Mother Fucker — only the blade-wielding Hit-Girl can prevent their annihilation.
## 6502 After three years of therapy Charley Brewster, now a college student, is convinced that Jerry Dandridge was a serial killer posing as a vampire. But when Regine, a mysterious actress and her entourage move into Peter Vincent's apartment block, the nightmare starts again - and this time it's personal!
## 6503 Kronk, now chef and Head Delivery Boy of Mudka's Meat Hut, is fretting over the upcoming visit of his father. Kronk's father always disapproved of young Kronk's culinary interests and wished that Kronk instead would settle down with a wife and a large house on a hill.
## 6504 Young sweethearts Billy and Kate move to the Big Apple, land jobs in a high-tech office park and soon reunite with the friendly and lovable Gizmo. But a series of accidents creates a whole new generation of Gremlins. The situation worsens when the devilish green creatures invade a top-secret laboratory and develop genetically altered powers, making them even harder to destroy!
## 6505 A man caught in the middle of two simultaneous robberies at a bank desperately tries to protect the teller with whom he's secretly in love.
## 6506 A young man carrying a big basket that contains his deformed Siamese-twin brother seeks vengeance on the doctors who separated them against their will.
## 6507 In the year 50 BC, Gaul is occupied by the Romans - nearly. But the small village of Asterix and his friends still resists the Roman legions with the aid of their druid's magic potion, which gives superhuman strength. Learning of this potion, a Roman centurion kidnaps the druid to get the secret formula out of him.
## 6508 Jodi, the tallest girl in her high school, has always felt uncomfortable in her own skin. But after years of slouching, being made fun of, and avoiding attention at all costs, Jodi finally decides to find the confidence to stand tall.
## 6509 The surviving Resistance faces the First Order once again as the journey of Rey, Finn and Poe Dameron continues. With the power and knowledge of generations behind them, the final battle begins.
## 6510 Following the murder of his fiancée, Mitch Rapp trains under the instruction of Cold War veteran Stan Hurley. The pair then is enlisted to investigate a wave of apparently random attacks on military and civilian targets.
## 6511 As the Best Exotic Marigold Hotel has only a single remaining vacancy - posing a rooming predicament for two fresh arrivals - Sonny pursues his expansionist dream of opening a second hotel.
## 6512 A British college student falls for an American student, only to be separated from him when she's banned from the U.S. after overstaying her visa.
## 6513 Romanticized adaptation of Bram Stoker's 1897 classic. Count Dracula is a subject of fatal attraction to more than one English maiden lady, as he seeks an immortal bride.
## 6514 As a CIA officer, Evelyn Salt swore an oath to duty, honor and country. Her loyalty will be tested when a defector accuses her of being a Russian spy. Salt goes on the run, using all her skills and years of experience as a covert operative to elude capture. Salt's efforts to prove her innocence only serve to cast doubt on her motives, as the hunt to uncover the truth behind her identity continues and the question remains: "Who is Salt?"
## 6515 Best friends Alice and Darlene take a trip to Thailand after graduating high school. In Thailand, they meet a captivating Australian man, who calls himself Nick Parks. Darlene is particularly smitten with Nick and convinces Alice to take Nick up on his offer to treat the two of them to what amounts to a day trip to Hong Kong. In the airport, the girls are seized by the police and shocked to discover that one of their bags contains heroin.
## 6516 During the reign of the Vikings, a man from another world crash-lands on Earth, bringing with him an alien predator. The man must fuse his advanced technology with the weaponry of the vikings to fight the monster.
## 6517 A fisheries expert is approached by a consultant to help realize a sheik's vision of bringing the sport of fly-fishing to the desert and embarks on an upstream journey of faith and fish to prove the impossible possible.
## 6518 John Bennett, a man whose childhood wish of bringing his teddy bear to life came true, now must decide between keeping the relationship with the bear or his girlfriend, Lori.
## 6519 An honest marshal in a corrupt mining colony on Io, Jupiter's sunless third moon, is determined to confront a violent drug ring even though it may cost him his life. After his wife angrily deserts him, he waits alone for the arrival of killers hired by the company to eliminate him.
## 6520 Dr. Peyton Westlake is on the verge of realizing a major breakthrough in synthetic skin when his laboratory is destroyed by gangsters. Having been burned beyond recognition and forever altered by an experimental medical procedure, Westlake becomes known as Darkman, assuming alternate identities in his quest for revenge and a new life with a former love.
## 6521 Elizabeth has just been through a particularly nasty breakup, and now she's ready to leave her friends and memories behind as she chases her dreams across the country. In order to support herself on her journey, Elizabeth picks up a series of waitress jobs along the way. As Elizabeth crosses paths with a series of lost souls whose yearnings are even greater than her own, their emotional turmoil ultimately helps her gain a greater understanding of her own problems...
## 6522 After a one night stand with Alex, Isabel realizes that she is pregnant and they decide to get married. However, along with the marriage comes compromise of one's own cultural traditions.
## 6523 In the near future, a drone pilot is sent into a deadly militarized zone and must work with an android officer to locate a doomsday device.
## 6524 Various individuals think they’re coming together for a party in a private home, but a series of revelations results in a huge crisis that throws their belief systems – and their values – into total disarray.
## 6525 Minions Stuart, Kevin and Bob are recruited by Scarlet Overkill, a super-villain who, alongside her inventor husband Herb, hatches a plot to take over the world.
## 6526 A massive ball of furry creatures from another world eat their way through a small mid-western town followed by intergalactic bounty hunters opposed only by militant townspeople.
## 6527 A fleet of Martian spacecraft surrounds the world's major cities and all of humanity waits to see if the extraterrestrial visitors have, as they claim, "come in peace." U.S. President James Dale receives assurance from science professor Donald Kessler that the Martians' mission is a friendly one. But when a peaceful exchange ends in the total annihilation of the U.S. Congress, military men call for a full-scale nuclear retaliation.
## 6528 Wolverine faces his ultimate nemesis - and tests of his physical, emotional, and mortal limits - in a life-changing voyage to modern-day Japan.
## 6529 An international terrorist has New York in a grip of panic and it's up to Det. Sgt. Deke DaSilva to take him down.
## 6530 In the 1940s in the small town of Jupiter Hollow, two sets of identical twins are born in the same hospital on the same night. One set to a poor local family and the other to a rich family just passing through. The dizzy nurse on duty accidentally mixes the twins unbeknown to the parents. Our story flashes forward to the 1980s where the mismatched sets of twins are about to cross paths.
## 6531 When The Man in the Yellow Hat befriends Curious George in the jungle, they set off on a non-stop, fun-filled journey through the wonders of the big city toward the warmth of true friendship.
## 6532 Upon learning that he has to come out of retirement to steal 50 cars in one night to save his brother Kip's life, former car thief Randall "Memphis" Raines enlists help from a few "boost happy" pals to accomplish a seemingly impossible feat. From countless car chases to relentless cops, the high-octane excitement builds as Randall swerves around more than a few roadblocks to keep Kip alive.
## 6533 Dj Steph is a young radio deejay on the rise, who gained a lot of popularity on social media and every evening hosts a radio show with a large following, during which he receives calls from his fans. One evening, a call chills him to the bone: a cold-blooded stranger announces on live radio that he plans to take his own life, making himself explode in the middle of the city.
## 6534 Tamara, 15, complexed with her curves, decided its entry into second to get rid of the label of "big". To shut up the gossip, she made a bet with her best friend to go out with the first boy who pass the classroom door. No luck, the boy turns out to be Diego, the most handsome guy of high school. The bet is complicated for Tamara .... Between the dirty tricks of bitches of high school, a mother hen, boards "drag" his little sister, Tamara is a memorable year!
## 6535 In 1951, Marcus Messner, a working-class Jewish student from New Jersey, attends a small Ohio college, where he struggles with anti-Semitism, sexual repression, and the ongoing Korean War.
## 6536 A group of Iraq War veterans goes on the run from U.S. military forces while they try to clear their names after being framed for a crime they didn't commit. Along the way, Col. Hannibal Smith, Capt. H.M. ‘Howling Mad’ Murdock , Sgt. Bosco ‘B.A.’ Baracus, and Lt. Templeton ‘Faceman’ Peck help out various people they encounter.
## 6537 With the help of her coach, her mom, and the boy who drives the Zamboni machine, nothing can stop Casey from realizing her dream to be a champion figure skater.
## 6538 D'Artagnan travels to Paris hoping to become a musketeer, one of the French king's elite bodyguards, only to discover that the corps has been disbanded by conniving Cardinal Richelieu, who secretly hopes to usurp the throne. Fortunately, Athos, Porthos and Aramis have refused to lay down their weapons and continue to protect their king. D'Artagnan joins with the rogues to expose Richelieu's plot against the crown.
## 6539 A small, seemingly innocuous plastic reel of film leads surveillance specialist Tom Welles down an increasingly dark and frightening path. With the help of the streetwise Max, he relentlessly follows a bizarre trail of evidence to determine the fate of a complete stranger. As his work turns into obsession, he drifts farther and farther away from his wife, family and simple life as a small-town PI.
## 6540 In a dysfunctional family where the mother is a heroin addict and prostitute, beaten by her son, and the father is an ex-TV reporter, sleeping with his daughter and filming his son being beaten up, ‘Q’, a complete stranger enters the bizarre family, changing their lives for the better, finding a balance in their disturbing natures.
## 6541 A group of criminals are brought together under mysterious circumstances and have to work together to uncover what's really going on when their simple job goes completely sideways.
## 6542 When her husband's sex game goes wrong, Jessie (who is handcuffed to a bed in a remote lake house) faces warped visions, dark secrets and a dire choice.
## 6543 Set to the music of popular hit songs from the 1980s. A beautiful coastal village, present day Italy. After a whirlwind romance, Maddie is preparing to marry gorgeous Italian Raf, and has invited her sister Taylor to the wedding. Unbeknownst to Maddie, however, Raf is Taylor's ex-holiday flame, and the love of her life...
## 6544 Lady and Tramp's mischievous pup, Scamp, gets fed up with rules and restrictions imposed on him by life in a family, and longs for a wild and free lifestyle. He runs away from home and into the streets where he joins a pack of stray dogs known as the "Junkyard Dogs." Buster, the pack's leader, takes an instant disliking to the "house-dog" and considers him a rival. Angel, a junkyard pup Scamp's age, longs for the safety and comfort of life in a family and the two become instant companions. Will Scamp choose the wild and free life of a stray or the unconditional love of his family?
## 6545 New York fashion designer, Melanie Carmichael suddenly finds herself engaged to the city's most eligible bachelor. But her past holds many secrets—including Jake, the redneck husband she married in high school, who refuses to divorce her. Bound and determined to end their contentious relationship once and for all, Melanie sneaks back home to Alabama to confront her past.
## 6546 Bernie Laplante is having a rough time. He's divorced, his ex-wife hates him and has custody of their son, the cops are setting a trap for him, then to top it all, he loses a shoe whilst rescuing passengers of a crashed jet. Being a thief who is down on his luck, Bernie takes advantage of the crash, but then someone else claims credit for the rescue.
## 6547 Camp counselors are stalked and murdered by an unknown assailant while trying to reopen a summer camp that was the site of a child's drowning.
## 6548 Meet Adrien! He's 35. He's stuck in a mid-life crisis. He's neurotic and hypochondriac. Tonight he's stuck in an endless family dinner and his girlfriend is not answering his texts. On top of that, his dumb brother-in-law asks him to prepare a speech for his wedding. Could it get even worse?
## 6549 Basque Country, Spain, 1843. A police constable arrives at a small village in Álava to investigate a mysterious blacksmith who lives alone deep in the woods.
## 6550 A mysterious force knocks the moon from its orbit around Earth and sends it hurtling on a collision course with life as we know it.
## 6551 Agent Coulson informs Agent Sitwell that the World Security Council wishes Emil Blonsky to be released from prison to join the Avengers Initiative. As Nick Fury doesn't want to release Blonsky, the two agents decide to send a patsy to sabotage the meeting...
## 6552 An American with a Japanese upbringing, Chris Kenner is a police officer assigned to the Little Tokyo section of Los Angeles. Kenner is partnered with Johnny Murata, a Japanese-American who isn't in touch with his roots. Despite their differences, both men excel at martial arts, and utilize their formidable skills when they go up against Yoshida, a vicious yakuza drug dealer with ties to Kenner's past.
## 6553 Since the sudden and highly suspicious death of his parents, 12-year-old Damien has been in the charge of his wealthy aunt and uncle. Widely feared to be the Antichrist, Damien relentlessly plots to seize control of his uncle's business empire—and the world. Anyone attempting to unravel the secrets of Damien's sinister past or fiendish future meets with a swift and cruel demise.
## 6554 A social media personality travels with his friends to Moscow to capture new content for his successful VLOG. Always pushing the limits and catering to a growing audience, they enter a cold world of mystery, excess, and danger. When the lines between real life and social media are blurred, the group must fight to escape, and survive.
## 6555 A teenager's weekend at a lake house with her father takes a turn for the worse when a group of convicts wreaks havoc on their lives.
## 6556 A look at the life of Margaret Thatcher, the former Prime Minister of the United Kingdom, with a focus on the price she paid for power.
## 6557 Vlad Tepes is a great hero, but when he learns the Sultan is preparing for battle and needs to form an army of 1,000 boys, he vows to find a way to protect his family. Vlad turns to dark forces in order to get the power to destroy his enemies and agrees to go from hero to monster as he's turned into the mythological vampire, Dracula.
## 6558 Sergeant Todd is a veteran soldier for an elite group of the armed forces. After being defeated by a new breed of genetically engineered soldiers, he is dumped on a waste planet and left for dead. He soon interacts with a group of crash survivors who lead out a peaceful existence. The peace is broken as the new soldiers land on the planet to eliminate the colony, which Sergeant Todd must defend.
## 6559 Heidi, the star of the "Meet The Feebles Variety Hour" discovers her lover Bletch, The Walrus, is cheating on her. And with all the world waiting for the show, the assorted co-stars must contend with drug addiction, extortion, robbery, disease, drug dealing, and murder. Meanwhile the love between two of the stars is threatened by Trevor the Rat, who wishes to exploit the young starlet for use in his porno movie.
## 6560 Deloris Van Cartier is again asked to don the nun's habit to help a run-down Catholic school, presided over by Mother Superior. And if trying to reach out to a class full of uninterested students wasn't bad enough, the sisters discover that the school is due to be closed by the unscrupulous chief of a local authority.
## 6561 This is the story of an isolated Alaskan town that is plunged into darkness for a month each year when the sun sinks below the horizon. As the last rays of light fade, the town is attacked by a bloodthirsty gang of vampires bent on an uninterrupted orgy of destruction. Only the small town's husband-and-wife Sheriff team stand between the survivors and certain destruction.
## 6562 At Mr. Rad's Warehouse, the best hip-hop crews in Los Angeles compete for money and respect. But when a suburban crew crashes the party, stealing their dancers - and their moves - two warring friends have to pull together to represent the street. Starring hip-hop sensations Marques Houston, Omari Grandberry, Lil' Kim and comedian Steve Harvey.
## 6563 When a New York reporter plucks crocodile hunter Dundee from the Australian Outback for a visit to the Big Apple, it's a clash of cultures and a recipe for good-natured comedy as naïve Dundee negotiates the concrete jungle. Dundee proves that his instincts are quite useful in the city and adeptly handles everything from wily muggers to high-society snoots without breaking a sweat.
## 6564 A biologist signs up for a dangerous, secret expedition into a mysterious zone where the laws of nature don't apply.
## 6565 An insane independent film director and his renegade group of demented filmmakers kidnap an A-list Hollywood actress and force her to star in their underground film.
## 6566 Under the watchful eye of his mentor, Captain Mike Kennedy, probationary firefighter Jack Morrison matures into a seasoned veteran at a Baltimore fire station. However, Jack has reached a crossroads as the sacrifices he's made have put him in harm's way innumerable times and significantly impacted his relationship with his wife and kids.
## 6567 The film revolves around Davey Gordon, a 29 year old welterweight New York boxer in the end of his career, and his relationship with a dancer and her violent employer.
## 6568 Mary Lennox is born in India to wealthy British parents who never wanted her. When her parents suddenly die, she is sent back to England to live with her uncle. She meets her sickly cousin, and the two children find a wondrous secret garden lost in the grounds of Misselthwaite Manor.
## 6569 A psychic doctor, John Clancy, works with an FBI special agent in search of a serial killer.
## 6570 A comedy that follows two high school students -- one overachiever struggling to write his valedictorian speech, the other a senior now going on his 15th year of school.
## 6571 Dar, is the son of a king, who is hunted by a priest after his birth and grows up in another family. When he becomes a grown man his new father is murdered by savages and he discovers that he has the ability to communicate with the animals, which leads him on his quest for revenge against his father's killers.
## 6572 A sociopathic kidnapper methodically pushes a desperate pair of parents to their absolute breaking point.
## 6573 Five American soldiers fighting in Europe during World War II struggle to return to Allied territory after being separated from U.S. forces during the historic Malmedy Massacre.
## 6574 For Rod Kimball, performing stunts is a way of life, even though he is rather accident-prone. Poor Rod cannot even get any respect from his stepfather, Frank, who beats him up in weekly sparring matches. When Frank falls ill, Rod devises his most outrageous stunt yet to raise money for Frank's operation -- and then Rod will kick Frank's butt.
## 6575 Joey Boca is the owner of a pizza parlour, and has been married to Rosalie for years. When Rosalie discovers that Joey is a womanizer and has been cheating on her for a long time, she goes to extreme lengths to punish him.
## 6576 Amalie is the girl who has everything, good looks, money, a boyfriend and a big talent of dancing. One day, her world falls apart and she moves from everything she knows. Then enter Mikael. He is dancing in the streets and Amalie joins him in dancing on the streets, dancing Battles.
## 6577 Twenty-eight-year-old Margot is happily married to Lou, a good-natured cookbook author. But when Margot meets Daniel, a handsome artist who lives across the street, their mutual attraction is undeniable.
## 6578 Suffering from a severe case of depression, toy company CEO Walter Black begins using a beaver hand puppet to help him open up to his family. With his father seemingly going insane, adolescent son Porter pushes for his parents to get a divorce.
## 6579 20 men are chosen to participate in the roles of guards and prisoners in a psychological study that ultimately spirals out of control.
## 6580 A high-school gym teacher has big plans for the summer, but is forced to cancel them to teach a "bonehead" English class for misfit goof-off students. Fortunately, his unconventional brand of teaching fun field trips begins to connect with them, and even inspires ardor in some.
## 6581 A tight-knit team of FBI investigators, along with their District Attorney supervisor, is suddenly torn apart when they discover that one of their own teenage daughters has been brutally murdered.
## 6582 Arthur is a spirited ten-year old whose parents are away looking for work, whose eccentric grandfather has been missing for several years, and who lives with his grandmother in a country house that, in two days, will be repossessed, torn down, and turned into a block of flats unless Arthur's grandfather returns to sign some papers and pay off the family debt. Arthur discovers that the key to success lies in his own descent into the land of the Minimoys, creatures no larger than a tooth, whom his grandfather helped relocate to their garden. Somewhere among them is hidden a pile of rubies, too. Can Arthur be of stout heart and save the day? Romance beckons as well, and a villain lurks.
## 6583 After the death of her mother, Evie is approached by an unknown cousin who invites her to a lavish wedding in the English countryside. Soon, she realizes a gothic conspiracy is afoot and must fight for survival as she uncovers twisted secrets in her family’s history.
## 6584 In 1920s New York City, a Black woman finds her world upended when her life becomes intertwined with a former childhood friend who's passing as white.
## 6585 In the summer of 1987, a college graduate takes a 'nowhere' job at his local amusement park, only to find it's the perfect course to get him prepared for the real world.
## 6586 Fed up with all the attention going to Bugs Bunny, Daffy Duck quits Hollywood, teams up with recently-fired stuntman Damien Drake Jr. and embarks on a round-the-world adventure, along with Bugs and The VP of Warner Bros. Their mission? Find Damien's father, and the missing blue diamond... and stay one step ahead of The Acme Corp., who wants the diamond for their own purposes.
## 6587 Upon first sight of a beautiful instructor, a bored and overworked estate lawyer signs up for ballroom dancing lessons.
## 6588 Jigsaw has disappeared. Along with his new apprentice Amanda, the puppet-master behind the cruel, intricate games that have terrified a community and baffled police has once again eluded capture and vanished. While city detective scrambles to locate him, Doctor Lynn Denlon and Jeff Reinhart are unaware that they are about to become the latest pawns on his vicious chessboard.
## 6589 A searing look at a day in the life of an assistant to a powerful executive. As Jane follows her daily routine, she grows increasingly aware of the insidious abuse that threatens every aspect of her position.
## 6590 Ren Amari is the driven inventor of a revolutionary new drug. OtherLife expands the brain's sense of time and creates virtual reality directly in the user's mind. With OtherLife, mere seconds in real life feel like hours or days of exciting adventures. As Ren and her colleagues race around the clock to launch OtherLife, the government muscles in to use the drugs as a radical solution to prison overcrowding. They will create virtual cells where criminals serve long sentences in just minutes of real time. When Ren resists, she finds herself an unwilling guinea pig trapped in a prison cell in her mind. She must escape before she descends into madness, and then regain control of OtherLife before others suffer the same fate.
## 6591 A man's affair with his family's housemaid leads to dark consequences.
## 6592 It's all extreme sports and a life of freedom as Max sets off for college -- but Goofy misses Max so much he loses his job and goes to finish college alongside Max and his friends. But as Goofy tries to get closer to Max, both must go to the extreme to learn how to live their own lives together.
## 6593 The seemingly invincible Spider-Man goes up against an all-new crop of villains—including the shape-shifting Sandman. While Spider-Man’s superpowers are altered by an alien organism, his alter ego, Peter Parker, deals with nemesis Eddie Brock and also gets caught up in a love triangle.
## 6594 After a couple finds a traumatized child of unknown origins, wife Paula must decipher the girl's strange behaviors to unlock her identity and dark past.
## 6595 A lonely young boy feels different from everyone else. Desperate for a friend, he seeks solace and refuge in his ever-present cell phone and tablet. When a mysterious creature uses the boy’s devices against him to break into our world, his parents must fight to save their son from the monster beyond the screen.
## 6596 In a cold French city where suicide is a common urge, there is a colorful shop, managed for many years by the Tuvache family, where it is very easy to obtain the necessary tools to satisfy the sinister desires of so many depressed citizens.
## 6597 Jiminy Cricket hosts two Disney animated shorts: “Bongo,” about a circus bear escaping to the wild, and “Mickey and the Beanstalk,” a take on the famous fairy tale.
## 6598 When soldier Robin happens upon the dying Robert of Loxley, he promises to return the man's sword to his family in Nottingham. There, he assumes Robert's identity; romances his widow, Marion; and draws the ire of the town's sheriff and King John's henchman, Godfrey.
## 6599 After denying a woman the extension she needs to keep her home, loan officer Christine Brown sees her once-promising life take a startling turn for the worse. Christine is convinced she's been cursed by a Gypsy, but her boyfriend is skeptical. Her only hope seems to lie in a psychic who claims he can help her lift the curse and keep her soul from being dragged straight to hell.
## 6600 When Jack and Diane find themselves in an unexpected adult situation, the A-Squad comes to their rescue. In order to help their friend Diane, the A-Squad goes where no cheerleader has gone before: taking on a little after-school project known as bank robbery. But the A-Squad does things their way -- with sugar and spice -- forever changing their friendship, their future and the nation's notion of teen spirit.
## 6601 Allie Fox, an American inventor exhausted by the perceived danger and degradation of modern society, decides to escape with his wife and children to Belize. In the jungle, he tries with mad determination to create a utopian community with disastrous results.
## 6602 A TransSiberian train journey from China to Moscow becomes a thrilling chase of deception and murder when an American couple encounters a mysterious pair of fellow travelers.
## 6603 Young and disenchanted Sam meets a mysterious and beautiful woman who's swimming in his building's pool one night. When she suddenly vanishes the next morning, Sam embarks on a surreal quest across Los Angeles to decode the secret behind her disappearance, leading him into the murkiest depths of mystery, scandal and conspiracy.
## 6604 A misanthropic man sets out to exact revenge on his estranged father, by finding a loophole and attempting to win the National Spelling Bee as an adult. Figuring it would destroy his father, and everything he's worked so hard for as head of the Spelling Bee Championship Organization, Guy Trilby eventually discovers winning isn't necessary for revenge, and that friendship is a blessing not a curse.
## 6605 When the White House (Secret Service Code: "Olympus") is captured by a terrorist mastermind and the President is kidnapped, disgraced former Presidential guard Mike Banning finds himself trapped within the building. As the national security team scrambles to respond, they are forced to rely on Banning's inside knowledge to help retake the White House, save the President and avert an even bigger disaster.
## 6606 Guillaume has made it: A machine that can clean dirty air by simply sucking all dirt into air balloons and then shipping them far far away so his explanation. Some Japanese business guys, after dinner with a lot of alcohol, order 5,000 pieces. His only problem: His production capacity is way to small so he gets to produce the machines in his private house. His wife Bernadette is far from being happy about it. Her private life goes down the line so she decides to leave Guillaume and to finally have revenge she candidates for major against her husband...
## 6607 Diamonds are stolen only to be sold again in the international market. James Bond infiltrates a smuggling mission to find out who's guilty. The mission takes him to Las Vegas where Bond meets his archenemy Blofeld.
## 6608 To protect an 8-year-old girl, a dangerous assassin reunites with her mother and her lethal associates to take down a ruthless crime syndicate and its army of henchmen.
## 6609 The Queen of Selvascura risks everything to be a mother; the King of Roccaforte falls in love with the voice of a mysterious girl; the King of Altomonte becomes obsessed with a flea and neglects his daughter.
## 6610 Hotshot gambler Jake Green is long on bravado and seriously short of common sense. Rarely is he allowed in any casino because he's a bona fide winner and, in fact, has taken so much money over the years that he's the sole client of his accountant elder brother, Billy. Invited to a private game, Jake is in fear of losing his life.
## 6611 A young man receives an emergency phone call on his cell phone from an older woman. She claims to have been kidnapped – and the kidnappers have targeted her husband and child next.
## 6612 After their father is called into work, two young boys, Walter and Danny, are left in the care of their teenage sister, Lisa, and told they must stay inside. Walter and Danny, who anticipate a boring day, are shocked when they begin playing Zathura, a space-themed board game, which they realize has mystical powers when their house is shot into space. With the help of an astronaut, the boys attempt to return home.
## 6613 Set in the high courts of 16th Century France, where the wars of religion between Catholics and Protestants are raging. Marie de Mézières, a beautiful young aristocrat, is in love with Henri de Guise, but her hand in marriage is promised to the Prince of Montpensier.
## 6614 Best friends Ely and Lila share everything together, including their dream of a life beyond the Paris suburb they've lived in since childhood. One night they venture into the capital and meet a pair of wealthy young friends at a night club. Ashamed of their working-class background, and seeing an opportunity to escape, Ely and Lila begin to lie their way into this glamorous new world. Falling deeper into their web of lies, the young women begin to lose sight of themselves as their friendship is pushed to the limit.
## 6615 Damien and Leito return to District 13 on a mission to bring peace to the troubled sector that is controlled by five different gang bosses, before the city’s secret services take drastic measures to solve the problem.
## 6616 A high school slacker who's rejected by every school he applies to opts to create his own institution of higher learning, the South Harmon Institute of Technology, on a rundown piece of property near his hometown.
## 6617 A travelling theatre company has more to it than meets the eye. It is an imaginary world commanded by the mind of Doctor Parnassus and the audience is in for more than just a show.
## 6618 Alice, a young innocent Catholic girl, is tempted into masturbating after an AOL chat suddenly turns sexual, however is conflicted as the act would be considered a sin.
## 6619 A true-life drama in the 1920s, centering on British explorer Col. Percy Fawcett, who discovered evidence of a previously unknown, advanced civilization in the Amazon and disappeared whilst searching for it.
## 6620 When Danny O'Shea's daughter is cut from the Peewee football team just for being a girl, he decides to form his own team, composed of other ragtag players who were also cut. Can his team really learn enough to beat the elite team, coached by his brother, a former pro player?
## 6621 Life is easy for 43-year-old Luis, a happy single guy, fulfilled in his job of star nose with a perfume creation company, cosseted by his mother and five sisters. It could have lasted for a whole life, but fed up with mollycoddling and helping him, his mother and sisters decide it's time he got married, and the sooner the better!
## 6622 Recruited to assist Montreal police in their desperate search for a serial killer who assumes the identities of his victims, FBI profiler Illeana Scott knows it's only a matter of time before the killer strikes again. Her most promising lead is a museum employee who might be the killer's only eyewitness.
## 6623 At Kichijōji Station, Tokyo, Taku Morisaki glimpses a familiar woman on the platform opposite boarding a train. Later, her photo falls from a shelf as he exits his apartment before flying to Kōchi Prefecture. Picking it up, he looks at it briefly before leaving. As the aeroplane takes off, he narrates the events that brought her into his life...
## 6624 Contact between most towns on Earth has been severed. A small ring-like area in Eastern Europe still has electricity, and maybe even life is being reported from space. What military forces find outside the ring is shocking.
## 6625 Mae and Gabby are two friends who go everywhere together but they are not very popular in their school. Their classmates always pressure because they have not had a boyfriend so to avoid further setbacks, the girls put in place a plan to create the perfect boyfriend. Both believe that it will be easy to create their perfect guy using the military team building; machinery owned by the father of Mae, the machine works through a wireless keyboard. The machine can create with their settings, a robotic soldier. Of this plan was born Albert an ideal guy to be a perfect boyfriend. He will be the most popular boy of the school.
## 6626 On a particularly busy day at a suburban Ohio fast food restaurant, manager Sandra receives a phone call from a police officer saying that an employee has stolen money from a customer.
## 6627 Three young boys pool their money and pay V, a kindhearted prostitute, to strip for them. Afterward, she drives them home to the suburbs -- but then her car breaks down. It's just as well, though, because a mobster named Waltzer is after her, and V realizes the suburbs are the perfect place to hide. But things get a lot more complicated when V falls in love with Tom, a single father who is unaware of her real profession.
## 6628 The attempted assassination of the American president is told and re-told from several different perspectives.
## 6629 A beautiful young gold-digger mistakes a lowly hotel clerk as a rich and therefore worthwhile catch.
## 6630 A group of New Yorkers caught up in their romantic/sexual milieu converge at Shortbus, an underground Brooklyn salon infamous for its blend of art, music, politics, and carnality, and loosely inspired by various underground NYC gatherings that took place in the early 2000s. Here, gay couple Jamie and James meet Ceth, a young ex-model and aspiring singer.
## 6631 For years, old wood carver Mr. Meacham has delighted local children with his tales of the fierce dragon that resides deep in the woods of the Pacific Northwest. To his daughter, Grace, who works as a forest ranger, these stories are little more than tall tales... until she meets Pete, a mysterious 10-year-old with no family and no home who claims to live in the woods with a giant, green dragon named Elliott. And from Pete's descriptions, Elliott seems remarkably similar to the dragon from Mr. Meacham's stories. With the help of Natalie, an 11-year-old girl whose father Jack owns the local lumber mill, Grace sets out to determine where Pete came from, where he belongs, and the truth about this dragon.
## 6632 Rachel is a girl, adopted by an upper middle class family, who rebelled at 17 and left her family and studies at a traditional college in Sao Paulo to become a call girl. Shortly after starting work, she decided to write a blog about her experiences. Since some clients thought she looked like a surfer she adopted the name "Surfistinha" which means little surfer girl.
## 6633 A saga centered on a multi-generational family of New York City Police officers. The family's moral codes are tested when Ray Tierney, investigates a case that reveals an incendiary police corruption scandal involving his own brother-in-law. For Ray, the truth is revelatory, a Pandora's Box that threatens to upend not only the Tierney legacy but the entire NYPD.
## 6634 Christmas Eve. On his way to his in-laws with his family, Frank Harrington decides to try a shortcut, for the first time in 20 years. It turns out to be the biggest mistake of his life.
## 6635 A team from the intergalactic fast food chain Crumb's Crunchy Delights descends on Earth, planning to make human flesh the newest taste sensation. After they wipe out the New Zealand town Kaihoro, the country’s Astro-Investigation and Defense Service (AIaDS) is called in to deal with the problem. Things are complicated due to Giles, an aid worker who comes to Kaihoro the same day to collect change from the residents. He is captured by the aliens, and AIaDS stages a rescue mission that quickly becomes an all-out assault on the aliens’ headquarters.
## 6636 Henry, a newly resurrected cyborg who must save his wife/creator from the clutches of a psychotic tyrant with telekinetic powers, AKAN, and his army of mercenaries. Fighting alongside Henry is Jimmy, who is Henry's only hope to make it through the day. Hardcore Henry takes place over the course of one day, in Moscow, Russia.
## 6637 Looking for work, Aaron comes across a cryptic online ad: “$1,000 for the day. Filming service. Discretion is appreciated.” Low on cash and full of naiveté, he decides to go for it. He drives to a cabin in a remote mountain town where he meets Josef, his cinematic subject for the day. Josef is sincere and the project seems heartfelt, so Aaron begins to film. But as the day goes on, it becomes clear that Josef is not who he says, and his intentions are not at all pure.
## 6638 Charley Partanna is a hitman who works for the Prizzis, one of the richest crime families in the US. When he sees Irene Walker, it's love at first sight. But he soon finds that she, too, is a killer for hire. Charley can overlook his suspicions, but he can't turn off his heart. And the couple must remember that even if they love each other, the Prizzis love only money.
## 6639 A dad forms a bitter rivalry with his daughter's young rich boyfriend.
## 6640 In order to be reinstated to the bar and recover custody of her daughter, a hotshot lawyer, now in recovery and on probation, must take on the appeal of a woman wrongfully convicted of murder.
## 6641 Packard Walsh and his motorized gang control and terrorize an Arizona desert town where they force drivers to drag-race so they can 'win' their vehicles. After Walsh beats the decent teenager Jamie Hankins to death after finding him with his girlfriend, a mysterious power creates Jake Kesey, an extremely cool motor-biker who has a car which is invincible. Jake befriends Jamie's girlfriend Keri Johnson, takes Jamie's sweet brother Bill under his wing and manages what Sheriff Loomis couldn't; eliminate Packard's criminal gang the hard way...
## 6642 A hotel room in the center of Rome serves as the setting for Alba and Natasha, two young and recently acquainted women, to have a physical adventure that touches their very souls.
## 6643 Alice is a withdrawn 12-year-old who lives with her mother and her younger sister, Karen, who gets most of the attention from her mother, leaving Alice out of the spotlight. When Karen is found brutally murdered in a church, suspicions start to turn toward Alice. But could a 12-year-old girl really be capable of such savagery?
## 6644 Eric and Ramzy are working as window washers at the Montparnasse skyscraper in Paris. Thinking that he has a date set up with beautiful executive Marie-Joelle (who in reality hates his guts), Ramzy stays at work late while Eric hangs around with him. As a result, the pair witness a gang of terrorists seize the tower and take its late-night occupants (including Marie- Joelle) hostage. Knowing that only they can save the day, Eric and Ramzy swing into action.
## 6645 Nicole Walker always dreamed of being swept away by someone special — someone strong, sexy and sensitive who would care for her more than anything else in the world. David is all that and more: a modern-day knight who charms and seduces her, body and soul. But her perfect boyfriend is not all he seems to be. His sweet facade masks a savage, dark side that will soon transform Nicole's dream into a nightmare.
## 6646 Doctor Channard is sent a new patient, a girl warning of the terrible creatures that have destroyed her family, Cenobites who offer the most intense sensations of pleasure and pain. But Channard has been searching for the doorway to Hell for years, and Kirsty must follow him to save her father and witness the power struggles among the newly damned.
## 6647 A large spider from the jungles of South America is accidentally transported in a crate with a dead body to America where it mates with a local spider. Soon after, the residents of a small California town disappear as the result of spider bites from the deadly spider offspring. It's up to a couple of doctors with the help of an insect exterminator to annihilate these eight legged freaks.
## 6648 When the body of Army Capt. Elizabeth Campbell is found on a Georgia military base, two investigators, Warrant Officers Paul Brenner and Sara Sunhill, are ordered to solve her murder. What they uncover is anything but clear-cut. Unseemly details emerge about Campbell's life, leading to allegations of a possible military coverup of her death and the involvement of her father, Lt. Gen. Joseph Campbell.
## 6649 Four years after the events of Halloween in 2018, Laurie has decided to liberate herself from fear and rage and embrace life. But when a young man is accused of killing a boy he was babysitting, it ignites a cascade of violence and terror that will force Laurie to finally confront the evil she can’t control, once and for all.
## 6650 Huo An, the commander of the Protection Squad of the Western Regions, was framed by evil forces and becomes enslaved. On the other hand, a Roman general escapes to China after rescuing the Prince. The heroic duo meet in the Western Desert and a thrilling story unfolds.
## 6651 The whole clique of Cruchot's police station is retired. Now he lives with his rich wife in her castle - and is bored almost to death. He fights with the butler, because he isn't even allowed to do the simple works. But when one of the clique suffers from amnesia after an accident, all of the others reunite and kidnap him, to take him on a tour to their old working places and through their memories. In their old uniforms they turn St. Tropez upside down.
## 6652 A martial arts movie star must fake his death to find the people who are trying to kill him.
## 6653 Frank Corvin, ‘Hawk’ Hawkins, Jerry O'Neill and ‘Tank’ Sullivan were hotdog members of Project Daedalus, the Air Force's test program for space travel, but their hopes were dashed in 1958 with the formation of NASA and the use of trained chimps. They blackmail their way into orbit when Russia's mysterious ‘Ikon’ communications satellite's orbit begins to degrade and threatens to crash to Earth.
## 6654 An aspiring music journalist lands her dream job and is about to move to San Francisco when her boyfriend of nine years decides to call it quits. To nurse her broken heart, she and her two best friends spend one outrageous last adventure in New York City.
## 6655 Beatrice Prior must confront her inner demons and continue her fight against a powerful alliance which threatens to tear her society apart.
## 6656 The residents of a suburban high-rise apartment building are being infected by a strain of parasites that turn them into mindless, sex-crazed fiends out to infect others by the slightest sexual contact.
## 6657 Two teenage girls discover that mermaids really do exist after a violent storm washes one ashore. The mermaid, a sassy creature named Aquamarine, is determined to prove to her father that real love exists, and enlists the girls' help in winning the heart of a handsome lifeguard.
## 6658 Andy Stitzer has a pleasant life with a nice apartment and a job stamping invoices at an electronics store. But at age 40, there's one thing Andy hasn't done, and it's really bothering his sex-obsessed male co-workers: Andy is still a virgin. Determined to help Andy get laid, the guys make it their mission to de-virginize him. But it all seems hopeless until Andy meets small business owner Trish, a single mom.
## 6659 When best friends and total opposites Debbie and Peter swap homes for a week, they get a peek into each other's lives that could open the door to love.
## 6660 Covert security company Vanguard is the last hope of survival for an accountant after he is targeted by the world's deadliest mercenary organization.
## 6661 Pete, a young orphan, runs away to a Maine fishing town with his best friend a lovable, sometimes invisible dragon named Elliott! When they are taken in by a kind lighthouse keeper, Nora, and her father, Elliott's prank playing lands them in big trouble. Then, when crooked salesmen try to capture Elliott for their own gain, Pete must attempt a daring rescue.
## 6662 Doctor Knock is a former thug who has become a doctor and arrives in the small village of Saint-Maurice to make his fortune according to a particular method. It will make the villagers believe that they are not as healthy as they might think. It is thus that he will find in each one an imaginary symptom, or not, and thus will be able to exercise his profession lucratively. Under his seductive looks and after gaining the confidence of the village, Knock is on the verge of achieving his ends. But his past catches up with him and an old acquaintance disrupts the doctor's plans.
## 6663 Dedicated environmental lawyer Lucy Kelson goes to work for billionaire George Wade as part of a deal to preserve a community center. Indecisive and weak-willed George grows dependent on Lucy's guidance on everything from legal matters to clothing. Exasperated, Lucy gives notice and picks Harvard graduate June Carter as her replacement. As Lucy's time at the firm nears an end, she grows jealous of June and has second thoughts about leaving George.
## 6664 After the Ball, a retail fairy tale set in the world of fashion. Kate's dream is to design for couturier houses. Although she is a bright new talent, Kate can't get a job. No one trusts the daughter of Lee Kassell, a retail guru who markets clothes "inspired" by the very designers Kate wants to work for. Who wants a spy among the sequins and stilettos? Reluctantly, Kate joins the family business where she must navigate around her duplicitous stepmother and two wicked stepsisters. But with the help of a prince of a guy in the shoe department her godmother's vintage clothes and a shocking switch of identities, Kate exposes the evil trio, saves her father's company -- and proves that everyone can wear a fabulous dress.
## 6665 Locked up for a minor crime, 19 year old JR quickly learns the harsh realities of prison life. Protection, if you can get it, is paramount. JR soon finds himself under the watchful eye of Australia's most notorious criminal, Brendan Lynch, but protection comes at a price.
## 6666 The film revolves around a local street-racer who partners with a rich and arrogant business associate, only to find himself framed by his colleague and sent to prison. After he gets out, he joins a New York-to-Los Angeles race to get revenge. But when the ex-partner learns of the scheme, he puts a massive bounty on the racer's head, forcing him to run a cross-country gauntlet of illegal racers in all manner of supercharged vehicles.
## 6667 A small town policeman must investigate a suspicious hunting accident. The investigation and other events result in him slowly disintegrating mentally.
## 6668 After an attack leaves him in limbo -- invisible to the living and also near death -- a teenager discovers the only person who might be able help him is his attacker.
## 6669 Christmas brings the ultimate gift to Aldovia: a royal baby. But first, Queen Amber must help her family and kingdom by finding a missing peace treaty.
## 6670 A father and daughter are on their way to dance camp when they spot the girl's best friend on the side of the road. When they stop to offer the friend a ride, their good intentions soon result in terrible consequences.
## 6671 In post–War England, a writer and sometime-ghost hunter investigates a reported haunting at a boys boarding school.
## 6672 Is there room for principle in Los Angeles? Mike Terry teaches jujitsu and barely makes ends meet. His Brazilian wife, whose family promotes fights, wants to see Mike in the ring making money, but to him competition is degrading. A woman sideswipes Mike's car and then, after an odd sequence of events, shoots out the studio's window. Later that evening, Mike rescues an action movie star in a fistfight at a bar. In return, the actor befriends Mike, gives him a gift, offers him work on his newest film, and introduces Mike's wife to his own - the women initiate business dealings. Then, things go sour all at once, Mike's debts mount, and going into the ring may be his only option.
## 6673 In 1429 a teenage girl from a remote French village stood before her King with a message she claimed came from God; that she would defeat the world's greatest army and liberate her country from its political and religious turmoil. Following her mission to reclaim god's diminished kingdom - through her amazing victories until her violent and untimely death.
## 6674 David Callaway tries to piece together his life in the wake of his wife's suicide and has been left to raise his nine-year-old daughter, Emily on his own. David is at first amused to discover that Emily has created an imaginary friend named 'Charlie', but it isn't long before 'Charlie' develops a sinister and violent side, and as David struggles with his daughter's growing emotional problems, he comes to the frightening realisation that 'Charlie' isn't just a figment of Emily's imagination.
## 6675 In this modern telling of the classic tale, aspiring singer Katie Gibbs falls for the new boy at her performing arts high school. But Katie's wicked stepmother and stepsister are scheming to crush her dream before she can sing her way into his heart.
## 6676 A physical therapist falls for the basketball player she is helping recover from a career-threatening injury.
## 6677 Thousands of activists arrive in Seattle, Washington in masses to protest the WTO Ministerial Conference of 1999 (World Trade Organization). Although it began as a peaceful protest with a goal of stopping the WTO talks, it escalated into a full-scale riot and eventually, a State of Emergency that pitted protesters against the Seattle Police Department and the National Guard.
## 6678 The star of a team of teenage crime fighters falls for the alluring villainess she must bring to justice.
## 6679 Paola, a modern woman used to the hardships of modern life, takes her chance to make things right for herself.
## 6680 WWE Superstar Mike "The Miz" Mizanin returns as Jake Carter where he is assigned to protect a whistleblower who wishes to expose a corrupt military defense contractor. However, the military hires a heavily armed team of mercenaries to kill her and it's up to Carter to stop them at any cost.
## 6681 A college freshman returns to Los Angeles for Christmas at his ex-girlfriend's request, but discovers that his former best friend has an out-of-control drug habit.
## 6682 A shipping disaster in the 19th Century has stranded a man and woman in the wilds of Africa. The lady is pregnant, and gives birth to a son in their tree house. Soon after, a family of apes stumble across the house and in the ensuing panic, both parents are killed. A female ape takes the tiny boy as a replacement for her own dead infant, and raises him as her son. Twenty years later, Captain Phillippe D'Arnot discovers the man who thinks he is an ape. Evidence in the tree house leads him to believe that he is the direct descendant of the Earl of Greystoke, and thus takes it upon himself to return the man to civilization.
## 6683 Fourth-generation Army Col. William McNamara is imprisoned in a brutal German POW camp. Still, as the senior-ranking American officer, he commands his fellow inmates, keeping a sense of honor alive in a place where honor is easy to destroy, all under the dangerous eye of the Luftwafe vetran Col. Wilhelm Visser. Never giving up the fight to win the war, McNamara is silently planning, waiting for his moment to strike back at the enemy. A murder in the camp gives him the chance to set a risky plan in motion. With a court martial to keep Visser and the Germans distracted, McNamara orchestrates a cunning scheme to escape and destroy a nearby munitions plant, enlisting the unwitting help of young Lt. Tommy Hart. Together with his men, McNamara uses a hero's resolve to carry out his mission, ultimately forced to weigh the value of his life against the good of his country.
## 6684 Some of Sin City's most hard-boiled citizens cross paths with a few of its more reviled inhabitants.
## 6685 A comedy that follows a group of friends as they navigate their way through the freedoms and responsibilities of unsupervised adulthood.
## 6686 The peaceful realm of Azeroth stands on the brink of war as its civilization faces a fearsome race of invaders: orc warriors fleeing their dying home to colonize another. As a portal opens to connect the two worlds, one army faces destruction and the other faces extinction. From opposing sides, two heroes are set on a collision course that will decide the fate of their family, their people, and their home.
## 6687 Thirteen-year-old Bastien is the center of a reconstructed family: 6 half-brothers and sisters, 8 "parents," and as many houses. His tasks within the family are far more complex than what he has to do at school. But enough's enough: the children decide to wage a revolution and turn the rules upside down. All together, the squat a large apartment and now it'll be up to the parents to come to them!
## 6688 Four high school students look to redefine themselves after graduation.
## 6689 A man imprisons his estranged junkie friend in an isolated cabin in the boonies of San Diego to force him through a week of sobriety, but the events of that week are being mysteriously manipulated.
## 6690 Scott Turner has 3 days left in the local police department before he moves to a bigger city to get some 'real' cases—not just misdemeanors. When Amos Reed is murdered, Scott sets himself on the case, but the closest thing to a witness to the murder is Reed's dog, Hooch, which Scott has to take care of—to avoid Hooch being 'put to sleep'.
## 6691 Based on True Events: Suffering from sleep paralysis, a medical student falls prey to a demonic force that wants to rip her apart from within. Torn between sanity and the unknown, she's left with no alternative but to contact a local priest for help.
## 6692 When Nancy is surfing on a secluded beach, she finds herself on the feeding ground of a great white shark. Though she is stranded only 200 yards from shore, survival proves to be the ultimate test of wills, requiring all of Nancy's ingenuity, resourcefulness, and fortitude.
## 6693 The misadventures of an attractive woman who works in a cold store.
## 6694 The clumsy and unfunny clown Richard "Stitches" Grindle entertains at the 10th birthday party of little Tom, but the boy and his friends play a prank with Stitches, tying his shoelaces. Stitches slips, falls and dies. Six years later, Tom gives a birthday party for his friends at home, but Stitches revives to haunt the teenagers and revenge his death.
## 6695 Fifteen-year-old Lulu has never known any affection from her family. But when she goes to a rock concert with Pablo, a friend of the family, he introduces Lulu to her first sexual experience. Years later, Pablo and Lulu have married; Pablo has created a sheltered, private world for Lulu, into which nothing intrudes. However, Lulu tires of her cloistered existence, and begins hanging out in shady bars, looking for vicarious thrills and danger.
## 6696 Major Benson Winifred Payne is being discharged from the Marines. Payne is a killin' machine, but the wars of the world are no longer fought on the battlefield. A career Marine, he has no idea what to do as a civilian, so his commander finds him a job - commanding officer of a local school's JROTC program, a bunch of ragtag losers with no hope.
## 6697 In this WW2 epic comedy – in the vein of “La Grande Vadrouille” – our two heroes, Max and Léon, two lazy and partier pals, will try by all possible means to avoid going in the battle zone… This will lead the duo to demented and wild adventures.
## 6698 Paolo is an outgoing and handsome real estate broker married to Simona, a beautiful woman from the rough outskirts of Rome who has become an author of spicy bestsellers and is pregnant with their child. Betta, Paolo’s sister and her husband Sandro organise a dinner party with Paolo, Simona and their childhood friend, the eccentric musician Claudio. During the lively gathering Paolo reveals what he would like to name his son, causing reactions to steam up and a torrent of revelations to follow reaching climactic proportions.
## 6699 The Manzoni family, a notorious mafia clan, is relocated to Normandy, France under the witness protection program, where fitting in soon becomes challenging as their old habits die hard.
## 6700 Michelle Pfeiffer is ferocious in the role of a desperate mother whose 3-year-old son disappears during her high school reunion. Nine years later, by chance, he turns up in the town in which the family has just relocated. Based on Jacquelyn Mitchard's best-selling novel (an Oprah book club selection), the movie effectively presents the troubling dynamics that exist between family members who've suffered such an unsettling loss.
## 6701 Talented but unproven stock car driver Cole Trickle gets a break and with the guidance of veteran Harry Hogge turns heads on the track. The young hotshot develops a rivalry with a fellow racer that threatens his career when the two smash their cars. But with the help of his doctor, Cole just might overcome his injuries-- and his fear.
## 6702 Set in the South just after the US Civil War, Laurel Sommersby is just managing to work the farm without her husband, believed killed in battle. By all accounts, Jack Sommersby was not a pleasant man, thus when he suddenly returns, Laurel has mixed emotions. It appears that Jack has changed a great deal, leading some people to believe that this is not actually Jack but an imposter. Laurel herself is unsure, but willing to take the man into her home, and perhaps later into her heart.
## 6703 Cleaning out his childhood home at Christmas, a novelist meets a woman searching for her birth mother. Will an old diary unlock their pasts — and hearts?
## 6704 The life of a melancholy professor is turned upside down when he discovers that a rebellious teenager he is tutoring is actually his son.
## 6705 A movie within a movie, created to spoof the martial arts genre. Writer/director Steve Oedekerk uses contemporary characters and splices them into a 1970s kung-fu film, weaving the new and old together. As the main character, The Chosen One, Oedekerk sets off to avenge the deaths of his parents at the hands of kung-fu legend Master Pain. Along the way he encounters some strange characters.
## 6706 Kay and Jay reunite to provide our best, last and only line of defense against a sinister seductress who levels the toughest challenge yet to the MIB's untarnished mission statement – protecting Earth from the scum of the universe. It's been four years since the alien-seeking agents averted an intergalactic disaster of epic proportions. Now it's a race against the clock as Jay must convince Kay – who not only has absolutely no memory of his time spent with the MIB, but is also the only living person left with the expertise to save the galaxy – to reunite with the MIB before the earth submits to ultimate destruction.
## 6707 The relationship between Ed, a married astronomer and Amy, his lover, who spend their years apart, is based only on phone calls and texts. One day Amy begins noticing something strange in Ed's messages.
## 6708 Manny, Diego, and Sid embark upon another adventure after their continent is set adrift. Using an iceberg as a ship, they encounter sea creatures and battle pirates as they explore a new world.
## 6709 Lea, Adrian, and their little brother Theo, born deaf, go on holiday in Provence with their grandfather, Paul "Oliveron" they never met because of a family quarrel. It is not the holidays they dreamed, especially their father announced yesterday that he was leaving the house. In less than 24 hours, it is the clash of generations between teenagers and a grandfather they believe psycho. A wrong. Because the turbulent past will resurface and Paul Seventies will land deep in the Alpilles. During this summer tormented both generations will be processed one by the other.
## 6710 After surviving the events in the Jotunheimen mountains in which four of her friends were murdered, the badly injured Jannicke is brought to the local hospital. But when she wakes up, the building is dark and deserted...and she soon realizes that her nightmare isn’t over yet.
## 6711 Gaullish custom requires that a would-be chief must challenge and defeat another to become the leader of two tribes. Vitalstatistix is not perturbed because of Getafix's magic potion. Getafix, however has an accident and forgets how to make it. Then Vitalstatistix is suddenly challenged.
## 6712 An American gets a ticket for an audience participation game in London, then gets involved in a case of mistaken identity. As an international plot unravels around him, he thinks it's all part of the act.
## 6713 Two buddy farmers are visited by aliens who like their domestic cabbage soup.
## 6714 A trio of unemployed silent film actors are mistaken for real heroes by a small Mexican village in search of someone to stop a malevolent bandit.
## 6715 Lara Croft, the fiercely independent daughter of a missing adventurer, must push herself beyond her limits when she finds herself on the island where her father disappeared.
## 6716 Based on the true story of the collapse of a mine in San Jose, Chile—that left 33 miners isolated underground for 69 days.
## 6717 Rose, a rebellious half-vampire/half-human guardian-in-training and her best friend, Lissa -- a mortal, royal vampire Princess - have been on the run when they are captured and returned to St. Vladamirs Academy, the very place where they believe their lives may be in most jeopardy. Rose will sacrifice everything to protect Lissa from those who intend to exploit her from within the Academy walls and the Strigoi (immortal, evil vampires) who hunt her kind from outside its sanctuary.
## 6718 A gang of gold thieves lands in a coven of witches who are preparing for an ancient ritual... and in need of a sacrifice.
## 6719 Peter Highman must scramble across the US in five days to be present for the birth of his first child. He gets off to a bad start when his wallet and luggage are stolen, and put on the 'no-fly' list. Peter embarks on a terrifying journey when he accepts a ride from an actor.
## 6720 After their high school basketball coach passes away, five good friends and former teammates reunite for a Fourth of July holiday weekend.
## 6721 Romantic comedy about six of Seattle's young people, most of whom live in the same apartment building and whose lives revolve around the city's ever-expanding music scene. The interrelated stories about each character's progress through the singles scene are intriguing and often very funny, and the soundtrack is a grunge fanatic's dream, with the likes of Soundgarden, Pearl Jam and Mudhoney.
## 6722 Some time after the Mousekewitz's have settled in America, they find that they are still having problems with the threat of cats. That makes them eager to try another home out in the west, where they are promised that mice and cats live in peace. Unfortunately, the one making this claim is an oily con artist named Cat R. Waul who is intent on his own sinister plan.
## 6723 A lethal assassin for a secret Chinese organisation, who sheds tears of regret each time he kills, is seen swiftly and mercilessly executing three Yakuza gangsters by a beautiful artist. She is captivated by the grace of his kill and later falls in love with him. An intense power struggle for the leadership of the Yakuza Clans ensues as they seek vengeance for the death of their leader.
## 6724 Thunder, an abandoned young cat seeking shelter from a storm, stumbles into the strangest house imaginable, owned by an old magician and inhabited by a dazzling array of automatons and gizmos. Not everyone welcomes the new addition to the troupe as Jack Rabbit and Maggie Mouse plot to evict Thunder. The situation gets worse when the magician lands in hospital and his scheming nephew sees his chance to cash in by selling the mansion. Our young hero is determined to earn his place and so he enlists the help of some wacky magician's assistants to protect his magical new home.
## 6725 When a young man learns that his overbearing father is having an affair, he tries to stop it, only to be seduced by the older woman as well.
## 6726 A college graduate goes to work as a nanny for a rich New York family. Ensconced in their home, she has to juggle their dysfunction, a new romance, and the spoiled brat in her charge.
## 6727 Tom Ripley - cool, urbane, wealthy, and murderous - lives in a villa in the Veneto with Luisa, his harpsichord-playing girlfriend. A former business associate from Berlin's underworld pays a call asking Ripley's help in killing a rival. Ripley - ever a student of human nature - initiates a game to turn a mild and innocent local picture framer into a hit man. The artisan, Jonathan Trevanny, who's dying of cancer, has a wife, young son, and little to leave them. If Ripley draws Jonathan into the game, can Ripley maintain control? Does it stop at one killing? What if Ripley develops a conscience?
## 6728 Chris crashes into a carload of other young people, and the group of stranded motorists is soon lost in the woods of West Virginia, where they're hunted by three cannibalistic mountain men who are grossly disfigured by generations of inbreeding.
## 6729 After escaping with Newt and Hicks from the alien planet, Ripley crash lands on Fiorina 161, a prison planet and host to a correctional facility. Unfortunately, although Newt and Hicks do not survive the crash, a more unwelcome visitor does. The prison does not allow weapons of any kind, and with aid being a long time away, the prisoners must simply survive in any way they can.
## 6730 Sylvester Stallone stars as hard-luck big-rig trucker Lincoln Hawk and takes us under the glaring Las Vegas lights for all the boisterous action of the World Armwrestling Championship. Relying on wits and willpower, Hawk tries to rebuild his life by capturing the first-place prize money, and the love of the son he abandoned years earlier into the keeping of his rich, ruthless father-in-law.
## 6731 Pot growers Ben and Chon face off against the Mexican drug cartel who kidnapped their shared girlfriend.
## 6732 Warwick Wilson is the consummate host. He carefully prepares for a dinner party, the table impeccably set and the duck perfectly timed for 8:30 p.m. John Taylor is a career criminal. He’s just robbed a bank and needs to get off the streets. He finds himself on Warwick’s doorstep posing as a friend of a friend, new to Los Angeles, who’s been mugged and lost his luggage.
## 6733 Invisible forces exert power over us in our sleep. A mercenary named Ink, on a literal nightmare mission, captures the spirit of 8-year-old Emma in the dream world. To save her, the dream-givers marshal all their resources, focusing on saving the soul of Emma's tragically broken father.
## 6734 An Irish sports journalist becomes convinced that Lance Armstrong's performances during the Tour de France victories are fueled by banned substances. With this conviction, he starts hunting for evidence that will expose Armstrong.
## 6735 Samba migrated to France 10 years ago from Senegal, and has since been plugging away at various lowly jobs. Alice is a senior executive who has recently undergone a burnout. Both struggle to get out of their dead-end lives. Samba's willing to do whatever it takes to get working papers, while Alice tries to get her life back on track until fate draws them together.
## 6736 The Sorcerer and the White Snake is an ancient Chinese fable about a woman demon who falls in love with a mortal is brought to life through the latest advances in CGI and action techniques.
## 6737 Seduced by the challenge of an impossible case, the driven Dr. Carl Jung takes the unbalanced yet beautiful Sabina Spielrein as his patient. Jung’s weapon is the method of his master, the renowned Sigmund Freud. Both men fall under Sabina’s spell.
## 6738 The overnight stock crew of a local supermarket find themselves being stalked and slashed by a mysterious maniac.
## 6739 Based on Molière's play. The children of Harpagon, Cléante and his sister Elise, are each in love but they still haven't spoken to their father yet. Harpagon is a miser who wants to choose the right man and the right woman for his children. When Cléante, at last, tries to speak to Harpagon, the old man informs the family that he wants to marry Marianne, the young girl loved by Cléante. Unaware of his son's sorrow, Harpagon doesn't understand why Cléante has become so angry with him.
## 6740 The story of the WWII project to crack the code behind the Enigma machine, used by the Germans to encrypt messages sent to their submarines.
## 6741 The second installment of Gendarmes series, tells the story of Sergeant Cruchot, who, together with his faithful comrades, has been sent to the International Congress of Gendarmerie in N.Y.
## 6742 A modern-day witch uses spells and magic to get men to fall in love with her, with deadly consequences.
## 6743 Los Angeles, 1949. Ruthless, Brooklyn-born mob king Mickey Cohen runs the show in this town, reaping the ill-gotten gains from the drugs, the guns, the prostitutes and — if he has his way — every wire bet placed west of Chicago. And he does it all with the protection of not only his own paid goons, but also the police and the politicians who are under his control. It’s enough to intimidate even the bravest, street-hardened cop… except, perhaps, for the small, secret crew of LAPD outsiders led by Sgt. John O’Mara and Jerry Wooters who come together to try to tear Cohen’s world apart.
## 6744 A bedtime story leads Littlefoot and his grandparents on a journey to a new land, where Littlefoot discovers someone who vanished before he was born: his father! Now Littlefoot must decide between two worlds. Will he leave to be with his friends in the Great Valley, or stay behind and start a new life with his father?
## 6745 For Donald's birthday he receives a box with three gifts inside. The gifts, a movie projector, a pop-up book, and a pinata, each take Donald on wild adventures through Mexico and South America.
## 6746 An idealistic, modern-day cowboy struggles to keep his Wild West show afloat in the face of hard luck and waning interest.
## 6747 Not only is Jessica Spencer the most popular girl in school -- she is also the meanest. But things change for the attractive teen when a freak accident involving a cursed pair of earrings and a chance encounter at a gas station causes her to switch bodies with Clive, a sleazy crook. Jessica, in the form of the repulsive Clive, struggles to adjust to this radical alteration and sets out to get her own body back before the upcoming prom.
## 6748 Surf's Up is an animated feature that goes behind the scenes of the high-octane world of competitive penguin surfing. The film profiles Cody Maverick, an up-and-coming surfer as he enters his first pro competition.
## 6749 Nacho Libre is loosely based on the story of Fray Tormenta ("Friar Storm"), aka Rev. Sergio Gutierrez Benitez, a real-life Mexican Catholic priest who had a 23-year career as a masked luchador. He competed in order to support the orphanage he directed.
## 6750 William has failed to kill himself so many times that he outsources his suicide to aging assassin Leslie. But with the contract signed and death assured within a week (or his money back), William suddenly discovers reasons to live... However Leslie is under pressure from his boss to make sure the contract is completed.
## 6751 A man who bears a striking resemblance to a renowned movie star becomes an obsessive fan, but when his fierce love is spurned by the star, he decides to destroy the star's life and reputation.
## 6752 A new drug promises out-of-body experiences, but users are coming back changed forever, and an otherworldly invasion of Earth is underway.
## 6753 Hancock is a down-and-out superhero who's forced to employ a PR expert to help repair his image when the public grows weary of all the damage he's inflicted during his lifesaving heroics. The agent's idea of imprisoning the antihero to make the world miss him proves successful, but will Hancock stick to his new sense of purpose or slip back into old habits?
## 6754 12 year old Tinja is desperate to please her mother, a woman obsessed with presenting the image of a perfect family. One night, Tinja finds a strange egg. What hatches is beyond belief.
## 6755 A visiting city reporter's assignment suddenly revolves around the murder trial of a local millionaire, whom he befriends.
## 6756 An ordinary man sees a bright light descend from the sky, and discovers he now has super-intelligence and telekinesis.
## 6757 Milo and Kida reunite with their friends to investigate strange occurances around the world that seem to have links to the secrets of Atlantis.
## 6758 Skylar finds out that her parents are monster hunters after she accidentally releases some monsters from a secret containment chamber; so she and her techno friends must recapture all the monsters and also save her mom and dad from these monsters who are out for revenge.
## 6759 When a fellow scientist asks for Jack's help in locating the mausoleum of China's first emperor, the past collides violently with the present as Jack discovers his amazing visions are based in fact.
## 6760 A woman is kidnapped by a stranger on a routine flight. Threatened by the potential murder of her father, she is pulled into a plot to assist her captor in offing a politician.
## 6761 Catherine is a woman in her late twenties who is strongly devoted to her father, Robert, a brilliant and well-known mathematician whose grip on reality is beginning to slip away. As Robert descends into madness, Catherine begins to wonder if she may have inherited her father's mental illness along with his mathematical genius.
## 6762 Birdee Pruitt has been humiliated on live television by her best friend, Connie, who's been sleeping with Birdee's husband, Bill. Birdee tries starting over with her daughter, Bernice, by returning to her small Texas hometown, but she's faced with petty old acquaintances who are thrilled to see Birdee unhappy -- except for her friend Justin. As he helps Birdee get back on her feet, love begins to blossom.
## 6763 As the city is locked down under quarantine, Alice finds out that the people that died from the previous incident at the Umbrella Corporation have turned into zombies. She then joins a small band of elite soldiers, who are enlisted to rescue the missing daughter of the creator of the mutating T-virus. Once lack of luck and resources happen, they begin to wage an exhilarating battle to survive and escape before the Umbrella Corporation erases its experiment from the face of the earth.
## 6764 Mr. Bean wins a trip to Cannes where he unwittingly separates a young boy from his father and must help the two reunite. On the way he discovers France, bicycling and true love, among other things.
## 6765 Ferro and Cate, two kids trying to get to grips with an unplanned pregnancy, their families (rebellious Ferro’s hospitable, ‘normal’ family, and level-headed Cate’s unhinged, atypical one), exams at school, friends and a general lack of jobs.
## 6766 As a seasoned homicide detective, Thomas Craven has seen the bleakest side of humanity. But nothing prepares him for the toughest investigation of his life: the search for his only daughter Emma's killer. Now, he is on a personal mission to uncover the disturbing secrets surrounding her murder, including corporate corruption, government collusion and Emma's own mysterious life.
## 6767 Police Inspector Renko tries to solve the case of three bodies found in Moscow's Gorky Park but finds his attempts to solve the crime impeded by his superiors. Working on his own, Renko seeks out more information and stumbles across a conspiracy involving the highest levels of the government.
## 6768 When a mafia accountant is taken hostage on his beat, a police officer – wracked by guilt from a prior stint as a negotiator – must negotiate the standoff, even as his own family is held captive by the mob.
## 6769 Two female friends with very different ideals decide to start a beauty company together. One is more practical, while the other wants to earn her fortune and live a lavish lifestyle.
## 6770 After faking his death, a tech billionaire recruits a team of international operatives for a bold and bloody mission to take down a brutal dictator.
## 6771 The film is set in the fictional Utah community of Santa Ynez, which is being terrorized by a mysterious black coupe that appears out of nowhere and begins running people down. After the car kills off the town's Sheriff, it becomes the job of Captain Wade Parent to stop the murderous driver.
## 6772 In October of 1994 three student filmmakers disappeared in the woods near Burkittsville, Maryland, while shooting a documentary. A year later their footage was found.
## 6773 Deputy Sheriff Joe "Deke" Deacon joins forces with Sgt. Jim Baxter to search for a serial killer who's terrorizing Los Angeles. As they track the culprit, Baxter is unaware that the investigation is dredging up echoes of Deke's past, uncovering disturbing secrets that could threaten more than his case.
## 6774 Two brothers return to the cult they fled from years ago to discover that the group's beliefs may be more sane than they once thought.
## 6775 A businessman, on his daily commute home, gets unwittingly caught up in a criminal conspiracy that threatens not only his life but the lives of those around him.
## 6776 A young and devoted morning television producer is hired as an executive producer on a long-running morning show at a once-prominent but currently failing station in New York City. Eager to keep the show on air, she recruits a former news journalist and anchor who disapproves of co-hosting a show that does not deal with real news stories.
## 6777 After leaving Washington D.C. hospital, plastic surgeon Ben Stone heads for California, where a lucrative practice in Beverly Hills awaits. After a car accident, he's sentenced to perform as the community's general practitioner.
## 6778 After the harrowing death of his partner, detective and best-selling author Alex Cross has retreated to the peace of retirement. But when a brilliant criminal kidnaps a senator's young daughter, Alex is lured back into action. Teamed with the Secret Service agent assigned to protect the missing girl, Alex follows a serpentine trail of clues that leads him to a stunning discovery - the kidnapper wants more than just ransom.
## 6779 When teen-socialite Kelly Van Ryan and troubled bad girl Suzie Toller accuse guidance counselor Sam Lombardo of rape, he's suspended by the school, rejected by the town, and fighting to get his life back. One cop suspects conspiracy, but nothing is what it seems...
## 6780 After 20 years of marriage, Maria decides to leave her husband. She moves into room 212 at the hotel across the street, with a bird’s-eye view of her apartment, her husband and the life she shared with him. While she wonders if she made the right decision, many of the people in her life offer their opinions on the matter. They intend to let her know, whether she likes it or not, on what proves to be a life-changing evening.
## 6781 Frederick Fitzell is living his best life—until he starts having horrific visions of Cindy, a girl who vanished in high school. After reaching out to old friends with whom he used to take a mystery drug called Mercury, Fredrick realizes the only way to stop the visions lies deep within his own memories, so he embarks on a terrifying mental odyssey to learn the truth.
## 6782 The story of a teenager, Richard Wershe Jr., who became an undercover informant for the police during the 1980s and was ultimately arrested for drug-trafficking and sentenced to life in prison.
## 6783 Set in New York City in the sweltering summer, The Wackness tells the story of a troubled teenage drug dealer, who trades pot for therapy sessions with a drug-addled psychiatrist. Things get more complicated when he falls for one of his classmates, who just happens to be the doctor's daughter. This is a coming-of-age story about sex, drugs, music and what it takes to be a man.
## 6784 The fastest man on four wheels, Ricky Bobby is one of the greatest drivers in NASCAR history. A big, hairy American winning machine, Ricky has everything a dimwitted daredevil could want, a luxurious mansion, a smokin' hot wife and all the fast food he can eat. But Ricky's turbo-charged lifestyle hits an unexpected speed bump when he's bested by flamboyant Euro-idiot Jean Girard and reduced to a fear-ridden wreck.
## 6785 American corporations are using the North American Free Trade Agreement by opening large maquiladoras right across the United States–Mexico border. The maquiladoras hire mostly Mexican women to work long hours for little money in order to produce mass quantity products. Lauren Adrian, an impassioned American news reporter for the Chicago Sentinel wants to be assigned to the Iraq front-lines to cover the war. Instead, her editor George Morgan assigns her to investigate a series of slayings involving young maquiladora factory women in a Mexican bordertown.
## 6786 When a kidnapping victim turns up alive after fifteen years, a profiler and a private investigator try to piece together the mystery.
## 6787 Paris, France, early 19th century. The legendary convict François Vidocq lives in disguise trying to escape from a tragic past that torments him. When, after an unfortunate event, he crosses paths with the police chief, he makes a bold decision that will turn the ruthless mastermind of the Parisian underworld against him.
## 6788 Franck and his girlfriend Sonya, plus some of their friends go on holiday in Brazil. Franck, his friends, two girls and Sonya's grandmother leave to visit a cave, but everything goes wrong and their crazy adventures begin.
## 6789 Naturally beautiful, Katie has just settled into New York where she, like many other young women, is trying to make it as a model. But what starts out as an innocent and simple photo shoot soon turns into something disturbingly unthinkable! Raped, tortured and kidnapped to a foreign country, Jessica is buried alive and left to die. Against all odds, she manages to escape. Severely injured, she will have to tap into the darkest places of the human psyche to not only survive, but to exact her revenge…
## 6790 After being set-up and betrayed by the man who hired him to assassinate a Texas Senator, an ex-Federale launches a brutal rampage of revenge against his former boss.
## 6791 When fluffy, bubble gum movie star Megan Valentine suddenly finds herself broke and humiliated in the public eye, she wanders from the wreckage of a car accident and witlessly enlists in the U.S. Army hoping in vain that it will change her life.
## 6792 When their plane crashes, 25 schoolboys find themselves trapped on a tropical island, miles from civilization.
## 6793 A young humanoid alien who gets stranded on earth hooks up with a grizzled old sheriff in a western town and tries to help him solve a tough case, but the sheriff doesn't want any help from a "kid."
## 6794 An unemployed executive is forced to sell his apartment. When he discovers that he still has the keys, he becomes obsessed with the family that now lives there and decides to recover the life he has lost, at any price.
## 6795 A case of mistaken identity results in unexpected romance when the most popular girl in high school and the biggest loser must come together to win over their crushes.
## 6796 When nerdy high schooler Dani finally attracts the interest of her longtime crush, she lands in the cross hairs of his ex, a social media celebrity.
## 6797 A defense attorney begins to suspect that her client, who is charged with the murders of a vacationing family, might be more than meets the eye.
## 6798 The first half of this film, set hundreds of years ago, shows how the man who eventually became Santa Claus was given immortality and chosen to deliver toys to all the children of the world. The second half moves into the modern era, in which Patch, the head elf, strikes out on his own and falls in with an evil toy manufacturer who wants to corner the market and eliminate Santa Claus.
## 6799 A bored and domesticated Shrek pacts with deal-maker Rumpelstiltskin to get back to feeling like a real ogre again, but when he's duped and sent to a twisted version of Far Far Away—where Rumpelstiltskin is king, ogres are hunted, and he and Fiona have never met—he sets out to restore his world and reclaim his true love.
## 6800 When megalomaniacal White Goodman, the owner of a trendy, high-end fitness center, makes a move to take over the struggling local gym run by happy-go-lucky Pete La Fleur, there's only one way for La Fleur to fight back: dodgeball. Aided by a dodgeball guru and Goodman's attorney, La Fleur and his rag-tag team of underdogs launch a knock-down, drag-out battle in which the winner takes all.
## 6801 Fourteen-year–old Megan and her best friend Amy spend a lot of time on the internet, posting videos of themselves and chatting with guys online. One night Megan chats with a guy named Josh who convinces her to meet him for a date. The next day, Megan is missing—forever. Based on actual cases of child abduction.
## 6802 Renowned filmmaker John Wilson travels to Africa to direct a new movie, but constantly leaves to hunt elephants and other game, to the dismay of his cast and crew. He eventually becomes obsessed with hunting down and killing one specific elephant.
## 6803 A high school senior drives cross-country with his best friends to hook up with a babe he met online.
## 6804 Annie is stuck in a long-term relationship with Duncan – an obsessive fan of obscure rocker Tucker Crowe. When the acoustic demo of Tucker's hit record from 25 years ago surfaces, its discovery leads to a life-changing encounter with the elusive rocker himself.
## 6805 Three stories happening in New York. The first, by Scorsese, is about a painter who creates his works helped by high volume music and an attractive assistant; second, by Coppola, is about a rich and bold 12 years old who helps her separated parents to reconciliate; third, by Allen, is a witty piece of comedy about the impossibility of getting rid of the son's role.
## 6806 A brilliant CIA trainee must prove his worth at the Farm, the agency's secret training grounds, where he learns to watch his back and trust no one.
## 6807 Peter and Emma thought they were on the precipice of life’s biggest moments – marriage, kids, and houses in the suburbs – until their respective partners dumped them. Horrified to learn that the loves of their lives have already moved on, Peter and Emma hatch a hilarious plan to win back their exes with unexpected results.
## 6808 Mitchie can't wait to go back to Camp Rock and spend the summer making new music with her friends and superstar Shane Gray. But the slick new camp across the lake, Camp Star, has drummed up some serious competition – featuring newcomers Luke and Dana. In a sensational battle of the bands, with Camp Rock's future at stake, will Camp Star's flashy production and over-the-top antics win out, or will Camp Rockers prove that music, teamwork, and spirit are what truly matter?
## 6809 A coming-of-middle-age comedy that chronicles the unlikely friendship between failed author Richard Dunne and a Long Island teen who teaches him a thing or two about growing up, all under the disapproving eye of his long-suffering wife and his imaginary Superhero friend.
## 6810 The sentimental and comedic adventures of Eddie, a non-Jew trying to pass as Jewish though totally ignorant of Jewish traditions, as he works in a Jewish community
## 6811 When George and her colleagues get a new boss whose focus is on moving souls quickly and enjoying life without consequences, the team begins to break the strict reaper rules. While her friends fall victim to their desires for money, success, and fame, George breaks another rule by revealing her true identity to her living family.
## 6812 Tom is left in charge of a priceless magical ring by his young wizard master. He is then horrified when the ring gets stuck on Jerry's head, who then runs off into the city.
## 6813 A female attorney learns that her husband is really a marine officer awol for fifteen years and accused of murdering fifteen civilians in El Salvador. Believing her husband when he tells her that he's being framed as part of a U.S. Military cover-up, the attorney defends him in a military court.
## 6814 A day in the life of a barbershop on the south side of Chicago. Calvin, who inherited the struggling business from his deceased father, views the shop as nothing but a burden and waste of his time. After selling the shop to a local loan shark, Calvin slowly begins to see his father's vision and legacy and struggles with the notion that he just sold it out.
## 6815 An emotionally-beaten man with his young daughter moves to his ancestral home in Newfoundland to reclaim his life.
## 6816 An engaged, spoiled hotel heiress finds herself in the care of a handsome, blue-collar lodge owner and his precocious daughter after getting amnesia in a skiing accident.
## 6817 With his partner Caprice, celebrity performance artist Saul Tenser publicly showcases the metamorphosis of his organs in avant-garde performances. Timlin, an investigator from the National Organ Registry, obsessively tracks their movements, which is when a mysterious group is revealed... Their mission -- to use Saul's notoriety to shed light on the next phase of human evolution.
## 6818 The life of a teenage boy is forever altered by a chance encounter with cutting edge military technology.
## 6819 In Istanbul, retired CIA operative Bryan Mills and his wife are taken hostage by the father of a kidnapper Mills killed while rescuing his daughter.
## 6820 Alice follows a white rabbit down a rabbit-hole into a whimsical Wonderland, where she meets characters like the delightful Cheshire Cat, the clumsy White Knight, a rude caterpillar, and the hot-tempered Queen of Hearts and can grow ten feet tall or shrink to three inches. But will she ever be able to return home?
## 6821 Rick and Evelyn O’Connell, along with their 8-year-old son Alex, discover the key to the legendary Scorpion King’s might: the fabled Bracelet of Anubis. Unfortunately, a newly resurrected Imhotep has designs on the bracelet as well, and isn’t above kidnapping its new bearer, Alex, to gain control of Anubis’s otherworldly army.
## 6822 The story of a young mother with a failed marriage behind her, who fights daily for her dream to open a hair salon, challenging her fate in an effort to free herself and gain independence and right to happiness.
## 6823 Rebecca must unlock the terror behind her little brother's experiences that once tested her sanity, bringing her face to face with a supernatural spirit attached to their mother.
## 6824 Armed men hijack a New York City subway train, holding the passengers hostage in return for a ransom, and turning an ordinary day's work for dispatcher Walter Garber into a face-off with the mastermind behind the crime.
## 6825 A former U.S. soldier returns to his hometown to find it overrun by crime and corruption, which prompts him to clean house.
## 6826 In order to make his little sick brother's dream come true, Leo and his best mates organize a fake score...but on the d day, they make a mistake and the fake score becomes a real hold up.Here starts the extraordinary adventure of PUBLIC Amis.
## 6827 The legendary Roberto Duran and his equally legendary trainer Ray Arcel change each other's lives.
## 6828 Chris wants to show girlfriend Tina his world, but events soon conspire against the couple and their dream caravan holiday takes a very wrong turn.
## 6829 The publicist Claudio and the housewife and choral teacher Helena have been married for many years, but they do not understand and respect the feelings and view point of the partner. Claudio sees Helena as a shopper and "little teacher of a choral" and Helena sees Claudio as an insensitive and rough man. On the night before the fiftieth anniversary of Claudio, they changed places with each other.
## 6830 When her scientist ex-boyfriend discovers a portal to travel through time -- and brings back a 19th-century nobleman named Leopold to prove it -- a skeptical Kate reluctantly takes responsibility for showing Leopold the 21st century. The more time Kate spends with Leopold, the harder she falls for him. But if he doesn't return to his own time, his absence will forever alter history.
## 6831 A deranged media mogul is staging international incidents to pit the world's superpowers against each other. Now James Bond must take on this evil mastermind in an adrenaline-charged battle to end his reign of terror and prevent global pandemonium.
## 6832 A young nurse downloads an app that tells her she only has three days to live. With time ticking away and a mysterious figure haunting her, she must find a way to save her life before time runs out.
## 6833 A gay couple living in San Francisco takes in two strangers traveling from Italy to start a new life in America, discovering each other and forming the most unlikely of relationships along the way.
## 6834 Lured by the promise of an Australian holiday, backpackers Rutger, Katarina and Paul visit the notorious Wolf Creek Crater. Their dream Outback adventure soon becomes a horrific reality when they encounter the site's most infamous local, the last man any traveller to the region ever wants to meet—Mick Taylor. As the backpackers flee, Mick pursues them on an epic white knuckled rampage across hostile wasteland.
## 6835 Two boys, still grieving the death of their mother, find themselves the unwitting benefactors of a bag of bank robbery loot in the week before the United Kingdom switches its official currency to the Euro. What's a kid to do?
## 6836 San Francisco heiress Page Forrester is brutally murdered in her remote beach house. Her husband Jack is devastated by the crime but soon finds himself accused of her murder. He hires lawyer Teddy Barnes to defend him, despite the fact she hasn't handled a criminal case for many years. There's a certain chemistry between them and Teddy soon finds herself defending the man she loves.
## 6837 After capturing the notorious drug lord Franz Sanchez, Bond's close friend and former CIA agent Felix Leiter is left for dead and his wife is murdered. Bond goes rogue and seeks vengeance on those responsible, as he infiltrates Sanchez's organization from the inside.
## 6838 Two con artists have spent 26 years training their only daughter to swindle, scam and steal at every turn. During a desperate and hastily conceived heist, they charm a stranger into joining them, only to have their entire world turned upside down.
## 6839 Framed and on the run, a former FBI agent must save his family from a blazing fire in the world's tallest building.
## 6840 Famed monster slayer Gabriel Van Helsing is dispatched to Transylvania to assist the last of the Valerious bloodline in defeating Count Dracula. Anna Valerious reveals that Dracula has formed an unholy alliance with Dr. Frankenstein's monster and is hell-bent on exacting a centuries-old curse on her family.
## 6841 In the first century, free-spirited Mary Magdalene flees the marriage her family has arranged for her, finding refuge and a sense of purpose in a radical new movement led by the charismatic, rabble-rousing preacher named Jesus.
## 6842 The film tells the back story about the characters and events leading up to the explosive oil truck heist in Fast & Furious.
## 6843 Mysterious and unearthly deaths start to occur while Professor Saxton is transporting the frozen remains of a primitive humanoid creature he found in Manchuria back to Europe.
## 6844 Joe Moore has a job he loves. He's a thief. His job goes sour when he gets caught on security camera tape. His fence, Bergman, reneges on the money he's owed, and his wife may be betraying him with the fence's young lieutenant. Moore and his partner, Bobby Blane, and their utility man, Pinky Pincus, find themselves broke, betrayed, and blackmailed. Moore is forced to commit his crew to do one last big job.
## 6845 The thin line between love and hate turns deadly when a wife discovers her husband’s affair — and they both take extreme measures to get what they want.
## 6846 After finding an ad online for “video work,” Sara, a video artist whose primary focus is creating intimacy with lonely men, thinks she may have found the subject of her dreams. She drives to a remote house in the forest and meets a man claiming to be a serial killer. Unable to resist the chance to create a truly shocking piece of art, she agrees to spend the day with him. However, as the day goes on, she discovers she may have dug herself into a hole from which she can’t escape.
## 6847 It's the end of the world. A flood is coming. Luckily for Dave and his son Finny, a couple of clumsy Nestrians, an Ark has been built to save all animals. But as it turns out, Nestrians aren't allowed. Sneaking on board with the involuntary help of Hazel and her daughter Leah, two Grymps, they think they're safe. Until the curious kids fall off the Ark. Now Finny and Leah struggle to survive the flood and hungry predators and attempt to reach the top of a mountain, while Dave and Hazel must put aside their differences, turn the Ark around and save their kids. It's definitely not going to be smooth sailing.
## 6848 Self-made millionaire Thornton Melon decides to get a better education and enrolls at his son Jason's college. While Jason tries to fit in with his fellow students, Thornton struggles to gain his son's respect, giving way to hilarious antics.
## 6849 Nick Carraway, a young Midwesterner now living on Long Island, finds himself fascinated by the mysterious past and lavish lifestyle of his neighbor, the nouveau riche Jay Gatsby. He is drawn into Gatsby's circle, becoming a witness to obsession and tragedy.
## 6850 High school hotshot Zach Siler is the envy of his peers. But his popularity declines sharply when his cheerleader girlfriend, Taylor, leaves him for sleazy reality-television star Brock Hudson. Desperate to revive his fading reputation, Siler agrees to a seemingly impossible challenge. He has six weeks to gain the trust of nerdy outcast Laney Boggs -- and help her to become the school's next prom queen.
## 6851 The church enlists a team of vampire-hunters to hunt down and destroy a group of vampires searching for an ancient relic that will allow them to exist in sunlight.
## 6852 A criminal subculture operates among U.S. soldiers stationed in West Germany just before the fall of the Berlin wall.
## 6853 A New York University professor returns from a rescue mission to the Amazon rainforest with the footage shot by a lost team of documentarians who were making a film about the area's local cannibal tribes.
## 6854 Two criminal drifters without sympathy get more than they bargained for after kidnapping and holding for ransom the surrogate mother of a powerful and shady man.
## 6855 Edward Wilson, the only witness to his father's suicide and member of the Skull and Bones Society while a student at Yale, is a morally upright young man who values honor and discretion, qualities that help him to be recruited for a career in the newly founded OSS. His dedication to his work does not come without a price though, leading him to sacrifice his ideals and eventually his family.
## 6856 37 000 years ago, two neighboring tribes lived in peace ... not fully in peace. While the tribe clean hair flowed peaceful days by keeping to herself the secret formula shampoo, Tribe Hair Sales lamented. Its leader decided to send a spy to steal the recipe ...
## 6857 John Gage offers a down-on-his-luck yuppie husband $1 million for the opportunity to spend the night with the man's wife.
## 6858 A familiar-looking group of teenagers find themselves being stalked by a more-than-vaguely recognizable masked killer! As the victims begin to pile up and the laughs pile on, none of your favorite scary movies escape the razor-sharp satire of this outrageously funny parody!
## 6859 When a truck crashes inside a tunnel, people on their way home for Christmas are brutally trapped in a deadly fire. With a blizzard raging outside, and the first responders struggling to get to the accident, it's every man for himself.
## 6860 Collegian Tree Gelbman wakes up in horror to learn that she's stuck in a parallel universe. Her boyfriend Carter is now with someone else, and her friends and fellow students seem to be completely different versions of themselves. When Tree discovers that Carter's roommate has been altering time, she finds herself once again the target of a masked killer. When the psychopath starts to go after her inner circle, Tree soon realizes that she must die over and over again to save everyone.
## 6861 Amy, Kiki and Carla – three under-appreciated and over-burdened women – rebel against the challenges and expectations of the Super Bowl for mothers: Christmas. And if creating a more perfect holiday for their families wasn’t hard enough, they have to do all of that while hosting and entertaining their own mothers.
## 6862 The film is a sub-story to Kirikou and the Sorceress rather than a straight sequel. The movie is set while Kirikou is still a child and Karaba is still a sorceress. Like Princes et princesses and Les Contes de la nuit, it is an anthology film comprising several episodic stories, each of them describing Kirikou's interactions with a different animals. It is however unique among Michel Ocelot's films, not only in that it is co-directed by Bénédicte Galup (who has previously worked with him as an animator) but also for each of the stories being written by a different person (in all other cases, Ocelot has been the sole writer and director of his films).
## 6863 A space shuttle mission investigating Halley's Comet brings back a malevolent race of space vampires who transform most of London's population into zombies. The only survivor of the expedition and British authorities attempt to capture a mysterious but beautiful alien woman who appears responsible.
## 6864 As youths, Andy McGee and his future wife, Vicky, participated in secret experiments, allowing themselves to be subjected to mysterious medical tests. Years later, the couple's daughter, Charlie, begins to exhibit the ability of setting fires solely with her mind. This volatile talent makes the youngster extremely dangerous and soon she becomes a target for the enigmatic agency known as "The Shop."
## 6865 Trucker Rubber Duck and his buddies Pig Pen, Widow Woman and Spider Mike use their CB radios to warn one another of the presence of cops. But conniving Sheriff Wallace is hip to the truckers' tactics, and begins tricking the drivers through his own CB broadcasts. Facing constant harassment from the law, Rubber Duck and his pals use their radios to coordinate a vast convoy and rule the road.
## 6866 A look at what goes on backstage during the last broadcast of America's most celebrated radio show, where singing cowboys Dusty and Lefty, a country music siren, and a host of others hold court.
## 6867 Jack Powell suffers from an affliction that makes him grow four times faster than normal, so the 10-year-old looks like a 40-year-old man. After years of being tutored at home, Jack convinces his overprotective parents to send him to public school. The children don't know what to make of Jack, but with the help of his fifth-grade teacher, he makes an effort to win them over.
## 6868 It's the lawless future, and renegade biker Harley Davidson and his surly cowboy buddy, Marlboro, learn that a corrupt bank is about to foreclose on their friend's bar to further an expanding empire. Harley and Marlboro decide to help by robbing the crooked bank. But when they accidentally filch a drug shipment, they find themselves on the run from criminal financiers and the mob in this rugged action adventure.
## 6869 A group of World War II American soldiers encounter a supernatural enemy as they occupy a French castle previously under Nazi control.
## 6870 A journalist and his girlfriend get pulled in while they investigate a cult whose leader claims to be from the future.
## 6871 A modern-day take on the "Beauty and the Beast" tale where a New York teen is transformed into a hideous monster in order to find true love.
## 6872 After a tragic accident, a man conjures up a towering, vengeful demon called Pumpkinhead to destroy a group of unsuspecting teenagers.
## 6873 The Christmas tree isn't the only thing green in this new holiday classic. Shrek is back and trying to get into the spirit of the season. After promising Fiona and the kids a Christmas they'll remember, he is forced to take a crash course in the holiday. But just when he thinks he has everything for their quiet family Christmas just right, there is a knock at the door.
## 6874 In 17th century New England, witch hunter Giles Redferne captures an evil warlock, but the conjurer eludes death with supernatural help. Flung into the future, the warlock winds up in the 1980s and plans to bring about the end of the world. Redferne follows the enchanter into the modern era and continues his mission, but runs into trouble in such unfamiliar surroundings. With the help of a young woman, can Redferne finally defeat the warlock?
## 6875 The world is shocked by the appearance of three talking chimpanzees, who arrived mysteriously in a spacecraft. Intrigued by their intelligence, humans use them for research - until the apes attempt to escape.
## 6876 To inherit her father's company, socialite Ellen must first visit his small hometown, where she learns the value of hard work and helping others.
## 6877 Tasya Vos, an elite corporate assassin, uses brain-implant technology to take control of other people’s bodies to terminate high profile targets. As she sinks deeper into her latest assignment, Vos becomes trapped inside a mind that threatens to obliterate her.
## 6878 A landscape gardener is hired by famous architect Le Nôtre to construct the grand gardens at the palace of Versailles. As the two work on the palace, they find themselves drawn to each other and are thrown into rivalries within the court of King Louis XIV.
## 6879 1921 New York. An immigrant woman is tricked into a life of burlesque and vaudeville until a dazzling magician tries to save her and reunite her with her sister who is being held in the confines of Ellis Island.
## 6880 When his brother-in-law runs afoul of a drug lord, family man Chris Farraday turns to a skill he abandoned long ago—smuggling—to repay the debt. But the job goes wrong, and Farraday finds himself wanted by cops, crooks and killers alike.
## 6881 A young woman witnesses a bus accident, and is caught up in the aftermath, where the question of whether or not it was intentional affects many people's lives.
## 6882 Henry Brogan is an elite 51-year-old assassin who's ready to call it quits after completing his 72nd job. His plans get turned upside down when he becomes the target of a mysterious operative who can seemingly predict his every move. To his horror, Brogan soon learns that the man who's trying to kill him is a younger, faster, cloned version of himself.
## 6883 Black Ops specialist Connor Gibson infiltrates a maximum security prison to take down legendary driver Frankenstein in a violent and brutal car race.
## 6884 After moving to a small town, Zach Cooper finds a silver lining when he meets next door neighbor Hannah, the daughter of bestselling Goosebumps series author R.L. Stine. When Zach unintentionally unleashes real monsters from their manuscripts and they begin to terrorize the town, it’s suddenly up to Stine, Zach and Hannah to get all of them back in the books where they belong.
## 6885 After her lousy stepfather steals her savings to buy a vicious tiger, Kelly loses all hope of going to college. But Kelly's situation worsens when a hurricane leaves her and her autistic brother boarded up in their house with the man-eating beast. This edge-of-your-seat thriller follows the gutsy heroine and her younger sibling as they struggle to outwit the ravenous predator and find a way to survive.
## 6886 Lizzie McGuire has graduated from middle school and takes a trip to Rome, Italy with her class. And what was supposed to be only a normal trip, becomes a teenager's dream come true.
## 6887 An adaptation of Angela Carter's fairy tales. Young Rosaleen dreams of a village in the dark woods, where Granny tells her cautionary tales in which innocent maidens are tempted by wolves who are hairy on the inside. As Rosaleen grows into womanhood, will the wolves come for her too?
## 6888 Three lovable party buds try to bail their friend out of jail. But just when the guys have mastered a plan, everything comes dangerously close to going up in smoke.
## 6889 In late 1940s Los Angeles, Easy Rawlins is an unemployed black World War II veteran with few job prospects. At a bar, Easy meets DeWitt Albright, a mysterious white man looking for someone to investigate the disappearance of a missing white woman named Daphne Monet, who he suspects is hiding out in one of the city's black jazz clubs. Strapped for money and facing house payments, Easy takes the job, but soon finds himself in over his head.
## 6890 On an uninhabitable 22nd-century Earth, the outcome of a civil war hinges on cloning the brain of an elite soldier to create a robot mercenary.
## 6891 In this fully animated, all-new take on the Smurfs, a mysterious map sets Smurfette and her friends Brainy, Clumsy and Hefty on an exciting race through the Forbidden Forest leading to the discovery of the biggest secret in Smurf history.
## 6892 Albert Nobbs struggles to survive in late 19th century Ireland, where women aren't encouraged to be independent. Posing as a man, so she can work as a butler in Dublin's most posh hotel, Albert meets a handsome painter and looks to escape the lie she has been living.
## 6893 Two rival "brothers-in-law" make a bet that they can stop smoking for 2 weeks. But, it's just not that easy...
## 6894 Desperate to save their marriage, a young couple takes a deal to move into their dream home, but disturbing events reveal the house's troubled history.
## 6895 After 10 years in prison, Driver is now a free man with a single focus - hunting down the people responsible for brutally murdering his brother.
## 6896 In Seattle, detective Quentin Conners is unfairly suspended and his partner Jason York leaves the police force after a tragic shooting on Pearl Street Bridge, when the hostage and the criminal die. During a bank heist with a hostage situation, Conners is assigned in charge of the operation with the rookie Shane Dekker as his partner. The thieves, lead by Lorenz, apparently do not steal a penny from the bank. While chasing the gangsters, the police team disclose that they planted a virus in the system, stealing one billion dollars from the different accounts, using the principle of the Chaos Theory. Further, they find that Lorenz is killing his accomplices.
## 6897 To survive harsh economic times, Calvin and Angie have merged the barbershop and beauty salon into one business. The days of male bonding are gone as Eddie and the crew must now contend with sassy female co-workers and spirited clientele. As the battle of the sexes rages on, a different kind of conflict has taken over Chicago. Crime and gangs are on the rise, leaving Calvin worried about the fate of his son. Together, the friends come up with a bold plan to take back their beloved neighborhood.
## 6898 While on a grand world tour, The Muppets find themselves wrapped into an European jewel-heist caper headed by a Kermit the Frog look-alike and his dastardly sidekick.
## 6899 A psychic participates in a séance where she sees a vision of a Dunwich priest hanging himself in a church cemetery, causing her to die of fright. New York City reporter Peter Bell investigates the séance and learns that the priest's suicide has somehow opened a portal to Hell and must be sealed by All Saints Day, or else the dead will overtake humanity.
## 6900 Sarah is a French astronaut training at the European Space Agency in Cologne. She is the only woman in the arduous program. She lives alone with Stella, her seven year old daughter. Sarah feels guilty that she cannot spend more time with her child. Her love is overpowering, unsettling. When Sarah is chosen to join the crew of a year-long space mission called Proxima, it creates chaos in the mother-daughter relationship.
## 6901 Yassine asks his best friend Fred to marry him in order to avoid deportation...
## 6902 The most dangerous former operative of the CIA is drawn out of hiding to uncover hidden truths about his past.
## 6903 Tromaville has a monstrous new hero. The Toxic Avenger is born when mop boy Melvin Junko falls into a vat of toxic waste. Now evildoers will have a lot to lose.
## 6904 While driving, the pregnant horror-movie actress Kyôko Harase and her fiancé are in a car crash. She loses her baby and her fiancé winds up in a coma. Kyôko was cursed together with a television crew when they shot a show in the haunted house where Kayako was brutally murdered by her husband years ago. While each member of the team dies or disappears, Kyôko is informed that she has a three-and-a-half-month-old fetus in her womb.
## 6905 Summertime. A cruising spot for men, tucked away on the shores of a lake. Franck falls in love with Michel, an attractive, potent and lethally dangerous man. Franck knows this but wants to live out his passion anyway.
## 6906 Private investigator Matthew Scudder is hired by a drug kingpin to find out who kidnapped and murdered his wife.
## 6907 An American tourist in Greece finds himself on the run after a tragic accident plunges him into a political conspiracy that makes him a target for assassination.
## 6908 In the future, medical technology has advanced to the point where people can buy artificial organs to extend their lives. But if they default on payments, an organization known as the Union sends agents to repossess the organs. Remy is one of the best agents in the business, but when he becomes the recipient of an artificial heart, he finds himself in the same dire straits as his many victims.
## 6909 Story revolves around a young boxer, Izzy Daniels, who trains to follow in his father's footsteps by winning the Golden Glove. When his friend, Mary, however, asks him to substitute for a team member in a Double Dutch tournament, the young man discovers a hidden passion for jump roping
## 6910 Frank Allen, a professional speaker who lectures on time management has a perfectly ordered and scheduled life, down to the minute. When his wife sets his clock forward 10 minutes as a joke, his day is thrown off. Deciding that his strictly ordered life has done him little good, he begins to make multiple choice index cards, choosing one at random and doing what is written on the card.
## 6911 An uptight, conservative businesswoman accompanies her boyfriend to his eccentric and outgoing family's annual Christmas celebration and finds that she's a fish out of water in their free-spirited way of life.
## 6912 A rebellious young graffiti artist, who targets the homes of the wealthy elite, discovers a shocking secret that leads him on a journey endangering himself and those closest to him.
## 6913 Mr. Church reunites the Expendables for what should be an easy paycheck, but when one of their men is murdered on the job, their quest for revenge puts them deep in enemy territory and up against an unexpected threat.
## 6914 Mike, after his release from a psychiatric hospital, teams up with his old pal Reggie to hunt down the Tall Man, who is at it again. A mysterious, beautiful girl has also become part of Mike's dreams, and they must find her before the Tall Man does.
## 6915 The story of Jerry Lee Lewis, arguably the greatest and certainly one of the wildest musicians of the 1950s. His arrogance, remarkable talent, and unconventional lifestyle often brought him into conflict with others in the industry, and even earned him the scorn and condemnation of the public.
## 6916 History -- make that high school -- may repeat itself when Marni learns that Joanna, the mean girl from her past, is set to be her sister-in-law. Before the wedding bells toll, Marni must show her brother that a tiger doesn't change its stripes. On Marni's side is her mother, while Joanna's backed by her wealthy aunt.
## 6917 In Manhattan, a bike messenger picks up an envelope that attracts the interest of a dirty cop, who pursues the cyclist throughout the city.
## 6918 Professional driver Frank Martin is living in Miami, where he is temporarily filling in for a friend as the chauffeur for a government narcotics control policymaker and his family. The young boy in the family is targeted for kidnapping, and Frank immediately becomes involved in protecting the child and exposing the kidnappers.
## 6919 When the president of Russia suddenly dies, a man whose politics are virtually unknown succeeds him. The change in political leaders sparks paranoia among American CIA officials, so CIA director Bill Cabot recruits a young analyst to supply insight and advice on the situation. Then the unthinkable happens: a nuclear bomb explodes in a U.S. city, and America is quick to blame the Russians.
## 6920 An ambitious young executive is sent to retrieve his company's CEO from an idyllic but mysterious "wellness center" at a remote location in the Swiss Alps but soon suspects that the spa's miraculous treatments are not what they seem.
## 6921 Aspiring New York City artist, John Hollar returns to his Middle America hometown on the eve of his mother’s brain surgery. Joined by his girlfriend, eight months pregnant with their first child, John is forced to navigate the crazy world he left behind.
## 6922 After a brush with the law, Maria has returned to her gritty Bronx roots to rebuild her life with nothing but a talent for street dance and a burning ambition to prove herself.
## 6923 Slightly disturbed and painfully shy Angela Baker is sent away to summer camp with her cousin. Not long after Angela's arrival, things start to go horribly wrong for anyone with sinister or less than honorable intentions.
## 6924 On the eve of his wedding to his longtime girlfriend, unassuming nice guy Rick is dragged out for a night of debauchery by his friends.
## 6925 Quantum of Solace continues the adventures of James Bond after Casino Royale. Betrayed by Vesper, the woman he loved, 007 fights the urge to make his latest mission personal. Pursuing his determination to uncover the truth, Bond and M interrogate Mr. White, who reveals that the organization that blackmailed Vesper is far more complex and dangerous than anyone had imagined.
## 6926 Summoned from an ashram in Tibet, Ace finds himself on a perilous journey into the jungles of Africa to find Shikaka, the missing sacred animal of the friendly Wachati tribe. He must accomplish this before the wedding of the Wachati's Princess to the prince of the warrior Wachootoos. If Ace fails, the result will be a vicious tribal war.
## 6927 Benjamin Franklin Gates and Dr. Abigail Chase re-team with Riley Poole and, now armed with a stack of long-lost pages from John Wilkes Booth's diary, Ben must follow a clue left there to prove his ancestor's innocence in the assassination of Abraham Lincoln.
## 6928 The government is asking Eiffel to design something spectacular for the 1889 Paris World Fair, but Eiffel simply wants to design the subway. Suddenly, everything changes when Eiffel crosses paths with a mysterious woman from his past.
## 6929 George Lutz and his wife Kathleen move into their Long Island dream house with their children only for their lives to be turned into a hellish nightmare. The legacy of a murder committed in the house gradually affects the family and a priest is brought in to try and exorcise the demonic presence from their home.
## 6930 When a huge hurricane hits her hometown in Florida, Haley ignores evacuation orders to look for her father. After finding him badly wounded, both are trapped by the flood. With virtually no time to escape the storm, they discover that rising water levels are the least of their problems.
## 6931 A recently widowed traveler is kidnapped by a cold blooded killer, only to escape into the wilderness where she is forced to battle against the elements as her pursuer closes in on her.
## 6932 In the near future, due to a breakthrough scientific discovery by Dr. Thomas Harbor, there is now definitive proof of an afterlife. While countless people have chosen suicide to reset their existence, others try to decide what it all means. Among them is Dr. Harbor's son Will, who has arrived at his father's isolated compound with a mysterious young woman named Isla. There, they discover the strange acolytes who help Dr. Harbor with his experiments.
## 6933 When a 20-something finds a cache of hidden files on his new laptop, he and his friends are unwittingly thrust into the depths of the dark web. They soon discover someone has been watching their every move and will go to unimaginable lengths to protect the dark web.
## 6934 Hired by a powerful member of the Russian mafia to avenge an FBI sting that left his brother dead, a psychopathic hitman known only as The Jackal proves an elusive target for the people charged with the task of bringing him down: a deputy FBI director, a Russian MVK Major, and a jailed IRA terrorist who can recognize him.
## 6935 Jess Bhamra, the daughter of a strict Indian couple in London, is not permitted to play organized soccer, even though she is 18. When Jess is playing for fun one day, her impressive skills are seen by Jules Paxton, who then convinces Jess to play for her semi-pro team. Jess uses elaborate excuses to hide her matches from her family while also dealing with her romantic feelings for her coach, Joe.
## 6936 A young couple travels to a shabby Eastern European hospital for plastic surgery. The young woman wants a breast reduction. Her mother comes along for yet another face-lift. Wandering through an abandoned ward the boyfriend stumbles upon a young woman, gagged and strapped to an operating table; she is the result of an experimental rejuvenation treatment. He frees her, but does not realize he just caused the outbreak of a virus that will change doctors, patients and his mother-in-law into bloodthirsty zombies.
## 6937 Before their eventual team-up with Scooby and the gang, bright and optimistic Daphne and whip-smart and analytical Velma are both mystery-solving teens who are best friends but have only met online - until now. Daphne has just transferred to Velma's school, Ridge Valley High, an incredible tech-savvy institute with all the latest gadgets provided by the school's benefactor, tech billionaire Tobias Bloom. And while competition is fierce among the students for a coveted internship at Bloom Innovative, Daphne and Velma dig beyond all the gadgets and tech to investigate what is causing some of the brightest students in school to disappear - only to emerge again in a zombie-fied state.
## 6938 In 2029, an elite police squad combats an anti-reunification terrorist group while another enemy lurks nearby.
## 6939 Fifteen-year old John Cleaver is dangerous, and he knows it. He’s obsessed with serial killers, but really doesn’t want to become one. Terrible impulses constantly tempt him, so for his own sake, and the safety of those around, he lives by rigid rules to keep himself “good” and “normal”. However, when a real monster shows up in his town he has to let his dark side out in order to stop it – but without his rules to keep him in check, he might be more dangerous than the monster he’s trying to kill.
## 6940 Enforcing the law within the notoriously rough Brownsville section of the city and especially within the Van Dyke housing projects is the NYPD's sixty-fifth precinct. Three police officers struggle with the sometimes fine line between right and wrong.
## 6941 Although Brad has a satisfying career, a sweet wife and a comfortable life in suburban Sacramento, things aren't quite what he imagined during his college glory days. When he accompanies his musical prodigy son on a university tour, he can't help comparing his life with those of his four best college friends who seemingly have more wealthy and glamorous lives. But when circumstances force him to reconnect with his former friends, Brad begins to question whether he has really failed or if their lives are actually more flawed than they appear.
## 6942 A brother and sister are sent to their grandparents' remote Pennsylvania farm for a week, where they discover that the elderly couple is involved in something deeply disturbing.
## 6943 Coogan, an Arizona deputy sheriff goes to New York to pick up a prisoner. While escorting the prisoner to the airport, he escapes and Coogan heads into the city to recapture him.
## 6944 To remedy his financial problems, a travel agent has his eye on a frozen corpse, which just happens to be sought after by two hitmen.
## 6945 Casper is a kind young ghost who peacefully haunts a mansion in Maine. When specialist James Harvey arrives to communicate with Casper and his fellow spirits, he brings along his teenage daughter, Kat. Casper quickly falls in love with Kat, but their budding relationship is complicated not only by his transparent state, but also by his troublemaking apparition uncles and their mischievous antics.
## 6946 The mayor of Lyon, Paul Théraneau, is in a delicate position. After 30 years in politics, he is running out of ideas and is faced with a feeling of existential emptiness. To overcome this, Paul hires a young and brilliant philosopher, Alice Heimann. Then follows a dialogue between two diametrically opposed personalities who will turn their certainties upside down.
## 6947 Every day at 6 pm a serial killer kills another person. Police officer Helena Rus thinks the killings are done by one man only and decides to reveal the killer's identity by getting back in 18th century history of the city.
## 6948 After a whirlwind romance with a wealthy widower, a naïve bride moves to his family estate but can't escape the haunting shadow of his late wife.
## 6949 An American sniper and his spotter engage in a deadly cat-and-mouse game with an Iraqi sniper.
## 6950 The Dynamic Duo faces four super-villains who plan to hold the world for ransom with the help of a secret invention that instantly dehydrates people.
## 6951 When a sprite named Crysta shrinks a human boy, Zak, down to her size, he vows to help the magical fairy folk stop a greedy logging company from destroying their home: the pristine rainforest known as FernGully. Zak and his new friends fight to defend FernGully from lumberjacks — and the vengeful spirit they accidentally unleash after chopping down a magic tree.
## 6952 For their honeymoon, newlyweds Cliff and Cydney head to the tropical islands of Hawaii. While journeying through the paradisaical countryside the couple encounters Kale and Cleo, two disgruntled hitchhikers and Nick and Gina, two wild but well-meaning spirits who help guide them through the lush jungles. The picturesque waterfalls and scenic mountainsides quickly give way to terror when Cliff and Cydney learn of a grisly murder that occurred nearby and realize that they're being followed by chance acquaintances that suspiciously fit the description of the killers.
## 6953 It is the dawn of World War III. In mid-western America, a group of teenagers band together to defend their town—and their country—from invading Soviet forces.
## 6954 After Silvia Broome, an interpreter at United Nations headquarters, overhears plans of an assassination, an American Secret Service agent is sent to investigate.
## 6955 It's Senior year at East Great Falls. Annie, Kayla, Michelle, and Stephanie decide to harness their girl power and band together to get what they want their last year of high school.
## 6956 In downtown Madrid, a series of mysterious gunshots trap a motley assortment of people in a decrepit bar.
## 6957 After having visions of a member of her support group who killed herself, a woman who also suffers with chronic pain seeks out the widower of the suicide.
## 6958 Dolph Springer wakes up one morning to realize he has lost the love of his life, his dog, Paul. During his quest to get Paul (and his life) back, Dolph radically changes the lives of others -- risking his sanity all the while.
## 6959 When rancher and single mother of two Maggie Gilkeson sees her teenage daughter, Lily, kidnapped by Apache rebels, she reluctantly accepts the help of her estranged father, Samuel, in tracking down the kidnappers. Along the way, the two must learn to reconcile the past and work together if they are going to have any hope of getting Lily back before she is taken over the border and forced to become a prostitute.
## 6960 Cultural critic David Kepesh finds his life -- which he indicates is a state of "emancipated manhood" -- thrown into tragic disarray by Consuela Castillo, a well-mannered student who awakens a sense of sexual possessiveness in her teacher.
## 6961 To test its top-secret Human Hibernation Project, the Pentagon picks the most average Americans it can find - an Army private and a prostitute - and sends them to the year 2505 after a series of freak events. But when they arrive, they find a civilization so dumbed-down that they're the smartest people around.
## 6962 When undercover FBI agent Frank Castle's wife and son are slaughtered, he becomes 'the Punisher' -- a ruthless vigilante willing to go to any length to avenge his family.
## 6963 A young and talented architect comes to his senses after a horrific accident only to find himself in the odd dystopian world. A world that is filled with the memories of all current coma patients. Just like a human memory this world is fragmental, chaotic and unstable. This is COMA: icecaps, rivers and cities can all exist in a space of a single room and laws of physics are no longer laws as they can be bent.
## 6964 Corporal Evan Albright joined the elite Marine Corps Security Guards to save the world and see some action-not necessarily in that order. But his first assignment, protecting a U. S. Embassy in a seemingly safe Middle Eastern capitol, relegates his unit to wrangling "gate groupies" protesting outside the compound and honing their marksmanship by playing video games. So Albright and his team are caught off guard when well-armed and well-trained militants launch a surprise attack aimed at killing an informant in the embassy. Heavily out-gunned, they will have to muster all the courage and fire power they can as their once routine assignment spirals into all-out war.
## 6965 Troubled divorcee Mary Kee is tormented by a series of sinister phone calls from a mysterious woman. When the stranger reveals she's calling from the past, Mary tries to break off contact. But the caller doesn't like being ignored, and looks for revenge in a unique and terrifying way...
## 6966 Kyle Fisher has one last night to celebrate life as a single man before marrying Laura, so he sets out to Vegas with four of his best buddies. But a drug and alcohol filled night on the town with a stripper who goes all the way, turns into a cold night in the desert with shovels when the stripper goes all the way into a body bag after dying in their bathroom. And that's just the first of the bodies to pile up before Kyle can walk down the aisle...
## 6967 When two married business executives having an affair are blackmailed by a violent criminal, they are forced to turn the tables on him to save their families.
## 6968 Two young Spanish men, with a university education, are tired of unemployment and decide to move to Germany. But soon they will find out that finding a better living is not as easy as they expected.
## 6969 38-year-old Alice has everything to become the next editor-in-chief of Rebelle magazine except for her uptight image. But when the young and charming Balthazar, barely 20, crosses Alice's path, she realizes that he holds the key to her promotion.
## 6970 Having escaped years of imprisonment, vampire warrioress Selene finds herself in a changed world where humans have discovered the existence of both Vampire and Lycan clans and are conducting an all-out war to eradicate both immortal species. Now Selene must battle the humans and a frightening new breed of super Lycans to ensure the death dealers' survival.
## 6971 The story about Abby Jensen, a girl who's been eager to reach her 16th birthday and has kept a secret wish list since she was a little girl. When the Big Day actually arrives, utter disaster strikes, leaving Abby to think her birthday is ruined. But when a mysterious box of magical birthday candles arrives to turn things around, Abby's 16 Wishes start to come true. Her day gets better and better...until she makes one wish that threatens to change everything.
## 6972 Since the 1960s, a disproportionate number of the population in and around Nome, Alaska, have gone missing. Despite FBI investigations, the disappearances remain a mystery. Dr. Abigail Tyler, a psychologist, may be on the verge of blowing the unsolved cases wide open when, during the course of treating her patients, she finds evidence of alien abductions.
## 6973 James Bond is sent to investigate after a fellow “00” agent is found dead with a priceless Indian Fabergé egg. Bond follows the mystery and uncovers a smuggling scandal and a Russian General who wants to provoke a new World War.
## 6974 The murder of 13-year-old Yara Gambirasio shocks the little town of Brembate di Sopra, Italy. To bring the culprit to justice, prosecutor Letizia Ruggeri has only a bit of DNA without a database to compare it to. Based on a true story.
## 6975 When a group of naive teens working at a movie theater in a small Christian town discover a mysterious film hidden in its basement, they unleash an alluring succubus who gives them a sex education…written in blood.
## 6976 Set in the futuristic Metro City, Astro Boy (Atom) is a young robot with incredible powers created by a brilliant scientist in the image of the son he had lost. Unable to fulfill his creator's expectations, Astro embarks on a journey in search of acceptance, experiencing betrayal and a netherworld of robot gladiators, before returning to save Metro City and reconcile with the father who rejected him.
## 6977 The setting is Camp Firewood, the year 1981. It's the last day before everyone goes back to the real world, but there's still a summer's worth of unfinished business to resolve. At the center of the action is camp director Beth, who struggles to keep order while she falls in love with the local astrophysics professor. He is busy trying to save the camp from a deadly piece of NASA's Skylab which is hurtling toward earth. All that, plus: a dangerous waterfall rescue, love triangles, misfits, cool kids, and talking vegetable cans. The questions will all be resolved, of course, at the big talent show at the end of the day.
## 6978 When a woman's father goes missing, she enlists a local to aid in her search. The pair soon discover that her father has died at the hands of a wealthy sportsman who hunts homeless men as a form of recreation.
## 6979 Marion and Jack try to rekindle their relationship with a visit to Paris, home of Marion's parents — and several of her ex-boyfriends.
## 6980 A woman discovers that severe catastrophic events are somehow connected to the mental breakdown from which she's suffering.
## 6981 From the producers of Paranormal Activity, Insidious, and Sinister comes Dark Skies: a supernatural thriller that follows a young family living in the suburbs. As husband and wife Daniel and Lacey Barret witness an escalating series of disturbing events involving their family, their safe and peaceful home quickly unravels. When it becomes clear that the Barret family is being targeted by an unimaginably terrifying and deadly force, Daniel and Lacey take matters in their own hands to solve the mystery of what is after their family.
## 6982 Superfantozzi (1986) is an Italian film from 1986. It is the fifth film in the saga of the unlucky clerk Ugo Fantozzi, played by its creator, Paolo Villaggio. In this film, Fantozzi is portrayed in a surreal historical journey, from Genesis to 1980s.
## 6983 Aerial firefighter Pete risks himself and his vintage World War II airplane in a constant and death-defying quest to fight forest wildfires, much to the dismay of his girlfriend, Dorinda . His love for Dorinda and the advice of fellow pilot Al convince Pete to give up his perilous career, but he flies one last mission. Pete heroically saves Al's plane from certain destruction, but with supernatural consequences.
## 6984 Baby Bink couldn't ask for more: he has adoring (if somewhat sickly-sweet) parents, lives in a huge mansion, and he's just about to appear in the social pages of the paper. Unfortunately, not everyone in the world is as nice as Baby Bink's parents—especially the three enterprising kidnappers who pretend to be photographers from the newspaper. Successfully kidnapping Baby Bink, they have a harder time keeping hold of the rascal, who not only keeps one step ahead of them, but seems to be more than a little bit smarter than the three bumbling criminals.
## 6985 The patriarch of a wealthy and powerful family suddenly passes away, leaving his wife and daughter with a shocking secret inheritance that threatens to unravel and destroy their lives.
## 6986 After an earthquake destroys their underwater station, six researchers must navigate two miles along the dangerous, unknown depths of the ocean floor to make it to safety in a race against time.
## 6987 Hard-nosed liberal lawyer Roman J. Israel has been fighting the good fight forever while others take the credit. When his partner – the firm's frontman – has a heart attack, Israel suddenly takes on that role. He soon discovers some unsettling truths about the firm – truths that conflict with his values of helping the poor and dispossessed – and finds himself in an existential crisis that leads to extreme actions.
## 6988 Salvo and Valentino are two Sicilian friends who have moved to Turin, and now run a small business together. They drive foreign tourists around in a double-decker bus, and Salvo always tries to approach the pretty girls.
## 6989 A young woman who has been in and out from rehab for the past 10 years returns home for the weekend for her sister's wedding.
## 6990 In 1960, a hardy group of prep school students boards an old-fashioned sailing ship. With Capt. Christopher Sheldon at the helm, the oceangoing voyage is intended to teach the boys fortitude and discipline. But the youthful crew are about to get some unexpected instruction in survival when they get caught in the clutches of a white squall storm.
## 6991 Multi-platinum rap superstars Redman and Method Man star as Jamal and Silas, two regular guys who smoke something magical, ace their college entrance exams and wind up at Harvard. Ivy League ways are strange but Silas and Jamal take it in a stride -- until their supply of supernatural smoke runs dry. That's when they have to start living by their wits and rely on their natural resources to make the grade.
## 6992 Alex, an immigrant from Ukraine comes to Canada and becomes involved with an online criminal organization called Darkweb. What starts off as a way to help his parents financially, soon becomes a personal vendetta against the entire banking system, when his mother is fired from her job at the bank
## 6993 For generations, the people of the City of Ember have flourished in an amazing world of glittering lights. But Ember's once powerful generator is failing and the great lamps that illuminate the city are starting to flicker. Now, two teenagers, in a race against time, must search Ember for clues that will unlock the ancient mystery of the city's existence, before the the lights go out forever.
## 6994 When Bella Swan moves to a small town in the Pacific Northwest, she falls in love with Edward Cullen, a mysterious classmate who reveals himself to be a 108-year-old vampire. Despite Edward's repeated cautions, Bella can't stay away from him, a fatal move that endangers her own life.
## 6995 While flying a routine reconnaissance mission over Bosnia, fighter pilot Chris Burnett photographs something he wasn't supposed to see and gets shot down behind enemy lines, where he must outrun an army led by a ruthless Serbian general. With time running out and a deadly tracker on his trail, Burnett's commanding officer decides to risk his career and launch a renegade rescue mission to save his life.
## 6996 A small-town Oregon teacher and her brother, the local sheriff, discover a young student is harbouring a dangerous secret that could have frightening consequences.
## 6997 Hoping to bring his family closer together and to recreate his childhood vacation for his own kids, a grown up Rusty Griswold takes his wife and their two sons on a cross-country road trip to the coolest theme park in America, Walley World. Needless to say, things don't go quite as planned.
## 6998 John Smith is a mysterious stranger who is drawn into a vicious war between two Prohibition-era gangs. In a dangerous game, he switches allegiances from one to another, offering his services to the highest bidder. As the death toll mounts, Smith takes the law into his own hands in a deadly race to stay alive.
## 6999 A career criminal who has been deformed since birth is given a new face by a kindly doctor and paroled from prison. It appears that he has gone straight, but he is really planning his revenge on the man who killed his mentor and sent him to prison.
## 7000 Michael Mason is an American pickpocket living in Paris who finds himself hunted by the CIA when he steals a bag that contains more than just a wallet. Sean Briar, the field agent on the case, soon realises that Michael is just a pawn in a much bigger game and is also his best asset to uncover a large-scale conspiracy.
## 7001 Two siblings begin to develop special talents after they find a mysterious box of toys, and soon their parents and even their teacher are drawn into a strange new world – and find a task ahead of them that is far more important than any of them could imagine.
## 7002 In the aftermath of his girlfriend's mysterious death, a young man awakens to strange horns sprouting from his temples.
## 7003 When an exclusive clique of teenage socialites accidentally murder their best friend on the morning of her birthday, the three girls responsible conspire to hide the truth.
## 7004 Honey Daniels dreams of making a name for herself as a hip-hop choreographer. When she's not busy hitting downtown clubs with her friends, she teaches dance classes at a nearby community center in Harlem, N.Y., as a way to keep kids off the streets. Honey thinks she's hit the jackpot when she meets a hotshot director casts her in one of his music videos. But, when he starts demanding sexual favors from her, Honey makes a decision that will change her life.
## 7005 The adventures of a father and his young daughter, in their search for a long lost book that will help reunite a missing, close relative.
## 7006 Jesse Freeman is a former special forces officer and explosives expert now working a regular job as a security guard in a state-of-the-art basketball arena. Trouble erupts when a tech-savvy cadre of terrorists kidnap the team's owner and Jesse's daughter during opening night. Facing a ticking clock and impossible odds, it's up to Jesse to not only save them but also a full house of fans in this highly charged action thriller.
## 7007 Can two serial cheaters get a second chance at love? After a one-night stand in college, New Yorkers Lainey and Jake meet by chance twelve years later and discover they each have the same problem: because of their monogamy-challenged ways, neither can maintain a relationship. Determined to stay friends despite their mutual attraction, they make a pact to keep it platonic, a deal that proves easier said than done.
## 7008 Emma is a busy doctor who sets up a seemingly perfect arrangement when she offers her best friend Adam a relationship with one rule: No strings attached. But when a fling becomes a thing, can sex friends stay best friends?
## 7009 Claude and Marie Verneuil will soon be celebrating their 40th wedding anniversary. For the occasion, their four daughters - Isabelle, Odile, Ségolène and Laure - decide to organize a big surprise party in their family home in Chinon. They also decide to invite, each, the parents of their respective husbands - Rachid Benassem, David Benichou, Chao Ling and Charles Koffi.
## 7010 High school senior Lily and her friends, Bex, Em and Sarah live in a haze of texts, posts, selfies and chats just like the rest of the world. So, when an anonymous hacker starts posting details from the private lives of everyone in their small town, the result is absolute madness leaving Lily and her friends questioning whether they'll live through the night.
## 7011 Struggling to make ends meet, former special ops soldiers reunite for a high-stakes heist: stealing $75 million from a South American drug lord.
## 7012 A parasitic alien soul is injected into the body of Melanie Stryder. Instead of carrying out her race's mission of taking over the Earth, "Wanda" (as she comes to be called) forms a bond with her host and sets out to aid other free humans.
## 7013 A young inductee into the military is given the task of looking after some chimpanzees used in the mysterious 'Project X'. Getting to know the chimps fairly well, he begins to suspect there is more to the secret project than he is being told.
## 7014 Jose Luis is an executive at his parents underwear factory where his girlfriend Sylvia works on the shop floor. When Sylvia becomes pregnant, Jose Luis promises her that he will marry her, most likely against the wishes of his parents. Jose Luis' mother is determined to break her son's engagement to a girl from a lower-class family, and hires Raul, a potential underwear model and would-be bullfighter to seduce Sylvia.
## 7015 To save his crumbling and rapidly-depopulating rural town, its mayor fakes a gruesome murder to attract media attention. His plan initially succeeds, but soon the situation will spiral out of control.
## 7016 It's summertime, and Greg Heffley is looking forward to playing video games and spending time with his friends. However, Greg's dad has other plans: He's decided that some father-son bonding time is in order. Desperate to prevent his dad from ruining summer vacation, Greg pretends he has a job at a ritzy country club. But Greg's plan backfires, leaving him in the middle of embarrassing mishaps and a camping trip gone wrong.
## 7017 Escaped convict Sam Gillen single-handedly takes on ruthless developers who are determined to evict a widow with two young children.
## 7018 Matt Lee Whitlock, respected chief of police in small Banyan Key, Florida, must solve a vicious double homicide before he himself falls under suspicion. Matt Lee has to stay a few steps ahead of his own police force and everyone he's trusted in order to find out the truth.
## 7019 En route to the honeymoon of William Riker to Deanna Troi on her home planet of Betazed, Captain Jean-Luc Picard and the crew of the U.S.S. Enterprise receives word from Starfleet that a coup has resulted in the installation of a new Romulan political leader, Shinzon, who claims to seek peace with the human-backed United Federation of Planets. Once in enemy territory, the captain and his crew make a startling discovery: Shinzon is human, a slave from the Romulan sister planet of Remus, and has a secret, shocking relationship to Picard himself.
## 7020 Daniel and Stéphane, two salesmen working in the same store but who cannot stand each other, decide despite everything to team up to participate in television games so they can pay their debts.
## 7021 Alex, a boy obsessed with scary stories, is trapped by a witch in her modern, magical New York City apartment. His original hair-raising tales are the only thing keeping him safe as he desperately tries to find a way out of this twisted place.
## 7022 When a workaholic young executive, is left at the altar, she ends up on her Caribbean honeymoon cruise with the last person she ever expected: her estranged and equally workaholic father. The two depart as strangers, but over the course of a few hilarious adventures, a couple of umbrella-clad cocktails and a whole lot of soul-searching, they return with a renewed appreciation for family and life.
## 7023 When a deadly mist engulfs Paris, people find refuge in the upper floors of the buildings. With no information, no electricity and hardly any supplies, Mathieu, Anna and their daughter Sarah try to survive the disaster.
## 7024 A twisted new tale of terror begins for a teenage girl and her family, and revealing more mysteries of the otherworldly realm, 'The Further'.
## 7025 FBI agent Jack Crawford is out for revenge when his partner is killed and all clues point to the mysterious assassin Rogue. But when Rogue turns up years later to take care of some unfinished business, he triggers a violent clash of rival gangs. Will the truth come out before it's too late? And when the dust settles, who will remain standing?
## 7026 Bilbo Baggins the Hobbit was just minding his own business, when his occasional visitor Gandalf the Wizard drops in one night. One by one, a whole group of dwarves drop in, and before he knows it, Bilbo has joined their quest to reclaim their kingdom, taken from them by the evil dragon Smaug. The only problem is that Gandalf has told the dwarves that Bilbo is an expert burglar, but he isn't...
## 7027 Christmas is on its way and with it disaster. The 92,000 responsible for manufacturing children's toys all become sick at the same time! It's a tough moment for Santa, better known as Father Christmas. He's left no choice: he must make an emergency trip to Earth with his reindeer to search for a remedy. When he arrives, he must find some allies to save the magic of Christmas.
## 7028 A young man challenges the web to offer money for a sex tape of him and his girlfriend to finance his work and finally be able to afford having a child. Is it really wrong to sell our own intimacy in order to be able to afford making our dreams come true?
## 7029 F/X man Rollie Tyler is now a toymaker. Mike, the ex-husband of his girlfriend Kim, is a cop. He asks Rollie to help catch a killer. The operation goes well until some unknown man kills both the killer and Mike. Mike's boss, Silak says it was the killer who killed Mike but Rollie knows it wasn't. Obviously, Silak is involved with Mike's death, so he calls on Leo McCarthy, the cop from the last movie, who is now a P.I., for help and they discover it's not just Silak they have to worry about.
## 7030 It's graduation day at Huntington Hills High, and you know what that means - time to party. And not just any party, either. This one will be a night to remember, as the nerds become studs, the jocks are humiliated, and freshman crushes blossom into grown-up romance.
## 7031 When Simon brings his twelve year-old son, Finn, to rural Vermont to help flip an old farmhouse, they encounter the malicious spirit of Lydia, a previous owner. And now with every repair they make - she's getting stronger.
## 7032 Keen young Raymold Avila joins the Internal Affairs Department of the Los Angeles police. He and partner Amy Wallace are soon looking closely at the activities of cop Dennis Peck whose financial holdings start to suggest something shady. Indeed Peck is involved in any number of dubious or downright criminal activities. He is also devious, a womaniser, and a clever manipulator, and he starts to turn his attention on Avila.
## 7033 Amiable slackers Bill and Ted are once again roped into a fantastical adventure when De Nomolos, a villain from the future, sends evil robot duplicates of the two lads to terminate and replace them. The robot doubles actually succeed in killing Bill and Ted, but the two are determined to escape the afterlife, challenging the Grim Reaper to a series of games in order to return to the land of the living.
## 7034 Longtime friends and local radio hosts Maggie and Jack fake it as a couple for their families and listeners in hopes of getting their show syndicated.
## 7035 Follows the lives of three families who live in a three-story building in a Roman neighbourhood.
## 7036 A struggling painter is possessed by satanic forces after he and his young family move into their dream home in rural Texas.
## 7037 A salesman for a natural gas company experiences life-changing events after arriving in a small town, where his corporation wants to tap into the available resources.
## 7038 Betrayed by his own kind and left for dead on a desolate planet, Riddick fights for survival against alien predators and becomes more powerful and dangerous than ever before. Soon bounty hunters from throughout the galaxy descend on Riddick only to find themselves pawns in his greater scheme for revenge. With his enemies right where he wants them, Riddick unleashes a vicious attack of vengeance before returning to his home planet of Furya to save it from destruction.
## 7039 A fictionalized account of the last days of Edgar Allan Poe's life, in which the poet is in pursuit of a serial killer whose murders mirror those in the writer's stories.
## 7040 Young Pietari lives with his reindeer-herding father in arctic Finland. On the eve of Christmas, a nearby excavation makes a frightening discovery and an evil Santa Claus is unleashed…
## 7041 An Irish fisherman discovers a woman in his fishing net believing her to be a mermaid.
## 7042 In her many years as a social worker, Emily Jenkins believes she has seen it all, until she meets 10-year-old Lilith and the girl's cruel parents. Emily's worst fears are confirmed when the parents try to harm the child, and so Emily assumes custody of Lilith while she looks for a foster family. However, Emily soon finds that dark forces surround the seemingly innocent girl, and the more she tries to protect Lilith, the more horrors she encounters.
## 7043 In the year 2019, a plague has transformed almost every human into a vampire. Faced with a dwindling blood supply, the fractured dominant race plots their survival; meanwhile, a researcher works with a covert band of vampires on a way to save humankind.
## 7044 When Ana, an influencer, crashes her car while talking on the phone, she's shipped to her grumpy grandfather's farm -- and forced into a digital detox.
## 7045 Sancaka has lived on the streets since his parents left him. Living a hard life, Sancaka survives by thinking about his own safety. When the condition of the city gets worse and injustice rages throughout the country, Sancaka must decide whether he continues to live to look after himself or rise to become their oppressed hero.
## 7046 Arkin escapes with his life from the vicious grips of "The Collector" during an entrapment party where he adds beautiful Elena to his "Collection." Instead of recovering from the trauma, Arkin is suddenly abducted from the hospital by mercenaries hired by Elena's wealthy father. Arkin is blackmailed to team up with the mercenaries and track down The Collector's booby trapped warehouse and save Elena.
## 7047 On a mission deep in the Bolivian jungle, a team of elite commandos finds itself on the receiving end of a lethal betrayal. Now presumed dead, the men join forces with a mysterious operative named Aisha to hunt down their enemy and even the score.
## 7048 When Ah Bu, a girl from a small fishing town in Taiwan, finds a glass bottle with a romantic message, she travels to Hong Kong to find her prince charming. As it turns out, her prince charming, Albert, happens to be gay. But all is not lost when Ah Bu meets the dashing Chi Wu. Meanwhile, Ah Bu's boyfriend from Taiwan comes looking for her, as the action and romance follow Ah Bu back to Taiwan.
## 7049 In the year 2022, a ruthless prison warden has created the ultimate solution for his most troublesome and violent inmates: Absolom, a secret jungle island where prisoners are abandoned and left to die. But Marine Captain John Robbins, convicted of murdering a commanding officer, is determined to escape the island in order to reveal the truth behind his murderous actions and clear his name.
## 7050 The King of Far Far Away has died and Shrek and Fiona are to become King & Queen. However, Shrek wants to return to his cozy swamp and live in peace and quiet, so when he finds out there is another heir to the throne, they set off to bring him back to rule the kingdom.
## 7051 Travis Block is a shadowy Government agent who specializes in removing operatives whose covers have been exposed. He then has to uncover a deadly conspiracy within his own ranks that reaches the highest echelons of power.
## 7052 Two simple-minded friends discover a giant fly in the trunk of a car and decide to domesticate it to earn money with it.
## 7053 Former major league baseball player Moe Berg lives a double life working for the Office of Strategic Services in World War II Europe.
## 7054 When three parents discover that each of their daughters have a pact to lose their virginity at prom, they launch a covert one-night operation to stop the teens from sealing the deal.
## 7055 Mollie is a single working mother who's out to find the perfect father for her child. Her baby, Mikey, prefers James, a cab driver turned babysitter who has what it takes to make them both happy. But Mollie won't even consider James. It's going to take all the tricks a baby can think of to bring them together before it's too late.
## 7056 Greg Heffley is a scrawny but ambitious kid with an active imagination and big plans to be rich and famous – he just has to survive middle school first.
## 7057 Successful author Veronica finds herself trapped in a horrifying reality and must uncover the mind-bending mystery before it's too late.
## 7058 During the Spanish Civil War, sworn enemies must work together when they encounter flesh-eating zombies created in a Nazi experiment.
## 7059 Two New Orleans paramedics' lives are ripped apart after encountering a series of horrific deaths linked to a designer drug with bizarre, otherworldly effects.
## 7060 It’s 1948 and the Cold War has arrived in Chile. In the Congress, prominent Communist Senator and popular poet Pablo Neruda accuses the government of betraying the Party and is stripped of his parliamentary immunity by President González Videla. The Chief of Investigative Police instructs inspector Óscar Peluchonneau to arrest the poet. Neruda tries to escape from the country with his wife, the painter Delia del Carril, but they are forced to go underground.
## 7061 As two evil sisters prepare to conquer the land, two renegades—Eric the Huntsman, who aided Snow White in defeating Ravenna in Snowwhite and the Huntsman, and his forbidden lover, Sara—set out to stop them.
## 7062 The characters we met a little more than a decade ago return to East Great Falls for their high-school reunion. In one long-overdue weekend, they will discover what has changed, who hasn’t, and that time and distance can’t break the bonds of friendship.
## 7063 A troubled hedge fund magnate, desperate to complete the sale of his trading empire, makes an error that forces him to turn to an unlikely person for help.
## 7064 Though Rachel is a successful attorney and a loyal, generous friend, she is still single. After one drink too many at her 30th-birthday celebration, Rachel unexpectedly falls into bed with her longtime crush, Dex -- who happens to be engaged to her best friend, Darcy. Ramifications of the liaison threaten to destroy the women's lifelong friendship, while Ethan, Rachel's confidant, harbors a potentially explosive secret of his own.
## 7065 A desperate group of refugees attempts to recolonize Earth 20,000 years after Godzilla took over. But one young man wants revenge above all else.
## 7066 10 years after a global economic collapse, a hardened loner pursues the men who stole his car through the lawless wasteland of the Australian outback, aided by the brother of one of the thieves.
## 7067 In the grand tradition of Disney's great musical classics, Melody Time features seven timeless stories, each enhanced with high-spirited music and unforgettable characters. You'll be sure to tap your toes and clap your hands in this witty feast for the eyes and ears.
## 7068 The crew of a West of Ireland trawler—marooned at sea—struggle for their lives against a growing parasite in their water supply.
## 7069 When recently widowed, it is difficult to get used to a new life ... This is the case for Hubert Jacquin, who spends most of his time in his huge apartment, depressed, in front of his TV. One day, after a misunderstanding, his life will change. Manuela, a young and bubbly adventurer in search of a dwelling calls his home! At first reluctant, Hubert will quickly get used to the presence of this energy storm, who even manages to convince him to allow two other people to stay. There are many surprises in store for Hubert ...
## 7070 Newlywed couple Ted and Tami-Lynn want to have a baby, but in order to qualify to be a parent, Ted will have to prove he's a person in a court of law.
## 7071 Nanny McPhee appears at the door of a harried young mother who is trying to run the family farm while her husband is away at war. But once she’s arrived, Nanny discovers that the children are fighting a war of their own against two spoiled city cousins who have just moved in. Relying on everything from a flying motorcycle and a statue that comes to life to a tree-climbing piglet and a baby elephant, Nanny uses her magic to teach her mischievous charges five new lessons.
## 7072 Unlike their heroic counterparts on the force, desk-bound NYPD detectives Gamble and Hoitz garner no headlines as they work day to day. When a seemingly minor case turns out to be a big deal, the two cops get the opportunity to finally prove to their comrades that they have the right stuff.
## 7073 An FBI man with Sioux background is sent to a reservation to help with a murder investigation, where he has to come to terms with his heritage.
## 7074 Attractive Manhattanite Allison Jones has it all: a handsome beau, a rent-controlled apartment, and a promising career as a fashion designer. When boyfriend Sam proves unfaithful, Allison strikes out on her own but must use the classifieds to seek out a roommate in order to keep her spacious digs.
## 7075 The story of Danièle Delpeuch and how she was appointed as the private chef for François Mitterrand.
## 7076 A drama based on an ancient Chinese proverb that breaks life down into four emotional cornerstones: happiness, pleasure, sorrow and love. A businessman bets his life on a horse race; a gangster sees the future; a pop star falls prey to a crime boss; a doctor must save the love of his life.
## 7077 When an English cartographer arrives in Wales to tell the residents of the Welsh village of Ffynnon Garw that their 'mountain' is only a hill, the offended community sets out to remedy the situation.
## 7078 Along with his new friends, a teenager who was arrested by the US Secret Service and banned from using a computer for writing a computer virus discovers a plot by a nefarious hacker, but they must use their computer skills to find the evidence while being pursued by the Secret Service and the evil computer genius behind the virus.
## 7079 The secret US abduction of a suspected terrorist from his Middle East homeland leads to a wave of terrorist attacks in New York. An FBI senior agent and his team attempt to locate and decommission the enemy cells, but must also deal with an Army General gone rogue and a female CIA agent of uncertain loyalties.
## 7080 In this adaptation of the best-selling roman à clef about Bill Clinton's 1992 run for the White House, the young and gifted Henry Burton is tapped to oversee the presidential campaign of Governor Jack Stanton. Burton is pulled into the politician's colorful world and looks on as Stanton -- who has a wandering eye that could be his downfall -- contends with his ambitious wife, Susan, and an outspoken adviser, Richard Jemmons.
## 7081 19-year-old Linnéa leaves her small town in Sweden and heads for Los Angeles with the aim of becoming the world's next big porn star, but the road to her goal turns out to be bumpier than she imagined.
## 7082 Set in a dugout in Aisne in 1918, a group of British officers, led by the mentally disintegrating young officer Stanhope, variously await their fate.
## 7083 In 1970’s Boston, a meeting in a deserted warehouse between two gangs turns into a shoot-out and a game of survival.
## 7084 The Apache Indians have reluctantly agreed to settle on a US Government approved reservation. Not all the Apaches are able to adapt to the life of corn farmers. One in particular, Geronimo, is restless. Pushed over the edge by broken promises and necessary actions by the government, Geronimo and thirty or so other warriors form an attack team which humiliates the government by evading capture, while reclaiming what is rightfully theirs.
## 7085 Lifelong platonic friends Zack and Miri look to solve their respective cash-flow problems by making an adult film together. As the cameras roll, however, the duo begin to sense that they may have more feelings for each other than they previously thought.
## 7086 A man whose brain becomes magnetized unintentionally destroys every tape in his friend's video store. In order to satisfy the store's most loyal renter, an aging woman with signs of dementia, the two men set out to remake the lost films.
## 7087 A tough nightclub bouncer struggling to raise his 8-year-old daughter is forced to go undercover after an unfortunate event.
## 7088 On the brink of a midlife crisis, 30-something Mike O'Donnell wishes he could have a "do-over." And that's exactly what he gets when he wakes up one morning to find he's 17 years old again. With his adult mind stuck inside the body of a teenager, Mike actually has the chance to reverse some decisions he wishes he'd never made. But maybe they weren't so bad after all.
## 7089 After escaping from prison, Joe and Terry go on a crime spree, robbing banks through Oregon and California in order to finance their scheme for a new life south of the border. Unfortunately, things get more complicated when they meet Kate, who runs into them with her car. She joins the bandits on their cross-country spree, and eventually she steals something, too: their hearts.
## 7090 Hitman "El Mariachi" becomes involved in international espionage involving a psychotic CIA agent and a corrupt Mexican general.
## 7091 In the 1980s, college student Samantha Hughes takes a strange babysitting job that coincides with a full lunar eclipse. She slowly realizes her clients harbor a terrifying secret.
## 7092 Mysterious cell phone messages promise a young American engineer untold wealth - then make him the target of a deadly international plot. Dangerous security operatives chase the engineer across the globe, while a powerful government official pursues a mysterious agenda that threatens the stability of the entire world.
## 7093 The life of Danny Wright, a salesman forever on the road, veers into dangerous and surreal territory when he wanders into a Mexican bar and meets a mysterious stranger, Julian, who's very likely a hit man. Their meeting sets off a chain of events that will change their lives forever, as Wright is suddenly thrust into a far-from-mundane existence that he takes to surprisingly well … once he gets acclimated to it.
## 7094 Years after the Racoon City catastrophe, survivors travel across the Nevada desert, hoping to make it to Alaska. Alice joins the caravan and their fight against hordes of zombies and the evil Umbrella Corp.
## 7095 Peppino, a retired hitman for the Camorra, has now fully passed on his job and know-how to his single son, Nino. But when Nino is brutally assassinated, the old man is back in business to take revenge. Aside his everlasting love Rita and his longtime henchman Totò, Peppino will go to any lengths, even if it means bringing the Camorra down.
## 7096 After a mysterious global crisis, a young girl is left alone to hide from a malevolent power that stalks her home. Her parents eventually return and the struggle begins to save their daughter.
## 7097 Two teenage boys unwittingly summon an ancient evil entity known as The Blind One by delving into black magic while trying to escape their mundane lives.
## 7098 A burglar falls for an heiress as she dies in his arms. When he learns that he has the gift of reincarnation, he sets out to save her.
## 7099 After thirty years of marriage, a middle-aged couple attends an intense, week-long counseling session to work on their relationship.
## 7100 Employees at a Bennigan's-like restaurant (called, creatively enough, Shenanigan's), kill time before their real lives get started. But while they wait, they'll have to deal with picky customers who want their steak cooked to order and enthusiastic managers who want to build the perfect wait staff. Luckily, these employees have effective revenge tactics.
## 7101 Drowning in debt as he's about to get married, a bright but meek salesman receives a mysterious phone call informing him that he's on a hidden-camera game show where he must execute 13 tasks to receive a multi-million dollar cash prize.
## 7102 Willy the whale is back, this time threatened by illegal whalers making money off sushi. Jesse, now 16, has taken a job on an orca-researching ship, along with old friend Randolph and a sarcastic scientist, Drew. On the whaler's ship is captain John Wesley and his son, Max, who isn't really pleased about his father's job, but doesn't have the gut to say so. Along the way, Willy reunites with Jesse
## 7103 Having satisfied their urge for White Castle, Harold and Kumar jump on a plane to catch up with Harold's love interest, who's headed for the Netherlands. But the pair must change their plans when Kumar is accused of being a terrorist. Rob Corddry also stars in this wild comedy sequel that follows the hapless stoners' misadventures as they try to avoid being captured by the Department of Homeland Security.
## 7104 The scientist father of a teenage girl and boy accidentally shrinks his and two other neighborhood teens to the size of insects. Now the teens must fight diminutive dangers as the father searches for them.
## 7105 A drive-in favorite, this sci-fi classic follows teenagers Steve and his best girl, Jane, as they try to protect their hometown from a gelatinous alien life form that engulfs everything it touches. The first to discover the substance and live to tell about it, Steve and Jane witness the blob destroying an elderly man, then it growing to a terrifying size. But no one else has seen the goo, and policeman Dave refuses to believe the kids without proof.
## 7106 A husband-and-wife team play detective, but not in the traditional sense. Instead, the happy duo helps others solve their existential issues, the kind that keep you up at night, wondering what it all means.
## 7107 After being struck and killed by lightning, a young man recounts the way he blackmailed his fellow classmates into contributing to his literary magazine.
## 7108 Based on true events, 16 year-old Jamie falls in with his mother's new boyfriend and his crowd of self-appointed neighborhood watchmen, a relationship that leads to a spree of torture and murder.
## 7109 After his tribe of herbivorous dinosaurs moves to the carnivore-free Peaceful Valley, young Littlefoot and his friends chase after a pair of dangerous dinosaurs stealing an egg from the village. While running, they accidentally cause a landslide that opens up their home to outsiders. When the egg they bring back and hatch reveals not one of their own, but a carnivorous tyrannosaurus, the youngsters decide to secretly raise it.
## 7110 A nameless gunfighter arrives in a town ripped apart by rival gangs and, though courted by both to join, chooses his own path.
## 7111 The Baker brood moves to Chicago after patriarch Tom gets a job coaching football at Northwestern University, forcing his writer wife, Mary, and the couple's 12 children to make a major adjustment. The transition works well until work demands pull the parents away from home, leaving the kids bored -- and increasingly mischievous.
## 7112 In the aftermath of a personal tragedy, Harper retreats alone to the beautiful English countryside, hoping to find a place to heal. But someone — or something — from the surrounding woods appears to be stalking her, and what begins as simmering dread becomes a fully-formed nightmare, inhabited by her darkest memories and fears.
## 7113 The chauvinist Damien wakes up in a world where women and men have their roles reversed in society, and everything is dominated by women.
## 7114 A drama centered around the relationship between journalist Michael Finkel and Christian Longo, an FBI Most Wanted List murderer who for years lived outside the U.S. under Finkel's name.
## 7115 Ford Brody, a Navy bomb expert, has just reunited with his family in San Francisco when he is forced to go to Japan to help his estranged father, Joe. Soon, both men are swept up in an escalating crisis when an ancient alpha predator arises from the sea to combat malevolent adversaries that threaten the survival of humanity. The creatures leave colossal destruction in their wake, as they make their way toward their final battleground: San Francisco.
## 7116 Based on a shocking true story, Killer Elite pits two of the world’s most elite operatives—Danny, an ex-special ops agent and Hunter, his longtime mentor—against the cunning leader of a secret military society. Covering the globe from Australia to Paris, London and the Middle East, Danny and Hunter are plunged into a highly dangerous game of cat and mouse—where the predators become the prey.
## 7117 Chanticleer is a foolhardy farm rooster who believes his crows can actually make the sun come up and shine. When the sun rises one morning without Chanticleer's crow, he leaves the farm in disgrace and runs off to become a rock 'n' roll singer. But in his absence, a sinister, sunshine-hating owl prepares to take over.
## 7118 Set to the intoxicating rhythms of Brazil, "Woman on Top" is a spicy, sexy comedy about the magic of food, love and music. Meet Isabella, a sultry enchantress born with the special gift of melting the palates and hearts of men everywhere. When she decides to break free from her rocky marriage and the stifling kitchen of her husband's restaurant in Brazil, she spirits off to San Francisco in pursuit of her dreams of a real culinary career.
## 7119 Angelo "Snaps" Provolone made his dying father a promise on his deathbed: he would leave the world of crime and become an honest businessman. Despite having no experience in making money in a legal fashion, Snaps sets about to keep his promise.
## 7120 A woman grieving over the death of her daughter loses grip of reality when she begins to think her girl may still be alive.
## 7121 John Carter is a war-weary, former military captain who's inexplicably transported to the mysterious and exotic planet of Barsoom (Mars) and reluctantly becomes embroiled in an epic conflict. It's a world on the brink of collapse, and Carter rediscovers his humanity when he realizes the survival of Barsoom and its people rests in his hands.
## 7122 A burned-out New York police detective teams up with a college psychoanalyst to track down a vicious serial killer randomly stalking and killing various young women around the city.
## 7123 Two girls from the Valley wake up to find that a passing comet has eradicated their world and left behind a mysterious red-dust and a pack of cannibal mutants. With the help of a friendly truck driver, the girls save the earth from a villainous "think tank," karate chop their way through flesh-eating zombies, and, of course, find time to go to the mall.
## 7124 Dirty Harry Callahan returns for his final film adventure. Together with his partner Al Quan, he must investigate the systematic murder of actors and musicians. By the time Harry learns that the murders are a part of a sick game to predict the deaths of celebrities before they happen, it may be too late...
## 7125 Brad and Dusty must deal with their intrusive fathers during the holidays.
## 7126 Saban's Power Rangers follows five ordinary teens who must become something extraordinary when they learn that their small town of Angel Grove — and the world — is on the verge of being obliterated by an alien threat. Chosen by destiny, our heroes quickly discover they are the only ones who can save the planet. But to do so, they will have to overcome their real-life issues and before it’s too late, band together as the Power Rangers.
## 7127 Set in Stalin-era Soviet Union, a disgraced MGB agent is dispatched to investigate a series of child murders -- a case that begins to connect with the very top of party leadership.
## 7128 A meditation on love and its various incarnations, set within a community of friends in Oregon. It is described as an exploration of the magical, mysterious and sometimes painful incarnations of love.
## 7129 Set in the year 2024 in post-apocalyptic America, 18-year old Vic and his telepathic dog, Blood, are scavengers in the desolate wilderness ravaged by World War IV, where survivors must battle for food and shelter in the desert-like wasteland. Vic and Blood eke out a meager existence, foraging for food and fighting gangs of cutthroats.
## 7130 Samuel, a boy who lives with his mother Elena in Villa dei Laghi, an isolated manor surrounded by woods, feels trapped in the family routine, growing up seemingly protected, but unsatisfied and restless.
## 7131 For Pablo Escobar family is everything. When young surfer Nick falls for Escobar's niece, Maria, he finds his life on the line when he's pulled into the dangerous world of the family business.
## 7132 The popular cartoon cat and mouse are thrown into a feature film. The story has the twosome trying to help an orphan girl who is being berated and exploited by a greedy guardian.
## 7133 Adrienne is trying to decide whether to stay in her unhappy marriage or not, and her life changes when Paul, a doctor who is travelling to reconcile with his estranged son, checks into an inn where she is staying.
## 7134 In this sequel to the 1980 classic, two children are stranded on a beautiful island in the South Pacific. With no adults to guide them, the two make a simple life together and eventually become tanned teenagers in love.
## 7135 To end an apocalyptic war and save her daughter, a reluctant soldier embarks on a desperate mission to cross a frozen sea carrying a top-secret cargo.
## 7136 An Alaska State Trooper partners with a young woman who escaped the clutches of serial killer Robert Hansen to bring the murderer to justice. Based on actual events.
## 7137 Residents of a coastal town learn, with deadly consequences, the secret shared by the two mysterious women who have sought refuge at a local resort.
## 7138 Henry is a playboy who has no idea that he is the father of a beautiful, cute girl out of a One-night-Stand. Her mother left the daughter in front of Henry door after her husband realized after 8 years of marriage that he is not the father so their relationship now is breaking up... By the way: Kokowääh, is how a German (in this case an 8 Year old child) that has never heard the dish before - would pronounce "Coq Au Vin" (chicken in a wine sauce).
## 7139 A boating accident off the coast of Spain sends Paul and his girlfriend Barbara to the decrepit fishing village of Imboca. As night falls, people start to disappear and things not quite human start to appear. Paul is pursued by the entire town. Running for his life, he uncovers Imboca's secret..they worship Dagon, a monstrous god of the sea...and Dagon's unholy offspring are on the loose...
## 7140 A crew of international astronauts are sent on a private mission to Jupiter's fourth moon.
## 7141 Two recently laid-off men in their 40s try to make it as interns at a successful Internet company where their managers are in their 20s.
## 7142 Legendary secrets are revealed as Aladdin and his friends—Jasmine, Abu, Carpet and, of course, the always entertaining Genie—face all sorts of terrifying threats and make some exciting last-minute escapes pursuing the King Of Thieves and his villainous crew.
## 7143 Three teenage girls come of age while working at a pizza parlor in Mystic, Connecticut.
## 7144 A portrait of union leader James R. Hoffa, as seen through the eyes of his friend, Bobby Ciaro. The film follows Hoffa through his countless battles with the RTA and President Roosevelt.
## 7145 After discovering that his father is at death's door, Mr. Miyagi sets out to Japan, to see him with Daniel. Upon arriving, Miyagi must confront an old rival. Meanwhile, Daniel encounters a new love, and some new enemies.
## 7146 The quiet life of a terrier named Max is upended when his owner takes in Duke, a stray whom Max instantly dislikes.
## 7147 This movie stars Barbie as a teenage girl, trying to deal with crushes, rivals and friendship as she tries to achieve her dream of working as a news anchor for her school's TV station. She doesn't always make the right decisions, but she's a nice enough character and considerably less "perfect" than she is portrayed in her other films.
## 7148 A discount store clerk strikes up an affair with a stock boy who considers himself the incarnation of Holden Caulfield.
## 7149 Zed is an American vault-cracker who travels to Paris to meet up with his old friend Eric. Eric and his gang have planned to raid the only bank in the city which is open on Bastille day. After offering his services, Zed soon finds himself trapped in a situation beyond his control when heroin abuse, poor planning and a call-girl named Zoe all conspire to turn the robbery into a very bloody siege.
## 7150 An eclectic foursome of aspiring teenage witches get more than they bargained for as they lean into their newfound powers.
## 7151 In Japan's Aokigahara Forest, a troubled teacher meets a mysterious lost stranger who takes him on a life-changing journey of love and redemption.
## 7152 A depressed housewife who learns her husband was killed in a car accident the day previously, awakens the next morning to find him alive and well at home, and then awakens the day after to a world in which he is still dead.
## 7153 Four thirtysomething university students share a flat in Florence: Leonardo pursues beautiful Letizia, her brother Rocco works night shifts to pay for his rent, Bruno has to graduate to inherit his father-in-law's business (while cheating on his wife with her sister), and Pino dreams of becoming a stand-up comedian.
## 7154 An officially "dead" cop is trained to become an extraordinary unique assassin in service of the U.S. President.
## 7155 The story of the Arthurian legend, based on the 'Sarmatian hypothesis' which contends that the legend has a historical nucleus in the Sarmatian heavy cavalry troops stationed in Britain, and that the Roman-British military commander, Lucius Artorius Castus is the historical person behind the legend.
## 7156 On his sprawling country estate, an aging writer matches wits with the struggling actor who has stolen his wife's heart.
## 7157 While grieving for the loss of their mother, the Connolly sisters suddenly find they have a crime to cover up, leading them deep into the underbelly of their salty Maine fishing village.
## 7158 A crew from a paranormal reality television show lock themselves in a haunted psychiatric hospital. They search for evidence of paranormal activity as they shoot what ends up becoming their final episode.
## 7159 When a devious plot separates CIA agent Peter Sandza from his son, Robin, the distraught father manages to see through the ruse. Taken because of his psychic abilities, Robin is being held by Ben Childress, who is studying people with supernatural powers in hopes of developing their talents as weapons. Soon Peter pairs up with Gillian, a teen who has telekinesis, to find and rescue Robin.
## 7160 When diabolical genius Dr. Evil travels back in time to steal superspy Austin Powers's ‘mojo,’ Austin must return to the swingin' '60s himself - with the help of American agent, Felicity Shagwell - to stop the dastardly plan. Once there, Austin faces off against Dr. Evil's army of minions to try to save the world in his own unbelievably groovy way.
## 7161 The story of a mild-mannered radio executive who strives to become the best stepdad ever to his wife's two children, but complications ensue when their freewheeling, freeloading real father arrives, forcing stepdad to compete for the affection of the kids.
## 7162 Leo falls in love with Beatrice, a slightly older high-school student who has leukemia.
## 7163 In a corporate-controlled future, an ultra-violent sport known as Rollerball represents the world, and one of its powerful athletes is out to defy those who want him out of the game.
## 7164 Tsui Chik tries to lead a quiet life as a librarian. However, he is really a former test subject for a highly secretive supersoldier project and the instructor of a special commando unit dubbed "701." The 701 squad is used for many government missions, but after one of the agents kills a team of policemen in an uncontrollable rage, the government decides to abort the project and eliminate all the subjects. Tsui Chik helped the surviving 701 agents flee the extermination attempt. Having escaped, Tsui Chik went separate ways from his team. Later, he discovers that the rest of the team were responsible for a violent crime spree that was beyond the capability of the local police. He sets out to stop them, donning a disguise and using the superhero alias of "Black Mask". Having lost the ability to feel pain due to the surgery performed on the super-soldiers by the military, Black Mask is almost invulnerable.
## 7165 Following a zombie outbreak in Las Vegas, a group of mercenaries take the ultimate gamble: venturing into the quarantine zone to pull off the greatest heist ever attempted.
## 7166 The story of a leading political man, suddenly telling “all the truth” after a serious illness and therefore overwhelming lifes of anyone surrounding him…
## 7167 An American soldier who had been killed during the Vietnam War is revived 25 years later by the military as a semi-android, UniSols, a high-tech soldier of the future. After the failure of the initiative to erase all the soldier's memories, he begins to experience flashbacks that are forcing him to recall his past.
## 7168 After the death of Lama Dorje, Tibetan Buddhist monks find three children — one American and two Nepalese — who may be the rebirth of their great teacher.
## 7169 In the not-too-distant future, two drifters traveling through the desert stumble across the biggest gold nugget ever found and the dream of immense wealth and greed takes hold. They hatch a plan to excavate their bounty, with one man leaving to secure the necessary tools while the other remains with the gold. The man who remains must endure harsh desert elements, ravenous wild dogs, and mysterious intruders, while battling the sinking suspicion that he has been abandoned to his fate.
## 7170 In 1980s Beirut, Mason Skiles is a former U.S. diplomat who is called back into service to save a colleague from the group that is possibly responsible for his own family's death. Meanwhile, a CIA field agent who is working under cover at the American embassy is tasked with keeping Mason alive and ensuring that the mission is a success.
## 7171 Two mermaid sisters, who end up performing at a nightclub, face cruel and bloody choices when one of them falls in love with a beautiful young man.
## 7172 A nurse, a paramedic, a gymnast and her coach offer a service for hire wherein they stand in for dead people by appointment, hired by relatives, friends or colleagues of the deceased, to assist with the grieving process.
## 7173 Balto and his daughter Aleu embark on a journey of adventure and self discovery.
## 7174 EC Comics-inspired weirdness returns with three tales. In the first, a wooden statue of a Native American comes to life to exact vengeance on the murderer of his elderly owners. In the second, four teens are stranded on a raft on a lake with a blob that is hungry. And in the third, a hit and run woman is terrorized by the hitchhiker she accidentally killed... or did she?
## 7175 A rogue prince reluctantly joins forces with a mysterious princess and together, they race against dark forces to safeguard an ancient dagger capable of releasing the Sands of Time – gift from the gods that can reverse time and allow its possessor to rule the world.
## 7176 A married workaholic, Michael Newman doesn't have time for his wife and children, not if he's to impress his ungrateful boss and earn a well-deserved promotion. So when he meets Morty, a loopy sales clerk, he gets the answer to his prayers: a magical remote that allows him to bypass life's little distractions with increasingly hysterical results.
## 7177 Disgruntled ex-CIA operative Strannix, his assistant Krill and their group of terrorists seize the battleship with nuclear blackmail in mind. They've planned for every contingency but ignore the ship's cook, former Navy SEAL Casey Ryback -- an error that could be fatal.
## 7178 A couple works hard to renovate their dream house and become landlords to pay for it. Unfortunately one of their tenants has plans of his own.
## 7179 Disaster strikes when a criminal mastermind reveals the identities of all active undercover agents in Britain. The secret service can now rely on only one man - Johnny English. Currently teaching at a minor prep school, Johnny springs back into action to find the mysterious hacker. For this mission to succeed, he’ll need all of his skills - what few he has - as the man with yesterday’s analogue methods faces off against tomorrow’s digital technology.
## 7180 Michele is thirteen year old, shy, unpopular at school, and in love with Stella. After wearing a costume for a Halloween party, he finds out that he's invisible.
## 7181 In 2002, cable news producer Kim Barker decides to shake up her routine by taking a daring new assignment in Kabul, Afghanistan. Dislodged from her comfortable American lifestyle, Barker finds herself in the middle of an out-of-control war zone. Luckily, she meets Tanya Vanderpoel, a fellow journalist who takes the shell-shocked reporter under her wing. Amid the militants, warlords and nighttime partying, Barker discovers the key to becoming a successful correspondent.
## 7182 Given the country's overcrowded prisons, the U.S. government begins to allow 12-hour periods of time in which all illegal activity is legal. During one of these free-for-alls, a family must protect themselves from a home invasion.
## 7183 Best friends Galleria, Chanel, Dorinda, and Aqua, A.K.A. the girl band "The Cheetahs," get the opportunity of a lifetime when they strut their way to Barcelona, Spain, to perform in an international music festival. Along the way, the "amigas Cheetahs" learn that, although their paths are not the same, they are lucky to have one another for the journey.
## 7184 Craig and his cousin Day Day have finally moved out of their parents' houses and into their own crib, working nights at a local mall as security guards. When their house is robbed on Christmas Eve they set out to track down the culprit.
## 7185 Three young men (Jacques, Pierre and Michel) share an apartment in Paris, and have many girlfriends and parties. Once, during a party, a friend of Jacques' tells him he has a quite compromising package to deliver, and asks him if he can leave it discreetly at their place. Jacques agrees and, as he works as a steward, flies away for a one month trip in Japan, telling Pierre and Michel about the package. Then, one of Jacques' former girlfriends drops a baby before their door, making Pierre and Michel believing it is the package they are waiting for. Their lives are then completely changed.
## 7186 Among normal humans live the "Others" possessing various supernatural powers. They are divided up into the forces of light and the forces of the dark, who signed a truce several centuries ago to end a devastating battle. Ever since, the forces of light govern the day while the night belongs to their dark opponents. In modern day Moscow the dark Others actually roam the night as vampires while a "Night Watch" of light forces, among them Anton, the movie's protagonist, try to control them and limit their outrage
## 7187 The film chronicles the rise and fall of the world's most feared drug lord Pablo Escobar and his volatile love affair with Colombia's most famous journalist Virginia Vallejo throughout a reign of terror that tore a country apart.
## 7188 The BFG is no ordinary bone-crunching giant. He is far too nice and jumbly. It's lucky for Sophie that he is. Had she been carried off in the middle of the night by the Bloodbottler, or any of the other giants—rather than the BFG—she would have soon become breakfast. When Sophie hears that the giants are flush-bunking off to England to swollomp a few nice little chiddlers, she decides she must stop them once and for all. And the BFG is going to help her!
## 7189 When her idolized twin sister Audrey dies in a car accident, Laurel decides to take her place. But, as she eases into the life she has always wanted, she must decide between continuing the lie or revealing herself.
## 7190 Greed, revenge, world dominance and high-tech terrorism – it's all in a day's work for Bond, who's on a mission to protect a beautiful oil heiress from a notorious terrorist. In a race against time that culminates in a dramatic submarine showdown, Bond works to defuse the international power struggle that has the world's oil supply hanging in the balance.
## 7191 A young woman with no strong religious beliefs, Frankie Paige begins having strange and violent experiences, showing signs of the wounds that Jesus received when crucified. When the Vatican gets word of Frankie's situation, a high-ranking cardinal requests that the Rev. Andrew Kiernan investigate her case. Soon Kiernan realizes that very sinister forces are at work, and tries to rescue Frankie from the entity that is plaguing her.
## 7192 Bridget Jones is becoming uncomfortable in her relationship with Mark Darcy. Apart from discovering that he's a conservative voter, she has to deal with a new boss, a strange contractor and the worst vacation of her life.
## 7193 Margot, a documentary filmmaker, heads to a secluded Amish community in the hopes of learning about her long-lost mother and extended family. Following a string of strange occurrences and discoveries, she comes to realize this community may not be what it seems.
## 7194 When a retiring assassin realizes that he is the target of a hit, he winds up back in the game going head to head with a gang of younger, ruthless killers.
## 7195 Unlucky in love, chemist Paul Matthews visits gypsy Madame Rosa for help. Quickly realizing he is a hopeless nerd, she gifts him with Love Potion No. 8, which makes anyone who wears it irresistible to the opposite sex for four hours. Paul and animal psychologist coworker Diane Farrow decide to test it on themselves. The awkward pair suddenly find themselves alluring to anyone they approach, but soon realize they are most attracted to each other.
## 7196 Young Jason Stillwell moves with his parents to Seattle, where local bullies harass them without mercy. Jason's father Tom does not believe in violence, so the family takes it on the chin. One day Jason enrolls in a martial arts class and quietly rises in rank to be a major contender. His mettle is tested in an international match against Ivan, a Russian champion.
## 7197 Set in a timeless mythical forest inhabited by fairies, goblins, unicorns and mortals, this fantastic story follows a mystical forest dweller, chosen by fate, to undertake a heroic quest. He must save the beautiful Princess Lili and defeat the demonic Lord of Darkness, or the world will be plunged into a never-ending ice age.
## 7198 While dining out with friends, Sy suggests the difficulty of separating comedy from tragedy. To illustrate his point, he tells his guests two parallel stories about Melinda ; both versions have the same basic elements, but one take on her state of affairs leans toward levity, while the other is full of anguish. Each story involves Melinda coping with a recent divorce through substance abuse while beginning a romantic relationship with a close friend's husband.
## 7199 A slacker and a career-driven woman accidentally conceive a child after a one-night stand. As they try to make the relationship work, they must navigate the challenges of parenthood and their differences in lifestyle and maturity.
## 7200 Special Agent Strahm is dead, and Detective Hoffman has emerged as the unchallenged successor to Jigsaw's legacy. However, when the FBI draws closer to Hoffman, he is forced to set a game into motion, and Jigsaw's grand scheme is finally understood.
## 7201 While on a dangerous mission to recover the historic Judas Chalice, Flynn is saved by Simone. But when double-crossed by a respected professor and ambushed by a ruthless gang, Flynn realizes Simone's secret, his true mission and a shocking discovery are all lying within a decaying New Orleans crypt.
## 7202 A psychotherapist journeys inside a comatose serial killer in the hopes of saving his latest victim.
## 7203 Renegade FBI agent Art Jeffries protects a nine-year-old autistic boy who has cracked the government's new "unbreakable" code.
## 7204 A successful businessman falls in love with the girl of his dreams. There's one big complication though; he's fallen hook, line and sinker for a mermaid.
## 7205 Inside a darkened house looms a column of TVs littered with VHS tapes, a pagan shrine to forgotten analog gods. The screens crackle and pop endlessly with monochrome vistas of static white noise permeating the brain and fogging concentration. But you must fight the urge to relax: this is no mere movie night. Those obsolete spools contain more than just magnetic tape. They are imprinted with the very soul of evil.
## 7206 In an alternate universe where twinned worlds have opposite gravities, a young man battles interplanetary prejudice and the laws of physics in his quest to reunite with the long-lost girl of his dreams in this visually stunning romantic adventure that poses the question: what if love was stronger than gravity?
## 7207 After seeking to live a normal life, Logan sets out to avenge the death of his girlfriend by undergoing the mutant Weapon X program and becoming Wolverine.
## 7208 A policewoman whose childhood friend disappeared in Patagonia years ago starts a new search to find answers, and soon finds her own life in danger.
## 7209 Soon after the rising young singer-songwriter Beau Williams gets involved with a fallen, emotionally unstable country star Kelly Canter, the pair embark on a career resurrection tour helmed by her husband/manager James and featuring a beauty queen-turned-singer Chiles Stanton. Between concerts, romantic entanglements and old demons threaten to derail them all.
## 7210 After a film student gets his belongings stolen, he meets a mobster bearing a startling resemblance to a certain cinematic godfather. Soon, he finds himself caught up in a caper involving endangered species and fine dining.
## 7211 Members of the Palisades Defense Corp. sales group arrive in Europe for a team-building exercise. A fallen tree blocks the route, and they must hike to their destination. However, a psychotic killer lurks in the woods, and he has a horrible fate in mind for each of the co-workers.
## 7212 Father-to-be Alan is shocked to learn that he was born a sextuplet. With his newfound brother Russell riding shotgun, the duo sets out on a hilarious journey to reunite with their remaining long-lost siblings.
## 7213 A misguided museum guard who loses his job and then tries to get it back at gunpoint is thrown into the fierce world of ratings-driven TV gone mad.
## 7214 A lowly pencil pusher working for MI7, Johnny English is suddenly promoted to super spy after Agent One is assassinated and every other agent is blown up at his funeral. When a billionaire entrepreneur sponsors the exhibition of the Crown Jewels—and the valuable gems disappear on the opening night and on English's watch—the newly-designated agent must jump into action to find the thief and recover the missing gems.
## 7215 Maverick Navy lieutenant Tom Dodge will never be a textbook officer, but he's a brilliant seaman who's always wanted to command a nuclear submarine — he's been given one last chance to clean up his record. Unfortunately, Admiral Graham, his nemesis, would rather sink the fleet than give Dodge his own boat. So, Graham stacks the deck against him and assigns Dodge to the Stingray, a diesel-powered WW2 submarine that can barely keep afloat. To make matters worse, Dodge's crew is a collection of maladjusted, mistake-prone misfits. Then, he's tagged the "enemy" in a crucial war game, and ordered to take on the U.S. Navy's best.
## 7216 To rescue his daughter, an unstable Special Forces veteran unleashes his inner beast as he pursues her kidnappers — and soon becomes a suspect himself.
## 7217 An affable underachiever finds out he's fathered 533 children through anonymous donations to a fertility clinic 20 years ago. Now he must decide whether or not to come forward when 142 of them file a lawsuit to reveal his identity.
## 7218 An ex-con takes a job driving a truck cross country. What he doesn't know is that the truck is filled with illegal weapons and now he must fight to survive and save his family.
## 7219 Four college students attend an Ivy League college where a riot breaks out over an “African-American” themed party thrown by white students. With tongue planted firmly in cheek, the film explores racial identity in 'post racial' America while weaving a story about forging one's unique path in the world.
## 7220 A home, a motorcar, servants, the latest fashions: the most eligible and most finicky bachelor in Paris offers them all to Gigi. But she, who's gone from girlish gawkishness to cultured glamour before our eyes, yearns for that wonderful something money can't buy.
## 7221 A tech worker with agoraphobia discovers recorded evidence of a violent crime but is met with resistance when she tries to report it. Seeking justice, she must do the thing she fears the most: leave her apartment.
## 7222 A group of Boston-bred gangsters set up shop in balmy Florida during the Prohibition era, facing off against the competition and the Ku Klux Klan.
## 7223 A mentally unhinged factory worker must decide whether to listen to his talking cat and become a killer, or follow his dog's advice to keep striving for normalcy.
## 7224 When a man's only son goes missing, he travels to the town where his ex-wife lives in search of answers. To play a man whose life is clouded by mystery, McAvoy will not be given a script of dialogue.
## 7225 A woman is involuntarily committed to a mental institution where she is confronted by her greatest fear.
## 7226 Following his defeat by Master Ip, Cheung Tin Chi tries to make a life with his young son in Hong Kong, waiting tables at a bar that caters to expats. But it's not long before the mix of foreigners, money, and triad leaders draw him once again to the fight.
## 7227 Chapman is an ex-marine in Brazil's slums, battling the yakuza outfit who attacked his sister and left her for dead.
## 7228 Five friends from 'Maaskantje' are getting fired because of the economic crisis. They decide that they won't pay for anything anymore.
## 7229 James Reese has a good job as an ambassador's aid in France, but his real passion is a side gig—working in a minor role in the CIA. He would love to be a full-fledged agent and can't believe his luck when he lands an assignment with Charlie Wax. Trigger-happy Charlie soon has James crying for his desk job, but when he learns that the same guys they're trying to catch are after him, James realises that Charlie may be his only hope of survival.
## 7230 Arn, the son of a high-ranking Swedish nobleman is educated in a monastery and sent to the Holy Land as a knight templar to do penance for a forbidden love.
## 7231 As a police officer investigates the gruesome murder of her colleague, she discovers that a mysterious supernatural force is behind it.
## 7232 During the Civil War in 17th-Century England, a small group of deserters flee from a raging battle through an overgrown field. They are captured by an alchemist, who forces the group to aid him in his search to find a hidden treasure that he believes is buried in the field. Crossing a vast mushroom circle, which provides their first meal, the group quickly descend into a chaos of arguments, fighting and paranoia, and, as it becomes clear that the treasure might be something other than gold, they slowly become victim to the terrifying energies trapped inside the field.
## 7233 Bound by a shared destiny, a bright, optimistic teen bursting with scientific curiosity and a former boy-genius inventor jaded by disillusionment embark on a danger-filled mission to unearth the secrets of an enigmatic place somewhere in time and space that exists in their collective memory as "Tomorrowland."
## 7234 Architect/vigilante Paul Kersey arrives back in New York City and is forcibly recruited by a crooked police chief to fight street crime caused by a large gang terrorizing the neighborhoods.
## 7235 The evil Jafar escapes from the magic lamp as an all-powerful genie, ready to plot his revenge against Aladdin. From battling elusive villains atop winged horses, to dodging flames inside an exploding lava pit, it's up to Aladdin - with Princess Jasmine and the outrageously funny Genie by his side - to save the kingdom once and for all.
## 7236 A brain surgeon tries to end his unhappy marriage to spend more time with a disembodied brain.
## 7237 Set in a world where superheroes are commonly known and accepted, young Will Stronghold, the son of the Commander and Jetstream, tries to find a balance between being a normal teenager and an extraordinary being.
## 7238 Hardened criminal Maggie Hayward's consistent violence, even in police custody, ends in the execution chamber. However, top-secret US government agent 'Bob' arranges a staged death, so Maggie can be elaborately trained as a phantom killer and subdued into obedience.
## 7239 Terrorists hijack a 747 inbound to Washington D.C., demanding the release of their imprisoned leader. Intelligence expert David Grant (Kurt Russell) suspects another reason and he is soon the reluctant member of a special assault team that is assigned to intercept the plane and hijackers.
## 7240 On a long-awaited trip to Europe, a New York City cop and his hairdresser wife scramble to solve a baffling murder aboard a billionaire's yacht.
## 7241 When ten-year-old Lewis is suddenly orphaned, he is sent to live with his Uncle Jonathan in a creaky (and creepy) old mansion with a mysterious ticking noise that emanates from the walls. Upon discovering that his uncle is a warlock, Lewis begins learning magic, but when he rebelliously resurrects an evil warlock he must find the secret of the house and save the world from destruction.
## 7242 Parapsychologist Elise Rainier and her team travel to Five Keys, NM, to investigate a man’s claim of a haunting. Terror soon strikes when Rainier realizes that the house he lives in was her family’s old home.
## 7243 In a time of starvation, a survivalist lives off a small plot of land hidden deep in forest. When two women seeking food and shelter discover his farm, he finds his existence threatened.
## 7244 When a magical artifact is lifted from his library, a meek librarian sets out to ensure its safe return.
## 7245 An ex-cop and his family are the target of an evil force that is using mirrors as a gateway into their home.
## 7246 Two best friends become rivals when their respective weddings are accidentally booked for the same day.
## 7247 As his wedding day approaches, Ben heads to Miami with his soon-to-be brother-in-law James to bring down a drug dealer who's supplying the dealers of Atlanta with product.
## 7248 Yann Madec, long-time best mate of Frank Drevil, the star skipper of Global System Insurance, sees his dream come true when he replaces the injured Frank at the last minute for the start of the Vendée Globe. Nine days into the race and leading, Yann is forced to stop in Cape Verde to repair his broken center-board. Back in the race, Yann discovers a stowaway on board, a Senegalese teenager named Moussa. Faced with the risk of disqualification because of Moussa’s presence, Yann hesitates… Their encounter leads to the most unforgettable round-the-world race ever.
## 7249 Guillermo del Toro presents Mama, a supernatural thriller that tells the haunting tale of two little girls who disappeared into the woods the day that their parents were killed. When they are rescued years later and begin a new life, they find that someone or something still wants to come tuck them in at night.
## 7250 Kassie is a smart, fun-loving single woman who, despite her neurotic best friend Wally’s objections, decides it’s time to have a baby – even if it means doing it herself…with a little help from a charming sperm donor. But, unbeknownst to her, Kassie’s plans go awry because of a last-minute switch that isn’t discovered until seven years later… when Wally gets acquainted with Kassie’s cute – though slightly neurotic – son.
## 7251 A group of cold-blooded killers find themselves trapped on an alien planet to be hunted by extraterrestrial Predators.
## 7252 Far from Chicago, hairdresser Gina Norris has relocated to Atlanta with her daughter and has quickly established herself as a rare talent in her profession. But after repeatedly butting heads with her shady, over-the-top boss, Jorge, Norris sets out to create her own salon -- even snagging a few of Jorge's employees and clients. Now, Jorge will do anything to shut her down.
## 7253 What Jake Vig doesn't know just might get him killed. A sharp and polished grifter, Jake has just swindled thousands of dollars from the unsuspecting Lionel Dolby with the help of his crew. It becomes clear that Lionel wasn't just any mark, he was an accountant for eccentric crime boss Winston King. Jake and his crew will have to stay one step ahead of both the criminals and the cops to finally settle their debt.
## 7254 Disgraced ex-England football captain, Danny 'Mean Machine' Meehan, is thrown in jail for assaulting two police officers. He keeps his head down and has the opportunity to forget everything and change the lives of the prisoners. When these prisoners have the chance to put one over the evil guards during a prison football match, Danny takes the lead.
## 7255 A reformed sociopath heads to a remote island after the death of his brother. Soon after his arrival, the island falls under siege from a deadly gang of mercenaries, and when he discovers their role in his brother’s demise, he sets out on a relentless quest for vengeance.
## 7256 Greg Heffley is headed for big things, but first he has to survive the scariest, most humiliating experience of any kid’s life – middle school! That won’t be easy, considering he’s surrounded by hairy-freckled morons, wedgie-loving bullies and a moldy slice of cheese with nuclear cooties!
## 7257 A caretaker at a summer camp is burned when a prank goes tragically wrong. After several years of intensive treatment at hospital, he is released back into society, albeit missing some social skills. What follows is a bloody killing spree with the caretaker making his way back to his old stomping ground to confront one of the youths that accidently burned him.
## 7258 A police chief in the war-torn streets of Los Angeles discovers that an extraterrestrial creature is hunting down residents - and that he is the next target.
## 7259 When twin brothers arrive home to find their mother’s demeanor altered and face covered in surgical bandages, they begin to suspect the woman beneath the gauze might not be their mother.
## 7260 When a U.S. Marine returns home from Afghanistan, he finds that the place he once called home is no better than the battlefields he fought on overseas. Accompanied by his best friend, he searches desperately for the whereabouts of his estranged son and wife. In their search, the two intercept a man carrying vital information about his family.
## 7261 When his daughter is murdered, William Duncan takes the law into his own hands, setting out on a quest for retribution. After killing the street thug responsible for her death, he finds himself in the middle of a war with the thug's brother, father, and their gang, who are equally hell-bent on getting even. What ensues is a tense back-and-forth game of vengeance. By the end, William comes to find that the quest for revenge never has a winner.
## 7262 Two high school filmmakers decide to create the illusion of a haunting on an unsuspecting neighbor.
## 7263 The action-packed and captivating tale of Dee Renjie's beginnings in the Imperial police force. His very first case, investigating reports of a sea monster terrorizing the town, reveals a sinister conspiracy of treachery and betrayal, leading to the highest reaches of the Imperial family.
## 7264 A music group and a journalist cross the region of Basilicata by foot to attend a music festival.
## 7265 After his friend is killed by her abusive father, the new kid in town attempts to save her by implanting a robotic microchip into her brain.
## 7266 Terminal Island, New York: 2020. Overcrowding in the US penal system has reached a breaking point. Prisons have been turned over to a monolithic Weyland Corporation, which sees jails full of thugs as an opportunity for televised sport. Adrenalized inmates, a global audience hungry for violence and a spectacular, enclosed arena come together to form the 'Death Race', the biggest, most brutal event.
## 7267 A computer specialist is sued for sexual harassment by a former lover turned boss who initiated the act forcefully, which threatens both his career and his personal life.
## 7268 The tale of two brothers with serious financial woes. When a third party proposes they turn to crime, things go bad and the two become enemies.
## 7269 A rush-hour fender-bender on New York City's crowded FDR Drive, under most circumstances, wouldn't set off a chain reaction that could decimate two people's lives. But on this day, at this time, a minor collision will turn two complete strangers into vicious adversaries. Their means of destroying each other might be different, but their goals, ultimately, will be the same: Each will systematically try to dismantle the other's life in a reckless effort to reclaim something he has lost.
## 7270 A group of hobos begin melting into multicolored piles of goo after drinking sixty-year-old liquor. At the same time, the psychotic Vietnam War vet who rules the hobo camp snaps and begins killing at random. Two brothers set out to stop the liquor and the killer.
## 7271 Paul Kersey is again a vigilante trying to find five punks who murdered his housekeeper and daughter in Los Angeles.
## 7272 London high-society mouse, Roddy is flushed down the toilet by Sid, a common sewer rat. Hang on for a madcap adventure deep in the sewer bowels of Ratropolis, where Roddy meets the resourceful Rita, the rodent-hating Toad and his faithful thugs, Spike and Whitey.
## 7273 An ambitious reporter probes the reasons behind the sudden split of a 1950s comedy team.
## 7274 Four lifelong friends decide that their lives could change by becoming nasty and reading Fifty Shades of Grey in their monthly book club to get inspiration on how to handle sexual pleasure at an elderly age.
## 7275 Valentino and Salvo, unemployed and in search of fortune and recommendation, leave Palermo for Valentino’s home town, Monteforte, where they will try to survive the Italian crisis by opening some sort of hospice.
## 7276 After 16-year-old Alice Palmer drowns in a local dam, her family experiences a series of strange, inexplicable events centred in and around their home. Unsettled, the Palmers seek the help of psychic and parapsychologist, who discovers that Alice led a secret, double life. At Lake Mungo, Alice's secret past emerges.
## 7277 A football player and his mates travel to the planet Mongo and find themselves fighting the tyranny of Ming the Merciless to save Earth.
## 7278 After failing to apprehend the terrorist behind a Paris attack that claimed dozens of lives, CIA agent Alice Racine is forced to live in London as a caseworker. Her mentor unexpectedly calls her back into action when the CIA discovers that another attack is imminent. Alice soon learns that the classified information she's uncovered has been compromised...
## 7279 A rogue submarine captain pulls together a misfit crew to go after a sunken treasure rumored to be lost in the depths of the Black Sea. As greed and desperation take control on-board their claustrophobic vessel, the increasing uncertainty of the mission causes the men to turn on each other to fight for their own survival.
## 7280 Dr. Martin Blake, who has spent his life looking for respect, meets an 18-year-old patient named Diane, suffering from a kidney infection, and gets a much-needed boost of self-esteem. However, when her health starts improving, Martin fears losing her, so he begins tampering with her treatment, keeping Diane sick and in the hospital right next to him.
## 7281 While conducting a seance during a Halloween party, high-school seniors unlock the demon that remains locked in the crematorium.
## 7282 World War II, 1943. Mallory and Miller, the heroes who destroyed the guns of Navarone, are sent to Yugoslavia in search of a ghost from the past.
## 7283 In an ensemble film about easy money, greed, manipulation and bad driving, a Las Vegas casino tycoon entertains his wealthiest high rollers -- a group that will bet on anything -- by pitting six ordinary people against each other in a wild dash for $2 million jammed into a locker hundreds of miles away. The tycoon and his wealthy friends monitor each racer's every move to keep track of their favorites. The only rule in this race is that there are no rules.
## 7284 When their car breaks down, a couple on the run headed southbound for a fresh start in the Sunshine State break into a nearby house looking for a new set of wheels. What they find instead is a dark secret, and a sweet-as-pie pair of homeowners who will do anything to keep it from getting out.
## 7285 Annie is a young, happy foster kid who's also tough enough to make her way on the streets of New York in 2014. Originally left by her parents as a baby with the promise that they'd be back for her someday, it's been a hard knock life ever since with her mean foster mom Miss Hannigan. But everything's about to change when the hard-nosed tycoon and New York mayoral candidate Will Stacks—advised by his brilliant VP and his shrewd and scheming campaign advisor—makes a thinly-veiled campaign move and takes her in. Stacks believes he's her guardian angel, but Annie's self-assured nature and bright, sun-will-come-out-tomorrow outlook on life just might mean it's the other way around.
## 7286 Four lost souls—a disgraced TV presenter, a foul-mouthed teen, an isolated single mother, and a solipsistic muso—decide to end their lives on the same night, New Year's Eve. When this disillusioned quartet of strangers meet unintentionally at the same suicide hotspot, a London high-rise with the well-earned nickname Topper's Tower, they mutually agree to call off their plans for six weeks, forming an unconventional, dysfunctional family. They become media sensations as the Topper House Four and search together for the reasons to keep on living.
## 7287 Those supersucking desert creatures are back --- and this time they're south of the border. As the creatures worm their way through the oil fields of Mexico, the only people who can wrangle them are veteran Earl Bassett and survivalist Burt Gummer. Add to that team a young punk out for cash and a fearless scientist, and the critters don't stand a chance.
## 7288 Graced with a velvet voice, 21-year-old Violet Sanford heads to New York to pursue her dream of becoming a songwriter only to find her aspirations sidelined by the accolades and notoriety she receives at her "day" job as a barmaid at Coyote Ugly. The "Coyotes" as they are affectionately called tantalize customers and the media alike with their outrageous antics, making Coyote Ugly the watering hole for guys on the prowl.
## 7289 A group of kids discover one of the drums containing a rotting corpse and release the 2-4-5 Trioxin gas into the air, causing the dead to once again rise from the grave and seek out brains.
## 7290 When Andy’s mother is admitted to a psychiatric hospital, the young boy is placed in foster care, andChucky, determined to claim Andy's soul, is not far behind.
## 7291 When a happily married family man, who would never consider an affair, meets a beautiful woman in red, he is totally infatuated and desperate to make her acquaintance. However, as he tries out various schemes to sneak out to meet her, he realizes that adultery is not quite as easy as it looks.
## 7292 Carter, who awakens two months into a deadly pandemic originating from the DMZ that has already devastated US and North Korea. He who has no recollections of his past finds a mysterious device in his head, and a lethal bomb in his mouth. A voice in his ears gives him orders to avoid getting killed and he's thrown into a mysterious operation while the CIA and North Korean coup chase him close.
## 7293 A young man who arrives at a remote island finds himself trapped in a battle for his life.
## 7294 Scooby-Doo and the gang are on the case when a mysterious lake monster starts scaring the guests at a summer resort in Erie Point, where Fred, Daphne, Velma and Shaggy have taken on seasonal jobs to pay for a barn they accidentally burned down. But in addition to sneaking suspicions, there's some romance in the air.
## 7295 A provocative and edgy radio host must play a dangerous game of cat and mouse with a mysterious caller who's kidnapped his family and is threatening to blow up the whole station.
## 7296 Two mischievous kids hypnotize their mean elementary school principal and turn him into their comic book creation, the kind-hearted and elastic-banded Captain Underpants.
## 7297 Six years ago NASA discovered the possibility of alien life within our solar system. A probe was launched to collect samples, but crashed upon re-entry over Central America. Soon after, new life forms began to appear and half of Mexico was quarantined as an infected zone. Today, the American and Mexican military still struggle to contain "the creatures," while a journalist agrees to escort a shaken tourist through the infected zone in Mexico to the safety of the U.S. border.
## 7298 Mater, the rusty but trusty tow truck from Cars, spends a day in Radiator Springs playing scary pranks on his fellow townsfolk. That night at Flo's V8 Café, the Sheriff tells the story of the legend of the Ghostlight, and as everyone races home Mater is left alone primed for a good old-fashioned scare.
## 7299 Molly Mahoney is the awkward and insecure manager of Mr. Magorium's Wonder Emporium—the strangest, most fantastic and most wonderful toy store in the world. After Mr. Magorium bequeaths the store to her, a dark and ominous change begins to take over the once-remarkable Emporium.
## 7300 An extended family reunites after a long time to celebrate the 50th wedding anniversary of their grandparents on an idyllic island. However, they get stranded there for longer than they expected, causing secrets and long-held grudges to break out.
## 7301 A man with a split personality fools his small town into believing his two alter egos are a man and a wife, although a struggling young mother holds the key to his past and sparks a battle between the two personalities.
## 7302 Ex-government operative Bryan Mills finds his life is shattered when he's falsely accused of a murder that hits close to home. As he's pursued by a savvy police inspector, Mills employs his particular set of skills to track the real killer and exact his unique brand of justice.
## 7303 For the past two years, high-school security guard Ben has been trying to show decorated APD detective James that he's more than just a video-game junkie who's unworthy of James' sister, Angela. When Ben finally gets accepted into the academy, he thinks he's earned the seasoned policeman's respect and asks for his blessing to marry Angela. Knowing that a ride along will demonstrate if Ben has what it takes to take care of his sister, James invites him on a shift designed to scare the hell out of the trainee. But when the wild night leads them to the most notorious criminal in the city, James will find that his new partner's rapid-fire mouth is just as dangerous as the bullets speeding at it.
## 7304 Working-class father John Crowley is finally on the fast track to corporate success when his two young children are diagnosed with Pompe disease—a condition that prevents the body from breaking down sugar. With the support of his wife, John ditches his career and teams with unconventional specialist, Dr. Robert Stonehill to found a bio-tech company and develop a cure in time to save the lives of his children. As Dr. Stonehill works tirelessly to prove the theories that made him the black sheep of the medical community, a powerful bond is forged between the two unlikely allies.
## 7305 Just when George Banks has recovered from his daughter's wedding, he receives the news that she's pregnant ... and that George's wife is expecting too. He was planning on selling their home, but that's a plan that—like George—will have to change with the arrival of both a grandchild and a kid of his own.
## 7306 An American girl, Daphne, heads to Europe in search of the father she's never met. But instead of finding a British version of her bohemian mother, she learns the love of her mom's life is an uptight politician. The only problem now is that her long-lost dad is engaged to a fiercely territorial social climber with a daughter who makes Daphne's life miserable.
## 7307 In a sleepy bedroom community of LA's San Fernando Valley, the murder of a professional athlete by two hit men sets into motion a chain of events that puts the mundane lives of a dozen residents on a collision course. This clever tale tells the story of two hit men, a mistress, a nurse, a vindictive ex-wife, a wealthy art dealer and his lovelorn assistant, a suicidal writer and his dog, and a bitter cop and his partner.
## 7308 The Toro cheerleading squad from Rancho Carne High School in San Diego has got spirit, spunk, sass and a killer routine that's sure to land them the national championship trophy for the sixth year in a row. But for newly-elected team captain Torrance, the Toros' road to total cheer glory takes a shady turn when she discovers that their perfectly-choreographed routines were in fact stolen.
## 7309 The story of the early, murderous roots of the cannibalistic killer, Hannibal Lecter – from his hard-scrabble Lithuanian childhood, where he witnesses the repulsive lengths to which hungry soldiers will go to satiate themselves, through his sojourn in France, where as a med student he hones his appetite for the kill.
## 7310 For a long time, Natalie, an Australian architect living in New York City, had always believed that what she had seen in rom-coms is all fantasy. But after thwarting a mugger at a subway station only to be knocked out while fleeing, Natalie wakes up and discovers that her life has suddenly become her worst nightmare—a romantic comedy—and she is the leading lady.
## 7311 Valencia, Spain. On a rainy morning, six armed men in disguise assault a bank. But what seemed like an easy heist, quickly goes wrong with nothing unfolding as planned, and mistrust quickly builds between the two leaders of the gang.
## 7312 Four young women continue the journey toward adulthood that began with "The Sisterhood of the Traveling Pants." Now three years later, these lifelong friends embark on separate paths for their first year of college and the summer beyond, but remain in touch by sharing their experiences with each other.
## 7313 In 2013 there are no highways, no I-ways, no dreams of a better tomorrow, only scattered survivors across what was once the Unites States. Into this apocalyptic wasteland comes an enigmatic drifter with a mule, a knack for Shakespeare and something yet undiscovered: the power to inspire hope.
## 7314 Two female scam artists, one low rent and the other high class, compete to swindle a naïve tech prodigy out of his fortune. A remake of the 1988 comedy "Dirty Rotten Scoundrels."
## 7315 November 22nd, 1963 was a day that changed the world forever — when young American President John F. Kennedy was assassinated in Dallas, Texas. This film follows, almost in real time, a handful of individuals forced to make split-second decisions after an event that would change their lives and forever alter the world’s landscape.
## 7316 Brazil is a contract killer, willing to take any job if the price is right. Flint left the assassin game when a ruthless drug dealer’s brutal attack left his wife in a coma. When a contract is put out on the same coldblooded drug dealer, both Brazil and Flint want him dead – one for the money, the other for revenge. With crooked Interpol agents and vicious members of the criminal underworld hot on their trail, these two assassins reluctantly join forces to quickly take out their target before they themselves are terminated.
## 7317 Liz Gilbert had everything a modern woman is supposed to dream of having – a husband, a house and a successful career – yet like so many others, she found herself lost, confused and searching for what she really wanted in life. Newly divorced and at a crossroads, Gilbert steps out of her comfort zone, risking everything to change her life, embarking on a journey around the world that becomes a quest for self-discovery. In her travels, she discovers the true pleasure of nourishment by eating in Italy, the power of prayer in India and, finally and unexpectedly, the inner peace and balance of true love in Bali.
## 7318 After retrieving the Crystal Skull in Utah, Flynn Carsen receives a map in the mail with the secret location of King Solomon's Mines. When the scroll is stolen, Judson explains the power of the Key of Solomon's book and assigns Flynn to retrieve the map. The map is useless without the legend piece to decipher it, which is located in Volubilis near the Roman ruins in Morocco. Flynn heads to Casablanca to the ruins where he is chased by a group of mercenaries leaded by General Samir. They too want to find the location of King Solomon's mines. Flynn teams-up with Professor Emily Davenport working in the dig and they escape from General Samir and his men. While traveling to Gedi, they save the local Jomo from death and the trio faces a dangerous journey through the wild Africa.
## 7319 Through five stories, the movie addresses sex and love: Paco and Ana are a marriage looking for reactivate the passion of their sexual relations, long time unsatisfied; Jose Luis tries to recover the affections of his wife Paloma, sit down on a wheelchair after an accident which has limited her mobility; Mª Candelaria and Antonio are a marriage trying by all way to be parents, but she has the trouble that no get an orgasm when make love with him; Álex try to satisfy Natalia's fantasies, while she starts to doubt if he finally will ask her in marriage; and finally, Sandra is a single woman in a permanent searching for a man to fall in love. All them love, fear, live and explore their diverse sexual paraphilias and the different sides of sexuality, trying to find the road to happiness.
## 7320 The visionary dreams of three curious and adventuresome young boys become an exciting reality in Explorers, the action-fantasy from director Joe Dante, who combines keen humor, warmth and fantasy with unexpected twists. In their makeshift laboratory, the boys use an amazing discovery and their ingenuity to build their own spaceship and launch themselves on a fantastic interplanetary journey.
## 7321 A cabdriver and a cop race to Paris to rescue a love interest and the Japanese minister of defense from kidnappers.
## 7322 A small but brave donkey and his animal friends become the unsung heroes of the greatest story ever told, the first Christmas.
## 7323 Daniel Lugo, manager of the Sun Gym in 1990s Miami, decides that there is only one way to achieve his version of the American dream: extortion. To achieve his goal, he recruits musclemen Paul and Adrian as accomplices. After several failed attempts, they abduct rich businessman Victor Kershaw and convince him to sign over all his assets to them. But when Kershaw makes it out alive, authorities are reluctant to believe his story.
## 7324 While attending a party at James Franco's house, Seth Rogen, Jay Baruchel and many other celebrities are faced with the apocalypse.
## 7325 Warsaw, Poland, during the Cuban Missile Crisis, 1962. Josh Mansky, a troubled math genius and former US chess champion, is recruited to hold a dangerous public match against the Soviet champion, while playing the deadly game of espionage hidden in the darkest shadows of a hostile territory.
## 7326 A logger defends his family from a group of dangerous drug runners.
## 7327 New York City is full of lonely hearts seeking the right match, and what Alice, Robin, Lucy, Meg, Tom and David all have in common is the need to learn how to be single in a world filled with ever-evolving definitions of love.
## 7328 Attorney Anthony Keane agrees to represent Londonite Mrs. Paradine, who has been fingered in her husband's murder. From the start, the married lawyer is drawn to the enigmatic beauty, and he begins to cast about for a way to exonerate his client. Keane puts the Paradine household servant on the stand, suggesting he is the killer. But Keane soon loses his way in the courtroom, and his half-baked plan sets off a stunning chain of events.
## 7329 Ben and a mysterious girl from his past must prevent an alien threat from destroying the world.
## 7330 Five men wake up in a locked-down warehouse with no memory of who they are. They are forced to figure out who is good and who is bad to stay alive.
## 7331 Hard-to-crack ex-CIA man Jack Byrnes and his wife Dina head for the warmer climes of Florida to meet the parents of their son-in-law-to-be, Greg Focker. Unlike their happily matched offspring, the future in-laws find themselves in a situation of opposites that definitely do not attract.
## 7332 While vacationing on the crowded beaches of Riccione, a group of teenagers becomes fast friends as they grapple with relationship issues and romance.
## 7333 Hotel night clerk Bart Bromley is a highly intelligent young man on the Autism spectrum. When a woman is murdered during his shift, Bart becomes the prime suspect. As the police investigation closes in, Bart makes a personal connection with a beautiful guest named Andrea, but soon realises he must stop the real murderer before she becomes the next victim.
## 7334 Celeste Talbert is the star of the long-running soap opera "The Sun Also Sets." With the show's ratings down, Celeste's ruthlessly ambitious co-star, Montana Moorehead, and the show's arrogant producer, David Seton Barnes, plot to aggravate her into leaving the show by bringing back her old flame, Jeffrey Anderson, and hiring her beautiful young niece, Lori Craven.
## 7335 During an emergency landing on a deserted island suddenly traumatized by antiauthoritarian education Lena Schneider (Josefine Preuss) together with the Turkish Super Macho Cem Öztürk (Elyas M'Barek) must fight for survival. After initially Cem macho repulsive acts on Lena, a jellyfish in the water and sand in a bikini, she recognizes the time the romantic core behind his cool facade. Meanwhile, meet also their parents, who obdurate psychologist Doris (Anna Stieblich) and Metin Öztürk (Adnan Maral) to work together to find their missing children. So both generations take an involuntary Turkish Basic Course for beginners.
## 7336 Four friends find themselves trapped in their small hometown after they discover their friends and neighbors going quickly and horrifically insane.
## 7337 Captain Red runs a hardy pirate ship with the able assistance of Frog, a dashing young French sailor. One day Capt. Red is captured and taken aboard a Spanish galleon, but thanks to his inventiveness, he raises the crew to mutiny, takes over the ship, and kidnaps the niece of the governor of Maracaibo. The question is, can he keep this pace up?
## 7338 Little Red Riding Hood: A classic story, but there's more to every tale than meets the eye. Before you judge a book by its cover, you've got to flip through the pages. In the re-telling of this classic fable, the story begins at the end of the tale and winds its way back. Chief Grizzly and Detective Bill Stork investigate a domestic disturbance at Granny's cottage, involving a karate-kicking Red Riding Hood, a sarcastic wolf and an oafish Woodsman.
## 7339 New York concierge Doug Ireland wants to go into business for himself and refurbish a hotel on Roosevelt Island, N.Y., but he needs an investor. With a few weeks left before his option on the site runs out, Doug agrees to help wealthy Christian Hanover conceal his affair with salesgirl Andy Hart from his wife. Despite his own attraction to Andy, Doug tries to stay focused on getting Christian to invest $3 million in his project.
## 7340 High school senior Tara is so painfully shy that she dreads speaking to anyone in the hallways or getting called on in class. But in the privacy of her bedroom with her iPod in hand, she rocks out -- doing mock broadcasts for Miami's hottest FM radio station, which happens to be owned by her stepfather. When a slot opens up at The SLAM, Tara surprises herself by blossoming behind the mike into confident, "Radio Rebel" -- and to everyone's shock, she's a hit!
## 7341 Bella once again finds herself surrounded by danger as Seattle is ravaged by a string of mysterious killings and a malicious vampire continues her quest for revenge. In the midst of it all, she is forced to choose between her love for Edward and her friendship with Jacob, knowing that her decision has the potential to ignite the ageless struggle between vampire and werewolf. With her graduation quickly approaching, Bella is confronted with the most important decision of her life.
## 7342 Belle, the Beast, Lumiere, Cogsworth and the rest of those zany castle residents use their imaginations to embark on three magical, storybook adventures. This direct-to-video anthology serves as a "sequel" to Disney's animated hit film. In "The Perfect World," Belle and the Beast learn about forgiveness. In "Fifi's Folly," Lumiere's girlfriend is jealous of his bond with Belle. And in "Broken Wing," the Beast learns to be kind to an injured bird.
## 7343 Seeking to raise his credibility as an actor and to land a role as a tough cop on a new show, Hollywood action star Nick Lang works a deal with New York City Police Capt. Brix, who by chance is one of his fans. Nick will be paired with detective Lt. John Moss and learn how to act like a real cop. But when Nick drives John crazy with questions and imitating him, he gets in the way of John's pursuit of a serial killer.
## 7344 The apparently comatose Michael Myers is being transferred from one hospital to another, but he wakes up when the ambulance crew talk about his surviving niece, Jamie. After slaughtering his attendants, Myers sets out to find his one living relative who is, fortunately, being cared for by a kind and resourceful foster sister named Rachel. Meanwhile, the ever-cautious Dr. Loomis remains on the killer's path.
## 7345 A tale about a happily married couple who would like to have children. Tracy teaches infants, Andy's a college professor. Things are never the same after she is taken to hospital and operated upon by Jed, a "know all" doctor.
## 7346 2038: George Almore is working on a true human-equivalent AI, and his latest prototype is almost ready. This sensitive phase is also the riskiest as he has a goal that must be hidden at all costs—being reunited with his dead wife.
## 7347 Paul is a down-on-his-luck screenwriter who picks up a drifter and offers him a place to stay. However, when the deranged stranger takes Paul hostage and forces him to write, their unhinged relationship brings buried secrets to light.
## 7348 Joe Enders is a gung-ho Marine assigned to protect a "windtalker" - one of several Navajo Indians who were used to relay messages during World War II because their spoken language was indecipherable to Japanese code breakers.
## 7349 A young married couple becomes stranded at an isolated motel and find hidden video cameras in their room. They realize that unless they escape, they'll be the next victims of a snuff film.
## 7350 Hundreds of years after humans have settled on Mars, Regulator Rogul and Lord Jens Maul, lead a force of Martians to Earth in order to conquer the planet. Queen Metaphor looks to the gay heroes aboard the spaceship Surprise -- Captain Kork, Mr. Spuck, and first engineer Schrotty
## 7351 Movie star Vincent Chase, together with his boys, Eric, Turtle and Johnny, are back…and back in business with super agent-turned-studio head Ari Gold. Some of their ambitions have changed, but the bond between them remains strong as they navigate the capricious and often cutthroat world of Hollywood.
## 7352 When their daughter is kidnapped by experienced nappers, the Jennings turn the tables on this seemingly foolproof plan.
## 7353 In the year 10,191, the world is at war for control of the desert planet Arrakis—the only place where the space-travel substance Melange 'Spice' can be found. But when one leader gives up control, it's only so he can stage a coup with some unsavory characters.
## 7354 The story of a married American couple who go to the San Sebastian Film Festival. They get caught up in the magic of the festival, the beauty and charm of Spain and the fantasy of movies. She has an affair with a brilliant French movie director, and he falls in love with a beautiful Spanish woman who lives there.
## 7355 A father and son go on the run after the dad learns his child possesses special powers.
## 7356 Barney, Christmas and the rest of the team comes face-to-face with Conrad Stonebanks, who years ago co-founded The Expendables with Barney. Stonebanks subsequently became a ruthless arms trader and someone who Barney was forced to kill… or so he thought. Stonebanks, who eluded death once before, now is making it his mission to end The Expendables -- but Barney has other plans. Barney decides that he has to fight old blood with new blood, and brings in a new era of Expendables team members, recruiting individuals who are younger, faster and more tech-savvy. The latest mission becomes a clash of classic old-school style versus high-tech expertise in the Expendables’ most personal battle yet.
## 7357 By the year 2056, an epidemic of organ failures has devastated the planet. The megacorporation GeneCo provides organ transplants on a payment plan - and those who can’t fulfill their plans have their organs repossessed. In the midst of this, a sickly teenager discovers a shocking secret about herself, her father, and their connection to GeneCo.
## 7358 A seasoned team of bank robbers, including Gordon Jennings, John Rahway, A.J., and brothers Jake and Jesse Attica successfully complete their latest heist and lead a life of luxury while planning their next job. When Ghost, a former member of their team, is released from prison he convinces the group to strike an armored car carrying $20 million. As the "Takers" carefully plot out their strategy and draw nearer to exacting the grand heist, a reckless police officer inches closer to apprehending the criminals.
## 7359 In London for his daughter's wedding, a struggling jingle-writer, Harvey Shine, misses his plane to New York, and thus loses his job. While drowning his sorrows in the airport pub, Harvey meets Kate, a British government worker stuck in an endless cycle of work, phone calls from her mother, and blind dates. A connection forms between the unhappy pair, who soon find themselves falling in love.
## 7360 A series of loosely connected skits that spoof news programs, commercials, porno films, kung-fu films, disaster films, blaxploitation films, spy films, mafia films, and the fear that somebody is watching you on the other side of the TV.
## 7361 Tommy Jarvis, tormented by the fear that Jason Voorhees isn't really dead, unwittingly resurrects the mass murderer for another bloody rampage.
## 7362 Anticipating a disaster, Antoine, a father, attends a survivalist training given by Alain in his autonomous hideout. In fear of a natural, economic or social crisis, the group trains to face the different possible apocalyptic scenarios. But the disaster they will experience will not be the one they predicted.
## 7363 This time, there's no wedding. No bachelor party. What could go wrong, right? But when the Wolfpack hits the road, all bets are off.
## 7364 The most prominent heads of state in the world begin gathering for a conference that could have a major impact on global politics. When MI-7 receives word that the Chinese premier has become the target of some high-powered killers, it falls on Johnny English to save the day. Armed with the latest high-tech weaponry and gadgets that would make even James Bond jealous, the once-disgraced agent uncovers evidence of a massive conspiracy involving some of the world's most powerful organisations, and vows to redeem his tarnished reputation by stopping the killers before they can strike.
## 7365 A quadriplegic man is given a trained monkey help him with every day activities, until the little monkey begins to develop feelings, and rage, against its new master and those who get too close to him.
## 7366 When the daughter of a psychiatrist is kidnapped, he's horrified to discover that the abductors' demand is that he break through to a post traumatic stress disorder suffering young woman who knows a secret..
## 7367 A Marine Colonel is brought to court-martial after ordering his men to fire on demonstrators surrounding the American embassy in Yemen.
## 7368 On the run from a lethal assassin, a wily con artist devises a scheme to hide out inside a small-town police station. However, when the hit man turns up at the precinct, an unsuspecting rookie cop finds herself caught in the crosshairs.
## 7369 An evil Mermaid falls in love with Marina's fiancé Roman and aims to keep him away from Marina in her Kingdom of Death under water. The Mermaid is a young woman who drowned a few centuries ago. Marina only has one week to overcome her fear of the dark water, to remain human in the deathly fight with the monsters and not to become one herself.
## 7370 Magically able to hear what men are thinking, a sports agent uses her newfound ability to turn the tables on her overbearing male colleagues.
## 7371 The newly married Elizabeth arrives with her new husband, the scientist Henry, at a magnificent house. He tells her that she can do there anything she pleases, except to enter a certain closed room.
## 7372 A group of college friends reunite for a trip to the forest, but encounter a menacing presence in the woods that's stalking them.
## 7373 A horror movie/buddy comedy about Joey and his undead friend Bart who comes back from the dead as a revenant: an articulate zombie that needs to drink blood to arrest the decomposition of his body.
## 7374 Arthur and his two children, Kathy and Bobby, inherit his Uncle Cyrus's estate: a glass house that serves as a prison to 12 ghosts. When the family, accompanied by Bobby's Nanny and an attorney, enter the house they find themselves trapped inside an evil machine "designed by the devil and powered by the dead" to open the Eye of Hell. Aided by Dennis, a ghost hunter, and his rival Kalina, a ghost rights activist out to set the ghosts free, the group must do what they can to get out of the house alive.
## 7375 After picking up a traumatized young hitchhiker, five friends find themselves stalked and hunted by a chainsaw-wielding killer and his family of equally psychopathic killers.
## 7376 Dangerously ill with a rare blood disorder, and determined to save others suffering his same fate, Dr. Michael Morbius attempts a desperate gamble. What at first appears to be a radical success soon reveals itself to be a remedy potentially worse than the disease.
## 7377 An ex-special services veteran, down on his luck and desperate for work, takes a job as a security guard at a run-down mall in a rough area of town. On his first night on the job, he opens the door to a distraught and desperate young girl who has fled the hijacking of a Police motorcade that was transporting her to testify as a witness in a trial. Hot on her heels is the psychopathic hijacker and his team of henchmen, who will stop at nothing to extract and eliminate the witness.
## 7378 A teenager suspects his new neighbour is a vampire. Unable to convince anyone, he tries to enlist the help of a self-proclaimed vampire hunter and magician.
## 7379 Following a terrible car crash, a woman awakes to find an enigmatic mortician preparing her for burial.
## 7380 Two not-too-bright party girls reinvent themselves for their high school reunion. Armed with a borrowed Jaguar, new clothes and the story of their success as the inventors of Post-It notes, Romy and Michele descend on their alma mater, but their façade crumbles quickly.
## 7381 A mysterious VHS tape leads a police S.W.A.T. team to the discovery of a sinister cult whose collection of pre-recorded material reveals a nightmarish conspiracy.
## 7382 When the Rugrats find themselves stranded on a deserted island, they meet the Thornberrys, a family who agrees to help them escape.
## 7383 A successful DJ named Darrel (Usher), managed to rescue a powerful mobster one night. In order to repay Darrell, the mobster, Frank Pacelli, gives him the task of protecting his daughter, Dolly (Chriqui)
## 7384 Top student Jane Ryan heads to Manhattan for a college-scholarship competition. Her rebellious twin Roxy Ryan goes along to crash a video shoot. But anything can happen - and does - in a romp involving a pursuing truant officer, a smuggler, hunkalicious guys and the girls' realization that when the chips are down, a sister can be the best friend of all.
## 7385 Joan Wilder is thrust back into a world of murder, chases, foreign intrigue... and love. This time out she's duped by a duplicitous Arab dignitary who brings her to the Middle East, ostensibly to write a book about his life. Of course, he's up to no good, and Joan is just another pawn in his wicked game. But Jack Colton and his sidekick Ralph show up to help our intrepid heroine save the day.
## 7386 Four teenagers at a British private school secretly uncover and explore the depths of a sealed underground hole created decades ago as a possible bomb shelter.
## 7387 Milan, Italy, 1967. Santo Russo, a boy of Calabrian origin, arrives north with his parents and younger brother to find better living conditions. Due to an absurd misunderstanding and his father's contempt, Santo ends up in prison, where he gets a “true education.” In 1978, he and his friends Slim and Mario embark on a 15-year criminal career, a successful and ruthless spiral of robberies, kidnappings, murders and heroin smuggling.
## 7388 A deep sea submersible pilot revisits his past fears in the Mariana Trench, and accidentally unleashes the seventy foot ancestor of the Great White Shark believed to be extinct.
## 7389 Barney Ross leads a band of highly skilled mercenaries including knife enthusiast Lee Christmas, a martial arts expert Yin Yang, heavy weapons specialist Hale Caesar, demolitionist Toll Road, and a loose-cannon sniper Gunner Jensen. When the group is commissioned by the mysterious Mr. Church to assassinate the dictator of a small South American island, Barney and Lee visit the remote locale to scout out their opposition and discover the true nature of the conflict engulfing the city.
## 7390 FBI Agents Bullit and Riper investigate the murder of a young dancer called Pamela Rose, found dead in her motel room in Bornsville, a small american town. Despite their differences, they must team up: the local police is hostile and they can only count on themselves to solve the crime. They meet Ginger, Pamela's best friend, and discover soon enough she knows more than she says.
## 7391 Rogue agent Gabriel Shear is determined to get his mitts on $9 billion stashed in a secret Drug Enforcement Administration account. He wants the cash to fight terrorism, but lacks the computer skills necessary to hack into the government mainframe. Enter Stanley Jobson, a n'er-do-well encryption expert who can log into anything.
## 7392 On a relentless quest to avenge his sister's murder, a man from Cape Town infiltrates a sprawling network of lowlifes and elites in Los Angeles.
## 7393 Dead bodies begin to turn up all over the city, each meeting their demise in a variety of grisly ways. All investigations begin to point the finger at deceased killer John Kramer.
## 7394 When Papi, Chloe, the pups, Uncle Pedro, and their owners move to a hotel, the smallest pup Rosa feels like she doesn't fit in, and Papi wants to make her feel better by showing her how special she is.
## 7395 The new found married bliss of Bella Swan and vampire Edward Cullen is cut short when a series of betrayals and misfortunes threatens to destroy their world.
## 7396 An ultraconservative police officer suffers a debilitating stroke and is assigned to a rehabilitative program that includes singing lessons - with the drag queen next door.
## 7397 Lindsay is stuck in the middle of her relationship with Ben and his passion for the Boston Red Sox.
## 7398 After a year apart - attending different schools, meeting different people - the guys rent a beach house and vow to make this the best summer ever. As it turns out, whether that will happen or not has a lot to do with the girls. Between the wild parties, outrageous revelations and yes, a trip to band camp, they discover that times change and people change, but in the end, it's all about sticking together.
## 7399 While diving in a remote French lake, a couple of YouTubers who specialise in underwater exploration videos discover a house submerged in the deep waters. What was initially a unique finding soon turns into a nightmare when they discover that the house was the scene of atrocious crimes. Trapped, with their oxygen reserves falling dangerously, they realise the worst is yet to come: they are not alone in the house.
## 7400 William Tell just wants to play cards. His spartan existence on the casino trail is shattered when he is approached by Cirk, a vulnerable and angry young man seeking help to execute his plan for revenge on a military colonel. Tell sees a chance at redemption through his relationship with Cirk. But keeping Cirk on the straight-and-narrow proves impossible, dragging Tell back into the darkness of his past.
## 7401 In 140 AD, twenty years after the unexplained disappearance of the entire Ninth Legion in the mountains of Scotland, young centurion Marcus Aquila arrives from Rome to solve the mystery and restore the reputation of his father, the commander of the Ninth. Accompanied only by his British slave Esca, Marcus sets out across Hadrian's Wall into the uncharted highlands of Caledonia - to confront its savage tribes, make peace with his father's memory, and retrieve the lost legion's golden emblem, the Eagle of the Ninth.
## 7402 Hired assassin John Lee is asked by Chinatown crime boss Terence Wei to murder the young son of policeman Stan Zedkov. Lee has the boy in his sights, but his conscience gets the better of him, and he spares the child's life. Afraid that Wei will take revenge on his family in China, Lee seeks out expert forger Meg Coburn to obtain the passport he needs to get out of the country, but a band of replacement killers is soon on his trail.
## 7403 The billionaire is tired of the whims of his own children and decides to teach them a lesson. He announces to them that he has become bankrupt. Now spoiled teenagers will have to do what they have never done: go to work, learn to love and value life.
## 7404 Álvaro, a man obsessed with the idea of writing what he brands as “high literature,” manipulates the lives and feelings of the people around him to write about the consequences caused by his devious acts.
## 7405 A team of special forces head into Afghanistan in the aftermath of the September 11th attacks in an attempt to dismantle the Taliban.
## 7406 When new kid in town Ed Wallis is given an assignment to interview an older person, he turns to his mysterious neighbor, Ashby Holt for help. That new connection leads to unexpected journeys for both of them, as Ashby – who turns out to be a retired CIA assassin – deals with a terminal prognosis, and Ed deals with adjusting to life with his newly single mom and developing relationship with a brainy classmate, Eloise.
## 7407 Mathias Gold is a down-on-his-luck New Yorker who inherits a Parisian apartment from his estranged father. But when he arrives in France to sell the vast domicile, he's shocked to discover a live-in tenant who is not prepared to budge. His apartment is a viager—an ancient French real estate system with complex rules pertaining to its resale—and the feisty Englishwoman Mathilde Girard, who has lived in the apartment with her daughter Chloé for many years, can by contract collect monthly payments from Mathias until her death.
## 7408 In Mystery, Alaska, life revolves around the legendary Saturday hockey game at the local pond. But everything changes when the hometown team unexpectedly gets booked in an exhibition match against the New York Rangers. When quirky small-towners, slick promoters and millionaire athletes come together.
## 7409 Jed Clampett and kin move from Arkansas to Beverly Hills when he becomes a billionaire, after an oil strike. The country folk are very naive with regard to life in the big city, so when Jed starts a search for a new wife there are inevitably plenty of takers and con artists ready to make a fast buck
## 7410 Stranded backpackers in remote Australia fall prey to a murderous bushman, who offers to fix their car, then takes them captive.
## 7411 Speed Racer is the tale of a young and brilliant racing driver. When corruption in the racing leagues costs his brother his life, he must team up with the police and the mysterious Racer X to bring an end to the corruption and criminal activities. Inspired by the cartoon series.
## 7412 In the aftermath of a massive earthquake in California, a rescue-chopper pilot makes a dangerous journey across the state in order to rescue his estranged daughter.
## 7413 When a frightening wave of violence sweeps through New York City, troubled cop Sarchie fails to find a rational explanation for the bizarre crimes. However, his eyes are opened to a frightening alternate reality when renegade Jesuit priest Mendoza convinces him that demonic possession may be to blame for the gruesome murders. Together, they wage a valiant supernatural struggle to rid the city of an otherworldly evil.
## 7414 Littlefoot and his young friends Cera, Ducky and Spike are being harassed by a group of older dinosaurs led by Hyp. When a meteorite strikes nearby, it causes a drought. The resulting scarcity of resources creates animosity among the different species in the Great Valley. Littlefoot and his crew resolve to venture forth to find a solution - as does Hyp and his gang. Will the groups learn to cooperate, or will their rivalry destroy them?
## 7415 Wilbur the pig is scared of the end of the season, because he knows that come that time, he will end up on the dinner table. He hatches a plan with Charlotte, a spider that lives in his pen, to ensure that this will never happen.
## 7416 The Shadow Mountains, 1983. Red and Mandy lead a loving and peaceful existence; but when their pine-scented haven is savagely destroyed, Red is catapulted into a phantasmagoric journey filled with bloody vengeance and laced with fire.
## 7417 A mother (in her Minivan) stops at nothing to recover her kidnapped son.
## 7418 After Gordon Bombay's hockey comeback is cut short he is named coach of Team USA Hockey for the Junior Goodwill Games. Bombay reunites the Mighty Ducks and introduces a few new players, however, he finds himself distracted by his newfound fame and must regather if the Ducks are to defeat tournament favourites Iceland.
## 7419 In this remake of the 1933 classic, an oil company expedition disturbs the peace of a giant ape and brings him back to New York to exploit him.
## 7420 The story of the eventful life of George W. Bush—his struggles and triumphs, how he found both his wife and his faith—and the critical days leading up to his decision to invade Iraq.
## 7421 A series of murders has shaken the community to the point where people believe that only a legendary creature from dark times – the mythical Golem – must be responsible.
## 7422 After his family is killed by a Serbian gangster with international interests. NYC detective Nick goes to S.E. Asia and teams up with a Thai detective to get revenge and destroy the syndicates human trafficking network.
## 7423 Six high school friends in their 40s who haven't seen each other in nearly 20 years rekindle their younger selves after a court cancels their diploma, forcing them to repeat the final high school exam.
## 7424 When marauding Romans capture - and catapult - their pal Getafix into lands unknown, the shrewd and cunning Asterix and his able sidekick Obelix spring into action! But their journey leads them to a strange and dangerous new world, where they must face a tribe of Indians, a stampeding herd of buffalo and a medicine man with designs on their magic potion!
## 7425 When Kimberly has a violent premonition of a highway pileup she blocks the freeway, keeping a few others meant to die, safe...Or are they? The survivors mysteriously start dying and it's up to Kimberly to stop it before she's next.
## 7426 A determined young woman and a damaged occultist risk their lives and souls to perform a dangerous ritual that will grant them what they want.
## 7427 After falling victim to a humiliating prank by the high school Queen Bee, best friends and world-class geeks, Mindy and Jodi, decide to get their revenge by uniting the outcasts of the school against her and her circle of friends.
## 7428 Alexander's day begins with gum stuck in his hair, followed by more calamities. Though he finds little sympathy from his family and begins to wonder if bad things only happen to him, his mom, dad, brother, and sister all find themselves living through their own terrible, horrible, no good, very bad day.
## 7429 New CIA operative Aaron Cross experiences life-or-death stakes that have been triggered by the previous actions of Jason Bourne.
## 7430 A mysterious new shop opens in a small town which always seems to stock the deepest desires of each shopper, with a price far heavier than expected.
## 7431 Scientist Bruce Banner scours the planet for an antidote to the unbridled force of rage within him: the Hulk. But when the military masterminds who dream of exploiting his powers force him back to civilization, he finds himself coming face to face with a new, deadly foe.
## 7432 In this rom-com challenging the concept of soulmates, parallel storylines portray four single friends as they pair up in different couple combinations.
## 7433 Massachusetts, 1892. An unmarried woman of 32 and a social outcast, Lizzie lives a claustrophobic life under her father's cold and domineering control. When Bridget Sullivan, a young maid, comes to work for the family, Lizzie finds a sympathetic, kindred spirit, and a secret intimacy soon blossoms into a wicked plan.
## 7434 Martin was a normal teenage boy before the country collapsed in an empty pit of economic and political disaster. A vampire epidemic has swept across what is left of the nation's abandoned towns and cities, and it's up to Mister, a death dealing, rogue vampire hunter, to get Martin safely north to Canada, the continent's New Eden.
## 7435 Mad Max becomes a pawn in a decadent oasis of a technological society, and when exiled, becomes the deliverer of a colony of children.
## 7436 Two warring gang families (one African-American, the other Chinese) maneuver for bragging rights to the Oakland, California, docks. Hang Sing and Trish O'Day uncover a trail of deceit that leaves most of the warring factions dead … or worse!
## 7437 After being committed for 17 years, Michael Myers, now a grown man and still very dangerous, escapes from the mental institution (where he was committed as a 10 year old) and he immediately returns to Haddonfield, where he wants to find his baby sister, Laurie. Anyone who crosses his path is in mortal danger.
## 7438 1492: Conquest of Paradise depicts Christopher Columbus’ discovery of The New World and his effect on the indigenous people.
## 7439 Cody, Chicken Joe and Lani are back in their most epic adventure yet! The most radical surfing dream team, The Hang Five (voiced by WWE Superstars John Cena, Undertaker, Triple H, Paige and Mr. McMahon) puts Cody and his friends to the test and teaches them the meaning of teamwork as they journey to the most legendary surfing spot on the planet.
## 7440 After her husband runs off with his secretary, Terry Wolfmeyer is left to fend for herself -- and her four daughters. As she hits rock bottom, Terry finds a friend and drinking buddy in next-door neighbor Denny, a former baseball player. As the two grow closer, and her daughters increasingly rely on Denny, Terry starts to have reservations about where their relationship is headed.
## 7441 Notorious Baltimore criminal and underground figure Divine goes up against Connie & Raymond Marble, a sleazy married couple who make a passionate attempt to humiliate her and seize her tabloid-given title as "The Filthiest Person Alive".
## 7442 In rural Connecticut, baseball players Ben and Mickey are trying to survive a zombie plague. They are forced to form a battery: a catcher and a pitcher who work together to outwit the batter, the one who hits the ball. And the batter in this case just happens to be a zombie. Tough Ben and gentle Mickey frequently disagree on the best way to go about the situation. Then they suddenly hear a human voice through their walkie-talkies. Is salvation nearby, like Mickey thinks, or is Ben’s suspicion justified?
## 7443 An island populated entirely by happy, flightless birds or almost entirely. In this paradise, Red, a bird with a temper problem, speedy Chuck, and the volatile Bomb have always been outsiders. But when the island is visited by mysterious green piggies, it’s up to these unlikely outcasts to figure out what the pigs are up to.
## 7444 As the face of law enforcement in the United States for almost 50 years, J. Edgar Hoover was feared and admired, reviled and revered. But behind closed doors, he held secrets that would have destroyed his image, his career, and his life.
## 7445 As a child living in Africa, Jill Young saw her mother killed while protecting wild gorillas from poachers led by Andrei Strasser. Now an adult, Jill cares for an orphaned gorilla named Joe -- who, due to a genetic anomaly, is 15 feet tall. When Gregg O'Hara arrives from California and sees the animal, he convinces Jill that Joe would be safest at his wildlife refuge. But Strasser follows them to the U.S., intent on capturing Joe for himself.
## 7446 SIRIUS 6B, Year 2078. On a distant mining planet ravaged by a decade of war, scientists have created the perfect weapon: a blade-wielding, self-replicating race of killing devices known as Screamers designed for one purpose only -- to hunt down and destroy all enemy life forms.
## 7447 The President's daughter, unable to experience life like a normal 18 year-old, escapes from her entourage of Secret Service agents while traveling in Europe. She falls in love with a handsome British stranger, who also happens to be working undercover for her father.
## 7448 Billy Madison is the 27 year-old son of Bryan Madison, a very rich man who has made his living in the hotel industry. Billy stands to inherit his father's empire, but only if he can make it through all 12 grades, 2 weeks per grade, to prove that he has what it takes to run the family business.
## 7449 Accident prone teenager, Percy discovers he's actually a demi-God, the son of Poseidon, and he is needed when Zeus' lightning is stolen. Percy must master his new found skills in order to prevent a war between the Gods that could devastate the entire world.
## 7450 U.S. government agent Scott is assigned to rescue the daughter of a high-ranking government official. As willing as he is to bend the rules to get things done, though, Scott is shocked to find that others are willing to go even further to protect a political career.
## 7451 With high school a distant memory, Jim and Michelle are getting married — and in a hurry, since Jim's grandmother is sick and wants to see him walk down the aisle — prompting Stifler to throw the ultimate bachelor party. And Jim's dad is reliable as ever, doling out advice no one wants to hear.
## 7452 Two escaped cons' only prayer to escape is to pass themselves off as priests and pass by the police blockade at the border into the safety of Canada.
## 7453 Texan Charles Farmer left the Air Force as a young man to save the family ranch when his dad died. Like most American ranchers, he owes his bank. Unlike most, he's an astrophysicist with a rocket in his barn - one he's built and wants to take into space. It's his dream. The FBI puts him under surveillance when he tries to buy rocket fuel, and the FAA stalls him when he files a flight plan – but Charles is undeterred.
## 7454 Two teenage couples traveling across the backwoods of Texas searching for urban legends of serial killers end up as prisoners of a bizarre and sadistic backwater family of serial killers.
## 7455 In Madrid, Spain, a mysterious serial killer ruthlessly murders his victims by recreating the first appearance of several comic book superheroes. Cosme, a veteran police inspector who is about to retire, works on the case along with the tormented inspector David Valentín and his own son Jorge Elías, a nerdy young man who owns a comic book store.
## 7456 The story of Elliot Tiber and his family, who inadvertently played a pivotal role in making the famed Woodstock Music and Arts Festival into the happening that it was. When Elliot hears that a neighboring town has pulled the permit on a hippie music festival, he calls the producers thinking he could drum up some much-needed business for his parents' run-down motel. Three weeks later, half a million people are on their way to his neighbor’s farm in White Lake, New York, and Elliot finds himself swept up in a generation-defining experience that would change his life–and American culture–forever.
## 7457 Set during the Rodney King riots, a robbery homicide investigation triggers a series of events that will cause a corrupt LAPD officer to question his tactics.
## 7458 The sole survivor of an interplanetary rescue mission discovers a planet ruled by apes, and an underground city run by telepathic humans.
## 7459 Three well-off young men—former students at Rome’s prestigious all-boys Catholic high school San Leone Magno—brutally tortured, raped, and murdered two young women in 1975. The event, which came to be known as the Circeo massacre, shocked and captivated the country, exposing the violence and dark underbelly of the upper middle class at a moment when the traditional structures of family and religion were seen as under threat.
## 7460 Recruited by a secret society of babysitters, a high schooler battles the Boogeyman and his monsters when they nab the boy she's watching on Halloween.
## 7461 One of the members of a gang of thieves commits a serious mistake that force them to work for a ruthless gang of drug dealers, endangering the future of the team, their lives and those of their families.
## 7462 After the PTA of a conservative high school in Indiana bans same-sex couples from attending the annual prom, a gang of flamboyant Broadway stars try to boost their image by showing up to support two lesbian students.
## 7463 When her husband suddenly dumps her, longtime dedicated housewife Deanna turns regret into re-set by going back to college... landing in the same class and school as her daughter, who's not entirely sold on the idea. Plunging headlong into the campus experience, the increasingly outspoken Deanna – now Dee Rock – embraces freedom, fun and frat boys on her own terms, finding her true self in a senior year no one ever expected.
## 7464 A young, lonely woman is consumed by her deepest and darkest desires after tragedy strikes her quiet country life.
## 7465 Hoping to save his sick mother, a boy named Gunner and his friend Jo venture into the remote Wild Horse forest to search for a mythical figure who possesses the secret to immortality. When they go missing, Gunner's father Amos must immerse himself in his son's world to find them.
## 7466 When a radio falls from the sky into the hands of a wide-eyed Tibetan Mastiff, he leaves home to fulfill his dream of becoming a musician, setting into motion a series of completely unexpected events.
## 7467 When the magic powers of The Tablet of Ahkmenrah begin to die out, Larry Daley spans the globe, uniting favorite and new characters while embarking on an epic quest to save the magic before it is gone forever.
## 7468 An introverted teenager tells his parents he is going on a ski trip, but instead spends his time alone in a basement.
## 7469 An interpol agent and an attorney are determined to bring one of the world's most powerful banks to justice. Uncovering money laundering, arms trading, and conspiracy to destabilize world governments, their investigation takes them from Berlin, Milan, New York and Istanbul. Finding themselves in a chase across the globe, their relentless tenacity puts their own lives at risk.
## 7470 Hoping to alter the events of the past, a 19th century inventor instead travels 800,000 years into the future, where he finds mankind divided into two warring races.
## 7471 Madrid, June 1991. After celebrating a session of Ouija with her friends, Verónica is besieged by dangerous supernatural presences that threaten to harm her entire family.
## 7472 An elite group of American operatives, aided by a top-secret tactical command team, must transport an asset who holds life-threatening information to an extraction point 22 miles away through the hostile streets of an Asian city.
## 7473 When Susan Murphy is unwittingly clobbered by a meteor full of outer space gunk on her wedding day, she mysteriously grows to 49-feet-11-inches. The military jumps into action and captures Susan, secreting her away to a covert government compound. She is renamed Ginormica and placed in confinement with a ragtag group of Monsters...
## 7474 Astonished to find the Beast has a deep-seeded hatred for the Christmas season, Belle endeavors to change his mind on the matter.
## 7475 Two bumbling government employees think they are U.S. spies, only to discover that they are actually decoys for nuclear war.
## 7476 A high school biology teacher moonlights as a mixed-martial arts fighter in an effort to raise money to save the school's music program.
## 7477 A sleazy Paris nightclub owner and ex-detective flies to Hong Kong to rescue the young son of a friend murdered by the Chinese mob.
## 7478 Disney Channel's production of Julie Sherman Wolfe's screenplay adaptation of the popular novel Avalon High by Meg Cabot. Elaine "Ellie" Harrison has just moved from Minnesota to Annapolis, Maryland while her parents take a year long sabbatical to continue their medieval studies in nearby DC. Her new high school, Avalon High, seems like a typical high school with the stereotypical students: Lance the jock, Jennifer the cheerleader, Marco, the bad boy/desperado, and Will, the senior class president, quarterback, and all around good guy. But not everyone at Avalon High is who they appear to be, not even Ellie herself. Eventually, it becomes apparent that Avalon High is a situation where the ancient Arthurian legend is repeating itself. Will, Jennifer, Lance, Marco, and Mr. Morton all correspond to King Arthur, Queen Guinevere, Knight Lancelot, Mordred, and Merlin, respectively.
## 7479 Ellie Linton, a teen from an Australian coastal town, leads her friends on an excursion to a camp deep in the woods, dubbed "Hell." Upon their return, the youths find that their town has been overrun by an enemy army, and their friends and family have been imprisoned. When the hostile invaders become alerted to their presence, Ellie and her friends band together to escape -- and strike back against -- this mysterious enemy.
## 7480 Jerry Falk, an aspiring writer in New York, falls in love at first sight with a free-spirited young woman named Amanda. He has heard the phrase that life is like "anything else," but soon he finds that life with the unpredictable Amanda isn't like anything else at all.
## 7481 Recently widowed mom Brenda fights to protect her family during a harrowing road trip when a murder and a missing bag of cash plunge them into danger.
## 7482 An American attorney on business in China, ends up wrongfully on trial for murder and his only key to innocence is a female defense lawyer from the country.
## 7483 Office temp Charlotte Cantilini thinks she's found Mr. Right when she starts dating gorgeous surgeon Dr. Kevin Fields. But there's a problem standing in the way of everlasting bliss: Kevin's overbearing and controlling mother, Viola. Fearing she'll lose her son's affections forever, Viola decides to break up the happy couple by becoming the world's worst mother-in-law.
## 7484 Adopted as a child, new father Mel Colpin decides he cannot name his son until he knows his birth parents, and determines to make a cross-country quest to find them. Accompanied by his wife, Nancy, and an inept yet gorgeous adoption agent, Tina, he departs on an epic road trip that quickly devolves into a farce of mistaken identities, wrong turns, and overzealous and love-struck ATF agents.
## 7485 Good-natured astronomer Sam is devastated when the love of his life leaves him for a suave Frenchman. He therefore does what every other normal dumpee would do — go to New York and set up home in the abandoned building opposite his ex-girlfriend's apartment, wait until she decides to leave her current lover, and then win her back.
## 7486 Jill Conway is trying to rebuild her life after surviving a terrifying kidnapping attempt. Though she is having a difficult time, she takes small steps toward normalcy by starting a new job and inviting her sister, Molly, to move in with her. Returning home from work one morning, Jill discovers that Molly has vanished, and she is certain that the same man who previously abducted her has returned for revenge.
## 7487 When paleontologist Kate Lloyd travels to an isolated outpost in Antarctica for the expedition of a lifetime, she joins an international team that unearths a remarkable discovery. Their elation quickly turns to fear as they realize that their experiment has freed a mysterious being from its frozen prison. Paranoia spreads like an epidemic as a creature that can mimic anything it touches will pit human against human as it tries to survive and flourish in this spine-tingling thriller.
## 7488 Seymour works in a skid row florist shop and is in love with his beautiful co-worker, Audrey. He creates a new plant that not only talks but cannot survive without human flesh and blood.
## 7489 Clear the runway for Derek Zoolander, VH1's three-time male model of the year. His face falls when hippie-chic Hansel scooters in to steal this year's award. The evil fashion guru Mugatu seizes the opportunity to turn Derek into a killing machine. It's a well-designed conspiracy and only with the help of Hansel and a few well-chosen accessories like Matilda can Derek make the world safe for male models everywhere.
## 7490 After Dick Harper loses his job at Globodyne in an Enron-esque collapse, he and his wife, Jane, turn to crime in order to handle the massive debt they now face. Two intelligent people, Dick and Jane actually get pretty good at robbing people and even enjoy it -- but they have second thoughts when they're reminded that crime can hurt innocent people. When the couple hears that Globodyne boss Jack McCallister actually swindled the company, they plot revenge.
## 7491 When maladjusted orphan Jesse vandalizes a theme park, he is placed with foster parents and must work at the park to make amends. There he meets Willy, a young Orca whale who has been separated from his family. Sensing kinship, they form a bond and, with the help of kindly whale trainer Rae Lindley, develop a routine of tricks. However, greedy park owner Dial soon catches wind of the duo and makes plans to profit from them.
## 7492 A newly-developed microchip designed by Zorin Industries for the British Government that can survive the electromagnetic radiation caused by a nuclear explosion has landed in the hands of the KGB. James Bond must find out how and why. His suspicions soon lead him to big industry leader Max Zorin who forms a plan to destroy his only competition in Silicon Valley by triggering a massive earthquake in the San Francisco Bay.
## 7493 A young boy finds a powerful otherworldly weapon, which he uses to save his older adoptive brother from a crew of thugs. Before long, the two of them are also pursued by federal agents and mysterious mercenaries aiming to reclaim their asset.
## 7494 Working in a Boston homeless shelter, Nick Flynn re-encounters his father, a con man and self-proclaimed poet. Sensing trouble in his own life, Nick wrestles with the notion of reaching out yet again to his dad.
## 7495 It is the story of an average, popular American teenager named Wendy Wu who discovers that in order to win the coveted crown she must first learn the way of the warrior. Wendy Wu has a one track mind, and that track leads directly to the title of homecoming queen -- no unscheduled stops, and no unnecessary detours. When a mysterious Chinese monk named Shen arrives to mold Wendy into a fearless kung fu warrior, however, her royal aspirations suddenly jump the track as she desperately attempts to juggle her boyfriend, her homework, and of course, the fierce competition to become homecoming queen. Now, as Wendy begins to train her mind, body, and spirit in the ancient tradition of the martial arts and her inner warrior gradually begins to emerge, the girl who once obsessed over popularity finally begins to put that popularity into perspective as she gradually realizes what truly matters in life.
## 7496 In the rail yards of Queens, contractors repair and rebuild the city's subway cars. These contracts are lucrative, so graft and corruption are rife. When Leo Handler gets out of prison, he finds his aunt married to Frank Olchin, one of the big contractors; he's battling with a minority-owned firm for contracts.
## 7497 While visiting his hometown during Christmas, a man comes face-to-face with his old high school crush whom he was best friends with – a woman whose rejection of him turned him into a ferocious womanizer.
## 7498 In Lincoln City, some inhabitants have extraordinary abilities. Most live below the poverty line, under the close surveillance of a heavily militarized police force. Connor, a construction worker with powers, involves with a criminal gang to help his ailing mother. (Based on the short film “Code 8,” 2016.)
## 7499 From her volatile childhood as Norma Jeane, through her rise to stardom and romantic entanglements, this reimagined fictional portrait of Hollywood legend Marilyn Monroe blurs the lines of fact and fiction to explore the widening split between her public and private selves.
## 7500 When his wife is kidnapped by terrorists for ransom, veteran war hero Brad Paxton races against the clock to rescue her in a daring and deadly operation that pits him against powerful and dark forces.
## 7501 A stressed-out police officer struggles not to give in to the paranoia that grips his small mountain town as bodies turn up after each full moon.
## 7502 France, 1809. Captain Neuville is called to the front, leaving his future bride heartbroken. Her sister decides to write letters on his behalf to cheer her up.
## 7503 Philo Beddoe is your regular, easygoing, truck-driving guy. He's also the best bar-room brawler west of the Rockies. And he lives with a 165-pound orangutan named Clyde. Like other guys, Philo finally falls in love - with a flighty singer who leads him on a screwball chase across the American Southwest. Nothing's in the way except a motorcycle gang, and legendary brawler Tank Murdock.
## 7504 Trapped in a remote tavern, a group of strangers must band together for survival. Outside the bar, a horde of ravenous, flesh-eating monsters are trying to break in and dine on the frightened humans inside.
## 7505 After her widowed father dies, deaf teenager Dot moves in with her godparents, Olivia and Paul Deer. The Deers' daughter, Nina, is openly hostile to Dot, but that does not prevent her from telling her secrets to her silent stepsister, including the fact that she wants to kill her lecherous father.
## 7506 Drew Baylor is fired after causing his shoe company to lose hundreds of millions of dollars. To make matters worse, he's also dumped by his girlfriend. On the verge of ending it all, Drew gets a new lease on life when he returns to his family's small Kentucky hometown after his father dies. Along the way, he meets a flight attendant with whom he falls in love.
## 7507 When the Campbell family moves to upstate Connecticut, they soon learn that their charming Victorian home has a disturbing history: not only was the house a transformed funeral parlor where inconceivable acts occurred, but the owner's clairvoyant son Jonah served as a demonic messenger, providing a gateway for spiritual entities to crossover.
## 7508 The Canadian policeman Louis Burke is assigned in a jail to investigate the murders of prisoners and jailors. When in jail, Louis, using his outstandings martial arts skills, is able to save his life and make himself respected in that violent world. At least, helped by two another prisoners, he succeded in finding the truth about the dreadful crimes. In a violent and corrupt prison, decorated cop Louis Burke must infiltrate the jail to find answers to a number of inside murders. What he finds is a struggle of life and death tied in to his own past.
## 7509 Babies are hardly monster-like, unless you're a toy. After escaping a drooling baby, Tinny realizes that he wants to be played with after all. But in the amount of time it takes him to discover this, the baby's attention moves on to other things only an infant could find interesting.
## 7510 After witnessing the killing of his mate and offspring at the hands of a reckless Irish captain, a vengeful killer whale rampages through the fisherman's Newfoundland harbor. Under pressure from the villagers, the captain, a female marine biologist and an Indigenous tribalist venture after the great beast, who will meet them on its own turf.
## 7511 Chico one of the remaining members of The Magnificent Seven now lives in the town that they (The Seven) helped. One day someone comes and takes most of the men prisoner. His wife seeks out Chris, the leader of The Seven for help. Chris also meets Vin another member of The Seven. They find four other men and they go to help Chico.
## 7512 A seven-mile-wide space rock is hurtling toward Earth, threatening to obliterate the planet. Now, it's up to the president of the United States to save the world. He appoints a tough-as-nails veteran astronaut to lead a joint American-Russian crew into space to destroy the comet before impact. Meanwhile, an enterprising reporter uses her smarts to uncover the scoop of the century.
## 7513 A small town girl and a city boy meet on the Sunset Strip, while pursuing their Hollywood dreams.
## 7514 Three bachelors find themselves forced to take care of a baby left by one of the guy's girlfriends.
## 7515 Larry Donner, an author with a cruel ex-wife, teaches a writing workshop in which one of his students, Owen, is fed up with his domineering mother. When Owen watches a Hitchcock classic that seems to mirror his own life, he decides to put the movie's plot into action and offers to kill Larry's ex-wife, if Larry promises to murder his mom. Before Larry gets a chance to react to the plan, it seems that Owen has already set things in motion.
## 7516 Reporter John Klein is plunged into a world of impossible terror and unthinkable chaos when fate draws him to a sleepy West Virginia town whose residents are being visited by a great winged shape that sows hideous nightmares and fevered visions.
## 7517 The mobster husbands of three 1978 Hell's Kitchen housewives are sent to prison by the FBI. Left with little but a sharp ax to grind, the ladies take the Irish mafia's matters into their own hands — proving unexpectedly adept at everything from running the rackets to taking out the competition… literally.
## 7518 In a Naples suspended between magic and superstition, madness and rationality, a mystery envelops the existence of Adriana (Giovanna Mezzogiorno), overwhelmed by a sudden love and a violent crime.
## 7519 A couple off for a romantic weekend in the mountains are accosted by a biker gang. Alone in the mountains, Brea and John must defend themselves against the gang, who will stop at nothing to protect their secrets.
## 7520 Britain, A.D. 117. Quintus Dias, the sole survivor of a Pictish raid on a Roman frontier fort, marches north with General Virilus' legendary Ninth Legion, under orders to wipe the Picts from the face of the Earth and destroy their leader, Gorlacon.
## 7521 A woman finds a romantic letter in a bottle washed ashore and tracks down the author, a widowed shipbuilder whose wife died tragically early. As a deep and mutual attraction blossoms, the man struggles to make peace with his past so that he can move on and find happiness.
## 7522 Dueling high school debate champs who are at odds on just about everything forge ahead with ambitious plans to get into the colleges of their dreams.
## 7523 Ottone, a professional dog sitter who's uncertain about most things in life, asks an analyst if he made the right decision love-wise while recounting the significant relationships he had with four women.
## 7524 Teenager Deacon works at a video shop, and his buddies, Fred and Matt, sell the bootleg porno films he acquires. Deacon gets fired, but the pals have the bright idea of filming their own Internet porn flick in order to make money and become more popular at school. Hijinks ensue as they cast and create their movie, but porn industry player Vic Ramalot grows jealous of their burgeoning success and tries to put a stop to the project.
## 7525 The story of how a mysterious suitcase brings together, and changes, the lives of a divorced dad, an unhappy housewife, two hitmen, a pair of street thugs, two love struck teens, two FBI men and a psychedelic toad. Based on Pulitzer Prize-winning humorist Dave Barry's best-selling first novel, "Big Trouble."
## 7526 Led by a strange dream, scientist Aki Ross struggles to collect the eight spirits in the hope of creating a force powerful enough to protect the planet. With the aid of the Deep Eyes Squadron and her mentor, Dr. Sid, Aki must save the Earth from its darkest hate and unleash the spirits within.
## 7527 Tad is a celebrity archaeologist and adventurer just like his hero Max Mordon... in his dreams! In reality, Tad is a Chicago construction worker. One day, however, he is mistaken for a real professor and takes his place on a flight to Peru in search of the lost city of Paititi.
## 7528 Emilia, a law-school graduate, falls in love with her married boss, Jack. After Emilia marries Jack, her happiness turns unexpectedly to grief following the death of her infant daughter. Devastated, Emilia nonetheless carries on, attempting to forge a connection with her stepson William and to resist the interference of Jack's jealous ex-wife.
## 7529 A fugitive couple goes on a glamorous and sometimes deadly adventure where nothing and no one – even themselves – are what they seem. Amid shifting alliances and unexpected betrayals, they race across the globe, with their survival ultimately hinging on the battle of truth vs. trust.
## 7530 Eddie, Dov, and Yvan are back, still working in Paris' Sentier textile district, This time they're confronting the high-stakes world of large distribution after striking a deal with Eurodiscount, a European hypermarket chain.
## 7531 Set in a world where the concept of lying doesn't exist, a loser changes his lot when he invents lying and uses it to get ahead.
## 7532 On the way to California, a family has the misfortune to have their car break down in an area closed to the public, and inhabited by violent savages ready to attack.
## 7533 A U.S. Army Captain uses her years of tactical training to save humanity from sixteen nuclear missiles launched at the U.S. as a violent attack threatens her remote missile interceptor station.
## 7534 Jenny, a young doctor who feels guilty after a young woman she refused to see winds up dead a few days later, decides to find out who the girl was, after the police can't identify the young woman.
## 7535 A comedian tries to make it as a serious actor when his reality-TV star fiancé talks him into broadcasting their wedding on her TV show.
## 7536 What if Apollo 11 never actually made it? What if, in reality, Stanley Kubrick secretly shot the famous images of the moon landing in a studio, working for the US administration? This is the premise of a totally plausible conspiracy theory that takes us to swinging sixties London, where a stubborn CIA agent will never find Kubrick but is forced to team up with a lousy manager of a seedy rock band to develop the biggest con of all time.
## 7537 Nearly a year after a botched job, a hitman takes a new assignment with the promise of a big payoff for three killings. What starts off as an easy task soon unravels, sending the killer into the heart of darkness.
## 7538 A businesswoman finds herself locked with a unhinged security guard in a parking garage after getting stuck working late on Christmas Eve.
## 7539 Alienated teen Pauline struggles with the pressures of fitting into high school, pleasing her mother and a burning desire to lose her virginity. With a grotesque curiosity for the darker side of life, Pauline is considered a social outcast by everyone around her. Enticed by flesh, she retreats into her own fantasies and hopes to become a great surgeon - that is, if she doesn't go insane first.
## 7540 A plague of locusts strikes the Great Valley and decimates the plants . When the adults in the herd begin fighting over the scarce resources, young Littlefoot and his friends Petrie, Cera, Ducky and Spike split off from the main group, becoming stranded on an island after their path was destroyed by a tsunami. As they search for a way off the island, they encounter an old acquaintance who may become friend or foe.
## 7541 An FBI informant has kept his new identity secret for 15 years. Now an old flame has recognised him, and the bad guys are back for revenge.
## 7542 A woman suffers from an unusual illness caused by a flower growing in her lungs.
## 7543 The world is full of zombies and the survivors have barricaded themselves inside a walled city to keep out the living dead. As the wealthy hide out in skyscrapers and chaos rules the streets, the rest of the survivors must find a way to stop the evolving zombies from breaking into the city.
## 7544 A fairy tale love-story about pre-med student Paige who falls in love with a Danish Prince "Eddie" who refused to follow the traditions of his parents and has come to the US to quench his thirst for rebellion. Paige and Edward come from two different worlds, but there is an undeniable attraction between them.
## 7545 Michael Jennings is a genius who's hired – and paid handsomely – by high-tech firms to work on highly sensitive projects, after which his short-term memory is erased so he's incapable of breaching security. But at the end of a three-year job, he's told he isn't getting a paycheck and instead receives a mysterious envelope. In it are clues he must piece together to find out why he wasn't paid – and why he's now in hot water.
## 7546 Three suburban moms travel to New York City to visit their sons.
## 7547 Andrea is having a bad luck with girls. Maybe because he's only man in his big family which include mother, three sisters, grandma, nurse and a dog which is of course female also.
## 7548 American tourist Frank meets mysterious British woman Elsie on the train to Venice. Romance seems to bud, but there's more to her than meets the eye.
## 7549 In New York, people are slain and strangled to death brutally on the open street. All witnesses agree that the murderer was in a cop's uniform. Soon the police search and find a suspect in its own ranks: Jack Forrest, suspected of murdering his own wife and the rest of the unfortunate individuals to die by the Maniac Cop’s reign of terror. To prove his innocence, he investigates the case with his partner, Theresa Mallory.
## 7550 A mythic motorcycle tale of father and son", this is the story of Manuel Galloway, also known as "the King of Cali", the president of a motorcycle club whose members are all African-American men, mostly white-collar workers who exchange their suits and ties at night and on weekends for leather outfits and motorcycle helmets.
## 7551 Josie Geller, a baby-faced junior copywriter at the Chicago Sun-Times, must pose as a student at her former high school to research contemporary teenage culture. With the help of her brother, Rob, Josie infiltrates the inner circle of the most popular clique on campus. But she hits a major snag in her investigation -- not to mention her own failed love life -- when she falls for her dreamy English teacher, Sam Coulson.
## 7552 Babe is a little pig who doesn't quite know his place in the world. With a bunch of odd friends, like Ferdinand the duck who thinks he is a rooster and Fly the dog he calls mum, Babe realises that he has the makings to become the greatest sheep pig of all time, and Farmer Hogget knows it. With the help of the sheep dogs, Babe learns that a pig can be anything that he wants to be.
## 7553 When architect and Christmas amateur Steven finds himself hosting his family for Christmas, he recruits holiday coordinator Gretchen to bring holiday joy to his home. Gretchen’s expert Christmas spirit brings Steven’s family together, but neither expected it to bring them closer to each other. After a great opportunity presents itself to Gretchen, she and Steven must decide what’s really important in life.
## 7554 Simone, a clumsy financier, falls in love with Claudia, who’s living on her grandma’s retirement checks. When the old lady dies Claudia hides the body in a freezer, and sets up a fraud with the help of some friends to avoid bankruptcy.
## 7555 Fifteen years after the original film, the philosophical Lieutenant William F. Kinderman is investigating a baffling series of murders on Georgetown that all contain the hallmarks of The Gemini, a deceased serial killer. His investigation eventually leads him to a catatonic patient in a psychiatric hospital who has recently started to speak, claiming he is The Gemini and detailing the murders, but bears a striking resemblance to Father Damien Karras.
## 7556 A couple with a newborn baby face unexpected difficulties after they are forced to live next to a fraternity house.
## 7557 Two highway road workers spend the summer of 1988 away from their city lives. The isolated landscape becomes a place of misadventure as the men find themselves at odds with each other and the women they left behind.
## 7558 After her mom's death, Casey pulls away from everyone in her life, including her emotionally distant dad. With help from a magic spell, she tries to bring her mother back from the dead; instead, Casey's words accidentally awaken one of her least favorite toys: a statuesque Barbie clone named Eve. Things get worse when Casey's dad develops a crush on his daughter's living doll.
## 7559 When one of them breaks a leg, 5 friends snowboarding in the Norwegian mountains take shelter in an abandoned ski lodge and soon realize they’re not alone.
## 7560 Sportswriter Andy Farmer moves with his schoolteacher wife Elizabeth to the country in order to write a novel in relative seclusion. Of course, seclusion is the last thing the Farmers find in the small, eccentric town, where disaster awaits them at every turn.
## 7561 An eccentric mountain man on the run from the local sheriff recalls the mysterious events that brought him to his present fugitive state.
## 7562 Dave Skylark and his producer Aaron Rapaport run the celebrity tabloid show "Skylark Tonight". When they land an interview with a surprise fan, North Korean dictator Kim Jong-un, they are recruited by the CIA to turn their trip to Pyongyang into an assassination mission.
## 7563 Cody and Zack are approached to join the Gemini Project, a high-tech research center studying the dynamics between twins. Shockingly, they find themselves interconnected in a whole new way! When one twin experiences something, the other twin feels it too. This newfound revelation helps them see eye to eye for the first time, and it puts them in more danger than they could have imagined.
## 7564 Littlefoot and his dinosaur pals go in search of a medicinal flower that will cure his ailing grandfather.
## 7565 Life as the sole sale item in the clearance corner of Eben's Bikes can get lonely. So Red, a unicycle, dreams up a clown owner and his own juggling act that steals the show. But all too soon, the applause turns into the sound of rainfall, as reality rushes back. Red must resign himself to sitting in the corner and await his fate.
## 7566 A group of friends graduate from the halls of Georgetown University into lives that revolve around sex and career aspirations. Kirby waits tables to pay for law school. His roommate Kevin struggles at a D.C. newspaper as he searches for the meaning of love. Jules, an object of adoration and envy, but secretly she has problems of her own. Demure Wendy is in love with Billy—a loveable sax player and an irresponsible drunk. Alec wants it all: a career in politics and the appearance of a traditional home life. Alec’s girlfriend, Leslie, is an ambitious architect who doesn't know about his infidelity, but his new allegiance to the Republican Party is already enough to put her off marriage.
## 7567 In a dystopian future, insurance fraud investigator William Gold arrives in Shanghai to investigate a forgery ring for "papelles", futuristic passports that record people's identities and genetics. Gold falls for Maria Gonzalez, the woman in charge of the forgeries. After a passionate affair, Gold returns home, having named a coworker as the culprit. But when one of Gonzalez's customers is found dead, Gold is sent back to Shanghai to complete the investigation.
## 7568 Two thieves, who travel in elegant circles, try to outsmart each other and, in the process, end up falling in love.
## 7569 Françoise has just been dumped by her husband for a much younger woman. In order to cheer her up, and to celebrate her 60th birthday, sisters Rose and Alice decide to take their mother to a resort on the tropical island of Reunion so they can relax, work on their tans, and have too many margaritas. But when Rose pays a one-night stand, Thierry, to show her mother a good time, their holiday plans start to unravel.
## 7570 Five young mutants, just discovering their abilities while held in a secret facility against their will, fight to escape their past sins and save themselves.
## 7571 A former American G.I. joins a yakuza family after his release from prison in post-World War II Osaka.
## 7572 Homeless and on the run from a military court martial, a damaged ex-special forces soldier navigating London's criminal underworld seizes an opportunity to assume another man's identity, transforming into an avenging angel in the process.
## 7573 Dispatched from his basement room on an errand for his mother, slacker Jeff might discover his destiny (finally) when he spends the day with his brother as he tracks his possibly adulterous wife.
## 7574 Ilsa is a warden at a Nazi death camp that conducts experiments on prisoners. Ilsa's goal is to prove that woman can withstand more pain and suffering than men and should be allowed to fight on the front lines.
## 7575 In the wilderness of British Columbia, two hunters are tracked and viciously murdered by Aaron Hallum. A former Special Operations instructor is approached and asked to apprehend Hallum—his former student—who has 'gone rogue' after suffering severe battle stress from his time in Kosovo.
## 7576 In the Yorkshire countryside, working-class tomboy Mona meets the exotic, pampered Tamsin. To seal their friendship, Mona introduces Tamsin to her born-again Christian brother and helps her spy on her adulterous father. Bound together by their secrets, the two girls see their friendship deepen and enter into dangerous waters.
## 7577 During a pandemic lockdown, Nico, a young man with rare immunity, must overcome martial law, murderous vigilantes and a powerful family to reunite with his love, Sara.
## 7578 An artist dumps her longtime boyfriend, but her attempt to take a break from dating ends when she quickly finds herself in two passionate romances.
## 7579 Lillie, a determined American woman, ventures overseas to join Dr. Jude at a remote medical mission in the Ottoman Empire (now Turkey). However, Lillie soon finds herself at odds with Jude and the mission’s founder, Woodruff, when she falls for the titular military man, Ismail, just as the war is about to erupt.
## 7580 In 1988, a teenage girl's life is thrown into chaos when her mother disappears.
## 7581 As a fan of Albert Camus and Jean-Luc Godard, teenage Nick Twisp is definitely out of his element when his mother and her boyfriend move the family to a trailer park. When a pretty neighbor named Sheeni plays records by French crooners, it's love at first sight for frustrated and inexperienced Nick. Learning that she is dating someone, Nick launches a hilarious quest to find his way into Sheeni's heart -- and bed.
## 7582 A young boy tells three stories of horror to distract a witch who plans to eat him.
## 7583 Dug, along with his sidekick Hognob, unite a cavemen tribe to save their hidden valley from being spoiled and, all together as a team, to face the menace of a mysterious and mighty enemy, on the turf of an ancient and sacred sport.
## 7584 Dale, Kurt and Nick decide to start their own business but things don't go as planned because of a slick investor, prompting the trio to pull off a harebrained and misguided kidnapping scheme.
## 7585 Two investigators of paranormal hoaxes, the veteran Dr. Margaret Matheson and her young assistant, Tom Buckley, study the most varied metaphysical phenomena with the aim of proving their fraudulent origins. Simon Silver, a legendary blind psychic, reappears after an enigmatic absence of 30 years to become the greatest international challenge to both orthodox science and professional sceptics. Tom starts to develop an intense obsession with Silver, whose magnetism becomes stronger with each new manifestation of inexplicable events. As Tom gets closer to Silver, tension mounts, and his worldview is threatened to its core.
## 7586 An American couple, Paul and Marianne, spend their vacation in Italy and experience trouble when Marianne invites a former lover and his teenage daughter to visit, which leads to jealousy and dangerous sexual scenarios.
## 7587 In a small mountain village lives a man with a challenging name, Giuseppe Garibaldi (one of Italy's "fathers of the fatherland"), but everybody call him with the nickname Peppino. Love fishing, the company of friends, the library where he works as a precarious employee. He is an optimistic person even if his child accuse him of being a wannabe. One day, due to a mess of politicians, an amazing thing happens: Peppino is mistakenly elected President of the Italian Republic. Pulled out from his quiet life, is to play a role for which he knows he is obviously inappropriate, but his common sense and his instinctive gestures are incredibly effective, except for the etiquette, for which he is in trouble. The inflexible and fascinating Deputy Secretary General of the Presidency of the Republic, Janis Clementi, is anxious to no avail in an attempt to regulate the unpredictable actions of the President...
## 7588 35 year old Alice has a husband and a son. Her life seems a beautiful dream, but it soon turns out to be a nightmare. Her husband dies in a car accident and her lawyer tells her that she is on her uppers. The only way she finds to earn money in short time is to do the oldest job in history.
## 7589 A teenage fugitive with an incredible secret races to stay one step ahead of the mysterious forces seeking destroy him in this sci-fi action thriller. With three dead and one on the run, the race to find the elusive Number Four begins. Outwardly normal teen John Smith never gets too comfortable in the same identity, and along with his guardian, Henri, he is constantly moving from town to town. With each passing day, John gains a stronger grasp on his extraordinary new powers, and his bond to the beings that share his fantastic fate grows stronger.
## 7590 When a shy teenager's new-found powers help him score at basketball - and with the popular girls - he has some pretty hairy decisions to make.
## 7591 The Griswalds win a vacation to Europe on a game show, and so pack their bags for the continent. They do their best to catch the flavor of Europe, but they just don't know how to be be good tourists. Besides, they have trouble taking holidays in countries where they CAN speak the language.
## 7592 A tough Russian policeman is forced to partner up with a cocky Chicago police detective when he is sent to Chicago to apprehend a Georgian drug lord who killed his partner and fled the country.
## 7593 Special Agent Jennifer Marsh works in an elite division of the FBI dedicated to fighting cybercrime. She thinks she has seen it all, until a particularly sadistic criminal arises on the Internet. This tech-savvy killer posts live feeds of his crimes on his website; the more hits the site gets, the faster the victim dies. Marsh and her team must find the elusive killer before time runs out.
## 7594 When the Welsh poet Dylan Thomas and his flirtatious wife Caitlin sweep into war-torn London, the last thing they expect is to bump into Dylan's childhood sweetheart Vera. Despite her joy at seeing Dylan after so many years, Vera is swept off her feet by a dashing officer, William Killick, and finds herself torn between the open adoration of her new found beau and the wily charms of the exotic Welshman.
## 7595 A tough cop is dispatched to take down a serial killer who has been targeting police officers.
## 7596 A young girl is institutionalized by her abusive stepfather. Retreating to an alternative reality as a coping strategy, she envisions a plan which will help her escape from the mental facility.
## 7597 An ugly duckling having undergone a remarkable change, still harbors feelings for her crush: a carefree playboy, but not before his business-focused brother has something to say about it.
## 7598 The tale of an ordinary garden snail who dreams of winning the Indy 500.
## 7599 Three years after Mike bowed out of the stripper life at the top of his game, he and the remaining Kings of Tampa hit the road to Myrtle Beach to put on one last blow-out performance.
## 7600 Hyperactive teenager Kelly is enrolled into a military school when her new stepfather becomes the Commandant. At first she has problems fitting in and taking orders until she tries out for the drill team.
## 7601 In 1999, Star Wars fanatics take a cross-country trip to George Lucas' Skywalker Ranch so their dying friend can see a screening of The Phantom Menace before its release.
## 7602 When the identities of secret agents from Control are compromised, the Chief promotes hapless but eager analyst Maxwell Smart and teams him with stylish, capable Agent 99, the only spy whose cover remains intact. Can they work together to thwart the evil plans of KAOS and its crafty operative?
## 7603 A $10-million diamond rip-off, a stolen identity, a new life married to a diplomat. Laure Ash has risked big, won big. But then a tabloid shutterbug snaps her picture in Paris, and suddenly, enemies from Laure's secret past know who and where she is. And they all want their share of the diamond heist. Or her life. Or both.
## 7604 The aftermath of a shocking explosion at the Chernobyl nuclear power station made hundreds of people sacrifice their lives to clean up the site of the catastrophe and to successfully prevent an even bigger disaster that could have turned a large part of the European continent into an uninhabitable exclusion zone. This is their story.
## 7605 Teddy Walker is a successful salesman whose life takes an unexpected turn when he accidentally blows up his place of employment. Forced to attend night school to get his GED, Teddy soon finds himself dealing with a group of misfit students, his former high school nemesis and a feisty teacher who doesn't think he's too bright.
## 7606 In the year 1215, the rebel barons of England have forced their despised King John to put his royal seal on the Magna Carta, a seminal document that upheld the rights of free men. Yet within months of pledging himself to the great charter, the King reneged on his word and assembled a mercenary army on the south coast of England with the intention of bringing the barons and the country back under his tyrannical rule. Barring his way stood the mighty Rochester castle, a place that would become the symbol of the rebel's momentous struggle for justice and freedom.
## 7607 Irresponsible party girl, Maggie is kicked out of her father's and stepmother's home—where she lives for free—and is taken in by her hard-working sister, Philadelphia lawyer, Rose. After Maggie's disruptive ways ruin her sister's love life, Rose turns her out as well. But when their grandmother, who they never knew existed, comes into their lives, the sisters face some complicated truths about themselves and their family.
## 7608 Retired cop James Lasombra is asked by a friend to investigate the disappearance of her daughter, who seemingly packed in the night and left an ominous message on the bathroom mirror - "The Empty Man Made Me Do It." As he investigates this mysterious figure further, James begins to see and hear strange things, and is forced to come to terms with his past and what it means for his future.
## 7609 A doctor desperately tries to save his wife and their 5 year old son after their vacation in the Bahamas takes an unexpected turn.
## 7610 A New York couple's relationship is tested after the loss of their child. This film is the wide-released combination of the original two :him and :her volumes that premiered at the Cannes Film Festival.
## 7611 A group of five mountaineers are hiking and climbing in the Scottish Highlands when they discover a young Serbian girl buried in a small chamber in the wilderness. They become caught up in a terrifying game of cat and mouse with the kidnappers as they try to get the girl to safety.
## 7612 Three tales, each more terrifying than the last… a woman who is stalked by a crazed serial killer... a man who pays the ultimate price for a beautiful head of hair… and a vision of life — seen through the eyes of a killer!
## 7613 Frank Perry is an institutionalized convict twelve years into a life sentence without parole. When his estranged daughter falls ill, he is determined to make peace with her before it's too late. He develops an ingenious escape plan, and recruits a dysfunctional band of escapists - misfits with a mutual dislike for one other but united by their desire to escape their hell hole of an existence.
## 7614 In an alternate present-day where magical creatures live among us, two L.A. cops become embroiled in a prophesied turf battle.
## 7615 An ex-con reunites with his estranged wayward 16-year old daughter to protect her from drug dealers who are trying to kill her.
## 7616 In London for the Prime Minister's funeral, Mike Banning discovers a plot to assassinate all the attending world leaders.
## 7617 The Autobots continue to work for NEST, now no longer in secret. But after discovering a strange artifact during a mission in Chernobyl, it becomes apparent to Optimus Prime that the United States government has been less than forthright with them.
## 7618 British tennis player Peter clutches to an embarrassingly low position on the tennis-ranking ladder. Handed a wild card for Wimbledon, he expects it to be his final bow.
## 7619 A DEA agent provides former Marine Tim Kearney with a way out of his prison sentence: impersonate Bobby Z, a recently deceased drug dealer, in a hostage switch with a crime lord. When the negotiations go awry, Kearney flees, with Z's son in tow.
## 7620 Mika, a little crook, took a quick tour of the prison, where he got to know "Putin", a crazy and unpredictable detainee. As soon as his sentence has been served, he decides to start from scratch and start his life over again. As he prepares to marry the daughter of a wealthy businessman, his past catches up with him: Putin arrives without warning! Mika will quickly realize that we do not easily get rid of such a ball ...
## 7621 And suddenly, overnight, the world came to a halt. Two men, two survivors, one kid, and hatred that separates them. A place forgotten by everyone, including the creatures that inhabit the Earth... until now.
## 7622 Bob Muldoon and Ruth Guthrie, an impassioned young outlaw couple on an extended crime spree, are finally apprehended by lawmen after a shootout in the Texas hills. Although Ruth wounds a local officer, Bob takes the blame. But four years later, Bob escapes from prison and sets out to find Ruth and their daughter, born during his incarceration.
## 7623 The incredibly spoiled and overprivileged students of Camden College are a backdrop for an unusual love triangle between a drug dealer, a virgin and a bisexual classmate.
## 7624 Sophia, a new high school student, tries to make friends with Barbara, who tells her that “she kills giants,” protecting this way her hometown and its inhabitants, who do not understand her strange behavior.
## 7625 In the town of Dillford, humans, vampires and zombies were all living in peace - until the alien apocalypse arrived. Now three teenagers-one human, one vampire, and one zombie-have to team up to figure out how to get rid of the visitors.
## 7626 In a futuristic world where the polar ice caps have melted and made Earth a liquid planet, a beautiful barmaid rescues a mutant seafarer from a floating island prison. They escape, along with her young charge, Enola, and sail off aboard his ship.
## 7627 Florence and Vincent Leroy are a model couple. They have great jobs, a perfect marriage and delightful children. And now they want their divorce to be an equal success. But when they are both simultaneously promoted to their dream jobs, their relationship becomes a nightmare. From that moment on, the gloves are off, the two exes declare war and will do everything in their power to NOT have custody of their children.
## 7628 A group of heavily armed hijackers board a luxury ocean liner in the South Pacific Ocean to loot it, only to do battle with a series of large-sized, tentacled, man-eating sea creatures who have taken over the ship first.
## 7629 The hit musical based on the life of Evita Duarte, a B-movie Argentinian actress who eventually became the wife of Argentinian president and dictator Juan Perón, and the most beloved and hated woman in Argentina.
## 7630 A guy meets the woman of his dreams and invites her to his company's corporate retreat, but realizes he sent the invite to the wrong person.
## 7631 The heroic story of a dictator who risks his life to ensure that democracy would never come to the country he so lovingly oppressed.
## 7632 Sent to Paris to visit their grandfather, the twins fall in love with France, not to mention two French boys.
## 7633 After a doctor kills his mistress and himself while researching the mysterious previous owner of his Boston home, his colleague, Dr. Norman Boyle, takes over his research and moves his family from New York City to the Boston mansion. Soon after, Boyle's young son Bob becomes plagued by visions of a young girl, who warns him of the danger within the house.
## 7634 On the verge of bankruptcy and desperate for his big break, aspiring filmmaker Bobby Bowfinger concocts a crazy plan to make his ultimate dream movie. Rallying a ragtag team that includes a starry-eyed ingenue, a has-been diva and a film studio gofer, he sets out to shoot a blockbuster featuring the biggest star in Hollywood, Kit Ramsey -- only without letting Ramsey know he's in the picture.
## 7635 A woman, who gets released from prison and reunites with her sister, discovers she is in an online relationship with a man who may be "catfishing" her.
## 7636 Many thousands of years in the future, Earth’s cities roam the globe on huge wheels, devouring each other in a struggle for ever diminishing resources. On one of these massive traction cities, the old London, Tom Natsworthy has an unexpected encounter with a mysterious young woman from the wastelands who will change the course of his life forever.
## 7637 When their only daughter Blair leaves the family nest, Luther and Nora Krank decide to book an island cruise to beat the yuletide blues and just skip the holidays. But their decision to boycott tradition has the whole neighborhood in an uproar, and when Blair calls on Christmas Eve to announce a surprise visit with her new fiancée, the Kranks have just twelve hours to perform a miracle and pull themselves and their neighbors together to throw the best celebration ever!
## 7638 Due to an experimental vaccine, Dr. Robert Neville is the only human survivor of an apocalyptic war waged with biological weapons. Besides him, only a few hundred deformed, nocturnal people remain - sensitive to light, and homicidally psychotic.
## 7639 When alien invaders capture Earth's superheroes, their kids must learn to work together to save their parents - and the planet.
## 7640 A young husband and wife must fight to return home in a post-apocalyptic mid-western landscape ravaged by gangs.
## 7641 A hard-luck limo driver struggling to go straight and pay off a debt to his bookie takes on a job with a crazed passenger whose sought-after ledger implicates some seriously dangerous criminals.
## 7642 Toward the end of World War II, Russian soldiers pushing into eastern Germany stumble across a secret Nazi lab, one that has unearthed and begun experimenting with the journal of one Dr. Victor Frankenstein. The scientists have used the legendary Frankenstein's work to assemble an army of super-soldiers stitched together from the body parts of their fallen comrades -- a desperate Hitler's last ghastly ploy to escape defeat
## 7643 When the FBI hires her to go undercover at a college sorority, Molly Morris (Miley Cyrus) must transform herself from a tough, streetwise private investigator to a refined, sophisticated university girl to help protect the daughter of a one-time Mobster. With several suspects on her list, Molly unexpectedly discovers that not everyone is who they appear to be, including herself.
## 7644 A veteran chef faces off against his restaurant group's new CEO, who wants to the establishment to lose a star from its rating in order to bring in a younger chef who specializes in molecular gastronomy.
## 7645 Meet the McTeagues. They've come to stake a claim in their wealthy uncle's will… only he's not dead yet!
## 7646 Into the world of the Emperor Penguins, who find their soul mates through song, a penguin is born who cannot sing. But he can tap dance something fierce!
## 7647 An aging soccer fanatic faces down the reality of his past while struggling to give himself and a young follower very different futures.
## 7648 A group of students become trapped inside a mysterious cave where they discover time passes differently underground than on the surface.
## 7649 Crunch Calhoun, a third-rate motorcycle daredevil and part-time art thief, teams up with his snaky brother to steal one of the most valuable books in the world. But it's not just about the book for Crunch — he's keen to rewrite some chapters of his own past as well.
## 7650 Asian Hawk leads a mercenary team to recover several lost artifacts from the Old Summer Palace, the bronze heads of the 12 Chinese Zodiac animals which were sacked by the French and British armies from the imperial Summer Palace in Beijing in 1860. Assisted by a Chinese student & a Parisian lady, Hawk stops at nothing to accomplish the mission.
## 7651 Held captive in a futuristic smart house, a woman hopes to escape by befriending the A.I. program that controls the house.
## 7652 When a high school teacher is asked a question in class about Jesus, her reasoned response lands her in deep trouble and could expel God from the public square once and for all.
## 7653 Driven by an intense need for fame and validation, members of a dysfunctional Hollywood family are chasing celebrity, one another and the relentless ghosts of their pasts.
## 7654 High school graduation just wouldn’t be complete without an un-chaperoned, uninhibited and unforgettable final holiday. At least that’s what Will, Jay, Simon and Neil think when they book a two-week stay on an exotic Greek island. As their dreams of sun-drenched days and booze-filled nights are left hopelessly unfulfilled, the lads fight their way into the party scene with hilariously humiliating results in this smash hit UK raunchy comedy.
## 7655 Gilberto, 50enne, si fa coinvolgere in una cosiddetta speed-date, una gara in cui i protagonisti devono trovare un partner in 3 minuti. Arrestato, deve confessare tutto in presenza della moglie che lo sbatte fuori di casa. Rifugiatosi da amici scopre che il suo migliore amico è amante della moglie e comincia a tentare di avviare nuove relazioni che falliscono tutte.
## 7656 Popular high schoolers and best friends Shawn and Nick decide to ditch football camp for cheerleader camp. For the girls and for the glory.
## 7657 A devout Mormon living in L.A. becomes a pornographic actor after his martial arts moves impress a big-time director.
## 7658 Five years after jilting his pregnant fiancée on their wedding day, out-of-shape Dennis decides to run a marathon to win her back.
## 7659 An unimpressive, every-day man is forced into a situation where he is told to kill a politician to save his kidnapped daughter.
## 7660 A sawmill owner and his teenage daughter become tangled in a deadly feud when a drug dealer stashes stolen cocaine on their remote property.
## 7661 Paris 2020. While superheroes have assimilated into the Parisian society, they discover a new drug that gives themselves personal superpowers to mere mortals. Lieutenants Moreau and Schaltzmann are investigating the case with the support of two ex-superheroes, Monte Carlo and Callista. They'll do whatever it takes to dismantle the traffic. But Moreau's past resurfaces, and the investigation becomes more complicated.
## 7662 A group of bad cops look to dispose of a body that one of them accidentally shot.
## 7663 Joanna Mills has a successful career but feels her personal life is spinning out of control. She has few friends, an estranged father, and a crazy ex-boyfriend who is stalking her. Joanna begins having terrifying visions of a woman's murder, and it seems that she is the killer's next target. Determined to solve the mystery and escape her apparent fate, Joanna follows her visions to the victim's hometown and finds that some secrets just do not stay buried.
## 7664 An FBI agent is suspicious of two master thieves, quietly enjoying their retirement near what may - or may not - be the biggest score of their careers.
## 7665 Combat has taken its toll on Rambo, but he's finally begun to find inner peace in a monastery. When Rambo's friend and mentor Col. Trautman asks for his help on a top secret mission to Afghanistan, Rambo declines but must reconsider when Trautman is captured.
## 7666 A ticking-clock thriller following Winston Churchill in the 24 hours before D-Day.
## 7667 A group of eighty American workers are locked in their office and ordered by an unknown voice to participate in a twisted game.
## 7668 Camp Hope is a summer retreat for overweight boys run by a kindly couple who make the campers feel comfortable with their extra pounds. But when tyrannical fitness guru Tony buys the camp, he puts the kids on a cruel regimen that goes too far. Sick of the endless weeks of "all work and no play," the kids stage a coup and reclaim their summer of fun.
## 7669 Admiral Frank Beardsley returns to New London to run the Coast Guard Academy, his last stop before a probable promotion to head the Guard. A widower with eight children, he runs a loving but tight ship, with charts and salutes. The kids long for a permanent home. Helen North is a free spirit, a designer whose ten children live in loving chaos, with occasional group hugs. Helen and Frank, high school sweethearts, reconnect at a reunion, and it's love at first re-sighting. They marry on the spot. Then the problems start as two sets of kids, the free spirits and the disciplined preppies, must live together. The warring factions agree to work together to end the marriage.
## 7670 On a deep space mining mission to a remote planet, an ancient religious relic - thought to be proof of the existence of God - is unearthed and brought aboard. When the unholy artifact unleashes a long-dormant alien race, its glimpse of Heaven transforms the ship into a living Hell. A prequel to the events of the 2008 video game Dead Space.
## 7671 A nurse living in a small town goes on a blind date with a man who is not the person he says he is.
## 7672 After suffering humiliation by the crew Invincible, street dancer Ash looks to gather the best dancers from around the world for a rematch.
## 7673 A zombie outbreak has fallen upon the land in this reimagining of Jane Austen's classic tale of the tangled relationships between lovers from different social classes in 19th century England. Feisty heroine Elizabeth Bennet is a master of martial arts and weaponry and the handsome Mr. Darcy is a fierce zombie killer, yet the epitome of upper class prejudice. As the zombie outbreak intensifies, they must swallow their pride and join forces on the blood-soaked battlefield in order to conquer the undead once and for all.
## 7674 Detective Hoffman is seemingly the last person alive to carry on the Jigsaw legacy. But when his secret is threatened, he must go on the hunt to eliminate all the loose ends.
## 7675 The original '70s TV family is now placed in the 1990s, where they're even more square and out of place than ever.
## 7676 A Harvard professor is lured back into the courtroom after twenty-five years to take the case of a young black man condemned to death for the horrific murder of a child.
## 7677 In 1988, Philadelphia police officer Thomas "Locke" Lockhart, hungry to become a detective, begins tracking a serial killer whose crimes defy scientific explanation. When the killer mysteriously resurfaces nine years later, Locke's obsession with finding the truth threatens to destroy his career, his family, and possibly his sanity.
## 7678 A seemingly perfect family moves into a suburban neighborhood, but when it comes to the truth as to why they're living there, they don't exactly come clean with their neighbors.
## 7679 After a break-in at their house, a couple gets help from one of the cops who answered their call. He helps them install a security system, begins dropping by on short notice and unofficial patrol angling to pry into the couple's problems with the wife. The husband begins wondering if they're getting too much help.
## 7680 A cross-country road race is based on an actual event, the Cannonball Baker Sea to Shining Sea Memorial Trophy Dash, organized by Brock Yates to protest the 55 mph speed limit then in effect in the U.S. The Cannonball was named for Erwin G. "Cannonball" Baker, who in the roaring 20's rode his motorcycle across the country. Many of the characters are based on ruses developed by real Cannonball racers over the several years that the event was run.
## 7681 After building his dream house, architect Newton Davis proposes marriage to his girlfriend, only to be summarily rejected. He seeks solace in a one-night stand with a waitress, never imagining that a woman he slept with once would end up posing as his wife. Gwen's ruse is so effective that by the time Newton learns of his "marriage," the entire town feels like they know him.
## 7682 After discovering they are all dating the same same guy, three popular students from different cliques band together for revenge, so they enlist the help of a new gal in town and conspire to break the jerk's heart, while destroying his reputation.
## 7683 A top-secret government weapons designer is arrested by a clandestine government organization on suspicion of being a clone created by the hostile alien race wanting to take over Earth.
## 7684 A mother concerned about her young son's disturbing behavior thinks something supernatural may be affecting him.
## 7685 Max, a macho, solitary Rottweiler police dog is ordered to go undercover as a primped show dog in a prestigious Dog Show, along with his human partner, to avert a disaster from happening.
## 7686 A fateful meeting with a mysterious stranger inspires Pee-wee Herman to take his first-ever holiday.
## 7687 A woman tries to help her teenage daughter when she becomes the victim of online bullying.
## 7688 Annoyed by the responsibility of being an older brother to Dil, Tommy sets out with Chuckie, Phil, and Lil to return his baby brother to the hospital. However, they inadvertently get lost in the woods during their trip.
## 7689 From the director of the Hangover trilogy and Joker, Road Trip is a raunchy college comedy classic. After an Ithaca college student films his one-night stand with a beautiful sorority girl, he discovers one of his friends has accidentally mailed the homemade porn tape to his girlfriend. In a frenzy, he must borrow a car and hit the road in a desperate bid to intercept the tape. Featuring a talented cast that includes Breckin Meyer, Rachel Blanchard, Seann William Scott, Amy Smart, Fred Ward, Tom Green, Anthony Rapp, Andy Dick, and Ethan Suplee.
## 7690 Rainbow press reporter Ludo is sentenced to 8 months, but is released on probation. But he has to work 300 hours for a local daycare center and meets Anna who has unfinished business with him.
## 7691 Two small children and a ship's cook survive a shipwreck and find safety on an idyllic tropical island. Soon, however, the cook dies and the young boy and girl are left on their own. Days become years and Emmeline and Richard make a home for themselves surrounded by exotic creatures and nature's beauty. But will they ever see civilization again?
## 7692 A group of top female agents from American, British, Chinese, Colombian, and German government agencies are drawn together to try and stop an organization from acquiring a deadly weapon to send the world into chaos.
## 7693 When Chloe discovers that her new home's garden gnomes are not what they seem, she must decide between the pursuit of a desired high school life and taking up the fight against the Troggs.
## 7694 In 1962 England, a young couple finds their idyllic romance colliding with issues of sexual freedom and societal pressure, leading to an awkward and fateful wedding night.
## 7695 A teenage girl and her father travel to a remote alien moon, aiming to strike it rich. They've secured a contract to harvest a large deposit of the elusive gems hidden in the depths of the moon's toxic forest. But there are others roving the wilderness and the job quickly devolves into a fight to survive.
## 7696 A young man and woman find love in an unlikely place while carrying out a shady deal.
## 7697 A teacher opens a time capsule that has been dug up at his son's elementary school; in it are some chilling predictions -- some that have already occurred and others that are about to -- that lead him to believe his family plays a role in the events that are about to unfold.
## 7698 People mysteriously start receiving voicemail messages from their future selves, in the form of the sound of them reacting to their own violent deaths, along with the exact date and time of their future death, listed on the message log. The plot thickens as the surviving characters pursue the answers to this mystery which could save their lives.
## 7699 A 27-year-old guy from a peripheral Roman suburb leads a normal but repetitive life: his conscience manifests in the form of an armadillo with whom he has conversations bordering on paradoxical during which he updates him on what's happening in the world. Based on the best-selling graphic novel.
## 7700 Neil, Will and Simon receive an invite from Jay to join him in Australia whilst on his gap year, who promises them it’s ”the sex capital of the world”. With their lives now rather dull compared to their hedonistic school days and legendary lads holiday, it’s an offer they can’t refuse. Once again, they put growing up temporarily on-hold, and embark on a backpacking holiday of a lifetime in an awful car, inspired by Peter Andre’s ‘Mysterious Girl’. Will soon finds himself battling with the lads to do something cultural, whilst they focus their attention on drinking, girls, and annoying fellow travelers.
## 7701 Best pals Jason and Daniel indulge in casual flings and revel in their carefree, unattached lives. After learning that the marriage of their friend Mikey is over, they gladly welcome him back into their circle. The three young men make a pact to have fun and avoid commitment. However, when all three find themselves involved in serious relationships, they must keep their romances secret from one another.
## 7702 At “Prom,” every couple has a story and no two are exactly alike. As the big dance approaches for Nova Prescott, it’s a battle of wills as she finds herself drawn to the guy who gets in the way of her perfect prom. Fellow seniors Mei and Tyler harbor secrets, while others face all the insecurity and anticipation that surrounds one of high school’s most seminal events.
## 7703 An adventure set in the early part of the 20th century, focused on a popular novelist and her dealings with would-be suitors, the cops, monsters, and other distractions.
## 7704 After taking his dying father's advice, Hal dates only the embodiments of female physical perfection. But that all changes after Hal has an unexpected run-in with self-help guru Tony Robbins. Intrigued by Hal's shallowness, Robbins hypnotizes him into seeing the beauty that exists even in the least physically appealing women. Hal soon falls for Rosemary, but he doesn't realize that his gorgeous girlfriend is actually a 300-pound-not-so-hottie.
## 7705 Volcanologist Harry Dalton comes to the sleepy town of Dante's Peak to investigate the recent rumblings of the dormant volcano the burg is named for. Before long, his worst fears are realized when a massive eruption hits, and immediately, Harry, the mayor and the townspeople find themselves fighting for their lives amid a catastrophic nightmare.
## 7706 Sam Witwicky leaves the Autobots behind for a normal life. But when his mind is filled with cryptic symbols, the Decepticons target him and he is dragged back into the Transformers' war.
## 7707 In a futuristic world that has embraced ape slavery, a chimpanzee named Caesar resurfaces after almost twenty years of hiding from the authorities, and prepares for a revolt against humanity.
## 7708 Two years have passed. After missing their separation, the Leroy seem perfectly successful in their divorce. But the appearance of two new lovers in the life of Vincent and Florence will set fire to the powders. The match between the former spouses resumes.
## 7709 When his dysfunctional family clashes over the holidays, young Max is disillusioned and turns his back on Christmas. Little does he know, this lack of festive spirit has unleashed the wrath of Krampus: a demonic force of ancient evil intent on punishing non-believers.
## 7710 Zoey is a talented dancer whose organized life is rudely disrupted when she moves in with her new step-dad and three step-brothers, until she discovers a dog-training app that can get boys to obey her every command. But she soon learns that it isn't the cure-all she had hoped for.
## 7711 Kai—an outcast—joins Oishi, the leader of 47 outcast samurai. Together they seek vengeance upon the treacherous overlord who killed their master and banished their kind. To restore honour to their homeland, the warriors embark upon a quest that challenges them with a series of trials that would destroy ordinary warriors.
## 7712 Shy, sensitive April is the class virgin, torn between an illicit flirtation with her soccer coach Mr. B and an unrequited crush on sweet stoner Teddy. Emily, meanwhile, offers sexual favors to every boy to cross her path — including both Teddy and his best friend Fred, a live wire without filters or boundaries. As one high school party bleeds into the next — and April and Teddy struggle to admit their mutual affection — Fred's escalating recklessness starts to spiral into chaos.
## 7713 A former Weather Underground activist goes on the run from a journalist who discovers his identity.
## 7714 Christmas holidays on the snow of Cortina D'Ampezzo. Mario, a guy from Rome who has not much money, falls in love with the American Samantha, the girlfriend of hypochondriac Roberto. Billo, a singer and a playboy, meets Ivana: she's married with a rich man, Donatone, but in the past she had a flirt with Billo, who wants to reignite the flame.
## 7715 CIA Agent Bill Pope is on a mission to track down a shadowy hacker named 'The Dutchman'. When he gets mysteriously killed, an experimental procedure transfers his memories into a dangerous ex-convict. When he wakes up Pope's memories, his mission is to eliminate The Dutchman before the hacker launches ICBMs and starts World War III.
## 7716 School girl Annabel is hassled by her mother, and Mrs. Andrews is annoyed with her daughter, Annabel. They both think that the other has an easy life. On a normal Friday morning, both complain about each other and wish they could have the easy life of their daughter/mother for just one day and their wishes come true as a bit of magic puts Annabel in Mrs. Andrews' body and vice versa. They both have a Freaky Friday.
## 7717 Set in 19th Century Canada, Brigette and her sister Ginger take refuge in a Traders' Fort which later becomes under siege by some savage werewolves. And an enigmatic Indian hunter decides to help the girls, but one of the girls has been bitten by a werewolf. Brigitte and Ginger may have no one to turn to but themselves.
## 7718 Taking place thirty years before the events of Ringu, Ringu 0 provides the shocking background story of how the girl on the video became a deadly, vengeful spirit.
## 7719 On New Year's Eve, inside a police station that's about to be closed for good, officer Jake Roenick must cobble together a force made up cops and criminals to save themselves from a mob looking to kill mobster Marion Bishop.
## 7720 Jigsaw and his apprentice Amanda are dead. Now, upon the news of Detective Kerry's murder, two seasoned FBI profilers, Agent Strahm and Agent Perez, arrive in the terrified community to assist the veteran Detective Hoffman in sifting through Jigsaw's latest grisly remains and piecing together the puzzle. However, when SWAT Commander Rigg is abducted and thrust into a game, the last officer untouched by Jigsaw has but ninety minutes to overcome a series of demented traps and save an old friend...or face the deadly consequences.
## 7721 There comes a point in everyone’s life when you have to make a decision about the direction you’re going to take. For newly-18 American fashion model Cora, that time is now. She’s moved to an Australian coastal town to be with her favourite aunt, after a 'fashion faux pas’ back home.
## 7722 When world-famous air racer Dusty learns that his engine is damaged and he may never race again, he must shift gears and is launched into the world of aerial firefighting. Dusty joins forces with veteran fire and rescue helicopter Blade Ranger and his team, a bunch of all-terrain vehicles known as The Smokejumpers. Together, the fearless team battles a massive wildfire, and Dusty learns what it takes to become a true hero.
## 7723 Mike, an experienced stripper, takes a younger performer called The Kid under his wing and schools him in the arts of partying, picking up women, and making easy money.
## 7724 Still recovering from a heart transplant, a retired FBI profiler returns to service when his own blood analysis offers clues to the identity of a serial killer.
## 7725 In postwar Hong Kong, legendary Wing Chun grandmaster Ip Man is reluctantly called into action once more, when what begin as simple challenges from rival kung fu styles soon draw him into the dark and dangerous underworld of the Triads. Now, to defend life and honor, he has no choice but to fight one last time...
## 7726 Seven days before his wedding, a man must contend with a series of never-ending disasters.
## 7727 Two top CIA operatives wage an epic battle against one another after they discover they are dating the same woman.
## 7728 Samantha MacKenzie, the daughter of the president of the United States, arrives at college with a group of Secret Service agents. Samantha, however, resents their presence and decides she wants to attend school just like a normal student. Her father agrees to recall the agents but secretly assigns James, an undercover agent, to pose as a student. They fall in love, but their romance is jeopardized when Samantha learns James' true identity.
## 7729 Commissioned to map the Far East territories of the Russian Empire, cartographer Jonathan Green sets off on a long journey of unbelievable adventures—making breath-taking discoveries and meeting mysterious creatures, Chinese princesses, deadly masters of oriental martial arts, and even the King of Dragons.
## 7730 Publisher Will Atenton quits a lucrative job in New York to relocate his wife, Libby, and their daughters to a quaint town in New England. However, as they settle into their home the Atentons discover that a woman and her children were murdered there, and the surviving husband is the town's prime suspect. With help from a neighbor who was close to the murdered family, Will pieces together a horrifying chain of events.
## 7731 Los Angeles, California. Officer Murphy, a veteran Metropolitan Police helicopter pilot suffering from severe trauma due to his harsh experiences during the Vietnam War, and Lymangood, his resourceful new partner, are tasked with testing an advanced and heavily armed experimental chopper known as Blue Thunder.
## 7732 A couple experiences a defining moment in their relationship when they are unintentionally embroiled in a murder mystery. As their journey to clear their names takes them from one extreme – and hilarious - circumstance to the next, they must figure out how they, and their relationship, can survive the night.
## 7733 1967-1976. As one of history's greatest fashion designers entered a decade of freedom, neither came out of it in one piece.
## 7734 The savage murders of three young children sparks a controversial trial of three teenagers accused of killing the kids as part of a satanic ritual.
## 7735 In small-town Texas, high school football is a religion, 17-year-old schoolboys carry the hopes of an entire community onto the gridiron every Friday night. When star quarterback Lance Harbor suffers an injury, the Coyotes are forced to regroup under the questionable leadership of John Moxon, a second-string quarterback with a slightly irreverent approach to the game.
## 7736 After his father, an assassin, is brutally murdered, Nick Gant vows revenge on Division, the covert government agency that dabbles in psychic warfare and experimental drugs. Hiding in Hong Kong's underworld, Nick assembles a band of rogue psychics dedicated to destroying Division. Together with Cassie, a teenage clairvoyant, Nick goes in search of a missing girl and a stolen suitcase that could be the key to accomplishing their mutual goal.
## 7737 After getting into a car accident while drunk on the day of her sister's wedding, Gwen Cummings is given a choice between prison or a rehab center. She chooses rehab, but is extremely resistant to taking part in any of the treatment programs they have to offer, refusing to admit that she has an alcohol addiction.
## 7738 After putting together another Broadway flop, down-on-his-luck producer Max Bialystock teams up with timid accountant Leo Bloom in a get-rich-quick scheme to put on the world's worst show.
## 7739 In post-apocalyptic England, an American volunteer and a British survivor team up to fight off a brood of fire-breathing dragons seeking to return to global dominance after centuries of rest underground. The Brit -- leading a clan of survivors to hunt down the King of the Dragons -- has much at stake: His mother was killed by a dragon, but his love is still alive.
## 7740 After Drax Industries' Moonraker space shuttle is hijacked, secret agent James Bond is assigned to investigate, traveling to California to meet the company's owner, the mysterious Hugo Drax. With the help of scientist Dr. Holly Goodhead, Bond soon uncovers Drax's nefarious plans for humanity, all the while fending off an old nemesis, Jaws, and venturing to Venice, Rio, the Amazon...and even outer space.
## 7741 Nell, Simon, and their boy Art are ready to welcome friends and family for what promises to be a perfect Christmas gathering. Perfect except for one thing: everyone is going to die.
## 7742 Rory is an ambitious entrepreneur who brings his American wife and kids to his native country, England, to explore new business opportunities. After abandoning the sanctuary of their safe American suburban surroundings, the family is plunged into the despair of an archaic '80s Britain and their unaffordable new life in an English manor house threatens to destroy the family.
## 7743 Terry works for a bank, and uses computers to communicate with clients all over the world. One day, she gets a strange coded message from an unknown source. After decoding the message, Terry becomes embroiled in an espionage ring. People are killed, and Terry is chased. Throughout, she remains in contact with this mysterious person, who needs Terry's help save his life.
## 7744 Havana, Cuba, 1990. René González, an airplane pilot, unexpectedly flees the country, leaving behind his wife Olga and his daughter Irma, and begins a new life in Miami, where he becomes a member of an anti-Castro organization.
## 7745 A shy teenager living on the Isle of Wight dreams of pop stardom. With the help of an unlikely mentor, she enters a singing competition that will test her integrity, talent, and ambition.
## 7746 The story of Mark Felt, who under the name "Deep Throat" helped journalists Bob Woodward and Carl Bernstein uncover the Watergate scandal in 1974.
## 7747 A man looking for the release of a long-time prisoner takes a police officer, his daughter, and a group of strangers hostage.
## 7748 When Zoe tires of looking for Mr. Right, she decides to have a baby on her own. But on the day she's artificially inseminated, she meets Stan, who seems to be just who she's been searching for all her life. Now, Zoe has to figure out how to make her two life's dreams fit with each other.
## 7749 Boog, a domesticated 900lb. Grizzly bear finds himself stranded in the woods 3 days before Open Season. Forced to rely on Elliot, a fast-talking mule deer, the two form an unlikely friendship and must quickly rally other forest animals if they are to form a rag-tag army against the hunters.
## 7750 Set in postwar America, a man watches his seemingly perfect life fall apart as his daughter's new political affiliation threatens to destroy their family.
## 7751 Jack is a solitary man with a mysterious past. His strange habits will soon become stranger when his past catches up with him.
## 7752 Frank Martin puts the driving gloves on to deliver Valentina, the kidnapped daughter of a Ukranian government official, from Marseilles to Odessa on the Black Sea. En route, he has to contend with thugs who want to intercept Valentina's safe delivery and not let his personal feelings get in the way of his dangerous objective.
## 7753 A student gets his senses enhanced by an experimental drug. But abuse is not an option.
## 7754 Miracle at St. Anna chronicles the story of four American soldiers who are members of the all-black 92nd "Buffalo Soldier" Division stationed in Tuscany, Italy during World War II.
## 7755 Ex-policeman Rollo Lee is sent to run Marwood Zoo, the newly acquired business of a New Zealand tycoon. In order to meet high profit targets and keep the zoo open, Rollo enforces a new 'fierce creatures' policy, whereby only the most impressive and dangerous animals are allowed to remain in the zoo. However, the keepers are less enthusiastic about complying with these demands.
## 7756 Roger Cobb is an author who has just separated from his wife. He moves into a new house and tries to work on a novel based on his experiences in the Vietnam War. Strange things start happening around him; little things at first, but as they become more frequent, Cobb becomes aware that the house resents his presence.
## 7757 Five years after the horrible bloodbath at Camp Crystal Lake, a new group of counselors roam the area, not sensing an ominous lurking presence that proves the grisly legend is real.
## 7758 Faced with sudden doubts about her marriage, a young New York mother teams up with her larger-than-life playboy father to tail her husband.
## 7759 An ordinary guy suddenly finds he has superpowers he can use to help his spirited daughter and the people around them, but he also runs into trouble in the process.
## 7760 As the Japanese surrender at the end of WWII, Gen. Fellers is tasked with deciding if Emperor Hirohito will be hanged as a war criminal. Influencing his ruling is his quest to find Aya, an exchange student he met years earlier in the U.S.
## 7761 In New York City, a crime lord's right-hand man is seduced by a woman seeking retribution.
## 7762 A neurotic worker ant in love with a rebellious princess rises to unlikely stardom when he switches places with a soldier. Signing up to march in a parade, he ends up under the command of a bloodthirsty general. But he's actually been enlisted to fight against a termite army.
## 7763 With the 70s behind him, San Diego's top rated newsman, Ron Burgundy, returns to take New York's first 24-hour news channel by storm.
## 7764 Wealthy slacker college student Mark, his new girlfriend Sarah, and their friends are invited to a special showing at a mysterious wax museum which displays 18 of the most evil men of all time. After his ex-girlfriend and another friend disappear, Mark becomes suspicious.
## 7765 A mild-mannered bank executive (Aaron Eckhart) mentors a teenage con artist and tries to make a career change as a doughnut merchant.
## 7766 When a prostitute is found dead in a Los Angeles skyscraper occupied by a large Japanese corporation, detectives John Connor and Web Smith are called in to investigate. Although Connor has previous experience working in Japan, cultural differences make their progress difficult until a security disc showing the murder turns up. Close scrutiny proves the disc has been doctored, and the detectives realize they're dealing with a cover-up as well.
## 7767 Blown Away tells the story of Jimmy Dove who works for the Boston bomb squad. Shortly after Dove leaves the force his partner is killed by a bomb that Dove thinks might have been made by someone he knows.
## 7768 In the 1930s, three friends—a doctor, a nurse, and an attorney—witness a murder, become suspects themselves and uncover one of the most outrageous plots in American history.
## 7769 Antoine is the Head of HR of a big company. Managing people is his thing, so when his overwhelmed wife suddenly decides to go on holiday and leave him with the responsibility of the house and their four kids, he knows it will be a piece of cake for him. But Antoine has drastically underestimated the mess that four mischievous kids can cause...
## 7770 In a world connected by YouTube, iTunes, and Facebook, Lola and her friends navigate the peer pressures of high school romance and friendship while dodging their sometimes overbearing and confused parents. When Lola's mom, Anne, "accidentally" reads her teenage daughter's racy journal, she realizes just how wide their communication gap has grown.
## 7771 Everybody has one—the sibling who is always just a little bit behind the curve when it comes to getting his life together. For sisters Liz, Miranda and Natalie, that person is their perennially upbeat brother, Ned. But as each of their lives begins to unravel, Ned's family comes to realise that Ned isn't such an idiot after all.
## 7772 In 1958 New York Diane Arbus is a housewife and mother who works as an assistant to her husband, a photographer employed by her wealthy parents. Respectable though her life is, she cannot help but feel uncomfortable in her privileged world. One night, a new neighbor catches Diane's eye, and the enigmatic man inspires her to set forth on the path to discovering her own artistry.
## 7773 David Rice is a man who knows no boundaries, a Jumper, born with the uncanny ability to teleport instantly to anywhere on Earth. When he discovers others like himself, David is thrust into a dangerous and bloodthirsty war while being hunted by a sinister and determined group of zealots who have sworn to destroy all Jumpers. Now, David’s extraordinary gift may be his only hope for survival!
## 7774 With the space program attempting to travel to Mars, 21st century scientists were tasked with warming up the planet so that humans could survive on its surface. They came up with an efficient and cost effective plan of sending cockroaches and mold to the surface so that the mold would absorb the sunlight and the insect corpses would serve as a food source for the mold. It is now the year 2577 and the first manned ship to Mars has landed on the planet and the six crew members are ready for their mission. But what they find are giant mutated humanoid cockroaches with incredible physical strength. The crew members are easily wiped out, but not before sending a transmission back to Earth. Now, humanity will send elite warriors to exterminate the mutated bugs and claim back Mars.
## 7775 Overeducated and underemployed, 28 year old Megan is in the throes of a quarterlife crisis. Squarely into adulthood with no career prospects, no particular motivation to think about her future and no one to relate to, Megan is comfortable lagging a few steps behind - while her friends check off milestones and celebrate their new grown-up status. When her high-school sweetheart proposes, Megan panics and- given an unexpected opportunity to escape for a week - hides out in the home of her new friend, 16-year old Annika and Annika's world-weary single dad Craig.
## 7776 A guy's life is turned around by an email, which includes the names of everyone he's had sex with and ever will have sex with. His situation gets worse when he encounters a femme fatale (Ryder) who targets men guilty of sex crime.
## 7777 Based on an "actual event" that took place in 1943. About a US Navy Destroyer Escort that disappeared from the Philadelphia Naval Shipyard, and sent two men 40 years into the future to 1984.
## 7778 Hondo Harrelson recruits Jim Street to join an elite unit of the Los Angeles Police Department. Together they seek out more members, including tough Deke Kay and single mom Chris Sanchez. The team's first big assignment is to escort crime boss Alex Montel to prison. It seems routine, but when Montel offers a huge reward to anyone who can break him free, criminals of various stripes step up for the prize.
## 7779 When terrorists try to seize control of a Berlin-Paris flight, a soft-spoken young American co-pilot struggles to save the lives of the passengers and crew while forging a surprising connection with one of the hijackers.
## 7780 Tough guy Thomas Beckett is an US soldier working in the Panamanian jungle. His job is to seek out rebels and remove them using his sniper skills. Beckett is notorious for losing his partners on such missions. This time he's accompanied by crack marksman Richard Miller.
## 7781 Frankie McGuire, one of the IRA's deadliest assassins, draws an American family into the crossfire of terrorism. But when he is sent to the U.S. to buy weapons, Frankie is housed with the family of Tom O'Meara, a New York cop who knows nothing about Frankie's real identity. Their surprising friendship, and Tom's growing suspicions, forces Frankie to choose between the promise of peace or a lifetime of murder.
## 7782 The adventures of two California Highway Patrol motorcycle officers as they make their rounds on the freeways of Los Angeles.
## 7783 A relaxing Christmas vacation turns into a terrifying fight for survival as the children begin to turn on their parents
## 7784 Various interconnected people struggle to survive when an earthquake of unimaginable magnitude hits Los Angeles, California.
## 7785 'Sugar' Ray is the owner of an illegal casino and must contend with the pressure of vicious gangsters and corrupt police who want to see him go out of business. In the world of organised crime and police corruption in the 1920s, any dastardly trick is fair.
## 7786 Two police officers struggle to survive when they become trapped beneath the rubble of the World Trade Center on September 11, 2001.
## 7787 Died in a car crash, Paolo is allowed to come back to life for 92 minutes more, thanks to a miscalculation made by Heavenly accountants. He decides to use this newfound time on Earth to fix his mistakes as a father and husband.
## 7788 Extreme athlete turned government operative Xander Cage comes out of self-imposed exile, thought to be long dead, and is set on a collision course with deadly alpha warrior Xiang and his team in a race to recover a sinister and seemingly unstoppable weapon known as Pandora's Box. Recruiting an all-new group of thrill-seeking cohorts, Xander finds himself enmeshed in a deadly conspiracy that points to collusion at the highest levels of world governments.
## 7789 Unemployed and recently dumped, Mitch and his buddy Sam start a revenge-for-hire business to raise the $50,000 that Sam's father needs to get a heart transplant.
## 7790 A Florida con man uses the passing of the long time Congressman from his district who he just happens to share a name with, to get elected to his version of paradise, Congress, where the money flows from lobbyists. But soon he learns the nature of the game and decides to fight back the only way he knows how, with a con.
## 7791 Barley Scott Blair, a Lisbon-based editor of Russian literature who unexpectedly begins working for British intelligence, is commissioned to investigate the purposes of Dante, a dissident scientist trapped in the decaying Soviet Union that is crumbling under the new open-minded policies.
## 7792 Steve Martin and Bonnie Hunt return as heads of the Baker family who, while on vacation, find themselves in competition with a rival family of eight children, headed by Eugene Levy,
## 7793 Helen Harris has a glamorous, big-city life working for one of New York's hottest modeling agencies. But suddenly her free-spirited life gets turned upside down when she must chose between the life she's always loved, and the new loves of her life!
## 7794 A washed up actor best known for playing the title character in the 1980s detective show "Mindhorn" must work with the police when a serial killer says that he will only speak with Detective Mindhorn, whom he believes to be real.
## 7795 When a couple discovers that a brass teapot makes them money whenever they hurt themselves, they must come to terms with how far they are willing to go.
## 7796 Sean Anderson partners with his mom's boyfriend on a mission to find his grandfather, who is thought to be missing on a mythical island.
## 7797 A housewife takes over her husband's umbrella business after his illness.
## 7798 An eccentric, if not charming Southern professor and his crew pose as a band in order to rob a casino, all under the nose of his unsuspecting landlord – a sharp old woman.
## 7799 A psychoanalyst learns to have an illness and as a consequence he decides to quit his job. All his patients get together to find a way to make him feel better.
## 7800 Quentin Jacobsen has spent a lifetime loving the magnificently adventurous Margo Roth Spiegelman from afar. So when she cracks open a window and climbs back into his life-dressed like a ninja and summoning him for an ingenious campaign of revenge-he follows. After their all-nighter ends and a new day breaks, Q arrives at school to discover that Margo, always an enigma, has now become a mystery. But Q soon learns that there are clues-and they're for him. Urged down a disconnected path, the closer he gets, the less Q sees of the girl he thought he knew.
## 7801 A sex-addicted con-man pays for his mother's hospital bills by playing on the sympathies of those who rescue him from choking to death.
## 7802 Tensions rise within an asbestos cleaning crew as they work in an abandoned mental hospital with a horrific past that seems to be coming back.
## 7803 All bets are off when shady homicide cop Rick Santoro witnesses a murder during a boxing match. It's up to him and lifelong friend, Naval intelligence agent Kevin Dunne to uncover the conspiracy behind the killing. At every turn, Santoro makes increasingly shocking discoveries that even he can't turn a blind eye to.
## 7804 The comic strip detective finds his life vastly complicated when Breathless Mahoney makes advances towards him while he is trying to battle Big Boy Caprice's united mob.
## 7805 It's been 10 years since John Connor saved Earth from Judgment Day, and he's now living under the radar, steering clear of using anything Skynet can trace. That is, until he encounters T-X, a robotic assassin ordered to finish what T-1000 started. Good thing Connor's former nemesis, the Terminator, is back to aid the now-adult Connor … just like he promised.
## 7806 While drying out on the West Coast, an alcoholic hit man befriends a tart-tongued woman who might just come in handy when it's time for him to return to Buffalo and settle some old scores.
## 7807 Roxana Aubrey decides to drop her studies and escape her life in Paris for a free diving course in the south of France. She is quickly pulled into a life that reaches new depths brought by the weight of an ocean's descent.
## 7808 Nathan Flomm, in order to avoid the humiliation of having missed out on a hugely successful business, assumes a new identity on Martha's Vineyard. He plots revenge when his former business partner moves to the same town.
## 7809 Something sinister has come to the shores of Erin Island, unbeknownst to the quaint population of this sleepy fishing village resting somewhere off Ireland’s coast. First, some fishermen go missing. Then there is the rash of whale carcasses suddenly washing up on the beach. When the murders start, it’s up to two mismatched cops – an irresponsible alcoholic and his new partner, a by-the-book woman from the mainland – to protect the townsfolk from the giant, bloodsucking, tentacled aliens that prey upon them. Their only weapon, they discover, is booze. If they want to survive the creatures’ onslaught, everyone will have to get very, very drunk!
## 7810 In an attempt to win back her ex-boyfriend on Christmas Eve, Kate ends up ruining her blind date with Miles, a handsome guy she's been set up with. In a strange twist of fate, Kate is given the chance to re-live Christmas Eve twelve times.
## 7811 Sue Ellen Crandell is a teenager eagerly awaiting her mother's summer-long absence. While the babysitter looks after her rambunctious younger siblings, Sue Ellen can party and have fun. But then the babysitter abruptly dies, leaving the Crandells short on cash. Sue Ellen finds a sweet job in fashion by lying about her age and experience on her résumé. But, while her siblings run wild, she discovers the downside of adulthood
## 7812 The dynamic duo of Chon Wang and Roy O'Bannon return for another crazy adventure. This time, they're in London to avenge the murder of Chon's father, but end up on an even bigger case. Chon's sister is there to do the same, but instead unearths a plot to kill the royal family. No one believes her, though, and it's up to Chon and Roy (who has romance on his mind) to prove her right.
## 7813 Elijah must balance his dream of becoming a master sommelier with his father's expectations that he carry on the family's Memphis BBQ joint.
## 7814 Asterix and Obelix have been given a tough mission: Transform the chief's lazy nephew Justforkix into a warrior. When the Vikings abduct him and bring him back to their homeland, Asterix and Obelix must travel to Norway to rescue Justforkix.
## 7815 Two hundred years after Lt. Ripley died, a group of scientists clone her, hoping to breed the ultimate weapon. But the new Ripley is full of surprises … as are the new aliens. Ripley must team with a band of smugglers to keep the creatures from reaching Earth.
## 7816 Two teenage assassins accept what they think will be a quick-and-easy job, until an unexpected target throws them off their plan.
## 7817 Tenacious homicide detective Cassie Mayweather and her still-green partner are working a murder case, attempting to profile two malevolently brilliant young men: cold, calculating killers whose dark secrets might explain their crimes.
## 7818 Carrie White is a lonely and painfully shy teenage girl with telekinetic powers who is slowly pushed to the edge of insanity by frequent bullying from both classmates at her school, and her own religious, but abusive, mother.
## 7819 A Chicago weather man, separated from his wife and children, debates whether professional and personal success are mutually exclusive.
## 7820 Rookie police officer Jessica Loren has been assigned the last shift at a closing police station and must wait for a hazmat crew to collect biomedical evidence. Ordered not to leave the station under any circumstances, Jessica comes to learn that it's more than just an outdated station, it's home to the ultimate embodiment of evil and his devoted bloodthirsty followers. Jessica is left to fend for herself in the Devil's playground.
## 7821 A swinging, hypocritical college student cat raises hell in a satirical vision of the 1960s.
## 7822 Urban horticulturalist Brontë Mitchell has her eye on a gorgeous apartment, but the building's board will rent it only to a married couple. Georges Fauré, a waiter from France whose visa is expiring, needs to marry an American woman to stay in the country. Their marriage of convenience turns into a burden when they must live together to allay the suspicions of the immigration service, as the polar opposites grate on each other's nerves.
## 7823 A man who serves in the war between the forces of Light and Dark comes into possession of a device that can restore life to Moscow, which was nearly destroyed by an apocalyptic event.
## 7824 Batman and Nightwing are forced to team with the Joker's sometimes-girlfriend Harley Quinn to stop a global threat brought about by Poison Ivy and Jason Woodrue, the Floronic Man.
## 7825 A mild-mannered father is transformed into a killing machine after his family is torn apart by a violent act.
## 7826 A futuristic love story set in a world where emotions have been eradicated.
## 7827 The story of Steve Jobs' ascension from college dropout into one of the most revered creative entrepreneurs of the 20th century.
## 7828 Hapless museum night watchman Larry Daley must help his living, breathing exhibit friends out of a pickle now that they've been transferred to the archives at the Smithsonian Institution. Larry's (mis)adventures this time include close encounters with Amelia Earhart, Abe Lincoln and Ivan the Terrible.
## 7829 A sheriff's deputy fights an alternate universe version of himself who grows stronger with each alternate self he kills.
## 7830 Checco is a young Apulian entrepreneur dreamer who has opened a sushi restaurant in his Apulia. However, after one month, the restaurant went bankrupt and he chose to emigrate to Africa to escape from debt. Here he adapts to being a waiter in a resort in Kenya, but at the outbreak of a civil war he decides to embark on a stowaway trip on a boat for migrants to Europe and chooses to do it with his African friends. However, he would not like to return to Italy, but rather to go to Liechtenstein where banking secrecy is in force and there is a lower tax burden than in Italy.
## 7831 When she discovers a wedding planer's business card, Alexia instantly says, "YES" to Mathias unaware that it belongs to his mistress. The groom is now trapped between his bride, and his lover who in charge of his unwanted marriage.
## 7832 Carrie, Charlotte, and Miranda are all married now, but they're still up for a little fun in the sun. When Samantha gets the chance to visit one of the most extravagant vacation destinations on the planet and offers to bring them all along, they surmise that a women-only retreat may be the perfect excuse to eschew their responsibilities and remember what life was like before they decided to settle down.
## 7833 A medical school dropout loses his fiancée in a tragic lawnmower incident and decides to bring her back to life. Unfortunately, he was only able to save her head, so he goes to the red light district in the city and lures prostitutes into a hotel room so he can collect body parts to reassemble her.
## 7834 When Environmental Protection Agency inspector Steve Malone travels to a remote military base in order to check for toxic materials, he brings his family along for the ride. After arriving at the base, his teenage daughter Marti befriends Jean Platt, daughter of the base's commander, General Platt. When people at the base begin acting strangely, Marti becomes convinced that they are slowly being replaced by plant-like aliens.
## 7835 A businessman gets stuck in his office elevator before an important client meeting. Soon this claustrophobic annoyance will turn into a nightmare, for outside that metal cage a deadly virus has begun to spread, turning people into raging zombies...
## 7836 A camera crew catches up with David Brent, the former star of the fictional British series, "The Office" as he now fancies himself a rockstar on the road.
## 7837 Dave is a married man with two kids and a loving wife, and Mitch is a single man who is at the prime of his sexual life. One fateful night while Mitch and Dave are peeing in a fountain when lightning strikes, they switch bodies.
## 7838 A Greek tour guide named Georgia attempts to recapture her kefi (Greek for mojo) by guiding a ragtag group of tourists around Greece and showing them the beauty of her native land. Along the way, she manages to open their eyes to the wonders of an exotic foreign land while beginning to see the world through a new set of eyes in the process.
## 7839 When a gloomy, God-fearing island community is rocked by the assault of an infant, a psychiatrist is called in to examine Dorothy Mills, the teenager accused of the crime. Despite the villagers' hostility to her inquiry, she soon comes to suspect that Dorothy suffers from multiple personality disorder...
## 7840 Life for a single mom in Los Angeles takes an unexpected turn when she allows three young guys to move in with her.
## 7841 A government funded project looks into using psychics to enter people's dreams, with some mechanical help. When a subject dies in their sleep from a heart attack, Alex Gardner becomes suspicious that another of the psychics is killing people in the dreams somehow and that is causing them to die in real life. He must find a way to stop the abuse of the power to enter dreams.
## 7842 The story follows a married couple, apart for a night while the husband takes a business trip with a colleague to whom he's attracted. While he's resisting temptation, his wife encounters her past love.
## 7843 12-year-old Henry Rowengartner, whose late father was a minor league baseball player, grew up dreaming of playing baseball, despite his physical shortcomings. After Henry's arm is broken while trying to catch a baseball at school, the tendon in that arm heals too tightly, allowing Henry to throw pitches that are as fast as 103 mph. Henry is spotted at nearby Wrigley Field by Larry "Fish" Fisher, the general manager of the struggling Chicago Cubs, after Henry throws an opponent's home-run ball all the way from the outfield bleachers back to the catcher, and it seems that Henry may be the pitcher that team owner Bob Carson has been praying for.
## 7844 On a secluded farm in a nondescript rural town, a man is slowly dying. His family gathers to mourn, and soon a darkness grows, marked by waking nightmares and a growing sense that something evil is taking over the family.
## 7845 Lil and Roz are two lifelong friends, having grown up together as neighbors in an idyllic beach town. As adults, their sons have developed a friendship as strong as that which binds their mothers. One summer, all four are confronted by simmering emotions that have been mounting between them, and each find unexpected happiness in relationships that cross the bounds of convention.
## 7846 Six would-be thieves enter a prestigious dance competition as a cover for their larger goal of pulling off a major heist.
## 7847 It has been ten years since The Battle of the Breach and the oceans are still, but restless. Vindicated by the victory at the Breach, the Jaeger program has evolved into the most powerful global defense force in human history. The PPDC now calls upon the best and brightest to rise up and become the next generation of heroes when the Kaiju threat returns.
## 7848 Forced to face the cruel side of life, a devastated, bankrupt merchant chances upon the enchanted castle of a hideous creature, the mere sight of it chills the bone to the marrow. There, a fate worse than death awaits the poor father-of-six, who, after plucking a sweet-scented rose from the repulsive master's verdant garden, must do the impossible: permit his compassionate daughter, Belle, to take his place and pay for the sins of her parent. Now, an impenetrable mystery shrouds the haunted mansion, and, as repugnance gradually turns into affection, only true love could break the spell.
## 7849 Picking up immediately after the events in Resident Evil: Retribution, Alice is the only survivor of what was meant to be humanity's final stand against the undead. Now, she must return to where the nightmare began - The Hive in Raccoon City, where the Umbrella Corporation is gathering its forces for a final strike against the only remaining survivors of the apocalypse.
## 7850 Fifteen years after his father's experiments with matter transmission fail, Philippe Delambre and his uncle François attempt to create a matter transmission device on their own. However, their experiments have disastrous results, turning Philippe into a horrible half-man, half-fly creature.
## 7851 In need of funds for research, Dr. Alan Grant accepts a large sum of money to accompany Paul and Amanda Kirby on an aerial tour of the infamous Isla Sorna. It isn't long before all hell breaks loose and the stranded wayfarers must fight for survival as a host of new -- and even more deadly -- dinosaurs try to make snacks of them.
## 7852 In 1965 Los Angeles, a widowed mother and her two daughters add a new stunt to bolster their séance scam business and unwittingly invite authentic evil into their home. When the youngest daughter is overtaken by the merciless spirit, this small family confronts unthinkable fears to save her and send her possessor back to the other side.
## 7853 From Jane Austen’s novella, the beautiful and cunning Lady Susan Vernon visits the estate of her in-laws to wait out colorful rumors of her dalliances and to find husbands for herself and her daughter. Two young men, handsome Reginald DeCourcy and wealthy Sir James Martin, severely complicate her plans.
## 7854 A seductive alien prowls the streets of Glasgow in search of prey: unsuspecting men who fall under her spell.
## 7855 The living Volkswagen Beetle helps an old lady protect her home from a corrupt developer.
## 7856 Sacha is a real seducer, a man with no ties or emotional or professional. Charlotte is a modern and independent woman, but barely has time to care for their three children. While Sacha and Charlotte are, at first glance, two incompatible beings, when they meet soon discover that they are quite complementary and need each other.
## 7857 When an alcoholic relapses, causing him to lose his wife and his job, he holds a yard sale on his front lawn in an attempt to start over. A new neighbor might be the key to his return to form.
## 7858 Two losers from Milwaukee, Coop and Remer, invent a new game playing basketball, using baseball rules. When the game becomes a huge success, they, along with a billionaire's help, form the Professional Baseketball League where everyone gets the same pay and no team can change cities. Theirs is the only team standing in the way of major rule changes that the owner of a rival team wants to institute.
## 7859 Beatrice celebrates with her family the release of her book: she tells about the accident of her husband Frederic. He became blind and without filter - always so funny and seductive, he is totally unpredictable. But this book, hymn-to-life, will turn into a joyful fist because if Beatrice changed the names, each of his friends seeks to find his character. The book awakens secret jealousies, while the group of friends and family pitch.
## 7860 After a one-night stand, a successful married man finds himself entangled and tricked in a female detective's latest investigation murder scheme.
## 7861 A getaway driver for a bank robbery realizes he has been double crossed and races to find out who betrayed him.
## 7862 Single mother Adele August is bad with money, and even worse when it comes to making decisions. Her straight-laced daughter, Ann, is a successful high school student with Ivy League aspirations. When Adele decides to pack up and move the two of them from the Midwest to Beverly Hills, Calif., to pursue her dreams of Hollywood success, Ann grows frustrated with her mother's irresponsible and impulsive ways.
## 7863 Terrence McDonagh is a New Orleans Police sergeant, who recieves a medal and a promotion to lieutenant for heroism during Hurricane Katrina. Due to his heroic act, McDonagh injures his back and becomes addicted to prescription pain medication. He then finds himself involved with a drug dealer who is suspected of murdering a family of African immigrants.
## 7864 When their bus is crippled on the side of a deserted road, a team of high school athletes discover an opponent they cannot defeat – and may not survive. Staring hungrily at them through the school bus windows, The Creeper returns again and again. But when the teammates discover that it’s selective about whom it attacks, it will test their ability to stick together – as the insatiable menace tries to tear them apart!
## 7865 A rising star at agri-industry giant Archer Daniels Midland (ADM), Mark Whitacre suddenly turns whistleblower. Even as he exposes his company’s multi-national price-fixing conspiracy to the FBI, Whitacre envisions himself being hailed as a hero of the common man and handed a promotion.
## 7866 Left alone to clean up a 6-meter-deep deserted pool, Day falls asleep on an inflatable raft. When he wakes, the water level has sunk so low that he can't climb out on his own. Stuck in the pool, Day screams for help, but the only thing that hears him is a creature from a nearby crocodile farm.
## 7867 When a father is forced to abruptly depart for work, he leaves his children, Aidan and Mia, at their holiday home in the care of his new girlfriend, Grace. Isolated and alone, a blizzard traps them inside the lodge as terrifying events summon specters from Grace's dark past.
## 7868 After being enlisted to recover a dangerous computer program, hacker Lisbeth Salander and journalist Mikael Blomkvist find themselves caught in a web of spies, cybercriminals and corrupt government officials.
## 7869 Two brothers, on either side of the law, face off over organized crime in Brooklyn during the 1970s.
## 7870 The story follows a young lawyer, Arthur Kipps, who is ordered to travel to a remote village and sort out a recently deceased client’s papers. As he works alone in the client’s isolated house, Kipps begins to uncover tragic secrets, his unease growing when he glimpses a mysterious woman dressed only in black. Receiving only silence from the locals, Kipps is forced to uncover the true identity of the Woman in Black on his own, leading to a desperate race against time when he discovers her true identity.
## 7871 Gino Felino is an NYPD detective from Brooklyn who knows everyone and everything in his neighborhood. Killing his partner was someone's big mistake... because he's now out for justice.
## 7872 Skeeter Bronson is a down-on-his-luck guy who's always telling bedtime stories to his niece and nephew. But his life is turned upside down when the fantastical stories he makes up for entertainment inexplicably turn into reality. Can a bewildered Skeeter manage his own unruly fantasies now that the outrageous characters and situations from his mind have morphed into actual people and events?
## 7873 After a small misunderstanding aboard an airplane escalates out of control, timid businessman Dave Buznik is ordered by the court to undergo anger management therapy at the hands of specialist Dr. Buddy Rydell. But when Buddy steps up his aggressive treatment by moving in, Dave goes from mild to wild as the unorthodox treatment wreaks havoc with his life.
## 7874 A group of tenants and visitors are trapped in a 10-story high-rise apartment building infested with demons who proceed to hunt the dwindling humans down.
## 7875 A photographer's obsessive pursuit of dark subject matter leads him into the path of a serial killer who stalks late night commuters, ultimately butchering them in the most gruesome ways.
## 7876 A veteran soldier returns from his completed tour of duty in Iraq, only to find his life turned upside down when he is arbitrarily ordered to return to field duty by the Army.
## 7877 Anton is a cheerful but exceedingly non-ambitious 17-year-old stoner who lives to stay buzzed, watch TV, and moon over Molly, the beautiful girl who lives next door. However, it turns out that the old cliché about idle hands being the devil's playground has a kernel of truth after all.
## 7878 In 1905, a man travels to a remote island in search of his missing sister who has been kidnapped by a mysterious religious cult.
## 7879 Mumble the penguin has a problem: his son Erik, who is reluctant to dance, encounters The Mighty Sven, a penguin who can fly! Things get worse for Mumble when the world is shaken by powerful forces, causing him to brings together the penguin nations and their allies to set things right.
## 7880 When a man fires a hotel maid for stealing, the woman's son gets his revenge.
## 7881 With computer genius Luther Stickell at his side and a beautiful thief on his mind, agent Ethan Hunt races across Australia and Spain to stop a former IMF agent from unleashing a genetically engineered biological weapon called Chimera. This mission, should Hunt choose to accept it, plunges him into the center of an international crisis of terrifying magnitude.
## 7882 A pair of high-frequency traders go up against their old boss in an effort to make millions in a fiber-optic cable deal.
## 7883 Two boys face an onslaught from witches, monsters, ghouls and a talking dummy after they discover a mysterious book by author R. L. Stine.
## 7884 When Cole stays up past his bedtime, he discovers that his hot babysitter is part of a Satanic cult that will stop at nothing to keep him quiet.
## 7885 A well-to-do French family living in Calais deal with a series of setbacks and crises while paying little attention to the grim conditions in the refugee camps within a few miles of their home.
## 7886 A story of lost love, young love, a legendary sword and one last opportunity at redemption.
## 7887 A classical art professor and collector, who doubles as a professional assassin, is coerced out of retirement to avenge the murder of an old friend.
## 7888 A gang of young thieves flee Paris during the violent aftermath of a political election, only to hole up at an Inn run by neo-Nazis.
## 7889 Set between Episode II and III, The Clone Wars is the first computer animated Star Wars film. Anakin and Obi Wan must find out who kidnapped Jabba the Hutt's son and return him safely. The Separatists will try anything to stop them and ruin any chance of a diplomatic agreement between the Hutts and the Republic.
## 7890 This hair-raising remake of the 1979 horror hit depicts the ordeal of the Lutz clan, whose new home has a gory past and a legacy of demons. Before long, the family patriarch is plagued by nightmares and his daughter is seeing phantoms.
## 7891 Julian makes a lucrative living as an escort to older women in the Los Angeles area. He begins a relationship with Michelle, a local politician's wife, without expecting any pay. One of his clients is murdered and Detective Sunday begins pumping him for details on his different clients, something he is reluctant to do considering the nature of his work. Julian begins to suspect he's being framed. Meanwhile Michelle begins to fall in love with him.
## 7892 Sandra, a young woman forced to leave the south of France to flee a violent husband. Without attachment, she returned to Boulogne-sur-Mer, the city of her childhood which she left almost 15 years ago. She finds her mother there and a world she left behind. Without money, she is hired in a fish cannery where she befriends two workers. But one day, one of her colleagues tackles her insistently, she defends herself and kills him accidentally.
## 7893 A man's nervous breakdown causes him to leave his wife and live in his attic for several months.
## 7894 When one school teacher gets the other fired, he is challenged to an after-school fight.
## 7895 Lucinda Price is sent to a reform academy under the assumption that she has killed a boy. There, she meets two mysterious boys, Cam and Daniel, to whom she feels drawn to both. But as the love triangle unfurls, it is Daniel that Luce cannot keep herself away from, and things begin to take a darker turn when she finds out his true identity.
## 7896 Jack Ryan, as a young covert CIA analyst, uncovers a Russian plot to crash the U.S. economy with a terrorist attack.
## 7897 A young medical student struggling to pay tuition is drawn into the shady world of underground body-modification.
## 7898 When a group of misfits is hired by an unknown third party to burglarize a desolate house and acquire one rare VHS tape, they discover more found footage than they had bargained for.
## 7899 Jack McCall is a fast-talking literary agent, who can close any deal, any time, any way. He has set his sights on New Age guru Dr. Sinja for his own selfish purposes. But Dr. Sinja is on to him, and Jack’s life comes unglued after a magical Bodhi tree mysteriously appears in his backyard. With every word Jack speaks, a leaf falls from the tree and he realizes that when the last leaf falls, both he and the tree are toast. Words have never failed Jack McCall, but now he’s got to stop talking and conjure up some outrageous ways to communicate or he’s a goner.
## 7900 Nico Toscani is an Italian immigrant, American patriot, ex-CIA agent, aikido specialist and unorthodox Chicago policeman. He is as committed to his job as he is to his personalized brand of justice—expert and thorough bone-crushing.
## 7901 Fuelled by his restored faith in humanity and inspired by Superman's selfless act, Bruce Wayne and Diana Prince assemble a team of metahumans consisting of Barry Allen, Arthur Curry and Victor Stone to face the catastrophic threat of Steppenwolf and the Parademons who are on the hunt for three Mother Boxes on Earth.
## 7902 A lawyer is asked to come to the police station to clear up a few loose ends in his witness report of a foul murder. "This will only take ten minutes", they say, but it turns out to be one loose end after another, and the ten minutes he is away from his speech become longer and longer.
## 7903 What if a child from another world crash-landed on Earth, but instead of becoming a hero to mankind, he proved to be something far more sinister?
## 7904 Chloé, a fragile young woman, falls in love with her psychoanalyst, Paul. A few months later she moves in with him, but soon discovers that her lover is concealing a part of his identity.
## 7905 A thriller in which a battle of philosophies between a fundamentalist Christian and an atheist escalates into a lethal battle of wills.
## 7906 An American master chemist plans to score big on a once in a lifetime drug deal. All does not go as planned and he is soon entangled in a web of deceit.
## 7907 After a prank blows up a studious high school senior's life, he shares a list of certain things he wishes he'd done differently — and maybe still can.
## 7908 In a near future, the world order has changed. With its 10 millions of unemployed citizens, France has now become a poor country. Its people wavers between rebellion and resignation and find an outlet in the shape of TV broadcast ultra brutal fights in which the players are legally doped and unscrupulous.
## 7909 Tripp is a high school senior with a knack for building trucks who makes an incredible discovery - a gas-guzzling creature named Creech. To protect his mischievous new friend, Tripp hides Creech under the hood of his latest creation, turning it into a real-life super-powered Monster Truck. Together, this unlikely duo with a shared taste for speed team up on a wild and unforgettable journey to reunite Creech with his family.
## 7910 A computer hacker's goal to discover the reason for human existence continually finds his work interrupted thanks to the Management; this time, they send a teenager and lusty love interest to distract him.
## 7911 The Lone Rangers have heavy-metal dreams and a single demo tape they can't get anyone to play. The solution: Hijack an FM rock radio station and hold the deejays hostage until they agree to broadcast the band's tape.
## 7912 Chrissie and her friends set out on a road trip for a final fling before one is shipped off to Vietnam. Along the way, bikers harass the foursome and cause an accident that throws Chrissie from the vehicle. The lawman who arrives on the scene kills one of the bikers and brings Chrissie's friends to the Hewitt homestead, where young Leatherface is learning the tools of terror.
## 7913 Having spent the last 10 years fighting injustice and cruelty, Alejandro de la Vega is now facing his greatest challenge: his loving wife Elena has thrown him out of the house! Elena has filed for divorce and found comfort in the arms of Count Armand, a dashing French aristocrat. But Alejandro knows something she doesn't: Armand is the evil mastermind behind a terrorist plot to destroy the United States. And so, with his marriage and the county's future at stake, it's up to Zorro to save two unions before it's too late.
## 7914 A shy but ambitious film student falls into an intense, emotionally fraught relationship with a charismatic but untrustworthy older man.
## 7915 Diego Abatantuono in the shoes of three huge fans: the Juventus truck driver Tirzan, the head of the ultra Milanese Donato and the Franco inter.
## 7916 When their plans for a nature trip go awry, Polly and boyfriend Seth decide to check into a motel. On their way, they're carjacked and kidnapped by low-rent crooks Dennis and Lacey, who take the victims and their SUV to a nearby gas station. Along the way, they encounter an increasingly terrifying horde of parasites, and if any of them intend to survive, they'll have to outsmart the deadly organisms.
## 7917 Ollie Trinke is a young, suave music publicist who seems to have it all, with a new wife and a baby on the way. But life deals him a bum hand when he's suddenly faced with single fatherhood, a defunct career and having to move in with his father. To bounce back, it takes a new love and the courage instilled in him by his daughter.
## 7918 Returning from a hunting trip in the forest, the Henderson family's car hits an animal in the road. At first they fear it was a man, but when they examine the "body" they find it's a "bigfoot". They think it's dead so they decide to take it home (there could be some money in this). As you guessed, it isn't dead. Far from being the ferocious monster they fear "Harry" to be, he's a friendly giant.
## 7919 Lenny has relocated his family back to the small town where he and his friends grew up. This time around, the grown ups are the ones learning lessons from their kids on a day notoriously full of surprises—the last day of school.
## 7920 Wes Block is a detective who's put on the case of a serial killer. His victims are young and pretty women, which he rapes and murders. The murders are getting personal when the killer chooses victims who are acquaintances of Block. Even his daughters are threatened.
## 7921 After his revival in a hospital morgue, Jason fixes his vengeful attention on the Jarvis family and a group of hitherto carefree teenagers.
## 7922 After the defeat of their old arch nemesis, The Shredder, the Turtles have grown apart as a family. Struggling to keep them together, their rat sensei, Splinter, becomes worried when strange things begin to brew in New York City.
## 7923 Clavius, a powerful Roman military tribune, and his aide, Lucius, are tasked with solving the mystery of what happened to Jesus in the weeks following the crucifixion, in order to disprove the rumors of a risen Messiah and prevent an uprising in Jerusalem.
## 7924 86-year-old Irving Zisman is on a journey across America with the most unlikely companion: his 8 year-old grandson, Billy.
## 7925 Calvin and his friends, who all live in an orphanage, find old shoes with the faded letters MJ connected to a powerline. One stormy night, they go to get the shoes when Calvin and the shoes are struck by lightning. Calvin now has unbelievable basketball powers and has the chance to play for the NBA.
## 7926 Ghang-gheng, the ancient winner-take-all competition in which the deadliest fighters from around the world employ the most spectacular feats of martial arts skills ever displayed in order to win the prized Golden Dragon. But fighting prowess alone will not be enough for Chris to triumph over such daunting foes.
## 7927 A dramatised examination of the health issues and social consequences of America's love affair with fast food.
## 7928 When a young couple buys their dream home, they have no idea what the sweet little old lady upstairs is going to put them through!
## 7929 Threatened by creditors, a newly unemployed man agrees to work for a debt collector, but soon discovers his deal with the devil has unexpected costs.
## 7930 At an international school in Jakarta, a philosophy teacher challenges his class of twenty graduating seniors to choose which ten of them would take shelter underground and reboot the human race in the event of a nuclear apocalypse.
## 7931 Joe Weber is an anthropologist who takes his son on a trip to the New England town of Salem's Lot unaware that it is populated by vampires. When the inhabitants reveal their secret, they ask Joe to write a bible for them.
## 7932 After returning from a wedding reception, a couple staying in an isolated vacation house receive a knock on the door in the mid-hours of the night. What ensues is a violent invasion by three strangers, their faces hidden behind masks. The couple find themselves in a violent struggle, in which they go beyond what either of them thought capable in order to survive.
## 7933 Manhattanite Ashley is known to many as the luckiest woman around. After a chance encounter with a down-and-out young man, however, she realizes that she's swapped her fortune for his.
## 7934 Beatrice Prior and Tobias Eaton venture into the world outside of the fence and are taken into protective custody by a mysterious agency known as the Bureau of Genetic Welfare.
## 7935 An ordinary suburban couple finds it’s not easy keeping up with the Joneses – their impossibly gorgeous and ultra-sophisticated new neighbors – especially when they discover that Mr. and Mrs. “Jones” are covert operatives.
## 7936 Eddie Lomax (Jean-Claude Van Damme) is a drifter who has been in a suicidal funk since the death of his close friend Johnny (Danny Trejo). Riding his motorcycle into a small desert town where Johnny once lived, Lomax is confronted by a gang of toughs, who beat him and steal his bike. However, Lomax is not a man to take an injustice lying down, and soon he begins exacting a violent revenge on the men who stole his motorcycle, with local handyman Jubal Early (Pat Morita) lending a hand and several area ladies offering aid and comfort.
## 7937 An erotic story about a woman, the assistant of an art gallery, who gets involved in an impersonal affair with a man. She barely knows about his life, only about the sex games they play, so the relationship begins to get complicated.
## 7938 Peggy Sue faints at a high school reunion. When she wakes up she finds herself in her own past, just before she finished school.
## 7939 A message from Jim Morrison in a dream prompts cable access TV stars Wayne and Garth to put on a rock concert, "Waynestock," with Aerosmith as headliners. But amid the preparations, Wayne frets that a record producer is putting the moves on his girlfriend, Cassandra, while Garth handles the advances of mega-babe Honey Hornee.
## 7940 Three years after her relationship with Giovanni, Monica is in prison and has to ask his ex for help.
## 7941 The widow of a wise professor stumbles upon one of his inventions that's able to record and play a person's memory.
## 7942 Devoted lifeguard Mitch Buchannon butts heads with a brash new recruit. Together, they uncover a local criminal plot that threatens the future of the Bay.
## 7943 Martin, an ex-Parisian well-heeled hipster passionate about Gustave Flaubert who settled into a Norman village as a baker, sees an English couple moving into a small farm nearby. Not only are the names of the new arrivals Gemma and Charles Bovery, but their behavior also seems to be inspired by Flaubert's heroes.
## 7944 When a young soldier in Vietnam gets dumped by his hometown girl, he and his best friend decide to go AWOL and return to the States to win her back.
## 7945 Immigrants from around the world enter Los Angeles every day, with hopeful visions of a better life, but little notion of what that life may cost. Their desperate scenarios test the humanity of immigration enforcement officers. In Crossing Over, writer-director Wayne Kramer explores the allure of the American dream, and the reality that immigrants find – and create -- in 21st century L.A.
## 7946 The story revolves around a top-secret resort for retired U.S. intelligence officers. A group of criminals led by Balzary breach the compound, hellbent on revenge on Robert, forcing the retired officer and his son to save the day.
## 7947 As a newly crowned princess, Cinderella quickly learns that life at the Palace - and her royal responsibilities - are more challenging than she had imagined. In three heartwarming tales, Cinderella calls on her animal friends and her Fairy Godmother to help as she brings her own grace and charm to her regal role and discovers that being true to yourself is the best way to make your dreams come true.
## 7948 A friendly St. Bernard named "Cujo" contracts rabies and conducts a reign of terror on a small American town.
## 7949 When a much-publicized ice-skating scandal strips them of their gold medals, two world-class athletes skirt their way back onto the ice via a loophole that allows them to compete together as a pairs team.
## 7950 Paris, June 1940. The de Gaulle couple is confronted with the military and political collapse of France. Charles de Gaulle joins London while Yvonne, his wife, finds herself with her three children on the road of the exodus.
## 7951 When Sarah lucks into a sweet one-bedroom at Asilo Del Mar Apartments in Los Angeles, she thinks she's hit the jackpot. It's got plenty of space, friendly tenants, group BBQs and even a cute neighbour next door. All is not what it seems: loud noises start keeping her awake at night; her cat is missing; everyone seems to be a little too helpful and friendly, except for the weirdo, Lester. Soon, Sarah learns she didn't choose this apartment — it chose her.
## 7952 When Mari Gilbert's daughter disappears, police inaction drives her own investigation into the gated Long Island community where Shannan was last seen. Her search brings attention to over a dozen murdered prostitutes.
## 7953 A father is without the means to pay for his daughter's medical treatment. As a last resort, he partners with a greedy co-worker to rob a casino. When things go awry they're forced to hijack a city bus.
## 7954 Two 19th-century opportunists become serial killers so that they can maintain their profitable business supplying cadavers to an anatomist.
## 7955 A group of Mexican emigrants attempts to cross the Mexican-US border. What begins as a hopeful journey becomes a harrowing, bloody and primal fight for survival when a deranged, rifle-toting vigilante and his loyal Belgian Malinois dog chase the group of unarmed men and women through the treacherous borderland. In the harsh, unforgiving desert terrain, the odds are stacked firmly against them as they discover there’s nowhere to hide from the unrelenting, merciless killer.
## 7956 A woman's consuming love forces her to bear the clone of her dead beloved. From his infancy to manhood, she faces the unavoidable complexities of her controversial decision.
## 7957 After thirty years in the big corporation, Ugo Fantozzi retires. Suddenly, he needs things to do in everyday life and he tries a number of activities: helping Pina shopping; babysitting grand-daughter Uga; a trip to Venice; learning golf. He then fakes documents to get a new job, but in the end he becomes a hypochondriac and doesn't even take a long-awaited chance with Miss Silvani.
## 7958 Robot Johnny 5 moves to the city to help his friend Ben Jahrvi with his toy manufacturing enterprise, only to be manipulated by criminals who want to use him for their own nefarious purposes.
## 7959 1960s, the city of Clerville. The forthcoming visit of heiress Eva Kant, who'll be bringing a famous pink diamond with her, catches the attention of Diabolik, the infallible and elusive thief whose real identity is unknown: while trying to steal the jewel, he finds himself bewitched by Eva's charm, a feeling she may be reciprocating. But the police, led by Inspector Ginko, is rapidly closing in on him...
## 7960 Forced into a deadly cat-and-mouse game, a disgraced mixed martial arts fighter is hunted through the jungles of Southeast Asia.
## 7961 Paul is married to Sali. Everything would be fine if they could get a child. Until the day when Sali receives the call that they have been waiting for so long: their adoption file is approved. He is adorable, he is 6 months old, his name is Benjamin. He is blond with blue eyes and white. They - are black.
## 7962 When a young woman unexpectedly arrives at an older man's workplace, looking for answers, the secrets of the past threaten to unravel his new life.
## 7963 Chanel, Dorinda, and Aqua, are off to India to star in a Bollywood movie. But when there they discover that they will have to compete against each other to get the role in the movie. Will the Cheetah's break up again?
## 7964 Littlefoot and his pals set off in search of a "stone of cold fire" that fell from the night sky. Since he's the only one who has seen it though, nobody really believes him. Petrie's uncle Pterano offers support only because he thinks the stone has secret powers and wants it for himself but conceals this from the rest. The young dinos must figure out the truth, before Pterano gets the power.
## 7965 Lt. Dave Robicheaux, a detective in New Iberia, Louisiana, is trying to link the murder of a local hooker to New Orleans mobster Julie (Baby Feet) Balboni, who is co-producer of a Civil War film. At the same time, after Elrod Sykes, the star of the film, reports finding another corpse in the Atchafalaya Swamp near the movie set, Robicheaux starts another investigation, believing the corpse to be the remains of a black man who he saw being murdered 35 years before.
## 7966 A story about a seemingly unlikely couple who cross paths under life-threatening circumstances as though they are destined not only to meet but to save each other's lives. Not once, but twice.
## 7967 Time passes and tension mounts in a Florida police station as an estranged interracial couple awaits news of their missing teenage son.
## 7968 A thief and a priest end up magically transported in the year 0's Palestine, where they'll have to make sure that the Nativity will follow its course.
## 7969 After getting a car ride from an unknown man, Lisa wakes up in a tube. On her arm is strapped a bracelet with a countdown. She quickly understands that every 8 minutes, fire burns an occupied section. She has no choice but to crawl into safe sections to survive. To know why she’s there and how to get out, Lisa will have to face the memories of her dead daughter…
## 7970 In contemporary Los Angeles, two millennials navigating a social media–driven hookup culture begin a relationship that pushes both emotional and physical boundaries.
## 7971 Martino's sister, Caterina, can't work anymore for health reasons and he replaces her as cleaner for dr. Guglielmo Gioia, a mental coach. While the doctor leaves, Martino pretends to be his assistant.
## 7972 In New York City for their annual tradition of Christmas Eve debauchery, three lifelong best friends set out to find the Holy Grail of Christmas parties since their yearly reunion might be coming to an end.
## 7973 An ex-CIA operative is brought back in on a very personal mission and finds himself pitted against his former pupil in a deadly game involving high level CIA officials and the Russian president-elect.
## 7974 While Havana is full of zombies hungry for human flesh, official media reported that the disturbances are caused by dissidents paid by the United States. Panic seizes all until Juan comes to the rescue: he discovers he can kill the undead destroying his brain, and decides to start a small business under the slogan "We kill your loved ones."
## 7975 A peaceful alien planet faces annihilation, as the homeless remainder of the human race sets its eyes on Terra. Mala, a rebellious Terrian teenager, will do everything she can to stop it.
## 7976 The bungling inspector Cruchot finds himself trying to save the residents of St. Tropez from some oil-drinking humanoid aliens. The only way to tell the aliens from the real people, besides their constant thirst for oil-products, is that they sound like empty garbage cans when you touch them. Chaos is ahead.
## 7977 Marisa Ventura is a struggling single mom who works at a posh Manhattan hotel and dreams of a better life for her and her young son. One fateful day, hotel guest and senatorial candidate Christopher Marshall meets Marisa and mistakes her for a wealthy socialite. After an enchanting evening together, the two fall madly in love. But when Marisa's true identity is revealed, issues of class and social status threaten to separate them. Can two people from very different worlds overcome their differences and live happily ever after?
## 7978 Working in the shadow of an esteemed police veteran, brash Detective Ezekiel “Zeke” Banks and his rookie partner take charge of a grisly investigation into murders that are eerily reminiscent of the city’s gruesome past. Unwittingly entrapped in a deepening mystery, Zeke finds himself at the center of the killer’s morbid game.
## 7979 The near future, a time when both hope and hardships drive humanity to look to the stars and beyond. While a mysterious phenomenon menaces to destroy life on planet Earth, astronaut Roy McBride undertakes a mission across the immensity of space and its many perils to uncover the truth about a lost expedition that decades before boldly faced emptiness and silence in search of the unknown.
## 7980 After a violent encounter, Roy finds Rocky and sees something in her eyes that prompts a fateful decision. He takes her with him as he flees to Galveston, an action as ill-advised as it is inescapable.
## 7981 Set in a futuristic world where humans live in isolation and interact through surrogate robots, a cop is forced to leave his home for the first time in years in order to investigate the murders of others' surrogates.
## 7982 An advertising man is slowly sliding downhill. When he is fired from his job in Detroit, he signs up for unemployment. One day they find him a job: teaching thinking skills to Army recruits. He arrives on base to find that there is no structure set up for the class.
## 7983 Once the booming home of pharmaceutical giant Umbrella Corporation, Raccoon City is now a dying Midwestern town. The company’s exodus left the city a wasteland…with great evil brewing below the surface. When that evil is unleashed, the townspeople are forever…changed…and a small group of survivors must work together to uncover the truth behind Umbrella and make it through the night.
## 7984 When a stadium is seized by a group of heavily armed criminals during a major sporting event, an ex-soldier must use all his military skills to save both the daughter of a fallen comrade and the huge crowd unaware of the danger.
## 7985 Walking with Dinosaurs 3D is a film depicting life-like 3D dinosaur characters set in photo-real landscapes that transports audiences to the prehistoric world as it existed 70 million years ago. The film is based on the 1999 documentary television miniseries Walking with Dinosaurs, produced by the BBC. Walking with Dinosaurs 3D is being produced by Evergreen Studios, the company that produced Happy Feet, and it is was released on October 11, 2013.
## 7986 Seminary student Michael Kovak reluctantly attends exorcism school at the Vatican. While he’s in Rome, Michael meets an unorthodox priest who introduces him to the darker side of his faith, uncovering the devil’s reach even to one of the holiest places on Earth.
## 7987 It's fire and brimstone time as grieving mother Karen McCann takes justice into her own hands when a kangaroo court in Los Angeles fails to convict Robert Doob, the monster who raped and murdered her 17-year-old daughter.
## 7988 When his car breaks down, a quiet loner agrees to clean an abandoned family fun center in exchange for repairs. He soon finds himself waging war against possessed animatronic mascots while trapped inside Willy's Wonderland.
## 7989 After a plane crash, a young therapist, Claire, is assigned by her mentor to counsel the flight's five survivors. When they share their recollections of the incident -- which some say include an explosion that the airline claims never happened -- Claire is intrigued by Eric, the most secretive of the passengers.
## 7990 In 1962 New York City, love blossoms between a playboy journalist and a feminist advice author.
## 7991 A news team is sent to Burundi to capture and bring home a legendary 25-foot crocodile. Their difficult task turns potentially deadly when a warlord targets them for death.
## 7992 When the CIA discovers one of its agents leaked information that cost more than 100 people their lives, veteran operative Henry Pelham is assigned to root out the mole with his former lover and colleague Celia Harrison.
## 7993 A horror-thriller centered on a woman living with "face-blindness" after surviving a serial killer's attack. As she lives with her condition, one in which facial features change each time she loses sight of them, the killer closes in.
## 7994 Greek general Themistocles attempts to unite all of Greece by leading the charge that will change the course of the war. Themistocles faces the massive invading Persian forces led by mortal-turned-god, Xerxes and Artemesia, the vengeful commander of the Persian navy.
## 7995 Scandinavia, 1,000 AD. For years, One Eye, a mute warrior of supernatural strength, has been held prisoner by the Norse chieftain Barde. Aided by Are, a boy slave, One Eye slays his captor and together he and Are escape, beginning a journey into the heart of darkness. On their flight, One Eye and Are board a Viking vessel, but the ship is soon engulfed by an endless fog that clears only as the crew sights an unknown land. As the new world reveals its secrets and the Vikings confront their terrible and bloody fate, One Eye discovers his true self.
## 7996 As the global economy teeters on the brink of disaster, a young Wall Street trader partners with disgraced former Wall Street corporate raider Gordon Gekko on a two tiered mission: To alert the financial community to the coming doom, and to find out who was responsible for the death of the young trader's mentor.
## 7997 When Gonzo's breakfast cereal tells him that he's the descendant of aliens from another planet, his attempts at extraterrestrial communication get him kidnapped by a secret government agency, prompting the Muppets to spring into action. It's hard to believe Gonzo's story at first, but Kermit and friends soon find themselves on an epic journey into outer space filled with plenty of intergalactic misadventures.
## 7998 When Hollywood superstar George Reeves dies in his home, private detective Louis Simo is hired to investigate his death and gets caught in a web of lies involving a big studio executive's wife.
## 7999 Amy, a naive college graduate who believes she's destined to be a great poet, begrudgingly accepts a job at a sex shop while she pursues a mentorship with reclusive writer Rat Billings.
## 8000 The Texas Rangers chase down a gang of outlaws led by Butch Cavendish, but the gang ambushes the Rangers, seemingly killing them all. One survivor is found, however, by an American Indian named Tonto, who nurses him back to health. The Ranger, donning a mask and riding a white stallion named Silver, teams up with Tonto to bring the unscrupulous gang and others of that ilk to justice.
## 8001 Balthazar Blake is a master sorcerer in modern-day Manhattan trying to defend the city from his arch-nemesis, Maxim Horvath. Balthazar can't do it alone, so he recruits Dave Stutler, a seemingly average guy who demonstrates hidden potential, as his reluctant protégé. The sorcerer gives his unwilling accomplice a crash course in the art and science of magic, and together, these unlikely partners work to stop the forces of darkness.
## 8002 A Democratic political consultant helps a retired Marine colonel run for mayor in a small, conservative Wisconsin town.
## 8003 Ted Kennedy's life and political career become derailed in the aftermath of a fatal car accident in 1969 that claims the life of a young campaign strategist, Mary Jo Kopechne.
## 8004 In the late 1990s, a drug-addled nihilist resorts to murder to climb the ladder of the London music industry.
## 8005 In a small town on Christmas Eve, a snowstorm brings together a group of young people. They soon find their friendships and love lives colliding, and come Christmas morning, nothing will be the same.
## 8006 Nobody likes self-centered realtor Oren Little, and he prefers it that way. He's deliberately mean to anyone who crosses his path and wants nothing more than to sell one final house and retire. His life turns upside-down when his estranged son drops off a granddaughter he never knew existed. Suddenly left in charge of her and with no idea how to take care of a child, he pawns the girl off on his neighbor, Leah -- but he eventually learns how to open his heart.
## 8007 A seasoned police detective and his partner have just uncovered a string of unusual murders that lead them to a serial killer, who believes that he is the descendant of Judas.
## 8008 The extravagant cop Michael Dooley needs some help to fight a drug dealer who has tried to kill him. A "friend" gives him a dog named Jerry Lee (Officer Lewis), who has been trained to smell drugs. With his help, Dooley sets out to put his enemy behind the bars, but Jerry Lee has a personality of his own and works only when he wants to. On the other hand, the dog is quite good at destroying Dooley's car, house and sex-life...
## 8009 A spacecraft is discovered on the floor of the Pacific Ocean, presumed to be at least 300 years old and of alien origin. A crack team of scientists and experts is assembled and taken to the Habitat, a state-of-the-art underwater living environment, to investigate.
## 8010 Two old friends living in a dystopic future become trapped in a mysterious time loop — one that may have something to do with an ongoing battle between an omnipotent corporation and a ragtag band of rebels.
## 8011 The story of a drifter named Paul who arrives in a small town seeking revenge on the thugs who murdered his friend. Sisters Mary Anne and Ellen, who run the town's hotel, help Paul in his quest for vengeance.
## 8012 Barry is a talented mechanic and family man whose life is torn apart on the eve of a zombie apocalypse. His sister, Brooke, is kidnapped by a sinister team of gas-mask wearing soldiers & experimented on by a psychotic doctor. While Brooke plans her escape Barry goes out on the road to find her & teams up with Benny, a fellow survivor - together they must arm themselves and prepare to battle their way through hordes of flesh-eating monsters in a harsh Australian bushland.
## 8013 In Oklahoma, Agnes, a lonely waitress living in an isolated and dilapidated roadside motel, meets Peter, a quiet and mysterious man with whom she establishes a peculiar relationship.
## 8014 After the conclusion of the Battle City Tournament, deep below the sands of Egypt, an ancient evil has awakened. Anubis, who was defeated centuries ago by Yugi’s mysterious alter ego – the ancient Pharaoh – has returned for revenge. Wielding the power of the Eighth Millennium Item, Anubis is determined to destroy Yugi and take over the world.
## 8015 Danny is a young cop partnered with Nick, a seasoned but ethically tainted veteran. As the two try to stop a gang war in Chinatown, Danny relies on Nick but grows increasingly uncomfortable with the way Nick gets things done.
## 8016 When Vetter's wife is killed in a botched hit organized by Diablo, he seeks revenge against those responsible. But in the process, Vetter and Hicks have to fight their way up the chain to get to Diablo but it's easier said than done when all Vetter can focus on is revenge.
## 8017 After Ben Garvey foolishly turned back to crime, he thought his life was over when he was sentenced to death by lethal injection. But his death sentence isn't quite what it seems, as Ben regains consciousness near an eerie psychiatric ward, where he's told he's been hired as the groundskeeper. With the state of his soul in question, and the love for his wife and daughter all the more real and powerful, Ben must figure out if he's truly cheated death, or if he's become part of something far more sinister.
## 8018 Fabienne is a star; a star of French cinema. She reigns amongst men who love and admire her. When she publishes her memoirs, her daughter Lumir returns from New York to Paris with her husband and young child. The reunion between mother and daughter will quickly turn to confrontation: truths will be told, accounts settled, loves and resentments confessed.
## 8019 Mike Fallon, the Accident Man, is a stone cold killer. When a loved one is murdered by his own crew, Fallon is forced to avenge the one person who actually meant something to him.
## 8020 This is the politically incorrect third and final part of the now famously successful trilogy, where Mr. Müller and his problem kids Chantal, Danger and Co. once again take up arms against their sworn enemy, the German education system.
## 8021 In a boorish future, the government sponsors a popular, but bloody, cross-country race in which points are scored by mowing down pedestrians. Five teams, each comprised of a male and female, compete using cars equipped with deadly weapons. Frankenstein, the mysterious returning champion, has become America's hero, but this time he has a passenger from the underground resistance.
## 8022 A group of armed robbers fleeing the police head for the New Jersey Tunnel and run right into trucks transporting toxic waste. The spectacular explosion that follows results in both ends of the tunnel collapsing and the handful of people who survived the explosion are now in peril. Kit Latura is the only man with the skill and knowledge to lead the band of survivors out of the tunnel before the structure collapses.
## 8023 A faulty computer causes a passenger space shuttle to head straight for the sun, and man-with-a-past, Ted Striker must save the day and get the shuttle back on track – again – all the while trying to patch up his relationship with Elaine.
## 8024 Alexandre Taillard de Vorms is a force to be reckoned with. With his silver mane and tanned, athletic body, he stalks the world stage as Minister of Foreign Affairs for France, waging his own war backed up by the holy trinity of diplomatic concepts: legitimacy, lucidity, and efficacy. Enter Arthur Vlaminck. Hired to write the minister's speeches, Arthur must contend with the sensibilities of his boss and the dirty dealings within the Quai d'Orsay, the ministry's home.
## 8025 Just after a bad breakup, Charlie MacKenzie falls for lovely butcher Harriet Michaels and introduces her to his parents. But, as voracious consumers of sensational tabloids, his parents soon come to suspect that Harriet is actually a notorious serial killer -- "Mrs. X" -- wanted in connection with a string of bizarre honeymoon killings. Thinking his parents foolish, Charlie proposes to Harriet. But while on his honeymoon with her, he begins to fear they were right.
## 8026 A law student takes a job as a night watchman at a morgue and begins to discover clues that implicate him as the suspect in a series of murders.
## 8027 The owner of a dilapidated B&B has an idea: in order to dodge bankruptcy, he has to turn his business into a place of worship—a tax-free activity, where he'll host pilgrims in exchange for a generous donation. He joins forces with an unscrupulous accountant and a failed novelist to come up with his new religion.
## 8028 When Vicki Maloney is randomly abducted from a suburban street by a disturbed couple, she soon observes the dynamic between her captors and quickly realises she must drive a wedge between them if she is to survive.
## 8029 After their car breaks down, a group of young travelers find themselves stranded at a roadside museum run by the mysterious Mr. Slausen and populated by his collection of supernatural mannequins.
## 8030 Two friends named Gerry become lost in the desert after taking a wrong turn. Their attempts to find their way home only lead them into further trouble.
## 8031 A man dedicated to religion and very faithful husband suddenly finds himself single. The new shop assistant in his shop will overwhelm his life.
## 8032 A young woman makes a surprising discovery about the wife of her late best friend.
## 8033 Newly engaged, Thomas meets his future father-in-law Gilbert, who has been married for 30 years to Suzanne. Disillusioned Gilbert is convinced that his marriage has meant he's missed out on life. He persuades Thomas not to marry his daughter Lola and encourages him to drop everything else in his life as well. The two men then throw themselves into a new brats' life full of adventure, convinced that freedom is elsewhere. But at what cost do we rediscover our adolescent dreams?
## 8034 A panicked young woman and her two best friends fly to Mexico to delete a ranting email she sent to her new boyfriend. On arrival, they run into her former beau, who soon gets caught up in their frantic scheme.
## 8035 Old-school magic meets the modern world when young Alex stumbles upon the mythical sword Excalibur. He soon unites his friends and enemies, and they become knights who join forces with the legendary wizard Merlin. Together, they must save mankind from the wicked enchantress Morgana and her army of supernatural warriors.
## 8036 A group of friends on a climbing vacation ignore warnings that the mountains are closed and start their ascent anyway. Collapsing bridges, bear traps and other dangers threaten to splinter the group… when the real hell begins and an unseen villain begins picking them off one by one.
## 8037 Intrepid teenage private eye Nancy Drew heads to Tinseltown with her father to investigate the unsolved murder of a movie star in this old-fashioned whodunit based on Carolyn Keene's popular series of books for young adults. But can the small-town girl cut through the Hollywood hype to solve the case?
## 8038 Autumn in New York follows the sexual exploits of Will Keane - New York restaurateur, infamous verging-on-50 playboy, master of the no-commitment seduction - until he runs into an unexpected dead end when he meets Charlotte Fielding. Charlotte is half Will's age and twice his match, a 21 year-old free spirit yearning to get out and taste the excitement of adult life.
## 8039 During a wild vacation in Las Vegas, career woman Joy McNally and playboy Jack Fuller come to the sober realization that they have married each other after a night of drunken abandon. They are then compelled, for legal reasons, to live life as a couple for a limited period of time. At stake is a large amount of money.
## 8040 The boyfriend of an abducted woman never gives up the search as the abductor looks on.
## 8041 When Destiny, captain of three-time national champions "The Rebels," is challenged to a global cheer showdown by an edgy new team called "The Truth," the Cheer Goddess organizes a virtual battle for squads from all around the world. It seems like the whole world wants to take down Destiny and her team, and they just might succeed, unless Destiny can rise to the challenge, set her ego aside and figure out who her real friends are.
## 8042 Master car thieves square off against French gangsters in the South of France with money, women and lives all on the line.
## 8043 A princess has to pretend to be in love with a rude and ignorant boy to obtein success among her citizens.
## 8044 A teenager is stuck in a time loop that is not quite the same each time. She must uncover the truth but her actions have consequences for herself and others.
## 8045 An evening of drunken prank calls becomes a nightmare for a pair of teenagers when a mysterious stranger turns their own game against them.
## 8046 In this fifth installment, Death is just as omnipresent as ever, and is unleashed after one man’s premonition saves a group of coworkers from a terrifying suspension bridge collapse. But this group of unsuspecting souls was never supposed to survive, and, in a terrifying race against time, the ill-fated group frantically tries to discover a way to escape Death’s sinister agenda.
## 8047 A deadly virus has spread across the globe. Contagion is everywhere, no one is safe, and no one can be trusted. Four friends race through the back roads of the American West on their way to a secluded utopian beach in the Gulf of Mexico where they could peacefully wait out the pandemic. Their plans take a grim turn when their car breaks down on an isolated road starting a chain of events that will seal their fates.
## 8048 A genetically engineered assassin with deadly aim, known only as "Agent 47" eliminates strategic targets for a top-secret organization. But when he's double-crossed, the hunter becomes the prey as 47 finds himself in a life-or-death game of international intrigue.
## 8049 John Henry returns to his hometown in hopes of repairing his relationship with his estranged father, but a local gang is terrorizing the town. John Henry is the only one who can stop them, however he has abandoned both his gun and reputation as a fearless quick-draw killer.
## 8050 Aging publisher Will Randall is at the end of his rope when a younger co-worker snatches his job out from under his nose. But after being bitten by a wolf, Will suddenly finds himself full of youthful vigor. As he struggles to regain his position, he becomes enthralled with Laura Alden, his former boss's daughter. And, as increasingly animal-like urges begin to overwhelm him, Randall worries that he may be turning into the creature that bit him.
## 8051 When Clara’s mother leaves her a mysterious gift, she embarks on a journey to four secret realms—where she discovers her greatest strength could change the world.
## 8052 A guy gets more than he bargained for after entering into an affair with the wife of an investment banker. Soon, a suspicious death and substantial life insurance policy embroil him in a scandal.
## 8053 A dangerous international spy is determined to give up his high stakes life to finally build a closer relationship with his estranged wife and daughter. But first, he must complete one last mission - even if it means juggling the two toughest assignments yet: hunting down the world's most ruthless terrorist and looking after his teenage daughter for the first time in ten years, while his wife is out of town.
## 8054 After exorcising the demons of his ex-, Malcolm starts afresh with his new girlfriend and her two children. After moving into their dream home, Malcolm is once again plagued by bizarre paranormal events.
## 8055 Lucas and Clementine live peacefully in their isolated country house, but one night they wake up to strange noise. They're not alone... and a group of hooded assailants begin to terrorize them throughout the night.
## 8056 Best friends since they were kids, Rabbi Jacob Schram and Father Brian Finn are dynamic and popular young men living and working on New York's Upper West Side. When Anna Reilly, once their childhood friend and now grown into a beautiful corporate executive, suddenly returns to the city, she reenters Jake and Brian's lives and hearts with a vengeance. Sparks fly and an unusual and complicated love triangle ensues.
## 8057 Legends claim that Saurus Rock keeps bad luck out of the Great Valley. Is it really true? Could the mysterious Longneck named Doc be the famous Lone Dinosaur, who can defeat a Sharptooth with his lasso-like tail? To find out, Littlefoot and company must cross the great Valley and face a dangerous Sharptooth themselves!
## 8058 A couple of angels, O'Reilly and Jackson, are sent to Earth to make sure that their next supervised love-connection succeeds. They follow Celine, a spoiled rich girl who has just accidentally shot a suitor and, due to a misunderstanding, is kidnapped by janitor Robert. Although Celine quickly frees herself, she stays with Robert for thrills. O'Reilly and Jackson pursue, hoping to unite the prospective lovers.
## 8059 An ex-mercenary known for finding missing children is hired by a mixed martial arts fighter whose daughter has been kidnapped.
## 8060 No one is safe when seemingly random killings emerge as a deadly pattern intended to usher in the end of the world. A murder victim with the same DNA as Christ. A serial killer mimicking the deaths of the 12 Apostles. Inspector Niemans and a young, rebellious detective team up with a beautiful expert in religion to crack the case before their elusive suspect completes the cycle of terror, paving the way to an even bigger bloody catastrophe.
## 8061 A man is abandoned by his wife and then falls in love with his neighbor, the perfect, ideal woman. The only problem: she doesn't exist!
## 8062 Two horror segments based on Edgar Allan Poe stories set in and around the city of Pittsburgh. "The Facts in the Case of M. Valdemar" concerns a cheating wife who is trying to scam her dying husband out of millions by having her doctor/hypnotist lover hypnotize the geezer into signing his dough over to her. The old man dies while under hypnosis and is stuck in the limbo between the here and the hereafter. The door to the physical world is opened and the undead attempt to enter it. "Black Cat" is the story of Rodd Usher, an alcoholic photographer/artist, who descends into madness after he kills a stray cat that his live-in girlfriend Annabelle brings home. One murder leads to another, and the complex cover-ups begin.
## 8063 The children of a small European mountain village end up being its only residents, soon after the adults cannot take their behavior any longer.
## 8064 Holly is tired of moving every time her mom Jean breaks up with yet another second-rate guy. To distract her mother from her latest bad choice, Holly conceives the perfect plan for the perfect man, an imaginary secret admirer who will romance Jean and boost her self-esteem.
## 8065 Lestat de Lioncourt is awakened from his slumber. Bored with his existence, he has now become this generation's new Rock God. While in the course of time, another has arisen, Akasha, the Queen of the Vampires and the Dammed. He wants immortal fame, his fellow vampires want him eternally dead for his betrayal, and the Queen wants him for her King. Who will be the first to reach him? Who shall win?
## 8066 Simon Templar (The Saint), is a thief for hire, whose latest job to steal the secret process for cold fusion puts him at odds with a traitor bent on toppling the Russian government, as well as the woman who holds its secret.
## 8067 A celebrity journalist and renowned womanizer starts to rethink his life choices after he falls for a mysterious model who leads a double life.
## 8068 Unable to face his new reality in a wheelchair, Ángel develops a deadly obsession with the woman who left him and unleashes a sinister revenge plot.
## 8069 Detective Yvonne is the widow of police chief Santi, a local hero in a town on the French Riviera. When she learns he was in fact a crooked cop, she tries to right his wrongs. Crossing paths with Antoine, a victim of Santi, sets off a series of wild events.
## 8070 A young woman and her fiancé are in search of the perfect starter home. After following a mysterious real estate agent to a new housing development, the couple finds themselves trapped in a maze of identical houses and forced to raise an otherworldly child.
## 8071 Mike and Dave are young, adventurous, fun-loving brothers who tend to get out of control at family gatherings. When their sister Jeanie reveals her Hawaiian wedding plans, the rest of the Stangles insist that the brothers bring respectable dates. After placing an ad on Craigslist, the siblings decide to pick Tatiana and Alice, two charming and seemingly normal women. Once they arrive on the island, however, Mike and Dave realize that their companions are ready to get wild and party.
## 8072 Mike is an unmotivated stoner whose small-town life with his live-in girlfriend, Phoebe, is suddenly turned upside down. Unbeknownst to him, Mike is actually a highly trained, lethal sleeper agent. In the blink of an eye, as his secret past comes back to haunt him, Mike is thrust into the middle of a deadly government operation and is forced to summon his inner action-hero in order to survive.
## 8073 After an unprecedented series of natural disasters threatened the planet, the world's leaders came together to create an intricate network of satellites to control the global climate and keep everyone safe. But now, something has gone wrong: the system built to protect Earth is attacking it, and it becomes a race against the clock to uncover the real threat before a worldwide geostorm wipes out everything and everyone along with it.
## 8074 One clear summer day in a Baltimore suburb, a baby goes missing from her front porch. Two young girls serve seven years for the crime and are released into a town that hasn't fully forgiven or forgotten. Soon, another child is missing, and two detectives are called in to investigate the mystery in a community where everyone seems to have a secret.
## 8075 Alice hires a professional negotiator to obtain the release of her engineer husband, who has been kidnapped by anti-government guerrillas in South America.
## 8076 The Griswold family hits the road again for a typically ill-fated vacation, this time to the glitzy mecca of slots and showgirls—Las Vegas.
## 8077 Conan is commissioned by the evil queen Taramis to safely escort a teen princess and her powerful bodyguard to a far away castle to retrieve the magic Horn of Dagoth. Unknown to Conan, the queen plans to sacrifice the princess when she returns and inherit her kingdom after the bodyguard kills Conan. The queen's plans fail to take into consideration Conan's strength and cunning and the abilities of his sidekicks: the eccentric wizard Akiro, the warrior woman Zula, and the inept Malak. Together the hero and his allies must defeat both mortal and supernatural foes in this voyage to sword-and-sorcery land.
## 8078 A British spy is banished to Panama after having an affair with an ambassador's mistress. Once there he makes connection with a local tailor with a nefarious past and connections to all of the top political and gangster figures in Panama. The tailor also has a wife, who works for the Panamanian president and a huge debt. The mission is to learn what the President intends to do with the Canal.
## 8079 Two families, abolitionist Northerners the Stonemans and Southern landowners the Camerons, intertwine. When Confederate colonel Ben Cameron is captured in battle, nurse Elsie Stoneman petitions for his pardon. In Reconstruction-era South Carolina, Cameron founds the Ku Klux Klan, battling Elsie's congressman father and his African-American protégé, Silas Lynch.
## 8080 A pair of aging boxing rivals are coaxed out of retirement to fight one final bout -- 30 years after their last match.
## 8081 When a celebrated TV show host returns to his hometown in the South, his family is there to remind him that going home is no vacation!
## 8082 After going to extremes to cover up an accident, a corrupt cop's life spirals out of control when he starts receiving threats from a mysterious witness.
## 8083 FBI Agent Karl Helter and his partner Rebecca Lombardo are very close to busting a sex-trafficking ring. When they realize their investigation has crossed the path of a brutal serial killer, they team up with a Texas Ranger to put an end to the infamous 'Truck Stop Killer'.
## 8084 Friends hatch a plot to retrieve a stolen cat by posing as drug dealers for a street gang.
## 8085 Phil and Claire Foster fear that their mild-mannered relationship may be falling into a stale rut. During their weekly date night, their dinner reservation leads to their being mistaken for a couple of thieves—and now a number of unsavoury characters want Phil and Claire killed.
## 8086 Abby is a pregnant woman with a curious new boarder in the apartment over her garage. Turns out he's heaven-sent and is speeding along the Apocalypse by bloodying rivers, egging on plagues and following scripture word for word.
## 8087 Desperate for companionship, the repressed Willard befriends a group of rats that inhabit his late father's deteriorating mansion. In these furry creatures, Willard finds temporary refuge from daily abuse at the hands of his bedridden mother and his father's old partner, Frank. Soon it becomes clear that the brood of rodents is ready and willing to exact a vicious, deadly revenge on anyone who dares to bully their sensitive new master.
## 8088 A few years from now, Earth will have the first contact with an alien civilisation. These aliens, known as Newcomers, slowly begin to be integrated into human society after years of quarantine.
## 8089 Hard-edged cop John Kimble gets more than he bargained for when he goes undercover as a kindergarten teacher to get the goods on a brutal drug lord while at the same time protecting the man's young son. Pitted against a class of boisterous moppets whose antics try his patience and test his mettle, Kimble may have met his match … in more ways than one.
## 8090 Bound for a remote planet on the far side of the galaxy, the crew of the colony ship 'Covenant' discovers what is thought to be an uncharted paradise, but is actually a dark, dangerous world—which has a sole inhabitant: the 'synthetic', David, survivor of the doomed Prometheus expedition.
## 8091 In the future, the inmates of a private underground prison are computer-controlled with cameras, dream readers, and devices that can cause pain or death. John (Christopher Lambert) and his illegally pregnant wife Karen (Loryn Locklin) are locked inside "The Fortress" but are determined to escape before the birth of their baby.
## 8092 A young man is plunged into a life of subterfuge, deceit and mistaken identity in pursuit of a femme fatale whose heart is never quite within his grasp
## 8093 Anthony and his partner move into a loft in the now gentrified Cabrini-Green. After a chance encounter with an old-timer exposes Anthony to the true story behind Candyman, he unknowingly opens a door to a complex past that unravels his own sanity and unleashes a terrifying wave of violence.
## 8094 When one of his missteps puts his family in jeopardy, Tarzan decides they would be better off without him.
## 8095 A student's premonition of a deadly rollercoaster ride saves her life and a lucky few, but not from death itself – which seeks out those who escaped their fate.
## 8096 After a car crash, a criminal psychologist regains consciousness only to find that she's a patient in the same mental institution that currently employs her. It seems she's been accused of murdering her husband—but she has no memory of committing the crime. As she tries to regain her memory and convince her co-workers of her innocence, a vengeful spirit uses her as an earthly pawn, which further convinces everyone of her guilt.
## 8097 Medical student Paula wins a place at an exclusive Heidelberg medical school. When the body of a young man she met on the train turns up on her dissection table, she begins to investigate the mysterious circumstances surrounding his death, and uncovers a gruesome conspiracy within the school.
## 8098 After being discharged from the Army, Brian Flanagan moves back to Queens and takes a job in a bar run by Doug Coughlin, who teaches Brian the fine art of bar-tending. Brian quickly becomes a patron favorite with his flashy drink-mixing style, and Brian adopts his mentor's cynical philosophy on life and goes for the money.
## 8099 A psychological thriller about a young married couple who buys a beautiful Napa Valley house on several acres of land only to find that the man they bought it from refuses to let go of the property.
## 8100 In the dark silence of the sea during World War II, the submarine USS Tiger Shark prowls on what should be a routine rescue mission. But for the shell-shocked crew, trapped together in the sub's narrow corridors and constricted spaces, this is about to become a journey into the sensory delusions, mental deceptions and runaway fears that lurk just below the surface of the ocean.
## 8101 In a seaside California town, best friends Mac and Nick are on opposite sides of the law. Mac is a former drug dealer trying to clean up his act, while Nick is a high-profile detective trying to take down a Mexican drug lord named Carlos. Soon Nick's loyalties are put to the test when he begins an affair with restaurateur Jo Ann -- a love interest of Mac's -- unwittingly leading his friend into a police-orchestrated trap.
## 8102 A secretary is found dead in a White House bathroom during an international crisis, and Detective Harlan Regis is in charge of the investigation. Despite resistance from the Secret Service, Regis partners with agent Nina Chance. As political tensions rise, they learn that the crime could be part of an elaborate cover-up. Framed as traitors, the pair, plus Regis' partner, break into the White House in order to expose the true culprit.
## 8103 Claudio and Helena are on the verge of breaking up, until the couple experiences another strange phenomenon that looks to help them understand one another more.
## 8104 Ike Graham, New York columnist, writes his text always at the last minute. This time, a drunken man in his favourite bar tells Ike about Maggie Carpenter, a woman who always flees from her grooms in the last possible moment. Ike, who does not have the best opinion about females anyway, writes an offensive column without researching the subject thoroughly.
## 8105 Riko is an honest man, who can count on a group of real friends and a wife who, between highs and lows, he loves forever. But he is also a very angry man with his time, which seems to be punctuated only by backlashes and false starts.
## 8106 After his daughter died in a hit and run, Freddy Gale has waited six years for John Booth, the man responsible, to be released from prison. On the day of release, Gale visits Booth and announces that he will kill him in one week. Booth uses his time to try and make peace with himself and his entourage, and even finds romance. Gale, whose life is spiraling down because of his obsession towards Booth, will bring himself on the very edge of sanity. At he end of the week, both men will find themselves on a collision course with each other.
## 8107 When a young boy contracts a mysterious illness, his mother must decide how far she will go to protect him from terrifying forces in her past.
## 8108 A woman desperately races to save her child after police place her hometown on lockdown due to an active shooter incident.
## 8109 In the near future, Major is the first of her kind: a human saved from a terrible crash, then cyber-enhanced to be a perfect soldier devoted to stopping the world's most dangerous criminals.
## 8110 Construction company owner John Matthews learns that his estranged son, Jason, has been arrested for drug trafficking. Facing an unjust prison sentence for a first time offender courtesy of mandatory minimum sentence laws, Jason has nothing to offer for leniency in good conscience. Desperately, John convinces the DEA and the opportunistic DA Joanne Keeghan to let him go undercover to help make arrests big enough to free his son in return. With the unwitting help of an ex-con employee, John enters the narcotics underworld where every move could be his last in an operation that will demand all his resources, wits and courage to survive.
## 8111 Placed in a foster home that doesn't allow pets, 16-year-old Andi and her younger brother, Bruce, turn an abandoned hotel into a home for their dog. Soon other strays arrive, and the hotel becomes a haven for every orphaned canine in town. But the kids have to do some quick thinking to keep the cops off their tails.
## 8112 A prince and a fellowship of companions set out to rescue his bride from a fortress of alien invaders who have arrived on their home planet.
## 8113 Ousmane Diakité and François Monge are two cops with very different styles, backgrounds and careers. The unlikely pair are reunited once again for a new investigation that takes them across France. What seemed to be a simple drug deal turns out to be a much bigger criminal case wrapped in danger and unexpected comedy.
## 8114 A luxury condo manager leads a staff of workers to seek payback on the Wall Street swindler who defrauded them. With only days until the billionaire gets away with the perfect crime, the unlikely crew of amateur thieves enlists the help of petty crook Slide to steal the $20 million they’re sure is hidden in the penthouse.
## 8115 After withdrawing to the Chateau Marmont, a passionless Hollywood actor reexamines his life when his eleven-year-old daughter surprises him with a visit.
## 8116 A medieval tale with Pythonesque humour: After the death of his father the young Dennis Cooper goes to town where he has to pass several adventures. The town and the whole kingdom is threatened by a terrible monster called 'Jabberwocky'. Will Dennis make his fortune? Is anyone brave enough to defeat the monster?
## 8117 On the afternoon of July 1, 1981, Los Angeles police responded to a distress call on Wonderland Avenue and discovered a grisly quadruple homicide. The police investigation that followed uncovered two versions of the events leading up to the brutal murders - both involving legendary porn actor John Holmes.
## 8118 When a Midwest town learns that a corrupt railroad baron has captured the deeds to their homesteads without their knowledge, a group of young ranchers join forces to take back what is rightfully theirs. They will become the object of the biggest manhunt in the history of the Old West and, as their fame grows, so will the legend of their leader, a young outlaw by the name of Jesse James.
## 8119 Roberta is a bored suburban housewife who is fascinated with a woman, Susan, she only knows about by reading messages to and from her in the personals section of the newspaper. This fascination reaches a peak when an ad with the headline "Desperately Seeking Susan" proposes a rendezvous. Roberta goes too, and in a series of events involving amnesia and mistaken identity, steps into Susan's life.
## 8120 A young woman seeking self-improvement enlists the help of a renowned hypnotist but, after a handful of intense sessions, discovers unexpected and deadly consequences.
## 8121 Beneath Bruce Garrett's under-confident, overweight exterior, the passionate heart of a salsa king lies dormant. Now, one woman is about to reignite his Latin fire.
## 8122 One night, 18 year old Lena is bitten by Louise, leader of a female vampire trio that are as deadly as they are beautiful. Her newfound vampiric lifestyle is a blessing and a curse at the same time. At first, she enjoys the limitless freedom, the luxury, the parties. But soon the murderous blood lust of her comrades in arms proves too much for her, and she falls dangerously in love with Tom, a young undercover cop. When she resolves to turn her back on the bloodsucking band of sisters, Louise fury knows no bounds. Lena will have to choose between immortal love and immortal life.
## 8123 Erin and Garrett are very much in love. When Erin moves to San Francisco to finish her journalism degree and Garrett stays behind in New York to work in the music industry, they gamely keep the romance alive with webcams and frequent-flyer miles. But just when it seems the lovers will soon be reunited, they each score a big break that could separate them for good.
## 8124 James Bond returns as the secret agent 007 to battle the evil organization SPECTRE. Bond must defeat Largo, who has stolen two atomic warheads for nuclear blackmail. But Bond has an ally in Largo's girlfriend, the willowy Domino, who falls for Bond and seeks revenge.
## 8125 Dylan Sprouse, Jim Belushi and Kris Kristofferson lend their voices to this family-friendly tale about a feisty pack of golden retriever puppies that embarks on an Alaskan adventure. When they find themselves stranded in the northern wilderness, the canine offspring of famed sports star Air Bud team up with an experienced sled dog and a husky pup, who teach them the importance of working together.
## 8126 Jean Claude Van Damme plays a dual role as Alex and Chad, twins separated at the death of their parents. Chad is raised by a family retainer in Paris, Alex becomes a petty crook in Hong Kong. Seeing a picture of Alex, Chad rejoins him and convinces him that his rival in Hong Kong is also the man who killed their parents. Alex is suspicious of Chad, especially when it comes to his girlfriend.
## 8127 Ali G unwittingly becomes a pawn in the evil Chancellor's plot to overthrow the Prime Minister of Great Britain. However, instead of bringing the Prime Minister down, Ali is embraced by the nation as the voice of youth and 'realness', making the Prime Minister and his government more popular than ever.
## 8128 The Turtles and the Shredder battle once again, this time for the last cannister of the ooze that created the Turtles, which Shredder wants to create an army of new mutants.
## 8129 In post-World War II America, a woman, rebuilding her life in the suburbs with her husband, kidnaps her neighbor and seeks vengeance for the heinous war crimes she believes he committed against her.
## 8130 In 1970s London, a teenage outsider named Enn falls in love with a rebellious alien girl named Zan, who has come to Earth for a party. Together, they navigate the complexities of intergalactic culture and the trials of first love.
## 8131 Set after the events of Continental Drift, Scrat's epic pursuit of his elusive acorn catapults him outside of Earth, where he accidentally sets off a series of cosmic events that transform and threaten the planet. To save themselves from peril, Manny, Sid, Diego, and the rest of the herd leave their home and embark on a quest full of thrills and spills, highs and lows, laughter and adventure while traveling to exotic new lands and locations.
## 8132 Kelly, Dan and Louis are students at a prestigious business school, destined to become tomorrow's elite. The industrious trio are determined to start putting their education into practise from the off in an attempt to make as much money as they can from their fellow students. Working on the theory that relationships between the sexes can be regulated by market principles, they begin to inflate the popularity of certain individuals artificially, by hiring beautiful and sexy off-campus women as their dates for exclusive and riotous college parties. However their perfect business model soon spirals out of control as their moneymaking scheme takes off in a big way across campus.
## 8133 A rich brat fakes her own kidnapping, but in the process ends up locked in the trunk of a car that gets stolen.
## 8134 Gang leader Tony pulls off a major diamond heist with his crew, but cop-turned-criminal Ling knows who has the loot and responds by kidnapping Tony's daughter and holding her for ransom. Unfortunately, Tony's lost the diamonds as well. As he frantically searches for his daughter and the jewels, Tony pairs with a high-kicking government agent who once worked with Ling and seeks revenge on him.
## 8135 This intense action-thriller unfolds in real time as two embattled souls fight for their lives. Gary Oldman stars as a vicious crime boss out to kill Nick, the lone witness set to testify against him. He hires a mysterious female motorcycle courier to unknowingly deliver a poison-gas bomb to slay Nick, but after she rescues Nick from certain death, the duo must confront an army of ruthless hired killers in order to survive the night.
## 8136 A blind musician hears a murder committed in the apartment upstairs from hers that sends her down a dark path into London's gritty criminal underworld.
## 8137 When Martians suddenly abduct his mom, mischievous Milo rushes to the rescue and discovers why all moms are so special.
## 8138 The timeless tale of King Arthur and the legend of Camelot are retold in this passionate period drama. Arthur is reluctant to hand the crown to Lancelot, and Guinevere is torn between her loyalty to her husband and her growing love for his rival. But Lancelot must balance his loyalty to the throne with the rewards of true love.
## 8139 When a proposed pipeline creates hostilities between residents of a small town, a newly-arrived forest ranger must keep the peace after a snowstorm confines the townspeople to an old lodge. But when a mysterious creature begins terrorizing the group, their worst tendencies and prejudices rise to the surface, and it is up to the ranger to keep the residents alive, both from each other and the monster which plagues them.
## 8140 A zombie apocalypse threatens the sleepy town of Little Haven – at Christmas – forcing Anna and her friends to fight, slash and sing their way to survival, facing the undead in a desperate race to reach their loved ones. But they soon discover that no one is safe in this new world, and with civilization falling apart around them, the only people they can truly rely on are each other.
## 8141 A teacher from New York moves to a small town in Texas, gets fired for being gay, and returns disguised in drag to get revenge on the people who were nasty to him.
## 8142 An underground MMA fighter must confront his sister and his past in an adventure through parallel universes
## 8143 A doctor hires an escort to seduce her husband, whom she suspects of cheating, though unforeseen events put the family in danger.
## 8144 In 2004, Hope Ann Greggory became an American hero after winning the bronze medal for the women's gymnastics team. Today, she's still living in her small hometown, washed-up and embittered. Stuck in the past, Hope must reassess her life when a promising young gymnast threatens her local celebrity status.
## 8145 Autobots and Decepticons are at war, with humans on the sidelines. Optimus Prime is gone. The key to saving our future lies buried in the secrets of the past, in the hidden history of Transformers on Earth.
## 8146 A funny story about two brothers, Pietro and Francesco, and what happens with them and their families after Petro loses his memory.
## 8147 Navy SEAL Shane Wolfe is handed a new assignment: Protect the five Plummer kids from enemies of their recently deceased father -- a government scientist whose top-secret experiment remains hidden in the kids' house.
## 8148 When a college girl who is alone on campus over the Thanksgiving break is targeted by a group of outcasts, she must conquer her deepest fears to outwit them and fight back.
## 8149 On a quest to find out what happened to his missing brother, a scientist, his nephew and their mountain guide discover a fantastic and dangerous lost world in the center of the earth.
## 8150 A disease carried by common cockroaches is killing Manhattan children. In an effort to stop the epidemic an entomologist, Susan Tyler, creates a mutant breed of insect that secretes a fluid to kill the roaches. This mutant breed was engineered to die after one generation, but three years later Susan finds out that the species has survived and evolved into a large, gruesome monster that can mimic human form.
## 8151 Corrupt and sleazy entrepreneur Cetto La Qualunque comes back to Italy and "jumps into politics" lest his law-abiding opponent, Giovanni De Santis, is elected as mayor.
## 8152 Embarking on a journey to fulfill her dreams as a dancer, a young girl discovers a new style of dance that will prove to be the source of both conflict and self-discovery.
## 8153 Join the Mystery Inc. gang as they take on their biggest challenge yet! When they're invited to Spooky Island, a popular amusement park, they soon discover that the attractions aren't the only things that are spooky. Strange things are happening, and it's up to Scooby, Shaggy, Fred, Daphne, and Velma to uncover the truth behind the mysterious happenings.
## 8154 In the late 1940s, a murderous couple known as the 'The Lonely Hearts Killers' kills close to a dozen people. Two detectives try to nab the duo who find their targets via the personals in the paper.
## 8155 A nurse is forced to spring a wounded murder suspect from the hospital when the man’s brother kidnaps his pregnant wife and wants to make a trade.
## 8156 Gabriele is a divorced dad who owns a music store and is completely focused on taking care of his 10-year-old daughter Sofia who spends time with both parents. One day he bumps into his old friend Mara who - for the first time since his separation - reignites his desire to be in a relationship. There is only one problem, Mara hates children!
## 8157 After waking up to find himself all alone in an apartment where a massive party was being held the night before, Sam is immediately forced to face a terrifying reality: the living dead have invaded the streets of Paris.
## 8158 A scientist becomes obsessed with returning his family to normalcy after a terrible accident.
## 8159 Burger Beard is a pirate who is in search of the final page of a magical book that makes any evil plan he writes in it come true, which happens to be the Krabby Patty secret formula. When the entire city of Bikini Bottom is put in danger, SpongeBob, Patrick, Mr. Krabs, Squidward, Sandy, and Plankton need to go on a quest that takes them to the surface. In order to get back the recipe and save their city, the gang must retrieve the book and transform themselves into superheroes.
## 8160 Sought by police and criminals, a small-time huckster makes a deal with a TV newsman for protection.
## 8161 A lonesome stranger with nerves of steel must track down and kill a rogue hitman to satisfy an outstanding debt. But the only information he's been given is a time and location where to find his quarry. No name. No description. Nothing.
## 8162 With the future of the human race at stake, a group of young men and women -- bred for intelligence and obedience -- embark on an expedition to colonize a distant planet. When they uncover disturbing secrets about the mission, they defy their training and begin to explore their most primitive natures. As life on the ship descends into chaos, they soon become consumed by fear, lust and an insatiable hunger for power.
## 8163 When Edna—the elderly and widowed matriarch of the family—goes missing, her daughter and granddaughter travel to their remote family home to find her. Soon after her return, they start to discover a sinister presence haunting the house and taking control of Edna.
## 8164 In 1955, young photographer Dennis Stock develops a close bond with actor James Dean while shooting pictures of the rising Hollywood star.
## 8165 A lawyer puts his family in jeopardy when he captures the last member of a violent clan and tries to forcibly tame her.
## 8166 A group of people are trapped in an elevator high above Philadelphia, and one of them is the devil.
## 8167 In a massive, mysterious chamber, fifty strangers awaken to find themselves trapped with no memory of how they got there. Organized in an inward-facing circle and unable to move, they quickly learn that every two minutes, one of them must die…executed by a strange device in the center of the room.
## 8168 After waking up in a hospital with amnesia, professor Robert Langdon and a doctor must race against time to foil a deadly global plot.
## 8169 I'm Still Here is a portrayal of a tumultuous year in the life of actor Joaquin Phoenix. With remarkable access, the film follows the Oscar-nominee as he announces his retirement from a successful film career in the fall of 2008 and sets off to reinvent himself as a hip-hop musician. The film is a portrait of an artist at a crossroads and explores notions of courage and creative reinvention, as well as the ramifications of a life spent in the public eye.
## 8170 Max and Page are a brilliant mother/daughter con team who have their grift down to a fine science. Max targets wealthy, willing men and marries them. Page then seduces them, and Max catches her husband in the act. Then it's off to palimony city and the next easy mark.
## 8171 As he helps a young artist with her upcoming exhibition, the owner of a mannequin shop's deadly, suppressed desires come to the surface.
## 8172 Star race car Lightning McQueen and his pal Mater head overseas to compete in the World Grand Prix race. But the road to the championship becomes rocky as Mater gets caught up in an intriguing adventure of his own: international espionage.
## 8173 Mary-Kate and Ashley star in this Down Under adventure filled with nonstop Aussie intrigue, laughs and romance. After running afoul of a notorious gangster, Mary-Kate and Ashley take refuge in the FBI Witness Protection Program. Unfortunately, the girls are uncontrollable blabbermouths and they blow their cover in town after town until there's only one hiding place left - Australia.
## 8174 An American village is visited by some unknown life form which leaves the women of the village pregnant. Nine months later, the babies are born, and they all look normal, but it doesn't take the "parents" long to realize that the kids are not human or humane.
## 8175 An agoraphobic woman living alone in New York begins spying on her new neighbors only to witness a disturbing act of violence.
## 8176 Three young children accidentally release a horde of nasty, pint-sized demons from a hole in a suburban backyard. What follows is a classic battle between good and evil as the three kids struggle to overcome a nightmarish hell that is literally taking over the Earth.
## 8177 After their narrow escape at the end of "Pitch Black," Riddick, Jack and the Imam find themselves at the mercy of a madwoman who intends to entomb Riddick forever as part of a twisted art exhibit. With little but a shiv and Riddick's innate viciousness to aid them, Riddick and his allies must find a way to escape from their captor and her band of mercenaries.
## 8178 Burt Gummer (Michael Gross) and his son Travis Welker (Jamie Kennedy) find themselves up to their ears in Graboids and Ass-Blasters when they head to Canada to investigate a series of deadly giant-worm attacks. Arriving at a remote research facility in the artic tundra, Burt begins to suspect that Graboids are secretly being weaponized, but before he can prove his theory, he is sidelined by Graboid venom. With just 48 hours to live, the only hope is to create an antidote from fresh venom — but to do that, someone will have to figure out how to milk a Graboid!
## 8179 When the brave and determined 12-year-old Mike Goldwing discovers that an eccentric billionaire plans to fly to the moon, steal its vast, valuable natural resources, and destroy the American flag planted by the Apollo XI astronauts during man's historic moon landing, the countdown to a spectacular adventure begins! Mike, teamed with his grandfather, best friends Amy and Marty, and a clever chameleon, blasts off on an incredible moon-bound mission, determined to thwart the billionaire's evil plan, capture the flag, and reunite his family.
## 8180 Muriel Bayen, a divorced beautician and mother of two, loves to tell stories. She is a huge fan of this singer Vincent Lacroix, in fact she is a dedicated fan. One day Vincent knock on her door and ask for her help.
## 8181 Koichi takes care of his sister, who has recently returned from a trip abroad in the United States as she is not well. While caring for her, he records evidence of ghosts in their home.
## 8182 A female forensic psychiatrist discovers that all of one of her patient's multiple personalities are murder victims. She will have to find out what's happening before her time is finished.
## 8183 A group of eight college friends gather together at an island mansion belonging to heiress Muffy St. John to celebrate their final year of school. Soon, they begin to fall victim to an unseen murderer over the April Fool's Day weekend, but nothing is as it seems.
## 8184 When a lawyer shows up at the vampire's doorstep, he falls prey to his charms and joins him in his search for fresh blood. Enter Professor Van Helsing, who may be the only one able to vanquish the Count.
## 8185 Once upon a time... in the far away kingdom of Dor... lived a brave and virtuous mouse with comically oversized ears who dreamt of becoming a knight. Banished from his home for having such lofty ambitions, Despereaux sets off on an amazing adventure with his good-hearted rat friend Roscuro, who leads him, at long last, on a very noble quest to rescue an endangered princess and save an entire kingdom from darkness.
## 8186 A ship carrying settlers to a new home on Mars after Earth is rendered uninhabitable is knocked off-course, causing the passengers to consider their place in the universe.
## 8187 During a handover to the head of counter-terrorism of MI5, Harry Pearce, a terrorist escapes custody. When Harry disappears soon after, his protégé is tasked with finding out what happened as an impending attack on London looms, and eventually uncovers a deadly conspiracy.
## 8188 Best friends Tod, a fox kit, and Copper, a hound puppy, visit a country fair when they see a band of dogs called "The Singin' Strays". The band has five members: Dixie, Cash, Granny Rose, and twin brothers Waylon and Floyd. It is important that they perform well because a talent scout is visiting.
## 8189 The first wedding anniversary of Princess Odette and Prince Derek is distracted by field fires set by Knuckles. His master Clavius, wants to conquer the world, and he needs to capture a giant orb to do that. Clavius kidnaps Queen Uberta and Odette with Derek have to save her.
## 8190 In a world ravaged by a virus infection, turning its victims into the Undead, Alice continues on her journey to find survivors and lead them to safety. Her deadly battle with the Umbrella Corporation reaches new heights, but Alice gets some unexpected help from an old friend. A new lead that promises a safe haven from the Undead takes them to Los Angeles, but when they arrive the city is overrun by thousands of Undead - and Alice and her comrades are about to step into a deadly trap.
## 8191 A comedy that follows the chaos that ensues when a meteor hits the Earth carrying alien life forms that give new meaning to the term "survival of the fittest." David Duchovny, Orlando Jones, Seann William Scott, and Julianne Moore are the only people standing between the aliens and world domination... which could be bad news for the Earth.
## 8192 After spending two decades in England, Bill Bryson returns to the U.S., where he decides the best way to connect with his homeland is to hike the Appalachian Trail with one of his oldest friends.
## 8193 Officer Carey Mahoney and his cohorts have finally graduated from the Police Academy and are about to hit the streets on their first assignment. Question is, are they ready to do battle with a band of graffiti-tagging terrorists? Time will tell, but don't sell short this cheerful band of doltish boys in blue.
## 8194 A former college athlete joins forces with a sports consultant to handicap football games for high-rolling gamblers.
## 8195 A troubled veteran gets a chance at redemption by protecting a girl from an assassin after she witnesses a murder. Holding a shotgun with a single shell, he engages in physical and psychological warfare in a desperate fight for the girl's life.
## 8196 Retirement at last! Middle-aged and divorced, company owner Richard Jones is looking forward to a worry-free existence as he arrives at his office on his last day of work. Much to his dismay, he discovers that the management buyout of his company was fraudulent. The company is now bankrupt and the employee pension fund — including his own — has been embezzled. Enlisting the help of his ex-wife Kate, Richard sets out to track down the shady businessman behind the fraud.
## 8197 Set in a bustling bird city on the edge of the majestic Victoria Falls, "Zambezia" is the story of Kai - a naïve, but high-spirited young falcon who travels to the bird city of "Zambezia" where he discovers the truth about his origins and, in defending the city, learns how to be part of a community.
## 8198 Set in Middle America, a group of teens receive an online invitation for sex, though they soon encounter Christian fundamentalists with a much more sinister agenda.
## 8199 Bobby Boucher is a water boy for a struggling college football team. The coach discovers Boucher's hidden rage makes him a tackling machine whose bone-crushing power might vault his team into the playoffs.
## 8200 After NBA star Kevin Durant switches talent with 16 year old Brian, the teenager becomes the star of his high school team, but Durant starts struggling and eventually learns an important lesson.
## 8201 Three people — a blue-collar American, a French journalist and a London school boy — are touched by death in different ways.
## 8202 After overhearing a shocking secret, precocious orphan Lyra Belacqua trades her carefree existence roaming the halls of Jordan College for an otherworldly adventure in the far North, unaware that it's part of her destiny.
## 8203 The story of a young boy in the Midwest is told simultaneously with a tale about a young girl in New York from fifty years ago as they both seek the same mysterious connection.
## 8204 Jackie Cogan is an enforcer hired to restore order after three dumb guys rob a Mob protected card game, causing the local criminal economy to collapse.
## 8205 After a talent scout spots her performing with her dog Boi at a charity gala, Sharpay Evans sets off for the bright lights of NYC, convinced instant fame and fortune are in the bag. But theatre's a dog-eat-dog world. Fortunately, Sharpay also meets Peyton, a handsome student filmmaker who finds Sharpay nearly as fascinating as she finds herself.
## 8206 Citizens of a small town are infected by a biological weapon that causes its victims to become violently insane. As uninfected citizens struggle to survive, the military readies its own response.
## 8207 The "Tucci" are a poor Italian family living in a small village in Lazio. Father, mother, a conceited daughter and a genius son, forced to pretend being stupid to keep up with the family. One day something unexpected happens: the family wins one hundred million Euros. Excited, they decide to keep the winning a secret, but as soon as a single word slips out from the mouth of the householder, they only have one choice to avoid being persecuted by friends and acquaintances: run away. They leave at night, heading to Milan. They will realize as soon as they arrive that today's rich people behaves very differently from the past, and being rich has become a real bother... this discovery will make things way different from what Tuccis' expected.
## 8208 Gerry is a talented but down-on-his-luck gambler whose fortunes begin to change when he meets Curtis, a younger, highly charismatic poker player. The two strike up an immediate friendship and Gerry quickly persuades his new friend to accompany him on a road trip to a legendary high stakes poker game in New Orleans. As they make their way down the Mississippi River, Gerry and Curtis manage to find themselves in just about every bar, racetrack, casino, and pool hall they can find, experiencing both incredible highs and dispiriting lows, but ultimately forging a deep and genuine bond that will stay with them long after their adventure is over.
## 8209 A former agent of the CIA and his estranged daughter go on the run after his employers target them for assassination.
## 8210 When the dinosaur families get trapped in a valley by an ice storm, one family of "spike tail" dinosaurs volunteers to leave since they consume more food than the others. Meanwhile, the young dinos and a new adult dinosaur named Mr. Thicknose, head out to bring back their friend Spike, who has left his friends to be with members of his own species.
## 8211 Set in puritanical Boston in the mid 1600s, the story of seamstress Hester Prynne, who is outcast after she becomes pregnant by a respected reverend. She refuses to divulge the name of the father, is "convicted" of adultery and forced to wear a scarlet "A" until an Indian attack unites the Puritans and leads to a reevaluation of their laws and morals.
## 8212 A tough-on-crime street cop must protect the only surviving witness to a strange murderous cult with far reaching plans.
## 8213 The Gardner family moves to a remote farmstead in rural New England to escape the hustle of the 21st century. They are busy adapting to their new life when a meteorite crashes into their front yard, melts into the earth, and infects both the land and the properties of space-time with a strange, otherworldly colour. To their horror, the family discovers this alien force is gradually mutating every life form that it touches—including them.
## 8214 Eren Yeager leaves to restore a break in the wall destroyed by a Titan. He comes under attack by the Titans and is cornered. Shikishima comes to his aid. The titans never stops attacking. Eren is now injured and tries to protect Armin, but is swallowed by a titan. A Titan with black hair appears and begins to expel the other titans.
## 8215 In Beijing, a young martial artist's skill places him in position to experience opportunities and sacrifices.
## 8216 Lord Farquaad was eaten by the dragon, but his ghost has returned, and he's still evil. With the help of his henchman, Thelonious, he kidnaps Fiona. Shrek and the donkey set out to save her, with help from the dragon, before she goes over a waterfall on a raft.
## 8217 Italy, 1952. A government official arrives in a rural town to investigate a shocking crime: the murder of a child by a young boy who claimed to have killed the Devil himself.
## 8218 Since his arrival at Buckingham palace, Rex lives a life of luxury. Top dog, he has superseded his three fellow Corgis in Her Majesty’s heart. His arrogance can be quite irritating. When he causes a diplomatic incident during an official dinner with the President of the United States, he falls into disgrace. Betrayed by one of his peers, Rex becomes a stray dog in the streets of London. How can he redeem himself? In love, he will find the resources to surpass himself in the face of great danger…
## 8219 Chelios faces a Chinese mobster who has stolen his nearly indestructible heart and replaced it with a battery-powered ticker that requires regular jolts of electricity to keep working.
## 8220 Retired military commander Colonel Dale Murphy hosts the simulated post-apocalyptic reality show where participants are challenged to survive a remote West Virginia wasteland. But the show turns into a nightmarish showdown when each realizes they are being hunted by an inbred family of cannibals determined to make them all dinner!
## 8221 Lonely, unstable gas station attendant Melinda is tired of being overshadowed by her more confident, outgoing co-worker Sheila. When the gas station is held up at gunpoint by Billy, a desperate man in need of quick cash, Melinda finds an opportunity to make a connection with the robber, regardless of who gets hurt.
## 8222 After he refuses to disavow his faith, a devout Christian student must prove the existence of God or else his college philosophy professor will fail him.
## 8223 Shaun Brumder is a local surfer kid from Orange County who dreams of going to Stanford to become a writer and to get away from his dysfunctional family household. Except Shaun runs into one complication after another, starting when his application is rejected after his dim-witted guidance counselor sends in the wrong form.
## 8224 After learning of her husband's infidelities, a housewife invites an itinerant lesbian to move in with them. None of their lives will ever be the same again.
## 8225 Diane is a well-known lawyer, divorced for three years. She loses her mobile telephone and receives a call from the person who finds it. That person is Alexandre, a charming man and the perfect gentleman. They make a connection over the phone and agree to meet up the following day. But when Alexandre arrives, there's a surprise in store when Diane discovers he is only 4' 6" tall. From that moment on, Diane tries to overcome the prejudices of society and her own fears to experience the best time of her life...
## 8226 The film tells the story of documentary filmmaker Michael King (Shane Johnson), who doesn’t believe in God or the Devil. Following the sudden death of his wife, Michael decides to make his next film about the search for the existence of the supernatural, making himself the center of the experiment – allowing demonologists, necromancers, and various practitioners of the occult to try the deepest and darkest spells and rituals they can find on him – in the hopes that when they fail, he’ll once and for all have proof that religion, spiritualism, and the paranormal are nothing more than myth. But something does happen. An evil and horrifying force has taken over Michael King. And it will not let him go.
## 8227 As a new day begins in the town of Silverton, its residents have little reason to believe it will be anything other than ordinary. Mother Nature, however has other plans. In the span of just a few hours, an unprecedented onslaught of powerful tornadoes ravages Silverton. Storm trackers predict that the worst is still to come, as terrified residents seek shelter, and professional storm-chasers run toward the danger, hoping to study the phenomenon close up and get a once-in-a-lifetime shot.
## 8228 Jean-Pierre Costa is a football manager upon whom fate appears not to be smiling. First, a friend, Annabelle, dumps a pet Labrador named Didier on him whilst she goes off to make a report in Los Angeles. Next, one of his star players is injured, leaving him one player short for a crucial match. As if things could not get any worse, Costa wakes up one morning to find that that Didier has been transformed into a man...
## 8229 After years of separation, Irena and her minister brother, Paul, reunite in New Orleans in this erotic tale of the supernatural. When zoologists capture a wild panther, Irena is drawn to the cat -- and the zoo curator is drawn to her. Soon, Irena's brother will have to reveal the family secret: that when sexually aroused, they turn into predatory jungle cats.
## 8230 Lila, a grief-stricken mother reeling from her son’s murder, attends a support group where she meets Eve, who urges her to take matters into her own hands to track down her son’s killers.
## 8231 A young Oxford academic and his attorney girlfriend holiday in Morocco. They bump into a Russian millionaire who owns a peninsula and a diamond watch. He wants a game of tennis. What else he wants propels the lovers on a tortuous journey to the City of London and its unholy alliance with Britain's intelligence establishment, to Paris and the Alps.
## 8232 Jack Conrad is awaiting the death penalty in a corrupt Central American prison. He is "purchased" by a wealthy television producer and taken to a desolate island where he must fight to the death against nine other condemned killers from all corners of the world, with freedom going to the sole survivor.
## 8233 Charles Brady and his mother, Mary, are the last of a dying breed whose needs are not of this world. They are Sleepwalkers - able to stay alive only by feeding on the life-force of the innocent, but destined to roam the earth, avoiding discovery while searching for their next victim. That search takes them to the sleepy little town of Travis, Indiana, where beautiful teenager Tanya Robertson is about to become an unwilling pawn in their nightmarish fight for survival.
## 8234 After solving their last mystery at Spooky Island, the Mystery Inc. gang is back in Coolsville, where they are being honored with their very own exhibit at the Coolsonian Criminology Museum. However, when a masked villain steals costumes of classic monsters on display and brings them to life, the gang must come out of retirement to solve the case.
## 8235 In the 1980s, a drummer is abandoned by his band just before they become rock superstars. Twenty years later, the drummer sees his second chance at stardom arise when he is asked to perform with his teenage nephew's high school rock band.
## 8236 Sara Shaw is the type of woman who prefers to sit on the sidelines at work, but when her big idea for a Christmas initiative is stolen, she makes a wish to Santa that she'll finally have the courage to stand up for herself. Santa grants her wish, but only gives her 48 hours. As the clock ticks, Sara will discover how to channel the Christmas magic and speak her mind all on her own.
## 8237 A look at the relationship between WikiLeaks founder Julian Assange and his early supporter and eventual colleague Daniel Domscheit-Berg, and how the website's growth and influence led to an irreparable rift between the two friends.
## 8238 After fishing out coins from a water fountain in Italy, cynical New Yorker Beth Harper finds herself being wooed by several ardent suitors. As she deals with the attention, Beth tries to figure out whether a charming reporter really loves her.
## 8239 In the mid-1960s, wealthy debutant Edie Sedgwick meets artist Andy Warhol. She joins Warhol's famous Factory and becomes his muse. Although she seems to have it all, Edie cannot have the love she craves from Andy, and she has an affair with a charismatic musician, who pushes her to seek independence from the artist and the milieu.
## 8240 Las Vegas showroom magician Cris Johnson has a secret which torments him: he can see a few minutes into the future. Sick of the examinations he underwent as a child and the interest of the government and medical establishment in his power, he lies low under an assumed name in Vegas, performing cheap tricks and living off small-time gambling "winnings." But when a terrorist group threatens to detonate a nuclear device in Los Angeles, government agent Callie Ferris must use all her wiles to capture Cris and convince him to help her stop the cataclysm.
## 8241 Based on the true story of the greatest treasure hunt in history, The Monuments Men is an action drama focusing on seven over-the-hill, out-of-shape museum directors, artists, architects, curators, and art historians who went to the front lines of WWII to rescue the world’s artistic masterpieces from Nazi thieves and return them to their rightful owners. With the art hidden behind enemy lines, how could these guys hope to succeed?
## 8242 Vampire Barnabas Collins is inadvertently freed from his tomb and emerges into the very changed world of 1972. He returns to Collinwood Manor to find that his once-grand estate and family have fallen into ruin.
## 8243 Newly-discovered facts, court records and speculation are used to elaborate the true love story and murder mystery of the most notorious unsolved murder case in New York history.
## 8244 Fantozzi is now retired but continues to go to the office where it is held up as a fine example of employees intending to do career.
## 8245 Two decades after surviving a massacre on October 31, 1978, former baby sitter Laurie Strode finds herself hunted by persistent knife-wielder Michael Myers. Laurie now lives in Northern California under an assumed name, where she works as the headmistress of a private school. But it's not far enough to escape Myers, who soon discovers her whereabouts. As Halloween descends upon Laurie's peaceful community, a feeling of dread weighs upon her -- with good reason.
## 8246 The adventures of a heroic and debonair stalwart mouse named Stuart Little with human qualities, who faces some comic misadventures while searching for his lost bird friend and living with a human family as their child.
## 8247 Freddy Krueger enlists Jason Voorhees to kill on his behalf on Elm Street, in order to restore fear and haunt children's dreams.
## 8248 A family vacation takes a terrifying turn when parents Paul and Wendy discover their young daughter has vanished without a trace. Stopping at nothing to find her, the search for the truth leads to a shocking revelation.
## 8249 When dignified Albert Donnelly runs for Governor, his team moves to keep his slow-witted and klutzy younger brother, Mike, out of the eye of the media. To baby-sit Mike, the campaign assigns sarcastic Steve, who gets the experience of a lifetime when he tries to take Mike out of town during the election.
## 8250 The Freeling family move in with Diane's mother in an effort to escape the trauma and aftermath of Carol Anne's abduction by the Beast. But the Beast is not to be put off so easily and appears in a ghostly apparition as the Reverend Kane, a religeous zealot responsible for the deaths of his many followers. His goal is simple - he wants the angelic Carol Anne.
## 8251 All grown up in post-apocalyptic 2018, John Connor must lead the resistance of humans against the increasingly dominating militaristic robots. But when Marcus Wright appears, his existence confuses the mission as Connor tries to determine whether Wright has come from the future or the past -- and whether he's friend or foe.
## 8252 When a greedy outlaw schemes to take possession of the "Patch Of Heaven" dairy farm, three determined cows, a karate-kicking stallion and a colorful corral of critters join forces to save their home. The stakes are sky-high as this unlikely animal alliance risk their hides and match wits with a mysterious band of bad guys.
## 8253 Jane, a struggling but perpetually stoned actress, has a busy day ahead. She has several important tasks on her list, including buying more marijuana. Even though she already has a good start on the day's planned drug use, she eats her roommate's pot-laced cupcakes and embarks on a series of misadventures all over Los Angeles.
## 8254 Set between the parallel worlds of contemporary London and the futuristic faith dominated metropolis of Meanwhile City, Franklyn weaves a tale of four souls, whose lives are intertwined by fate, romance and tragedy. As these worlds collide, a single bullet determines the destiny of these four characters.
## 8255 A mysterious stranger works outside the law and keeps his objectives hidden, trusting no one. While his demeanor is paradoxically focused and dreamlike all at once, he embarks on a journey that not only takes him across Spain, but also through his own consciousness.
## 8256 Wanted by the mafia, a New York City bike messenger escapes into the world of parkour after meeting a beautiful stranger.
## 8257 Story of Linda Lovelace, who is used and abused by the porn industry at the behest of her coercive husband, before taking control of her life.
## 8258 Challenges of impending parenthood turn the lives of five couples upside down. Two celebrities are unprepared for the surprise demands of pregnancy; hormones wreak havoc on a baby-crazy author, while her husband tries not to be outdone by his father, who's expecting twins with his young trophy wife; a photographer's husband isn't sure about his wife's adoption plans; a one-time hook-up results in a surprise pregnancy for rival food-truck owners.
## 8259 Oscar is a small fish whose big aspirations often get him into trouble. Meanwhile, Lenny is a great white shark with a surprising secret that no sea creature would guess: He's a vegetarian. When a lie turns Oscar into an improbable hero and Lenny becomes an outcast, the two form an unlikely friendship.
## 8260 A former mob enforcer who is released from prison after serving 22 years for a crime he didn't commit sets out on a path for revenge against the people who wronged him.
## 8261 Cruchot's police office moves into a new building. They do not only get high tech equipment, but also four young female police officers to educate. All of them scramble to work with them -- and cause pure chaos while being distracted by the fine ladies. Then they get into real trouble when one after the other of their female colleagues is kidnapped.
## 8262 When rogue stealth-fighter pilot Vic Deakins deliberately drops off the radar while on maneuvers, the Air Force ends up with two stolen nuclear warheads -- and Deakins's co-pilot, Riley Hale, is the military's only hope for getting them back. Traversing the deserted canyons of Utah, Hale teams with park ranger Terry Carmichael to put Deakins back in his box.
## 8263 Mike Milo, a one-time rodeo star and washed-up horse breeder, takes a job from an ex-boss to bring the man's young son home from Mexico.
## 8264 Pierre Hoffman joins a prestigious school as a substitute teacher and soon notices, among some of his students, an unjustified hostility and a spark of violence in their eyes. Is it because the unspeakable tragedy they have just experienced? Is it because they seem to be extraordinarily gifted children? Is it because they have lost all hope for the future? From curiosity to obsession, Pierre will try to unlock their secret.
## 8265 An Oscar-winning writer in a slump leaves Hollywood to teach screenwriting at a college on the East Coast, where he falls for a single mom taking classes there.
## 8266 A disgruntled man creates a hit list with a stranger during a drunken night out and must then race to try to save those he marked for extermination as the bodies begin to pile up and all fingers point to him.
## 8267 To avenge his father's death, a circus entertainer trained in magic and acrobatics turns thief to take down a corrupt bank in Chicago. Two cops from Mumbai are assigned to the case.
## 8268 During a routine case in L.A., NY private investigator Harry D'Amour stumbles over members of a fanatic cult who are preparing for the resurrection of their leader Nix, a powerful magician who was killed 13 years earlier.
## 8269 Elliot Richardson, a suicidal techno geek, is given seven wishes to turn his life around when he meets a very seductive Satan. The catch: his soul. Some of his wishes include a 7 foot basketball star, a rock star, and a hamburger. But, as could be expected, the Devil puts her own little twist on each of his fantasies.
## 8270 With the world under attack by deadly creatures who hunt by sound, a teen and her family seek refuge outside the city and encounter a mysterious cult.
## 8271 Through a series of misunderstandings, Alvin, Simon and Theodore come to believe that Dave is going to propose to his new girlfriend in New York City - and dump them. They have three days to get to him and stop the proposal.
## 8272 Samy moves from the underdeveloped crime-ridden French suburb to the riches of Neuilly.
## 8273 As their first year of high school looms ahead, best friends Julie, Hannah, Yancy and Farrah have one last summer sleepover. Little do they know they're about to embark on the adventure of a lifetime. Desperate to shed their nerdy status, they take part in a night-long scavenger hunt that pits them against their popular archrivals. Everything under the sun goes on -- from taking Yancy's father's car to sneaking into nightclubs!
## 8274 When young Lili's mother dies in childbirth, her father remarries Lady Claudia, a woman ruled by an evil mirror with the power to make her queen of all living things. After escaping an attempt on her life, Lili finds herself lost in a dark forest, where living happily ever after seems unlikely.
## 8275 Los Angeles, June 21st, 2028. While the streets are being torn apart by riots, the Nurse, who runs a clandestine hospital for criminals in the penthouse of the Artemis, a closed old hotel, has a rough night dealing with troublemaker clients: thieves, assassins, someone from the past and the one who owns the place and the whole city.
## 8276 Four pals are stuck in a rut in adulthood: Adam has just been dumped, Lou is a hopeless party animal, Craig is a henpecked husband, and Jacob does nothing but play video games in his basement. But they get a chance to brighten their future by changing their past after a night of heavy drinking in a ski-resort hot tub results in their waking up in 1986.
## 8277 When a train carrying atomic warheads mysteriously crashes in the former Soviet Union, a nuclear specialist discovers the accident is really part of a plot to cover up the theft of the weapons. Assigned to help her recover the missing bombs is a crack Special Forces Colonel.
## 8278 Intersecting stories with different moms collide on Mother's Day.
## 8279 100 years ago, titans suddenly appeared on Earth. Soon, human civilization veered on collapse due to the titans. Humans then built a giant wall to defend themselves. Within the giant walls, humans lived in peace, but, 100 years later, the giant wall is broken.
## 8280 A young woman studying the habits of webcam chat users from the apparent safety of her apartment witnesses a brutal murder online and is quickly immersed in a nightmare in which she and her loved ones are targeted for the same grisly fate as the first victim.
## 8281 A reimagining of the classic horror tale about Carrie White, a shy girl outcast by her peers and sheltered by her deeply religious mother, who unleashes telekinetic terror on her small town after being pushed too far at her senior prom.
## 8282 Ronal is a young barbarian with low self-esteem, the polar opposite of all the muscular barbarians in his village. He's a real wuss. However, as fate would have it, responsibility for the tribe's survival falls on Ronal's scrawny shoulders, when the evil Lord Volcazar raids the village and abducts every living barbarian with the exception of Ronal, who is forced to go on a perilous quest to save his enslaved clan and thwart Volcazar’s plot to rule the world. Along the way, our unlikely hero is joined by Alibert the buttery bard, Zandra the gorgeous shield-maiden and Elric the metrosexual elfin guide. To ultimately vanquish the enemy, the band must overcome awesome challenges.
## 8283 A group of high school outcasts get revenge on the students that torment them.
## 8284 A big city cop from LA moves to a small town police force and immediately finds himself investigating a murder. Using theories rejected by his colleagues, the cop, John Berlin, meets a young blind woman named Helena, who he is attracted to. Meanwhile, a serial killer is on the loose and only John knows it.
## 8285 When Quinn, a grouchy pilot living the good life in the South Pacific, agrees to transfer a savvy fashion editor, Robin, to Tahiti, he ends up stranded on a deserted island with her after their plane crashes. The pair avoid each other at first, until they're forced to team up to escape from the island -- and some pirates who want their heads.
## 8286 To escape a scandal, a bestselling author journeys to Scotland, where she falls in love with a castle -- and faces off with the grumpy duke who owns it.
## 8287 XOXO follows six strangers whose lives collide in one frenetic, dream-chasing, hopelessly romantic night.
## 8288 Six years have elapsed since Guantanamo Bay, leaving Harold and Kumar estranged from one another with very different families, friends and lives. But when Kumar arrives on Harold's doorstep during the holiday season with a mysterious package in hand, he inadvertently burns down Harold's father-in-law's beloved Christmas tree. To fix the problem, Harold and Kumar embark on a mission through New York City to find the perfect Christmas tree, once again stumbling into trouble at every single turn.
## 8289 After a powerful billionaire is murdered, his secret adoptive son must race to prove his legitimacy, find his father's killers and stop them from taking over his financial empire.
## 8290 An Ivy League professor returns home, where his pot-growing twin brother has concocted a plan to take down a local drug lord.
## 8291 The Towani family civilian shuttlecraft crashes on the forest moon of Endor. The four Towani's are separated. Jermitt and Catarine, the mother and father are captured by the giant Gorax, and Mace and Cindel, the son and daughter, are missing when they are captured. The next day, the Ewok Deej is looking for his two sons when they find Cindel all alone in the shuttle (Mace and Cindel were looking for the transmitter to send a distress call), when Mace appears with his emergency blaster. Eventually, the four-year old Cindel is able to convince the teenage Mace that the Ewoks are nice. Then, the Ewoks and the Towani's go on an adventure to find the elder Towanis.
## 8292 A hopeful young starlet uncovers the ominous origins of the Hollywood elite and enters into a deadly agreement in exchange for fame and fortune.
## 8293 London, England, April 1980. Six terrorists assault the Embassy of Iran and take hostages. For six days, tense negotiations are held while the authorities decide whether a military squad should intervene.
## 8294 In their quest to confront the ultimate evil, Percy and his friends battle swarms of mythical creatures to find the mythical Golden Fleece and to stop an ancient evil from rising.
## 8295 A four-member teen girl group named the Cheetah Girls go to a Manhattan High School for the Performing Arts and try to become the first freshmen to win the talent show in the school's history. During the talent show auditions, they meet a big-time producer named Jackal Johnson, who tries to make the group into superstars, but the girls run into many problems.
## 8296 Jack Caine is a Houston vice cop who's forgotten the rule book. His self-appointed mission is to stop the drugs trade and the number one supplier Victor Manning. Whilst involved in an undercover operation to entrap Victor Manning, his partner gets killed, and a sinister newcomer enters the scene...
## 8297 The sequel to The Visitors reunites us with those lovable ruffians from the French Medieval ages who - through magic - are transported into the present, with often drastic consequences. Godefroy de Montmirail travels to today to recover the missing family jewels and a sacred relic, guarantor of his wife-to-be's fertility. The confrontation between Godefroy's repellent servant Jack the Crack and his descendent, the effete Jacquart, present-day owner of the chateau, further complicates the matter.
## 8298 Firefighters Chuck Ford and Larry Valentine are guy's guys, loyal to the core—which is why when widower Larry asks Chuck to pose as his lover so that he can get domestic partner benefits for his kids, his buddy agrees. However, things get dicey when a bureaucrat comes calling, and the boys are forced to present a picture of domestic bliss.
## 8299 Jen and a group of friends set out to hike the Appalachian Trail. Despite warnings to stick to the trail, the hikers stray off course—and cross into land inhabited by The Foundation, a hidden community of mountain dwellers who use deadly means to protect their way of life.
## 8300 Over the course of one night, a woman drives across LA with her heroin addict brother in search of a detox center, with his two-year-old daughter in tow.
## 8301 Two colleagues at a revolutionary research lab design technology to improve and perfect romantic relationships. As their work progresses, their discoveries become more profound.
## 8302 The true story of the kidnapping of Freddy Heineken, the grandson of the founder of the Heineken brewery, and his driver. They were released after a ransom of 35 million Dutch guilders was paid.
## 8303 Set in a world with memory implants, Alan Hakman is a 'cutter'—someone with the power of final edit over people's recorded histories—but his latest assignment puts him in great danger.
## 8304 A washed up golf pro working at a driving range tries to qualify for the US Open in order to win the heart of his succesful rival's girlfriend.
## 8305 Standing on the precipice of adulthood, a group of friends navigate new relationships, while reexamining others, during their final summer before college.
## 8306 Michael has a great job, has his 4 best friends, and is in love with a beautiful girl at 30. He loves Jenna but his life seems predictable until someone else enters his life. It seems that everybody's having relationship problems.
## 8307 Three stories told simultaneously in ninety minutes of real time: a Republican Senator who's a presidential hopeful gives an hour-long interview to a skeptical television reporter, detailing a strategy for victory in Afghanistan; two special forces ambushed on an Afghani ridge await rescue as Taliban forces close in; a poli-sci professor at a California college invites a student to re-engage.
## 8308 Sara, Lucía, Sofía and Claudia are sisters, 4 modern women with very different personalities, who come together at their mother's funeral, after which they discover the man they've all called "dad" throughout their lives is not really their father. They embark on a quest to discover who their real fathers are, discovering more about themselves, their mother, and their lives.
## 8309 Antoine is a lawyer living in New York. On his way back to France for the final round of a job interview, Antoine finds himself sitting right next to his ex-girlfriend Julie. With a seven-hour flight ahead of them, they are going to have to speak to each other.
## 8310 The Soviets have developed a revolutionary new jet fighter, called 'Firefox'. Worried that the jet will be used as a first-strike weapon—as there are rumours that it is undetectable by radar—the British send ex-Vietnam War pilot, Mitchell Gant on a covert mission into the Soviet Union to steal the Firefox.
## 8311 On 28 December 1999, the citizens of New York City are getting ready for the turn of the millennium. However, Satan decides to crash the party by coming to the city and searching for his chosen bride — a 20-year-old woman named Christine York. The world will end, and the only hope lies within an atheist named Jericho Cane.
## 8312 An attorney is terrorized by the criminal he put away years ago when he was a cop.
## 8313 Seven families live in the Parisian apartment building at 8, Rue de l’Humanite - and they didn’t escape to the countryside at the arrival of the coronavirus. Three months of life under lockdown will reveal the best and worst of these neighbours.
## 8314 Margherita is a 14 year old living in Milano, who shares everything with her friends. They discuss clothes, music, school and that first kiss. A delightful coming-of-age film in which the here and now is all that really matters. Where every little thing is so very important and where feelings sometimes bubble over. In your teens, there’s no room for anything but friendship and love.
## 8315 Desperate for a good story, a sex-addicted journalist throws himself into the world of high-class escorts when he starts following a Stanford-educated prostitute.
## 8316 Two leading computer scientists work toward their goal of Technological Singularity, as a radical anti-technology organization fights to prevent them from creating a world where computers can transcend the abilities of the human brain.
## 8317 Single father and former cop Tom Cutler has an unusual occupation: he cleans up death scenes. But when he's called in to sterilize a wealthy suburban residence after a brutal shooting, Cutler is shocked to learn he may have unknowingly erased crucial evidence, entangling himself in a dirty criminal cover-up.
## 8318 Zane Ziminski is an astrophysicist who receives a message that seems to have extraterrestrial origins. Eerily soon after his discovery, Zane is fired. He then embarks on a search to determine the origins of the transmission that leads him into a Hitchcockian labyrinth of paranoia and intrigue.
## 8319 When her idyllic vacation takes an unthinkable turn, Ellen Martin begins investigating a fake insurance policy, only to find herself down a rabbit hole of questionable dealings that can be linked to a Panama City law firm and its vested interest in helping the world's wealthiest citizens amass larger fortunes.
## 8320 In an attempt to make some extra cash while away at College, Kylie moves into a house that streams content to an X-rated website. After a deranged fan hacks in to determine the house's location, she finds herself in a terrifying fight for her life.
## 8321 If Nick Barrow can stay alive for 21 days, he'll die happy. Everyone Nick knows wants him dead; Mob bosses, contract killers, and dirty cops. Performing the last act of a desperate man, Nick takes out a million dollar insurance policy on himself, payable to his estranged daughter. The problem? The policy doesn't take effect for 21 days. Nick knows they'll be lucky to be alive for twenty-one hours.
## 8322 After getting a taste for blood as children, Hansel and Gretel have become the ultimate vigilantes, hell-bent on retribution. Now, unbeknownst to them, Hansel and Gretel have become the hunted, and must face an evil far greater than witches... their past.
## 8323 Nicolas has a happy existence, parents who love him, a great group of friends with whom he has great fun, and all he wants is that nothing changes. However, one day, he overhears a conversation that leads him to believe that his life might change forever, his mother is pregnant! He panics and envisions the worst.
## 8324 Simon Cable wakes up in a hospital bed, confused and disoriented. He soon discovers from doctors that he has amnesia and is unable to remember the last two years of his life. Cable investigates what has happened to him and slowly pieces together his enigmatic past.
## 8325 Yamakasi - Les samouraïs des temps modernes is a 2001 French movie written by Luc Besson. It demonstrates the skills of the Yamakasi, a group of traceurs who battle against injustice in the Paris ghetto. They use parkour to steal from the rich in order to pay off medical bills for a kid injured copying their techniques.
## 8326 Idealistic young attorney Adam Hall takes on the death row clemency case of his racist grandfather, Sam Cayhall, a former Ku Klux Klan member he has never met.
## 8327 Karen, a single mother, gifts her son Andy a Buddi doll for his birthday, unaware of its more sinister nature. A contemporary re-imagining of the 1988 horror classic.
## 8328 A young girl buys an antique box at a yard sale, unaware that inside the collectible lives a malicious ancient spirit. The girl's father teams with his ex-wife to find a way to end the curse upon their child.
## 8329 Divorced high school PE teacher Gilberto falls in love with Margherita, unaware that she is the mother of Paolina, a student that has been sending him "I love you" notes written in every language in the world.
## 8330 Gabriel tells the story of an archangel who fights to bring light back to purgatory - a place where darkness rules - and save the souls of the city's inhabitants.
## 8331 Van Wilder has been attending college for far too many years and is scared to graduate, but Van’s father eventually realizes what is going on. When he stops paying his son's tuition fees, Van must come up with the money if he wants to stay in college, so he and his friends come up with a great fund-raising idea – throwing parties. However, when the college magazine finds out and reporter, Gwen is sent to do a story on Van Wilder, things get a little complicated.
## 8332 Adventurer/surgeon/rock musician Buckaroo Banzai and his band of men, the Hong Kong Cavaliers, take on evil alien invaders from the 8th dimension.
## 8333 Three families go into crisis when their daughters get engaged because they are convinced that their young daughters have all chosen a wrong partner.
## 8334 A passionate holiday romance leads to an obsessive relationship when an Australian photojournalist wakes one morning in a Berlin apartment and is unable to leave.
## 8335 A modern reimagining of the classic romantic comedy, this contemporary version closely follows new love for two couples as they journey from the bar to the bedroom and are eventually put to the test in the real world.
## 8336 Nothing gets between Anne Marie and her board. Living in a beach shack with three roommates, she is up before dawn every morning to conquer the waves and count the days until the Pipe Masters competition. Having transplanted herself to Hawaii with no one's blessing but her own, Anne Marie finds all she needs in the adrenaline-charged surf scene - until pro quarterback Matt Tollman comes along...
## 8337 A successful veterinarian and radio show host with low self-esteem asks her model friend to impersonate her when a handsome man wants to see her.
## 8338 When three redneck brothers agree to help a woman save her son from an abusive father, they become targets on the run from an odd cast of characters.
## 8339 Forks, Washington resident Bella Swan is reeling from the departure of her vampire love, Edward Cullen, and finds comfort in her friendship with Jacob Black, a werewolf. But before she knows it, she's thrust into a centuries-old conflict, and her desire to be with Edward at any cost leads her to take greater and greater risks.
## 8340 Set in the late 19th century. When a ruthless robber baron takes away everything they cherish, a rough-and-tumble, idealistic peasant and a sophisticated heiress embark on a quest for justice, vengeance…and a few good heists.
## 8341 A philosophical burlesque, Human Nature follows the ups and downs of an obsessive scientist, a female naturalist, and the man they discover, born and raised in the wild. As scientist Nathan trains the wild man, Puff, in the ways of the world - starting with table manners - Nathan's lover Lila fights to preserve the man's simian past, which represents a freedom enviable to most.
## 8342 A long-time married couple who've spent their lives together in the same New York apartment become overwhelmed by personal and real estate-related issues when they plan to move away.
## 8343 In the 1970s, a British sound technician is brought to Italy to work on the sound effects for a gruesome horror film. His nightmarish task slowly takes over his psyche, driving him to confront his own past.
## 8344 In the wake of their friends' marriages and eventual offspring, longtime pals Julie and Jason decide to have a child together without becoming a couple. By becoming "time-share" parents, they reason, they can experience the joys of parenthood without significantly curbing their personal freedom. However, when Julie and Jason both become involved with others, they discover that they secretly harbor romantic feelings for each other.
## 8345 Everyone in the village of Bouzolles knows the Tuche family, who live by the philosophy "Man is not made to work." Despite their lack of money, they strive to be happy... that is, until their hand-to-mouth existence is turned on its head. After winning the lottery, the Tuches get rich beyond their wildest dreams and move to Monaco. And while attempting to fit in in their swanky new homeland, they struggle to stay true to the same principles by which they've always lived.
## 8346 On a tour of Britain in 1926, Harry Houdini enters into a passionate affair with a psychic out to con the famous magician.
## 8347 As the 15th anniversary of a fatal high school shooting approaches, former pupil Diana McFee is haunted by memories of the tragedy. After losing her best friend Maureen in the attack, Diana has been profoundly affected by the incident - her seemingly perfect life shaped by the events of that day.
## 8348 Ben Healy and his social climbing wife Flo adopt fun-loving seven year old Junior. But they soon discover he's a little monster as he turns a camping trip, a birthday party and even a baseball game into comic nightmares.
## 8349 A sheltered young high society woman joins the army on a whim and finds herself in a more difficult situation than she ever expected.
## 8350 Trapped near the summit of K2, the world's second-highest mountain, Annie Garrett radios to base camp for help. Brother Peter hears Annie's message and assembles a team to save her and her group before they succumb to K2's unforgiving elements. But, as Annie lays injured in an icy cavern, the rescuers face several terrifying events that could end the rescue attempt -- and their lives.
## 8351 Once again tampering with mother nature to disastrous results, Dr. Herbert West continues his research while serving time in a maximum security prison for his previous exploits. West's limited prison-cell experiments are suddenly interrupted by the arrival of a new prison doctor and the brother of the girl who suffered from West's experiments 13 years earlier.
## 8352 The career and personal life of writer Lee are at a standstill, so he divorces his bashful wife, Robin, and dives into a new job as an entertainment journalist. His assignments take him to the swankiest corners of Manhattan, but as he jumps from one lavish party to another and engages in numerous empty romances, he starts to doubt the worth of his work. Meanwhile, top TV producer Tony falls for Robin and introduces her to the world of celebrity.
## 8353 Corey refuses to let his emotionally disturbed younger brother Jimmy be institutionalized, and the two run away together. They soon join forces with a resourceful girl, who notices that Jimmy has a special talent: he is a "wizard" at video games and can achieve the high score on absolutely everything he plays. Evading their parents and a sinister bounty hunter, the trio head for a climactic showdown at the national video game championships in California.
## 8354 When a vintage Jack-in-the-box is un-earthed and opened, it's new owners soon have reason to believe the creepy clown doll within has a life of it's own.
## 8355 19-year-old Billy Lynn is brought home for a victory tour after a harrowing Iraq battle. Through flashbacks the film shows what really happened to his squad - contrasting the realities of war with America's perceptions.
## 8356 A local woman is hired to draw paparazzi away from a Hollywood actress who has come to Scotland to get married.
## 8357 When a husband and wife move to a small town, a home invasion leaves the wife traumatized and suspicious that those around her might not be who they seem.
## 8358 When four generations of the Cooper clan come together for their annual Christmas Eve celebration, a series of unexpected visitors and unlikely events turn the night upside down, leading them all toward a surprising rediscovery of family bonds and the spirit of the holiday.
## 8359 Captain New Eyes travels back in time and feeds dinosaurs his Brain Grain cereal, which makes them intelligent and non-violent. They agree to go to the "Middle Future" in order to grant the wishes of children in New York City. They are to meet Dr. Bleeb of the Museum of Natural History, but get sidetracked with their new children friends and run into the Captain's evil brother, Professor Screweyes.
## 8360 Country girl Rebecca has spent most of her life on a farm in South Dakota, and, when she goes away to college in Los Angeles, Rebecca immediately feels out of place in the daunting urban setting. She is befriended by a savvy party animal named Crawl, who convinces the ambivalent Rebecca to stay in the city. When Thanksgiving break rolls around, Rebecca, no longer an innocent farm girl, invites Crawl back to South Dakota, where he pretends to be her fiancé.
## 8361 A chief mechanic at a factory, haunted by apocalyptic nightmares, becomes a hero when Earth is invaded by a mysterious army bent on destruction.
## 8362 Based on the 1930's comic strip, puts the hero up against his arch enemy, Shiwan Khan, who plans to take over the world by holding a city to ransom using an atom bomb. Using his powers of invisibility and "The power to cloud men's minds", the Shadow comes blazing to the city's rescue with explosive results.
## 8363 McKayla and Sadie, two death-obsessed teenage girls, use their online show about real-life tragedies to send their small Midwestern town into a frenzy and cement their legacy as modern horror legends.
## 8364 1960. The thrilling battles waged by a band of kids from two rival villages in the southern French countryside.
## 8365 Amber, a mean popular girl who gets electrocuted and dies, is not allowed to enter into heaven unless she helps the least popular girl in school become Prom Queen within a week, but things do not go as planned.
## 8366 On Christmas Eve, three friends dressed as Santa Claus are arrested in what seems to be an attempted robbery and taken to the police, accused of being the infamous Santa Claus Gang of burglars. While trying to prove their innocence, the trio explains the reasons for which they found themselves in such a strange situation.
## 8367 Howard Langston, a salesman for a mattress company, is constantly kept busy at his job, disappointing his son. After he misses his son's karate exposition, Howard vows to make it up to him by buying an action figure of his son's favorite television hero for Christmas. Unfortunately for Howard, it is Christmas Eve, and every store is sold out of Turbo Man. Now, Howard must travel all over town and compete with everybody else to find a Turbo Man action figure.
## 8368 Barry B. Benson, a bee who has just graduated from college, is disillusioned at his lone career choice: making honey. On a special trip outside the hive, Barry's life is saved by Vanessa, a florist in New York City. As their relationship blossoms, he discovers humans actually eat honey, and subsequently decides to sue us.
## 8369 A boy named Eli with a rare autoimmune disorder is confined to a special experimental clinic for his treatment. He soon begins experiencing supernatural forces, turning the supposedly safe facility into a haunted prison for him and his fellow patients.
## 8370 A thief with a unique code of professional ethics is double-crossed by his crew and left for dead. Assuming a new disguise and forming an unlikely alliance with a woman on the inside, he looks to hijack the score of the crew's latest heist.
## 8371 A computer programmer's dream job at a hot Portland-based firm turns nightmarish when he discovers his boss has a secret and ruthless means of dispatching anti-trust problems.
## 8372 Hopeful romantic Thibault believes his luck could change when sparks fly between him and Rose. But can he go from bestie to boyfriend?
## 8373 Two pals embark on a road trip full of funny pranks that pull real people into mayhem.
## 8374 A half-striped zebra is blamed for the drought and leaves his herd in search of his missing stripes. He is joined on his quest by an overprotective wildebeest and a flamboyant ostrich; they defeat the tyrannical leopard and save his herd.
## 8375 Five disparate kids snowed in at the airport on Christmas Eve learn some lessons about friendship when they launch a bid to get back to their families and outsmart a disgruntled airport official who wants to keep them grounded.
## 8376 When neighborhood kids begin vanishing, Jenny suspects her child psychologist husband, Carter, may be resuming the deranged experiments his father performed on Carter when he was young. Now, it falls to Jenny to unravel the mystery. And as more children disappear, she fears for her own child's safety.
## 8377 After getting threatened by Kelly's friends and family, Constable Fitzpatrick places the blame on Ned Kelly and exaggerates what happened. With the biggest ever award available, Kelly and his gang set into the wild, to remain hidden from everyone who seeks them. Even if it means having his family arrested, the members of the Kelly Gang stay hidden and plan a way to get their names cleared.
## 8378 Copenhagen, Denmark, 1962. When a high-ranking Soviet official decides to change sides, a French intelligence agent is caught up in a cold, silent and bloody spy war in which his own family will play a decisive role.
## 8379 A low-budget, sci-fi satire that focuses on a group of scientists whose mission is to destroy unstable planets. 20 years into their mission, they have to battle their alien mascot, that resembles a beach ball, as well as a "sensitive" and intelligent bombing device that starts to question the meaning of its existence.
## 8380 Ten-year-old Nico receives a threatening letter and now his life is in danger. No one seems to believe him except one person that he doesn't know.
## 8381 Two hapless youths lead their burger joint in a fight against the giant fast-food chain across the street.
## 8382 With the first anniversary of her wedding to Tarzan beckoning, Jane ponders how to make it the perfect English celebration.
## 8383 Passengers on a murder mystery train that crashes into a river must decide whether to risk waiting for help in the wreckage or take their chances in the murky depths below.
## 8384 When a warlock threatens Wendy the Good Little Witch, she and her aunts hide out at a resort where Casper the Ghost is vacationing with his uncles. Although Casper and Wendy are told ghosts and witches don't get along, the two are kindred spirits! This spooky family-friendly adventure finds Casper and Wendy bridging the ghost-witch divide to battle the warlock who is intent on destroying Wendy.
## 8385 U.S. Marshall John Kruger erases the identities of people enrolled in the Witness Protection Program. His current assignment is to protect Lee Cullen, who's uncovered evidence that the weapons manufacturer she works for has been selling to terrorist groups. When Kruger discovers that there's a corrupt agent within the program, he must guard his own life while trying to protect Lee's.
## 8386 The X-Men face their most formidable and powerful foe when one of their own, Jean Grey, starts to spiral out of control. During a rescue mission in outer space, Jean is nearly killed when she's hit by a mysterious cosmic force. Once she returns home, this force not only makes her infinitely more powerful, but far more unstable. The X-Men must now band together to save her soul and battle aliens that want to use Grey's new abilities to rule the galaxy.
## 8387 Being one of 101 takes its toll on Patch, who doesn't feel unique. When he's accidentally left behind on moving day, he meets his idol, Thunderbolt, who enlists him on a publicity campaign.
## 8388 A fun-filled story about an ordinary guy about to kick into an action-packed adventure. Jackie Chan plays a bored and unsuccessful salesman who never thought his life would amount to anything. All that changes one day when he becomes an instant hero by foiling an attempted bank robbery.
## 8389 When her best friend vanishes during a girls' trip to Croatia, Beth races to figure out what happened. But each clue yields another unsettling deception.
## 8390 When obscenely rich hedge-fund manager James is convicted of fraud and sentenced to a stretch in San Quentin, the judge gives him one month to get his affairs in order. Knowing that he won't survive more than a few minutes in prison on his own, James desperately turns to Darnell-- a black businessman who's never even had a parking ticket -- for help. As Darnell puts James through the wringer, both learn that they were wrong about many things, including each other.
## 8391 As a cowardly farmer begins to fall for the mysterious new woman in town, he must put his new-found courage to the test when her husband, a notorious gun-slinger, announces his arrival.
## 8392 After a young, middle-class couple moves into what seems like a typical suburban house, they become increasingly disturbed by a presence that may or may not be demonic but is certainly the most active in the middle of the night. Followed by five terrifying installments in the franchise, this is the original found-footage shocker that started it all.
## 8393 Ben and Katie Jordan are a married couple who go through hard times in fifteen years of marriage.
## 8394 Thad Beaumont is the author of a highly successful series of violent pulp thrillers written under the pseudonym of ‘George Stark’, but when he decides to ‘kill-off’ his alter-ego in a mock ceremony, it precipitates a string of sadistic murders matching those in his pulp novels, which are soon discovered to be the work of Stark himself. Looking like a maniacal version of his counterpart, Stark is not so willing to quit the writing game – even if it means coming after Thad's wife and their baby.
## 8395 Chucky hooks up with another murderous doll, the bridal gown-clad Tiffany, for a Route 66 murder spree with their unwitting hosts.
## 8396 An officer for a security agency that regulates time travel, must fend for his life against a shady politician who has a tie to his past.
## 8397 The story of former Hollywood star Grace Kelly's crisis of marriage and identity, during a political dispute between Monaco's Prince Rainier III and France's Charles De Gaulle, and a looming French invasion of Monaco in the early 1960s.
## 8398 Two years after the Westworld tragedy in the Delos amusement park, the corporate owners have reopened the park following over $1 billion in safety and other improvements. For publicity purposes, reporters Chuck Browning and Tracy Ballard are invited to review the park. Just prior to arriving at the park, however, Browning is given a clue by a dying man that something is amiss.
## 8399 In the far future, a highly sexual woman is tasked with finding and stopping the evil Durand-Durand. Along the way she encounters various unusual people.
## 8400 When bachelor Walter Davis is set up with his sister-in-law's pretty cousin, Nadia Gates, a seemingly average blind date turns into a chaotic night on the town. Walter's brother, Ted, tells him not to let Nadia drink alcohol, but he dismisses the warning and her behaviour gets increasingly wild. Walter and Nadia's numerous incidents are made even worse as her former lover David relentlessly follows them around town.
## 8401 The bitter fight for supremacy between the three most popular girls at North Gateway High takes an unexpected turn when their classmate, Tanner, is outed and becomes the school’s first openly gay student. The trio races to bag the big trend in fashion accessories, the Gay Best Friend, while Tanner must decide whether his skyrocketing popularity is more important than the friendships he is leaving behind.
## 8402 Dorothy Gale, a shy kindergarten teacher, is swept away to the magic land of Oz where she embarks on a quest to return home.
## 8403 After a family moves into the Heelshire Mansion, their young son soon makes friends with a life-like doll called Brahms.
## 8404 The chilling true story of a newly married FBI poster boy assigned to an Appalachian mountain town in Kentucky. There he is drawn into an illicit affair with an impoverished local woman who becomes his star informant. She sees in him her means of escape; instead, it's a ticket to disaster for both of them.
## 8405 Middle-aged and divorced, Wilson finds himself lonely, smug, and obsessed with his past.
## 8406 After supervillain Shredder escapes custody, he joins forces with mad scientist Baxter Stockman and two dimwitted henchmen, Bebop and Rocksteady, to unleash a diabolical plan to take over the world. As the Turtles prepare to take on Shredder and his new crew, they find themselves facing an even greater evil with similar intentions: the notorious Krang.
## 8407 Moments before his comeback performance, a concert pianist who suffers from stage fright discovers a note written on his music sheet.
## 8408 After serving 28 years in prison for accidentally killing the son of a crime boss, newly paroled gangster Val reunites with his former partners in crime, Doc and Hirsch, for a night on the town. As the three men revisit old haunts, reflect on their glory days and try to make up for lost time, one wrestles with a terrible quandary: Doc has orders to kill Val, and time is running out for him to figure out a way out of his dilemma.
## 8409 Ethan Wate just wants to get to know Lena Duchannes better, but unbeknownst to him, Lena has strange powers. As Lena's 16th birthday approaches she might decide her fate, to be good or evil. A choice which will impact her relationship forever.
## 8410 A news reporter looks into who has been anonymously leaving large cash gifts on random doorsteps in New York.
## 8411 Two not very clever young doctors open a fitness center and promise to let people lose seven kilos in seven days. When the enterprise fails they open a gourmet restaurant.
## 8412 Mason Storm, a 'go it alone' cop, is gunned down at home. The intruders kill his wife, and think they've killed both Mason and his son too. Mason is secretly taken to a hospital where he spends several years in a coma. His son meanwhile is growing up thinking his father is dead. When Mason wakes up, everyone is in danger - himself, his son, his best friend, his nurse - but most of all those who arranged for his death
## 8413 A young woman takes a trip to romantic Verona, Italy, after a breakup, only to find that the villa she reserved was double-booked, and she'll have to share her vacation with a cynical British man.
## 8414 To push the crime rate below one percent for the rest of the year, the New Founding Fathers of America test a sociological theory that vents aggression for one night in one isolated community. But when the violence of oppressors meets the rage of the others, the contagion will explode from the trial-city borders and spread across the nation.
## 8415 On a road trip, Nic and two friends are drawn to an isolated area by a computer genius. When everything suddenly goes dark, Nic regains consciousness - only to find himself in a waking nightmare.
## 8416 The royal couple Odette and Derek face yet another evil magician, this time a woman named Zelda. Lusting for the treasure of the Forbidden Arts, which will give her absolute power, Zelda kidnaps Odette as ransom. Derek and several animal friends head off to rescue Odette
## 8417 A cliché hunchbacked evil scientist's assistant aspires to become a scientist himself, much to the displeasure of the rest of the evil science community.
## 8418 The world's most shagadelic spy continues his fight against Dr. Evil. This time, the diabolical doctor and his clone, Mini-Me, team up with a new foe—'70s kingpin Goldmember. While pursuing the team of villains to stop them from world domination, Austin gets help from his dad and an old girlfriend.
## 8419 A long time ago in a distant fairy tale countryside, a young girl leads her little brother into a dark wood in desperate search of food and work, only to stumble upon a nexus of terrifying evil.
## 8420 Even though he's the only black student at the elite Palmetto Grove Academy, star basketball player and future NBA hopeful Odin James has the adoration of all, including the team's coach and the Dean's beautiful daughter Desi. Odin's troubled friend Hugo, the coach's son, is deeply resentful of his father's preference of Odin on and off the court. When Hugo plots a diabolical scheme to sow the seed of mistrust between O and Desi, it sets in motion a disturbing chain of events which erupts into a firestorm of breathtaking intensity.
## 8421 An LA detective is murdered because she has microfilm with the recipe to make cocaine cookies. Two cops partner to find and stop the fiends before they can dope the nation by distributing their wares via the 'Wilderness Girls' cookie drive.
## 8422 Ong Bak 3 picks up where Ong Bak 2 had left off. Tien is captured and almost beaten to death before he is saved and brought back to the Kana Khone villagers. There he is taught meditation and how to deal with his Karma, but very soon his arch rival returns challenging Tien for a final duel.
## 8423 Mexican immigrant and single mother Flor Moreno finds housekeeping work with Deborah and John Clasky, a well-off couple with two children of their own. When Flor admits she can't handle the schedule because of her daughter, Cristina, Deborah decides they should move into the Clasky home. Cultures clash and tensions run high as Flor and the Claskys struggle to share space while raising their children on their own, and very different, terms.
## 8424 European mercenaries searching for black powder become embroiled in the defense of the Great Wall of China against a horde of monstrous creatures.
## 8425 A sea turtle who was hatched in 1959 spends the next 50 years traveling the world while it is being changed by global warming. Born on a Baja, California beach in 1959, new hatchling Sammy must do what his fellow newborn sea turtles are doing: race across the beach to the ocean before they are captured by a seagull or crab. Thus begins Sammy's incredible fifty-year ocean journey. Along the way he meets his best friend, a fellow turtle named Ray, and overcomes obstacles both natural and man-made while trying to fulfill his dream of travelling around the world. Throughout his voyage, Sammy never forgets about Shelly - the turtle he saved on his first day and loves passionately from afar.
## 8426 In the third installment of the Scary Movie franchise, news anchorwoman Cindy Campbell has to investigate mysterious crop circles and killing video tapes, and help the President stop an alien invasion in the process.
## 8427 When contact is lost with the crew of the first Mars expedition, a rescue mission is launched to discover their fate.
## 8428 A disgraced ex-cop seeks solace by moving to the woods, but his quiet life comes to an end when a private eye recruits him to investigate the murder of an eccentric TV star's wife.
## 8429 The Scorpion King teams up with a female warrior named Tala, who is the sister of The Nubian King. Together they search for a legendary relic known as The Book of Souls, which will allow them to put an end to an evil warlord.
## 8430 A Russian KGB agent is sent to Africa to kill an anti-Communist black revolutionary. However, he has a change of heart when he sees how the Russians and their Cuban allies are killing and repressing the locals, so he switches sides and helps the rebels.
## 8431 The four-inch-tall Clock family secretly share a house with the normal-sized Lender family, "borrowing" such items as thread, safety pins, batteries and scraps of food. However, their peaceful co-existence is disturbed when evil lawyer Ocious P. Potter steals the will granting title to the house, which he plans to demolish in order to build apartments. The Lenders are forced to move, and the Clocks face the risk of being exposed to the normal-sized world.
## 8432 Gabriel can't resist a beautiful woman. But his womanizing attitude is taking a toll on his career and social life. He decides to hire a life coach to help him.
## 8433 In a social context deteriorated by a countrywide economic crisis, the life of several people will be turned upside down after they meet Cécile, a character who symbolizes desire.
## 8434 Ray Owens is sheriff of the quiet US border town of Sommerton Junction after leaving the LAPD following a bungled operation. Following his escape from the FBI, a notorious drug baron, his gang, and a hostage are heading toward Sommerton Junction where the police are preparing to make a last stand to intercept them before they cross the border. Owens is reluctant to become involved but ultimately joins in with the law enforcement efforts
## 8435 When a law school dropout answers an advertisement to be a personal assistant he unknowingly signs on to work for a belligerent has-been magician struggling to resurrect his career. This leads to a journey across the country staging the comeback of a lifetime.
## 8436 Two teenage girls try to buy marijuana in the city - where they get kidnapped and brutalized by a gang of psychotic convicts.
## 8437 Reuben Feffer is a guy who's spent his entire life playing it safe. Polly Prince is irresistible as a free-spirit who lives for the thrill of the moment. When these two comically mismatched souls collide, Reuben's world is turned upside down, as he makes an uproarious attempt to change his life from middle-of-the-road to totally-out-there.
## 8438 In the far future, a savage trained only to kill finds a way into the community of bored immortals that alone preserves humanity's achievements.
## 8439 A rebellious teenage boy, struggling with his parent's imminent divorce, encounters a terrifying evil after his next-door neighbor becomes possessed by an ancient witch that feasts on children.
## 8440 A bachelor party becomes a savage fight for survival when the groomsmen unwittingly unleash a fabled predator upon the festivities.
## 8441 In the shadowy world of drone warfare, combat unfolds like a video game–only with real lives at stake. After six tours of duty, Air Force pilot Tom Egan now fights the Taliban from an air-conditioned bunker in the Nevada desert. But as he yearns to get back in the cockpit of a real plane and becomes increasingly troubled by the collateral damage he causes each time he pushes a button, Egan’s nerves—and his relationship with his wife—begin to unravel.
## 8442 Desperate to help her ailing brother, a young woman agrees to compete in a deadly game of "Would You Rather" hosted by a sadistic aristocrat.
## 8443 An eccentric scientist working for a large drug company is working on a research project in the Amazon jungle. He sends for a research assistant and a gas chromatograph because he's close to a cure for cancer. When the assistant turns out to be a "mere woman," he rejects her help. Meanwhile the bulldozers get closer to the area in which they are conducting research, and they eventually learn to work together, and begin falling in love.
## 8444 The young family who moved to a new apartment on the outskirts of the city. The nanny hired by them for the newborn daughter quickly gained confidence. However, the older boy, Egor, talks about the frightening behavior of a woman, but his parents do not believe him. The surveillance cameras installed by the father for comfort only confirm everything is in order. Then one day, Egor, returning home, finds no trace of either the nanny or the little sister, and the parents are in a strange trance and do not even remember that they had a daughter. Then Egor, together with his friends, goes in search, during which it turns out that the nanny is an ancient Slavic demon, popularly known as Baba Yaga.
## 8445 20 years after three teenagers disappeared in the wake of mysterious lights appearing above Phoenix, Arizona, unseen footage from that night has been discovered, chronicling the final hours of their fateful expedition.
## 8446 Just retired from the Drug Enforcement Agency, John Hatcher returns to his hometown and quickly discovers that drugs have infiltrated his old neighborhood. Determined to drive the dealers out, Hatcher crosses paths with a ferocious Jamaican drug lord who vows that Hatcher and his family are now marked for death.
## 8447 While watching two children on Halloween night, a babysitter finds an old VHS tape in the kids' trick or treat bag. The tape features three tales of terror, all linked together by a murderous clown.
## 8448 Eight medical students on a ski trip to Norway discover that Hitler's horrors live on when they come face to face with a battalion of zombie Nazi soldiers intent on devouring anyone unfortunate enough to wander into the remote mountains where they were once sent to die.
## 8449 For the past four years, San Francisco cop Jack Cates has been after an unidentified drug kingpin who calls himself the Ice Man. Jack finds a picture that proves that the Ice Man has put a price on the head of Reggie Hammond, who is scheduled to be released from prison on the next day.
## 8450 Rachel Carson, a best-selling crime novelist, is devastated and filled with guilt over the accidental death of her son. Hoping that a change of scenery will help alleviate her suffering, she leaves her home in the city and moves into a vacant country house owned by a friend and begins a relationship with charming local Angus. But, just as her life is taking a turn for the better, Rachel realizes she's being romanced by a ghost, leading her to doubt her own sanity.
## 8451 A shady lawyer attempts a Christmas Eve crime, hoping to swindle the local mob out of some money. But his partner, a strip club owner, might have different plans for the cash.
## 8452 Angela Bennett is a freelance software engineer who lives in a world of computer technology. When a cyber friend asks Bennett to debug a new game, she inadvertently becomes involved in a conspiracy that will soon turn her life upside down and make her the target of an assassination.
## 8453 Anne and Bob, a well-to-do American couple, have just moved to a beautiful manor house in romantic Paris. To impress their sophisticated friends, they decide to host a lavish dinner party, but must disguise their maid as a noblewoman to even out the number of guests. When the maid runs off with a wealthy guest, Anne must chase her around Paris to thwart the joyous and unexpected love affair.
## 8454 When deadly attacks from a nearby forest beset a secluded retirement community, it is up to a blind army veteran to discover what the residents are hiding.
## 8455 It's summer camp as usual at Camp Manabe where the kids torment each other for fun while the underpaid camp staff provides as little supervision as possible. Greedy camp owner Frank and junior partner Ronnie do their best to keep everyone in line, but something sinister is about to put a slash in the roster. When campers and staff mysteriously begin disappearing and turning into gruesome corpses, paranoid Ronnie can't shake the memory of a series of grisly murders that took place at Camp Arawak. As the paranoia worsens, Ronnie's list of possible killers starts growing just like the body count. Only one thing is for certain, something is carving a bloody new trail at Sleepaway Camp where kids can be so mean and surviving this summer is gonna be a real killer!
## 8456 Fletch is a fish out of water in small-town Louisiana, where he's checking out a tumbledown mansion he's inherited. When a woman he flirts with turns up dead, he becomes a suspect and must find the killer and clear his name.
## 8457 Set in 50 B.C., Asterix and Obelix are living in a small but well-protected village in Gaul, where a magic potion concocted by Druids turns the townsfolk into mighty soldiers. When Roman troops carve a path through Gaul to reach the English Channel, Caesar and his aide de camp Detritus discover the secret elixir and capture the Druid leader who knows its formula, and Asterix and Obelix are sent off to rescue them.
## 8458 Stranded at a summer camp when aliens attack the planet, four teens with nothing in common embark on a perilous mission to save the world.
## 8459 A young woman is sent to Paradise Hills to be reformed, only to learn that the high-class facility's beautiful facade hides a sinister secret.
## 8460 The Wishbone family are far from happy. In an attempt to reconnect as a family, they plan a fun night out. However, the plan backfires when they are cursed and all turned into Monsters.
## 8461 When a foreign exchange student arrives in a small upstate New York town, she challenges the dynamics of her host family's relationships and alters their lives forever.
## 8462 Ida, a Danish hairdresser who has lost her hair to cancer, returns home from the hospital one day to find her husband is cheating on her. She decides to travel to Italy on her own for her daughter's wedding, but discovers on arriving that the wedding gathering will present its own challenges.
## 8463 An FBI agent tracks a serial killer with the help of three of his would-be victims - all of whom have wildly different stories to tell.
## 8464 After a frantic suicide attempt, Veronika awakens inside a mysterious mental asylum. Under the supervision of an unorthodox psychiatrist who specializes in controversial treatment, Veronika learns that she has only weeks to live.
## 8465 Uptight lawyer Peter Sanderson wants to dive back into dating after his divorce and has a hard time meeting the right women. He tries online dating and lucks out when he starts chatting with a fellow lawyer. The two agree to meet in the flesh, but the woman he meets -- an escaped African-American convict named Charlene -- is not what he expected. Peter is freaked out, but Charlene tries to convinces him to take her case and prove her innocence. Along the way she wreaks havoc on his middle-class life as he gets a lesson in learning to lighten up.
## 8466 A secret service agent is framed as the mole in an assassination attempt on the president. He must clear his name and foil another assassination attempt while on the run from a relentless FBI agent.
## 8467 At an isolated frontier outpost, a colonial magistrate suffers a crisis of conscience when an army colonel arrives looking to interrogate the locals about an impending uprising, using cruel tactics that horrify the magistrate.
## 8468 (AKA- Saw: The Final Chapter) As a deadly battle rages over Jigsaw's brutal legacy, a group of Jigsaw survivors gathers to seek the support of self-help guru and fellow survivor Bobby Dagen, a man whose own dark secrets unleash a new wave of terror.
## 8469 Doug is a Secret Service Agent who has just completed his stint in charge protecting Tess Carlisle—the widow of a former U.S. President, and a close personal friend of the current President. He finds that she has requested that he not be rotated but instead return to be her permanent detail. Doug is crushed, and—after returning—wants off her detail as she is very difficult to guard and makes her detail crazy with her whims and demands.
## 8470 Freddy Lupin, heir to a proud family line of werewolves, is in for a shock when on his 14th birthday his first 'warfing' goes awry, turning him into a ferocious poodle. The pack elders give Freddy until the next moonrise to prove he has the heart of a wolf, or risk being cast out forever. With the help of an unlikely ally in a streetwise stray named Batty, Freddy must prove he's 100% Wolf.
## 8471 A New Jersey guy dedicated to his family, friends, and church, develops unrealistic expectations from watching porn and works to find happiness and intimacy with his potential true love.
## 8472 Two contempo Frenchmen of Antillean descent visit their ancestor's time as well as their land in the slavery-themed French era.
## 8473 Master diver Frank McGuire (Richard Roxburgh) has explored the South Pacific's Esa-ala Caves for months. But when his exit is cut off in a flash flood, Frank's team—including 17-year-old son Josh (Rhys Wakefield) and financier Carl Hurley (Ioan Gruffudd)—are forced to radically alter plans. With dwindling supplies, the crew must navigate an underwater labyrinth to make it out. Soon, they are confronted with the unavoidable question: Can they survive, or will they be trapped forever?
## 8474 Skillfully framed by an unknown enemy for the murder of a priest, wanted vigilante MacManus brothers Murphy and Connor must come out of hiding on a sheep farm in Ireland to fight for justice in Boston.
## 8475 Tempted away from Newcastle United to join Real Madrid, rising star Santiago Munez finds this latest change of fortune the greatest challenge yet - personally as well as professionally. He is reunited with Gavin Harris, though they must compete to be on the team, and estranged from fiancee Roz, whose nursing career keeps her back home.
## 8476 An American man unwittingly gets involved with werewolves who have developed a serum allowing them to transform at will.
## 8477 A group of diamond thieves on the run kidnap the wife of a recently discharged marine who goes on a chase through the South Carolinian wilderness to retrieve her.
## 8478 Welcome to Rekall, the company that can turn your dreams into real memories. For a factory worker named Douglas Quaid, even though he's got a beautiful wife who he loves, the mind-trip sounds like the perfect vacation from his frustrating life - real memories of life as a super-spy might be just what he needs. But when the procedure goes horribly wrong, Quaid becomes a hunted man. Finding himself on the run from the police - controlled by Chancellor Cohaagen, the leader of the free world - Quaid teams up with a rebel fighter to find the head of the underground resistance and stop Cohaagen. The line between fantasy and reality gets blurred and the fate of his world hangs in the balance as Quaid discovers his true identity, his true love, and his true fate.
## 8479 A man's life is derailed when an ominous pattern of events repeats itself in exactly the same manner every day, ending at precisely 2:22 p.m.
## 8480 When an elite assassin marries a beautiful computer whiz after a whirlwind romance, he gives up the gun and settles down with his new bride. That is, until he learns that someone from his past has put a contract out on his life.
## 8481 A case involving drug lords and murder in South Florida takes a personal turn for undercover detectives Sonny Crockett and Ricardo Tubbs. Unorthodox Crockett gets involved romantically with the Chinese-Cuban wife of a trafficker of arms and drugs, while Tubbs deals with an assault on those he loves.
## 8482 Siblings Mimi and Luke unwittingly resurrect an ancient alien overlord. Using a magical amulet, they force the monster to obey their childish whims, and accidentally attract a rogues’ gallery of intergalactic assassins to small-town suburbia.
## 8483 A woman named Kit moves back to her parent's house, where she receives a mysterious invitation that would fulfill her childhood dreams.
## 8484 Cristina lives a peaceful life until her older brother Ciro, who has to attend a trial, asks to spend house arrests at Cristina’s home.
## 8485 A mysterious epidemic spreads across the planet. Humanity develops an irrational fear of open spaces that causes instant death. Soon, the world population is trapped inside buildings. As Barcelona descends into chaos, Marc sets off on a quest to find Julia, his missing girlfriend, without ever going outside.
## 8486 Terri is a devoted wife and mother of two, living an ideal suburban life in Atlanta when Colin, a charming but dangerous escaped convict, shows up at her door claiming car trouble. Terri offers her phone to help him but soon learns that no good deed goes unpunished as she finds herself fighting for survival when he invades her home and terrorizes her family.
## 8487 When her child goes missing, a mother looks to unravel the legend of the Tall Man, an entity who allegedly abducts children.
## 8488 Seduced into the decadent world of Lord Henry Wotton, handsome young aristocrat Dorian Gray becomes obsessed with maintaining his youthful appearance, and commissions a special portrait that will weather the winds of time while he remains forever young. When Gray's obsession spirals out of control, his desperate attempts to safeguard his secret turn his once-privileged life into a living hell.
## 8489 Sidney Young is a down-on-his-luck journalist. Thanks to a stint involving a pig and a glitzy awards ceremony, Sidney turns his fortunes around, attracting the attention of Clayton Harding, editor of New York-based glossy magazine 'Sharps', and landing the holy grail of journalism jobs. The Brit jets off to the Big Apple and moves from one blunder to the next.
## 8490 The perversion behind imperial Rome, the epic story of Rome's mad Emporer. All the details of his cruel, bizarre reign are revealed right here: His unholy sexual passion for his sister, his marriage to Rome's most infamous prostitute, his fiendishly inventive means of disposing those who would oppose him, and more.
## 8491 Hubie Dubois, despite his devotion to his hometown of Salem, Massachusetts (and its legendary Halloween celebration), is a figure of mockery for kids and adults alike. But this year, something really is going bump in the night, and it’s up to Hubie to save Halloween.
## 8492 When a group of teenagers goes on a spring break camping trip, an unfortunate accident sets off a race to save their friend’s most prized possession.
## 8493 A harmless game of "Truth or Dare" among friends turns deadly when someone—or something—begins to punish those who tell a lie—or refuse the dare.
## 8494 A family together with their grandpa go on a vacation, when their new car won't stop and it nearly escapes crashing into a hundred cars.
## 8495 Middle-aged family man Arnaldo is kicked out by his wife because of a misunderstanding. Instead of despairing, Arnaldo takes advantage of the situation to turn around his unsatisfying adult life by going to live in a flat shared with four university students.
## 8496 In an effort to repair their relationship, a couple books a vacation in the countryside for themselves and their daughter. What starts as a perfect retreat begins to fall apart as one loses their grip on reality, and a sinister force tries to tear them apart.
## 8497 On the outskirts of Brooklyn, Frankie, an aimless teenager, suffocates under the oppressive glare cast by his family and a toxic group of delinquent friends. Struggling with his own identity, Frankie begins to scour hookup sites for older men.
## 8498 Recent MIT grad Matt Franklin should be well on his way to a successful career at a Fortune 500 company, but instead he rebels against maturity by taking a job at a video store. Matt rethinks his position when his unrequited high-school crush, Tori, walks in and invites him to an end-of-summer party. With the help of his twin sister and his best friend, Matt hatches a plan to change the course of his life.
## 8499 Stephen, an international trader, tracks down his ex-wife Patricia in some Amazonian backwater. He needs her consent to a divorce so that he can marry Charlotte. Unfortunately, he discovers a son he didn’t know he had – Mimi-Siku. The young jungle boy yearns to see Paris so Stephen reluctantly agrees to take him back home with him for a few days. How will Mimi-Siku react to life in the great metropolis?
## 8500 Julius and Vincent Benedict are the results of an experiment that would allow for the perfect child. Julius was planned and grows to athletic proportions. Vincent is an accident and is somewhat smaller in stature. Vincent is placed in an orphanage while Julius is taken to a south seas island and raised by philosophers. Vincent becomes the ultimate low life and is about to be killed by loan sharks.
## 8501 After an accident, Tom wakes from a coma to discover that fragments of his smart phone have been embedded in his head, and worse, that returning to normal teenage life is impossible because he has developed a strange set of super powers.
## 8502 Valerie is in love with a brooding outsider, Peter, but her parents have arranged for her to marry another man – who is wealthy. Unwilling to lose each other, Valerie and Peter plan to run away together when they learn that Valerie's older sister has been killed by a werewolf that prowls the dark forest surrounding their village. Hungry for revenge, the people call on famed werewolf hunter, Father Solomon, to help them kill the wolf. But Solomon's arrival brings unintended consequences as he warns that the wolf, who takes human form by day, could be any one of them.
## 8503 A group of people gather in the California desert to watch a "film" set in the late 1990s featuring a sentient, homicidal car tire named Robert. The assembled crowd of onlookers watch as Robert becomes obsessed with a beautiful and mysterious woman and goes on a rampage through a desert town.
## 8504 A reporter in Iraq might just have the story of a lifetime when he meets Lyn Cassady, a guy who claims to be a former member of the U.S. Army's New Earth Army, a unit that employs paranormal powers in their missions.
## 8505 With his family away, a devoted stay-at-home dad enjoys his first me time in years by joining his hard-partying old friend on a wild birthday adventure.
## 8506 High school loner Bird Fitcher has no idea what dark secrets are tied to the mysterious Polaroid vintage camera she stumbles upon, but it doesn't take long to discover that those who have their picture taken meet a tragic end. Bird and her friends must survive one more night as they race to solve the mystery of the haunted Polaroid before it kills them all.
## 8507 Alex, Emily, and their son, RJ, are new to Los Angeles. A chance meeting at the park introduces them to the mysterious Kurt, Charlotte, and Max. A family “playdate” becomes increasingly interesting as the night goes on.
## 8508 A reporter's dream of becoming a news anchor is compromised after a one-night stand leaves her stranded in downtown L.A. without a phone, car, ID or money - and only 8 hours to make it to the most important job interview of her life.
## 8509 A secret admirer's crush on a high school athlete takes a fatal turn.
## 8510 Occupied France; Lebrac leads a play war between two rival kid gangs, but a girl he likes, who's Jewish, is in danger of being discovered by local Nazi sympathisers. Lebrac and the village must now respond to the reality of what's happening.
## 8511 After the Evil Queen marries the King, she performs a violent coup in which the King is murdered and his daughter, Snow White, is taken captive. Almost a decade later, a grown Snow White is still in the clutches of the Queen. In order to obtain immortality, The Evil Queen needs the heart of Snow White. After Snow escapes the castle, the Queen sends the Huntsman to find her in the Dark Forest.
## 8512 Coleman Silk is a worldly and admired professor who loses his job after unwittingly making a racial slur. To clear his name, Silk writes a book about the events with his friend and colleague Nathan Zuckerman, who in the process discovers a dark secret Silk has hidden his whole life. All the while, Silk engages in an affair with Faunia Farley, a younger woman whose tormented past threatens to unravel the layers of deception Silk has constructed.
## 8513 The Ducks are offered scholarships at Eden Hall Academy but struggle with their new coach's methods and come under pressure from the board to retain their scholarships before their big game against the Varsity team.
## 8514 Ryan and Jennifer are opposites who definitely do not attract. At least that's what they always believed. When they met as twelve-year-olds, they disliked one another. When they met again as teenagers, they loathed each other. But when they meet in college, the uptight Ryan and the free-spirited Jennifer find that their differences bind them together and a rare friendship develops.
## 8515 After a series of disturbing supernatural events in his home, Joel a young single father, comes to suspect that his young son may be possessed. Soon Joel receives a visit from Father Lambert, a controversial exorcist in town whose last patient died during his treatment. As increasing chilling occurrences begin to unfold, the priest informs a resistant Joel that unless he can successfully perform an exorcism, the devil will soon take full control of his boy.
## 8516 An uptight documentary filmmaker and his wife find their lives loosened up a bit after befriending a free-spirited younger couple.
## 8517 A romantic comedy that brings together three disparate characters who are learning to face a challenging and often confusing world as they struggle together against a common demon—sex addiction.
## 8518 The accidental shooting of a boy in New York leads to an investigation by the Deputy Mayor, and unexpectedly far-reaching consequences.
## 8519 Set during the Cold War, the Soviets—led by sword-wielding Irina Spalko—are in search of a crystal skull which has supernatural powers related to a mystical Lost City of Gold. Indy is coerced to head to Peru at the behest of a young man whose friend—and Indy's colleague—Professor Oxley has been captured for his knowledge of the skull's whereabouts.
## 8520 Living with her snobby family on the brink of bankruptcy, Anne Elliot is an unconforming woman with modern sensibilities. When Frederick Wentworth - the dashing one she once sent away - crashes back into her life, Anne must choose between putting the past behind her or listening to her heart when it comes to second chances.
## 8521 Porter Wren is a Manhattan tabloid writer with an appetite for scandal. On the beat he sells murder, tragedy, and anything that passes for the truth. At home, he is a dedicated husband and father. But when Caroline, a seductive stranger asks him to dig into the unsolved murder of her filmmaker husband Simon, he is drawn into a very nasty case of sexual obsession and blackmail--one that threatens his job, his marriage, and his life.
## 8522 The boredom of small town life is eating Bill Williamson alive. Feeling constrained and claustrophobic in the meaningless drudgery of everyday life and helpless against overwhelming global dissolution, Bill begins a descent into madness. His shockingly violent plan will shake the very foundations of society by painting the streets red with blood.
## 8523 Roger is a foster child whose irresponsible father promises to get his act together when Roger's favourite baseball team, the California Angels, wins the pennant. The problem is that the Angels are in last place, so Roger prays for help to turn the team around. Sure enough, his prayers are answered in the form of angel Al.
## 8524 Luc Deveraux, the heroic former Universal Soldier, is about to be thrown into action once again. When SETH, the supercomputer-controlled ultra-warrior, decides to take revenge and destroy its creators, only Luc can stop it. All hell breaks loose as Luc battles SETH and a deadly team of perfect soldiers in a struggle that pits man against machine and good against evil.
## 8525 New York police detective John Shaft arrests Walter Wade Jr. for a racially motivated slaying. But the only eyewitness disappears, and Wade jumps bail for Switzerland. Two years later Wade returns to face trial, confident his money and influence will get him acquitted -- especially since he's paid a drug kingpin to kill the witness.
## 8526 A bohemian artist travels from London to Italy with his estranged son to sell the house they inherited from his late wife.
## 8527 Living a bleak existence at a London orphanage, 12-year-old Peter finds himself whisked away to the fantastical world of Neverland. Adventure awaits as he meets new friend James Hook and the warrior Tiger Lily. They must band together to save Neverland from the ruthless pirate Blackbeard. Along the way, the rebellious and mischievous boy discovers his true destiny, becoming the hero forever known as Peter Pan.
## 8528 A westerner named Casey, studying Ninjutsu in Japan, is asked by the Sensei to return to New York to protect the legendary Yoroi Bitsu, an armored chest that contains the weapons of the last Koga Ninja.
## 8529 After receiving a cryptic letter from his estranged father, Norval travels to his dad’s oceanfront home for what he hopes will be a positive experience. If only he’d known the dark truth about his old man beforehand.
## 8530 After the events of the first movie, the "immatures" go on a trip to the Greek island of Paros.
## 8531 A Hollywood-set romantic tale of a guy who is content to live his life without a job yet with the love of his life, a young actress.
## 8532 The lethal Reaper virus spreads throughout Britain—infecting millions and killing hundreds of thousands. Authorities brutally and successfully quarantine the country but, three decades later, the virus resurfaces in a major city. An elite group of specialists is urgently dispatched into the still-quarantined country to retrieve a cure by any means necessary. Shut off from the rest of the world, the unit must battle through a landscape that has become a waking nightmare.
## 8533 A homicide detective teams up with an evolutionary biologist to hunt a giant creature that is killing people in a Chicago museum.
## 8534 Washington, D.C. psychologist Carol Bennell and her colleague Dr. Ben Driscoll are the only two people on Earth who are aware of an epidemic running rampant through the city. They discover an alien virus aboard a crashed space shuttle that transforms anyone who comes into contact with it into unfeeling drones while they sleep. Carol realizes her son holds the key to stopping the spread of the plague and she races to find him before it is too late.
## 8535 While Sidney lives in safely guarded seclusion, bodies begin dropping around the Hollywood set of STAB 3, the latest movie based on the gruesome Woodsboro killings.
## 8536 Shaun Russell takes her son and daughter on a weekend getaway to her late father's secluded, high-tech vacation home in the countryside. The family soon gets an unwelcome surprise when four men break into the house to find hidden money. After managing to escape, Shaun must now figure out a way to turn the tables on the desperate thieves and save her captive children.
## 8537 A man awakes-- without memory -- in a pit full of bodies and must figure out if the people who rescued him are the killers, or if he is the murderer.
## 8538 Three fanatical bird-watchers spend an entire year competing to spot the highest number of species as El Nino sends an extraordinary variety of rare breeds flying up into the U.S., but they quickly discover that there are more important things than coming out on top of the competition.
## 8539 Andrea is a handsome and cocky 38-year old man with a successful business career. Shallow, womanizing and a confirmed bachelor, his life seems to be just perfect... until the day he comes home and finds there Layla, a teenage girl who claims to be his daughter. Alongside Layla is her grandfather Enzo, a former rockstar and the father of Andrea's first fleeting and forgotten conquest. And they've come to stay!
## 8540 Georgia Rule follows a rebellious, uncontrollable teenager who is hauled off by her dysfunctional mother to spend the summer with her grandmother. Her journey will lead all three women to revelations of buried family secrets and an understanding that - regardless what happens - the ties that bind can never be broken.
## 8541 Video store clerk Ed agrees to have his life filmed by a camera crew for a tv network.
## 8542 Jane Goodale has everything going for her. She's a producer on a popular daytime talk show, and is in a hot romance with the show's dashing executive producer Ray. But when the relationship goes terribly awry, Jane begins an extensive study of the male animal, including her womanizing roommate Eddie. Jane puts her studies and romantic misadventure to use as a pseudonymous sex columnist -- and becomes a sensation.
## 8543 Albert Einstein helps a young man who's in love with Einstein's niece to catch her attention by pretending temporarily to be a great physicist.
## 8544 Mark 13 is a government-built killing machine programmed with artificial intelligence, able to repair and recharge itself from any energy source. Through a series of coincidences, the cyborg's head ends up in the home of a sculptress as a bizarre Christmas present from her boyfriend. Once inside its new home, the cyborg promptly reconstructs the rest of its body using a variety of household utensils and proceeds to go on a murderous rampage.
## 8545 Frank Penny is a disgraced cop looking for a shot at redemption. When the police chief's 11-year-old daughter is abducted, Frank goes rogue to try and save her. But to find the girl, Frank will need the help of Ava Brooks, whose live-streaming news channel is broadcasting Frank's every move.
## 8546 Between 1978 and 1979, the inhabitants of the Oise are in fear of a maniac who kills several hitchhikers and escape the police. He was then dubbed "the killer of the Oise" is actually a shy young policeman who will investigate his own murder, only to lose control of the situation.
## 8547 A naive Midwesterner insurance salesman travels to a big-city convention in an effort to save the jobs of his co-workers.
## 8548 A blind man has an operation to regain his sight at the urging of his girlfriend and must deal with the changes to his life.
## 8549 Wayne Dobie is a shy cop whose low-key demeanor has earned him the affectionate nickname "Mad Dog." After Mad Dog saves the life of Frank Milo, a crime boss and aspiring stand-up comedian, he's offered the company of an attractive young waitress named Glory for a week. At first both are uneasy about the arrangement, but they eventually fall in love. However, the situation becomes complicated when Milo demands Glory back.
## 8550 A young American couple travel to the arctic mountains of Norway. After pulling over during a snowstorm, they wake up trapped in their SUV, buried underneath layers of snow and ice.
## 8551 "The human whose name is written in the Death Note shall die." After making the hardest decision ever, another serious case confronts L. There are only 23 days left and without his best partner Watari (Shunji Fujimura), L has to solve the case all by himself for the very first time.
## 8552 A batch of unhatched critter eggs are mistaken for Easter eggs by the country-folk inhabitants of Grover's Bend and, before long, the ferocious furballs are on the rampage again.
## 8553 Dan Foreman is a seasoned advertisement sales executive at a high-ranking publication when a corporate takeover results in him being placed under naive supervisor Carter Duryea, who is half his age. Matters are made worse when Dan's new supervisor becomes romantically involved with his daughter an 18 year-old college student Alex.
## 8554 Eloise, having been relieved of maid of honor duties after being unceremoniously dumped by the best man via text, decides to attend the wedding anyway – only to find herself seated with five fellow-unwanted guests at the dreaded Table 19.
## 8555 A troubled young woman becomes obsessed with her mysterious new neighbor, who bears a striking resemblance to the girl's dead mother.
## 8556 A nomadic 16th century warrior, condemned to hell for his brutal past, seeks redemption by renouncing violence, but finds some things are worth burning for as he fights to free a young Puritan woman from the grip of evil.
## 8557 When a young African-American woman brings her fiancé home to meet her parents, she's neglected to mention one tiny detail - he's white.
## 8558 Paul Morse is a good guy. When his friends throw him a wild bachelor party, he just wants to keep his conscience clean -- which is why he's shocked when he wakes up in bed with a beautiful girl named Becky and can't remember the night before. Desperate to keep his fiancée, Karen, from finding out what may or may not be the truth, he tells her a teensy lie. Soon his lies are spiraling out of control and his life is a series of comical misunderstandings.
## 8559 After a sudden global event wipes out all electronics and takes away humankind’s ability to sleep, chaos quickly begins to consume the world. Only Jill, an ex-soldier with a troubled past, may hold the key to a cure in the form of her own daughter. The question is, can Jill safely deliver her daughter and save the world before she herself loses her mind.
## 8560 When an oil rig in the Gobi Desert of Mongolia proves unproductive, an aircraft crew are sent to shut the operation down and fly them out. On the flight out over the desert on the way to Beijing, Capt. Frank Towns and co-pilot A.J. are unable to keep their cargo plane, a C-119 Flying Boxcar, in the air when a violent sandstorm strikes. Crash-landing in a remote uncharted part of the desert, the two pilots and their passengers -- a crew of oil workers and a drifter -- must work together to survive by rebuilding the aircraft. Soon, low supplies and a band of merciless smugglers add even greater urgency to their task.
## 8561 In 1970, a few days before Christmas, Elvis Presley showed up on the White House lawn seeking to be deputized into the Bureau of Narcotics and Dangerous Drugs by the President himself.
## 8562 Two disconnected sisters are summoned to clean out their childhood bedrooms before their parents sell their family home.
## 8563 Galifianakis dreamed of becoming a star. But when Will Ferrell discovered his public access TV show, 'Between Two Ferns' and uploaded it to Funny or Die, Zach became a viral laughing stock. Now Zach and his crew are taking a road trip to complete a series of high-profile celebrity interviews and restore his reputation.
## 8564 The Men in Black have always protected the Earth from the scum of the universe. In this new adventure, they tackle their biggest, most global threat to date: a mole in the Men in Black organization.
## 8565 When the rumored whereabouts of Osama bin Laden are revealed, the CIA readies a team of seasoned U.S. Navy SEALs for the mission of a lifetime. Despite inconclusive evidence that bin Laden is inside the compound, and ignoring the possible ramifications of an unannounced attack on Pakistani soil, the Pentagon orders the attack. The SEAL Team bands together to complete their mission of justice in a riveting final showdown.
## 8566 When three skiers find themselves stranded on a chair lift at a New England ski resort that has closed for the next week, they are forced to make life or death choices that prove to be more perilous than staying put and freezing to death.
## 8567 Tanguy is 28 years old and still living with his parents. They think it's time he moves out. He doesn't, so they hatch a plan.
## 8568 Police chief Brody must protect the citizens of Amity after a second monstrous shark begins terrorizing the waters.
## 8569 She's a divorce lawyer, single mother and perpetually at war against men, he is a couple's therapist, single and not looking, they meet and collide in a bourgeois and romantic Rome...
## 8570 Pinnacle records has the perfect plan to get their sinking company back on track: a comeback concert in LA featuring Aldous Snow, a fading rockstar who has dropped off the radar in recent years. Record company intern Aaron Green is faced with the monumental task of bringing his idol, out of control rock star Aldous Snow, back to LA for his comeback show.
## 8571 A straight-laced pharmacist's uneventful life spirals out of control when he starts an affair with a trophy wife customer who takes him on a joyride involving sex, drugs and possibly murder.
## 8572 A frustrated Boston detective searches for the maniac responsible for mutilating a number of university coeds.
## 8573 A troubled actor, a television show runner, and an acclaimed videogame designer find their lives intertwining in mysterious and unsettling ways.
## 8574 When recently single Steven moves into his new apartment, cable guy Chip comes to hook him up—and doesn't let go. Initially, Chip is just overzealous in his desire to be Steven's pal, but when Steven tries to end the 'friendship', Chip shows his dark side. He begins stalking Steven, who's left to fend for himself because no one else can believe Chip's capable of such behaviour.
## 8575 A father, who can't keep his promises, dies in a car accident. One year later, he returns as a snowman, who has the final chance to put things right with his son before he is gone forever.
## 8576 To prevent a world war from breaking out, famous characters from Victorian literature band together to do battle against a cunning villain.
## 8577 Federation trooper Johnny Rico is ordered to work with a group of new recruits on a satellite station on Mars, where giant bugs have decided to target their next attack.
## 8578 James Bond is sent to investigate the connection between a North Korean terrorist and a diamond mogul, who is funding the development of an international space weapon.
## 8579 Caught by tabloid paparazzi with his mistress Elena, a famous and beautiful fashion model, billionaire Pierre Levasseur tries to avoid a divorce by inventing a preposterous lie. He uses the presence of a passerby in the photo to claim to his wife that it's not him Elena is seeing but the other man, one François Pignon. Pignon is a modest little man who works as a parking valet. To make the story convincing, Elena has to move in with Pignon.
## 8580 In New York, a struggling actress and a successful writer sing about their failed marriage from two perspectives.
## 8581 Set in a 19th century village, a young man studying under a local doctor joins a team of hunters on the trail of a wolf-like creature.
## 8582 When notorious womanizer Connor Mead attends his brother Paul's wedding, he is forced to re-evaluate his behavior as he comes face-to-face with the ghosts of girlfriends past, present, and future, along with his deceased uncle. The experience changes his attitude and allows him to reconnect with his first and only love, Jenny.
## 8583 Raised by wild animals since childhood, Mowgli is drawn away from the jungle by the beautiful Kitty. But Mowgli must eventually face corrupt Capt. Boone, who wants both Kitty's hand and the treasures of Monkey City – a place only Mowgli can find.
## 8584 The story of the life of Domino Harvey, who abandoned her career as a Ford model to become a bounty hunter.
## 8585 Maya is living the ultimate fashionistas dream: she is working as a stylist for one of the French trend setters, in the capital of haute-couture: Paris. One of the IT girls of fashion, shes following her dreams until one night, when her life takes a sudden turn: shes being deported back to Morocco, after being stopped for over speeding, because her Visa expired some time ago. So in no more than 24 hours, shes deported back to her family and original country. The strong cultural shock and the judgmental differences are pushing the woman to obtain back her place in the city of dreams and her dreams, no matter the costs. But that doesn't mean she will have to return alone, as she finds other things also among her way back to the city.
## 8586 When their beloved school is threatened with closure should the powers that be fail to raise the proper funds, the girls scheme to steal a priceless painting and use the profits to pull St. Trinian's out of the red.
## 8587 When he suddenly finds himself without his long-standing blue-collar job, Larry Crowne enrolls at his local college to start over. There, he becomes part of an eclectic community of students and develops a crush on his teacher.
## 8588 As the plague decimates medieval Europe, rumours circulate of a village immune from the plague. There is talk of a necromancer who leads the village and is able to raise the dead. A fearsome knight joined by a cohort of soldiers and a young monk are charged by the church to investigate. Their journey is filled with danger, but it's upon entering the village that their true horror begins.
## 8589 A financial executive who can't stop his career downspiral is invited into his daughter's imaginary world, where solutions to his problems await.
## 8590 Restless and ready for an adventure, four suburban bikers leave the safety of their subdivision and head out on the open road. But complications ensue when they cross paths with an intimidating band of New Mexico bikers known as the Del Fuegos.
## 8591 When Elizabeth returns to her mother's home after her marriage breaks up, she recreates her imaginary childhood friend, Fred, to escape from the trauma of losing her husband and her job. In between the chaos and mayhem that Fred creates, Elizabeth attempts to win back her husband and return to normality.
## 8592 In a seedy bar in a town ravaged by war, scientist and businessman Hunt hires mercenary and former Royal Marine D.C. to assemble a crack team of ex-soldiers to protect him on a dangerous journey into no-man's land. Their mission is to scope out an old military bunker in Eastern Europe. It should be easy – 48 hours at the most. Lots of cash for little risk. Or so he says...
## 8593 A world of the very near future in which cattle, fish, and even the family pet can be cloned. But cloning humans is illegal - that is until family man Adam Gibson (Arnold Schwarzenegger) comes home from work one day to find a clone has replaced him. Taken from his family and plunged into a sinister world he doesn't understand, Gibson must not only save himself from the assassins who must destroy him to protect their secret, but uncover who and what is behind the horrible things happening to him.
## 8594 Susana leaves her life in Paris, where she works as a model, and returns to Madrid to take care of her grandmother Pilar.
## 8595 LAPD Sgt. Joe Friday -- the equally straight-laced nephew of the famous police sergeant of the same name -- is paired up with a young, freewheeling detective named Pep Streebeck. After investigating some strange robberies at the local zoo and the theft of a stockpile of pornographic magazines, they uncover cult activity in the heart of the city and are hot on the case to figure out who's behind it all.
## 8596 The modern world holds many secrets, but by far the most astounding is that witches still live among us; vicious supernatural creatures intent on unleashing the Black Death upon the world and putting an end to the human race once and for all. Armies of witch hunters have battled this unnatural enemy for centuries, including Kaulder, a valiant warrior who many years ago slayed the all-powerful Witch Queen, decimating her followers in the process. In the moments right before her death, the Queen cursed Kaulder with immortality, forever separating him from his beloved wife and daughter. Today, Kaulder is the last living hunter who has spent his immortal life tracking down rogue witches, all the while yearning for his long-lost family.
## 8597 A gang of criminals and corrupt cops plan the murder of a police officer in order to pull off their biggest heist yet across town.
## 8598 London is a drug laden adventure that centers on a party in a New York loft where a young man is trying to win back his ex-girlfriend.
## 8599 What a beautiful surprise tells the story of Guido (Claudio Bisio), romantic dreamer and a professor of literature in high school, whose life falls apart when buy the HIS girlfriend, with whom he lives for years, it leaves for another man. Paul (Frank Matano) - Its a former student listless become a physical education teacher - And His best friend and Fara everything to help him to exit from the crisis.
## 8600 Already deep into a second Cold War, Britain’s Ministry of Defense seeks a game-changing weapon. Programmer Vincent McCarthy unwittingly provides an answer in The Machine, a super-strong human cyborg. When a programming bug causes the prototype to decimate his lab, McCarthy takes his obsessive efforts underground, far away from inquisitive eyes.
## 8601 When strangers Jim, Eva, Emily and Mo meet William online in his new 'Chelsea Teens!' chatroom, they're completely seduced by his fast-talking, charismatic character. But beneath the surface lies a much darker truth. William is a dangerous loner, channeling all his energies into cyberspace. He's become an analyser, a calculating manipulator who finds it almost impossible to interact normally with others in the real world, instead turning his hand to manipulating people online.
## 8602 Researchers on the undersea lab Aquatica have genetically altered the brains of captive sharks to develop a cure for Alzheimer's disease. But there's an unexpected side effect: the sharks got smarter, faster, and more dangerous. After a big storm damages their remote research facility, they must fight for their lives.
## 8603 Jack Palmer is a Paris-based detective with a huge ego. Ange Leoni is a rebel native of Corsica whose location can't be pinned down by even the most dogged of detectives. Approached by an obscure, small-time attorney and charged with the seemingly simple task of locating the missing Leoni, gifted gumshoe Palmer accepts the job under the assumption that it will be the easiest money of his professional career. But this superstar sleuth is about to find out just how mistaken he was...
## 8604 In a flooded future London, Detective Harley Stone hunts a serial killer who murdered his partner and has haunted him ever since — but he soon discovers what he is hunting might not be human.
## 8605 An infamous terrorist has evaded capture for a long time by being extremely clever and ruthless. Things get interesting when he hijacks a plane carrying famous security expert John Cutter, who isn't about to stand for this sort of thing.
## 8606 Jesse becomes reunited with Willy three years after the whale's jump to freedom as the teenager tries to rescue the killer whale and other orcas from an oil spill.
## 8607 Dispatched to a small Italian town to await further orders, assassin Jack embarks on a double life that may be more relaxing than is good for him.
## 8608 The Djinn having been released from his ancient prison seeks to capture the soul of the woman who discovered him, thereby opening a portal and freeing his fellow Djinn to take over the earth.
## 8609 A publishing executive is visited and bitten by a vampire and starts exhibiting erratic behavior. He pushes his secretary to extremes as he tries to come to terms with his affliction. The vampire continues to visit and drink his blood, and as his madness deepens, it begins to look as if some of the events he's experiencing may be hallucinations.
## 8610 Hoping to leave his criminal lifestyle behind him, a successful art thief teams up with a sexy con woman to pull off the ultimate heist and set himself free.
## 8611 When new students can't get onto their college cheerleading team, they form their own squad and prepare for a cheer off.
## 8612 Four young men make a risky investment together that gets them into trouble with the mob.
## 8613 Anna suffers from agoraphobia so crippling that when a trio of criminals break into her house, she cannot bring herself to flee. But what the intruders don't realize is that agoraphobia is not her only psychosis.
## 8614 A valedictorian's declaration of love for a high-school cheerleader launches a night of revelry, reflection and romance for a group of graduating seniors.
## 8615 Harry Crumb is a bumbling and inept private investigator who is hired to solve the kidnapping of a young heiress which he's not expected to solve because his employer is the mastermind behind the kidnapping.
## 8616 A successful, single businesswoman who dreams of having a baby discovers she is infertile and hires a working class woman to be her unlikely surrogate.
## 8617 In an effort to prevent family history from repeating itself, meddlesome mom Daphne Wilder attempts to set up her youngest daughter, Milly, with Mr. Right. Meanwhile, her other daughters try to keep their mom's good intentions under control.
## 8618 The film contains five stories set on desolate stretches of a desert highway. Two men on the run from their past, a band on its way to a gig, a man struggling to get home, a brother in search of his long-lost sister and a family on vacation are forced to confront their worst fears and darkest secrets in these interwoven tales.
## 8619 An American nanny is shocked that her new English family's boy is actually a life-sized doll. After she violates a list of strict rules, disturbing events make her believe that the doll is really alive.
## 8620 Fearing the actions of a god-like Super Hero left unchecked, Gotham City’s own formidable, forceful vigilante takes on Metropolis’s most revered, modern-day savior, while the world wrestles with what sort of hero it really needs. And with Batman and Superman at war with one another, a new threat quickly arises, putting mankind in greater danger than it’s ever known before.
## 8621 During a trip to Germany to scatter their grandfather's ashes, German-American brothers Todd and Jan discover Beerfest, the secret Olympics of downing stout, and want to enter the contest to defend their family's beer-guzzling honor. Their Old Country cousins sneer at the Yanks' chances, prompting the siblings to return to America to prepare for a showdown the following year.
## 8622 Yet to fulfil their rock and roll destiny, the now middle-aged best friends Bill and Ted set out on a new adventure when a visitor from the future warns them that only their song can save life as we know it. Along the way, they are helped by their daughters, a new batch of historical figures and a few music legends — to seek the song that will set their world right and bring harmony to the universe.
## 8623 Theseus is a mortal man chosen by Zeus to lead the fight against the ruthless King Hyperion, who is on a rampage across Greece to obtain a weapon that can destroy humanity.
## 8624 Six men with mid-life anxiety set out for a weekend in the country in an attempt to reconnect with their masculinity. What they find is a catastrophe so horrible and bizarre that a mid-life crisis turns out to be exactly what they need to survive it...
## 8625 Rumored to have been lost, Antrum appears as a cursed film from the 1970s. Viewers are warned to proceed with caution. It’s said to be a story about a young boy and girl who enter the forest in an attempt to save the soul of their recently deceased pet. They journey to “The Antrum,” the very spot the devil landed after being cast out of heaven. There, the children begin to dig a hole to hell.
## 8626 A young affluent couple expecting their first child hits it off with the new couple that moves in downstairs, until a dinner party between them ends in a shocking accident.
## 8627 What happens when a person decides that life is merely a state of mind? If you're Betty, a small-town waitress and soap opera fan from Fair Oaks, Kansas, you refuse to believe that you can't be with the love of your life just because he doesn't really exist. After all, life is no excuse for not living. Traumatized by a savage event, Betty enters into a fugue state that allows -- even encourages -- her to keep functioning... in a kind of alternate reality.
## 8628 After a successful deployment of the Robocop Law Enforcement unit, OCP sees its goal of urban pacification come closer and closer, but as this develops, a new narcotic known as "Nuke" invades the streets led by God-delirious leader Cane. As this menace grows, it may prove to be too much for Murphy to handle. OCP tries to replicate the success of the first unit, but ends up with failed prototypes with suicidal issues... until Dr. Faxx, a scientist straying away from OCP's path, uses Cane as the new subject for the Robocop 2 project, a living God.
## 8629 Set against the badlands of Australia where the English rule with a bloody fist and the Irish endure, Ned Kelly discovers he comes from a line of Irish rebels — an uncompromising army of cross dressing bandits immortalised for terrorising their oppressors back in Ireland. Fuelled by the unfair arrest of his mother, Kelly recruits a wild bunch of warriors to plot one of the most audacious attacks of anarchy and rebellion the country has ever seen.
## 8630 Telly Paretta is a grieving mother struggling to cope with the loss of her 8-year-old son. She is stunned when her psychiatrist reveals that she has created eight years of memories about a son she never had. But when she meets a man who has had a similar experience, Telly embarks on a search to prove her son's existence, and her sanity.
## 8631 A simple yet proud rancher conspires to murder his wife for financial gain, convincing his teenage son to participate.
## 8632 Fatal... a diminutive for Fatal Bazooka, a bling-bling and hardcore rapper. A huge music star. Millions of fans, tens of hits, 4 « Artist of the year » Music Awards of Music, a range of fashion, a magazine, and soon his own amusement park : Fataland. He is the undisputed number one, until...
## 8633 When a fisherman leaves to fight with the Greek army during World War II, his fiancée falls in love with the local Italian commander.
## 8634 An assassin seeks redemption after being given a second chance at life.
## 8635 In 1968, Donald Crowhurst, an amateur sailor, endangers the fate of his family and business, and his own life, blinded by his ambition to compete in the Sunday Times Golden Globe Race, attempting to become the first person in history to single-handedly circumnavigate the world without making any stopover.
## 8636 Arthur Bishop thought he had put his murderous past behind him when his most formidable foe kidnaps the love of his life. Now he is forced to travel the globe to complete three impossible assassinations, and do what he does best, make them look like accidents.
## 8637 Weekend trips, office parties, late night conversations, drinking on the job, marriage pressure, biological clocks, holding eye contact a second too long… you know what makes the line between “friends” and “more than friends” really blurry? Beer.
## 8638 After four high school friends are involved in a hit-and-run road accident, they dispose of the body and vow to keep the incident a secret. A year later, they each start receiving anonymous letters bearing the warning "I Know What You Did Last Summer."
## 8639 16-year-old Cassie Sullivan tries to survive in a world devastated by the waves of an alien invasion that has already decimated the population and knocked mankind back to the Stone Age.
## 8640 The coming-of-age story of Cayden Richards. Forced to hit the road after the murder of his parents, Cayden wanders lost without purpose... Until he meets a certifiable lunatic named Wild Joe who sets him on a path to the ominous town of Lupine Ridge to hunt down the truths of his history. But in the end| who's really hunting whom?
## 8641 Wrongfully accused and on the run, a top MI6 assassin joins forces with his long-lost, football hooligan brother to save the world from a sinister plot.
## 8642 An everyday man has only three and a half days and limited resources to discover why he was imprisoned in a nondescript room for 20 years without any explanation.
## 8643 Estranged from his father, college student Jake is lured home to New York for Christmas with the promise of receiving a classic Porsche as a gift. When the bullying football team dumps him in the desert in a Santa suit, Jake is left without identification or money to help him make the journey. Meanwhile, his girlfriend, Allie, does not know where he is, and accepts a cross-country ride from Jake's rival, Eddie.
## 8644 Underwater deep-sea miners encounter a Soviet wreck and bring back a dangerous cargo to their base on the ocean floor with horrifying results. The crew of the mining base must fight to survive against a genetic mutation that hunts them down one by one.
## 8645 Well-known writer Ettore takes his family on a mountain chalet getaway for his birthday, in an effort to create a bond between his two sons, Claudio and Giulio, and his second wife, Margherita. The group is also joined by Margherita's brother, Claudio's girlfriend, a Ukraininan cook and her daughter. When an internet outage strikes, a series of exciting adventures ensues.
## 8646 Gloria is a free-spirited divorcée who spends her days at a straight-laced office job and her nights on the dance floor, joyfully letting loose at clubs around Los Angeles. After meeting Arnold on a night out, she finds herself thrust into an unexpected new romance, filled with both the joys of budding love and the complications of dating, identity, and family.
## 8647 In 13th century Ireland a group of monks must escort a sacred relic across a landscape fraught with peril.
## 8648 After a young writer is brutally gang-raped and left for dead by four men, she systematically hunts them down one by one to exact a terrible vengeance.
## 8649 The continuing adventures of the Portokalos family. A follow-up to the 2002 comedy, "My Big Fat Greek Wedding."
## 8650 Christmas Eve in New York, and the lonely divorced publisher, Rose Collins, needs a miracle to improve the health of her mother, interned in a hospital with Alzheimers. She feels sorry for another patient and meets his visitor. Meanwhile, Nina Vasquez breaks her engagement with her beloved fiancé Mike due to his suffocating jealousy, but misses him. Mike is stalked by a stranger, bartender Artie Venzuela. The poor Jules arranges to spend Christmas Eve in the hospital, where he spent the best Christmas of his life when he was a teenager. The lives of some of these characters cross with others along the night.
## 8651 Every ten or seven years in an unsuspecting town, The Tournament takes place. A battle royale between 30 of the world's deadliest assassins. The last man standing receiving the $10,000,000 cash prize and the title of Worlds No 1, which itself carries the legendary million dollar a bullet price tag.
## 8652 A master thief recruits a notorious thief to help him steal two famous Faberge eggs from an impenetrable vault in an effort to pull off one final job and repay his debt to the Russian mob.
## 8653 Ben Archer, an ex-mob enforcer, seeks revenge against a ruthless Chinese kingpin responsible for his wife's brutal murder. When Archer joins forces with his old underworld friends, an all-out war is waged against the Chinese Triad.
## 8654 Earl Montgomery, a bombastic police academy reject, and Hank Rafferty, a disgraced, mild-mannered cop, can't seem to escape each other. They met on opposite sides of the law during a routine traffic stop that escalated out of control; now as lowly security guards they're thrown together to bust a smuggling operation.
## 8655 Ryan Harrison, a violin god, superstar and sex symbol does not want to cheat on sexy Lauren Goodhue's husband with her. Mr. Goodhue is found murdered and Ryan suddenly finds himself being the main suspect. After being sentenced to death he manages to flee while being transferred to his execution site. Now, all the world is after him as he stumbles from one unfortunate incident to the next in order to prove himself innocent - by finding a mysterious one-eyed, one-armed, one-legged man...
## 8656 San Francisco's premiere wedding planner, Mary Fiore is rescued from an accident by the man of her dreams, paediatrician Steve Edison, only to find he is the fiancé of her latest client. As Mary continues making the wedding arrangements, she and Steve are put into a string of uncomfortable situations that force them to face their mutual attraction.
## 8657 A young interracial couple has just moved into their California dream home when they become the target of their next-door neighbor, who disapproves of their relationship. A tightly wound LAPD officer has appointed himself the watchdog of the neighborhood. His nightly foot patrols and overly watchful eyes bring comfort to some, but he becomes increasingly aggressive to the newlyweds. These persistent intrusions into their lives cause the couple to fight back.
## 8658 When the evil mayor of Oakton decides to bulldoze Liberty Park and build a dangerous amusement park in its place, Surly Squirrel and his ragtag group of animal friends need to band together to save their home, defeat the mayor, and take back the park.
## 8659 Jim Carrey stars as Tom Popper, a successful businessman who’s clueless when it comes to the really important things in life...until he inherits six “adorable” penguins, each with its own unique personality. Soon Tom’s rambunctious roommates turn his swank New York apartment into a snowy winter wonderland — and the rest of his world upside-down.
## 8660 A freelance writer looking for romance sells a story to Cosmopolitan magazine about finding love in the workplace and goes undercover at a Finance Company.
## 8661 Joe Armstrong, an orphaned drifter with little respect for much other than martial arts, finds himself on an American Army base in The Philippines after a judge gives him a choice of enlistment or prison. On one of his first missions driving a convoy, his platoon is attacked by a group of rebels who try to steal the weapons the platoon is transporting and kidnap the base colonel's daughter.
## 8662 Guy Luthan, a British doctor working at a hospital in New York, starts making unwelcome enquiries when the body of a man who died in his emergency room disappears. After the trail leads Luthan to the door of an eminent surgeon at the hospital, Luthan soon finds himself in extreme danger people who want the hospital's secret to remain undiscovered.
## 8663 An obese lawyer finds himself growing "Thinner" when an old gypsy man places a hex on him. Now the lawyer must call upon his friends in organized crime to help him persuade the gypsy to lift the curse. Time is running out for the desperate lawyer as he draws closer to his own death, and grows ever thinner.
## 8664 Seventeen-year-old Shirley is a good student who works as a babysitter in order to make money for college. One night Michael, a father Shirley works for, confesses he's unhappy with married life. Shirley has a crush on Michael, and seizes this moment to kiss him. Michael is so happy he presents Shirley with a big tip, which gives her an idea. Shirley plans to make extra money by setting up her teenage friends with other unhappy fathers.
## 8665 After a freak accident, an invisible yuppie runs for his life from a treacherous CIA official while trying to cope with his new life.
## 8666 Undercover Las Vegas police officer Vincent Downs, who has got a lot of enemies, is caught in a high stakes web of corrupt cops and the mob-controlled casino underground. When a heist goes wrong, a crew of homicidal gangsters get T, Downs’ teenage son. In one sleepless night, he will have to rescue his son T (whom they got), evade an internal affairs investigation and bring the kidnappers to justice.
## 8667 Dr. Burke Ryan is a successful self-help author and motivational speaker with a secret. While he helps thousands of people cope with tragedy and personal loss, he secretly is unable to overcome the death of his late wife. It's not until Burke meets a fiercely independent florist named Eloise that he is forced to face his past and overcome his demons.
## 8668 When the San Francisco Giants pay center-fielder, Bobby Rayburn $40 million to lead their team to the World Series, no one is happier or more supportive than #1 fan, Gil Renard. When Rayburn becomes mired in the worst slump of his career, the obsessed Renard decides to stop at nothing to help his idol regain his former glory—not even murder.
## 8669 When a man's daughter is suddenly taken during a championship hockey game – with the captors demanding a billion dollars by game's end – he frantically sets a plan in motion to rescue her and abort an impending explosion before the final buzzer.
## 8670 A thirty-seven-year-old woman wakes up from a twenty-year coma and returns to the high school where she was once a popular cheerleader to finish her senior year and become prom queen. The main plot is the empowerment of LGBTQ rights and progress through the years.
## 8671 Under the pressure of his boss, a music producer decides to set up a group consisting of a rabbi, a priest and an imam to make them sing the living together. But the religious he recruits are far from being saints ...
## 8672 A parolee falls for a reclusive movie star while trying to evade a ruthless gangster.
## 8673 Amalgamated Dairies hires David Rutherford, an FBI man turned industrial saboteur, to investigate a popular new product called “the Stuff,” a new dessert product that is blowing ice cream sales out of the water. Nobody knows how it’s made or what’s in it, but people are lining up to buy it. It's got a delicious flavor to die for!
## 8674 Americans Amy, Stacy, Jeff and Eric look for fun during a sunny holiday in Mexico, but they get much more than that after visiting an archaeological dig in the jungle.
## 8675 Four sons of well-known New York mobsters must retrieve a bag of cash from a small Montana town ruled by a corrupt sheriff.
## 8676 A career driven professional from Manhattan is wooed by a young painter, who also happens to be the son of her psychoanalyst.
## 8677 Three backpackers head to a Slovakian city that promises to meet their hedonistic expectations, with no idea of the hell that awaits them.
## 8678 In the present day, three friends to make ends meet invent a "criminal tour" for the places which were scenes of the Banda della Magliana criminal acts, even with vintage clothes. Suddenly they are catapulted in the 1982, during the Spain World Cup, facing the real Banda della Magliana, which at that time had the control over illegal bets.
## 8679 When Erin Bell was a young cop, she was given an undercover assignment that ended badly and destroyed her life. Years later, she must face her demons in order to make peace with her past.
## 8680 Jackie Chan stars as a hardened special forces agent who fights to protect a young woman from a sinister criminal gang. At the same time, he feels a special connection to the young woman, like they met in a different life.
## 8681 On the set of a playwright's new project, a love triangle forms between his wife, her ex-lover, and the call girl-turned-actress cast in the production.
## 8682 A thriller that follows two siblings who decide to fend for themselves in the wake of a botched casino heist, and their unlikely reunion during another family's Thanksgiving celebration.
## 8683 Art professor Nino Rolfe attempts to break down his wife Teresa's conventional modesty. Noticing her affection for their daughter's fiancé, Nino instigates her sexual interest in him - setting off a chain of unexpected events and emotional complications...
## 8684 Two first-year students at Oxford University join a secret society and learn that their reputations can be made or destroyed over the course of one evening.
## 8685 Caius Martius, aka Coriolanus, is an arrogant and fearsome general who has built a career on protecting Rome from its enemies. Pushed by his ambitious mother to seek the position of consul, Coriolanus is at odds with the masses and unpopular with certain colleagues. When a riot results in his expulsion from Rome, Coriolanus seeks out his sworn enemy, Tullus Aufidius. Together, the pair vow to destroy the great city.
## 8686 At Oxford University, a professor and a grad student work together to try and stop a potential series of murders seemingly linked by mathematical symbols.
## 8687 Nerdy high school senior Dizzy Harrison has finally gotten lucky -- after purposely getting expelled, he takes lessons in 'badass cool' from a convict and enrolls at a new school. But can he keep up the ruse?
## 8688 When Eastern European criminals Oleg and Emil come to New York City to pick up their share of a heist score, Oleg steals a video camera and starts filming their activities, both legal and illegal. When they learn how the American media circus can make a remorseless killer look like the victim and make them rich, they target media-savvy NYPD Homicide Detective Eddie Flemming and media-naive FDNY Fire Marshal Jordy Warsaw, the cops investigating their murder and torching of their former criminal partner, filming everything to sell to the local tabloid TV show "Top Story."
## 8689 The humans and animals believe a werewolf is on the loose, and former hunter Shaw uses the opportunity to re-open the season. Boog, Elliot, and Mr. Weenie have to face their fears and find the werewolf to get the season closed permanently.
## 8690 When Major Susan Turner is arrested for treason, ex-investigator Jack Reacher undertakes the challenging task to prove her innocence and ends up exposing a shocking conspiracy.
## 8691 The bonds between Naomi and Ely are tested when they fall for the same guy.
## 8692 Vada Sultenfuss has a holiday coming up, and an assignment: to do and essay on someone she admires and has never met. She decides she wants to do an assignment on her mother, but quickly realises she knows very little about her. She manages to get her father to agree to let her go to LA to stay with her Uncle Phil and do some research on her mother.
## 8693 The last years of Bettino Craxi, one of the most important and controversial italian leader of the 1980's.
## 8694 In 17th-century France, the Queen brings the Three Musketeers — Athos, Porthos, Aramis, and an aging d'Artagnan — back from retirement for one last mission: saving her son Louis and the whole kingdom.
## 8695 When flesh-eating piranhas are accidently released into a summer resort's rivers, the guests become their next meal.
## 8696 Tony and Tia are other-worldly twins endowed with telekinesis. When their Uncle Bene drops them off in Los Angeles for an earthbound vacation, a display of their supernatural skill catches the eye of the nefarious Dr. Gannon and his partner in crime, Letha, who see rich possibilities in harnessing the children's gifts. They kidnap Tony, and Tia gives chase only to find Gannon is using her brother's powers against her.
## 8697 A revenge-seeking gold digger marries a womanizing Beverly Hills lawyer with the intention of making a killing in the divorce.
## 8698 After discovering a passenger ship missing since 1962 floating adrift on the Bering Sea, salvagers claim the vessel as their own. Once they begin towing the ghost ship towards harbor, a series of bizarre occurrences happen and the group becomes trapped inside the ship, which they soon learn is inhabited by a demonic creature.
## 8699 Colin, an ambitious young American businessman, has a deal with a potential client, a rich Arab sheikh who is a passionate pigeon fancier. The sheikh has tried several times to buy a champion pigeon, but the owner continues to stubbornly refuse his offer. In an attempt to gain the trust of the Sheikh, Colin offers him a deal: if he manages to convince the owner to sell the champion pigeon, the sheikh will agree to do business with Colin's company. But when Colin meets Jos, the grumpy owner of the pigeon, and Isabella, his granddaughter, he realizes that this mission will not be as easy as he had hoped.
## 8700 A heart-warming tale about friendship, honor & courage, which sees a young boy become a man as he embarks on a quest to become a knight.
## 8701 Better watch out! The big guy in red is coming to town once again. This time, Scott Calvin -- also known as Santa Claus -- finds out there's an obscure clause in his contract requiring him to take on a wife. He has to leave the North Pole to fulfill his obligations, or else he'll be forced to give up his Yuletide gig.
## 8702 The story of John Wilmot, a.k.a. the Earl of Rochester, a 17th century poet who famously drank and debauched his way to an early grave, only to earn posthumous critical acclaim for his life's work.
## 8703 Mussolini reappears in Rome 72 years after his death, finding a Country still full of problems like racism and hate for politicians. Misguised for an actor, he sides with a young filmmaker and starts traveling along Italy to reconquer it.
## 8704 Set in a near-future world where there is no privacy, ignorance or anonymity, our private memories are recorded and crime almost ceases to exist. In trying to solve a series of unsolved murders, Sal Frieland stumbles onto a young woman who appears to have subverted the system and disappeared. She has no identity, no history and no record. Sal realizes it may not be the end of crime but the beginning. Known only as 'The Girl', Sal must find her before he becomes the next victim.
## 8705 Eccentric scientist Victor Von Frankenstein creates a grotesque creature in an unorthodox scientific experiment.
## 8706 Artie and Diane agree to look after their three grandkids when their type-A helicopter parents need to leave town for work. Problems arise when the kids' 21st-century behavior collides with Artie and Diane's old-school methods.
## 8707 Two veteran New York City detectives work to identify the possible connection between a recent murder and a case they believe they solved years ago; is there a serial killer on the loose, and did they perhaps put the wrong person behind bars?
## 8708 Deuce Bigalow is a less than attractive, down on his luck aquarium cleaner. One day he wrecks the house of a gigolo and needs quick money to repair it. The only way he can make it is to become a gigolo himself, taking on an unusual mix of female clients. He encounters a couple of problems, though. He falls in love with one of his unusual clients, and a sleazy police officer is hot on his trail.
## 8709 As everyone knows, children make no difference between social classes, skin colors or religions. But then why does Corentin, Paul and Sofia's nine-year-old son, only have friends like him at Bagnolet's school? And when his friends all leave for a private school in Paris, his parents are frightened. From now on, Corentin is the only one in his class. But the only what?
## 8710 A frustrated, angry teenage girl awakens something in the woods when she naively performs an occult ritual to invoke a witch to kill her mother.
## 8711 In 1993, the Search for Extra Terrestrial Intelligence Project receives a transmission detailing an alien DNA structure, along with instructions on how to splice it with human DNA. The result is Sil, a sensual but deadly creature who can change from a beautiful woman to an armour-plated killing machine in the blink of an eye.
## 8712 Syd March is an employee at a clinic that sells injections of live viruses harvested from sick celebrities to obsessed fans. When he becomes infected with the disease that kills super sensation Hannah Geist, Syd becomes a target for collectors and rabid fans. He must unravel the mystery surrounding her death before he suffers the same fate.
## 8713 A baby alligator is flushed down a toilet and survives by eating discarded lab animals that have been injected with growth hormones. The now gigantic animal escapes the city sewers and goes on a rampage, pursued by a cop and a big-game hunter.
## 8714 Jimmy Neutron is a boy genius and way ahead of his friends, but when it comes to being cool, he's a little behind. All until one day when his parents, and parents all over Earth are kidnapped by aliens, it's up to him to lead all the children of the world to rescue their parents.
## 8715 The irreverent host of a political satire talk show decides to run for president and expose corruption in Washington. His stunt goes further than he expects when he actually wins the election, but a software engineer suspects that a computer glitch is responsible for his surprising victory.
## 8716 After she spends all her money, an evil enchantress queen schemes to marry a handsome, wealthy prince. There's just one problem - he's in love with a beautiful princess, Snow White. Now, joined by seven rebellious dwarves, Snow White launches an epic battle of good vs. evil...
## 8717 A recently widowed detective still grieving over his wife's death discovers a shocking connection between himself and the suspects in a serial killing spree linked to the Four Horsemen of the Apocalypse.
## 8718 Begotten is the creation myth brought to life, the story of no less than the violent death of God and the (re)birth of nature on a barren earth.
## 8719 An immigrant in search of the American dream is forced to take a room in a boarding house and soon finds herself in a nightmare from which she can't escape.
## 8720 The harrowing true story of the crew of the USS Indianapolis, who were stranded in the Philippine Sea for five days after delivering the atomic weapons that would eventually end WWII. As they awaited rescue, they endured extreme thirst, hunger, and relentless shark attacks.
## 8721 A translator working for the police gets involved in the other side of drug dealing.
## 8722 A look at the relationship between Marie Antoinette and one of her readers during the final days of the French Revolution.
## 8723 San Jose, California, 1906. Isolated in her labyrinthine mansion, eccentric firearm heiress Sarah Winchester believes that she is being haunted by the souls of those killed by the guns manufactured by her company.
## 8724 An acclaimed novelist struggles to write an analysis of love in one of three stories, each set in a different city, that detail the beginning, middle and end of a relationship.
## 8725 Gray Wheeler just lost everything. But it could be the best thing that ever happened to her. After the death of her fiancé, Gray moves in with her late love's best friends. While Sam and Dennis do their best to cheer Gray up, Fritz doesn't seem to care. Once Gray breaks through Fritz's defenses, however, she finally sees why her fiancé thought so highly of him. As they spend more time together, Gray learns that her chances for love have not died out with her fiancé. But when some surprise guests show up on their doorstep, it'll take the love of all of her new friends to help Gray learn that life may be messy, but love is messier.
## 8726 A terrorist attack in London results in the capture of suspect, and the attorney general appoints Claudia Simmons-Howe as special advocate on his defence team. On the eve of the trial, the accused's attorney dies and a new one, Martin Rose, steps in. Martin and Claudia are former lovers—a fact which must remain hidden—and, as Martin assembles his case, he uncovers a sinister conspiracy that places him and Claudia in danger.
## 8727 Distraught, confused, and half-wild with fear, Sarah Carter emerges alone from the Appalachian cave system where she encountered unspeakable terrors. Unable to plausibly explain to the authorities what happened - or why she's covered in her friends' blood - Sarah is forced back to the subterranean depths to help locate her five missing companions.
## 8728 A joyous family reunion becomes a hilarious nightmare as Madea and the crew travel to backwoods Georgia, where they find themselves unexpectedly planning a funeral that might unveil unpleasant family secrets.
## 8729 In the middle of a routine patrol, officer Daniel Carter happens upon a blood-soaked figure limping down a deserted stretch of road. He rushes the young man to a nearby rural hospital staffed by a skeleton crew, only to discover that patients and personnel are transforming into something inhuman. As the horror intensifies, Carter leads the other survivors on a hellish voyage into the subterranean depths of the hospital in a desperate bid to end the nightmare before it's too late.
## 8730 From DC Comics comes the Suicide Squad, an antihero team of incarcerated supervillains who act as deniable assets for the United States government, undertaking high-risk black ops missions in exchange for commuted prison sentences.
## 8731 After a construction project begins digging in their neighbourhood, best friends Tuck, Munch and Alex inexplicably begin to receive strange, encoded messages on their cell phones. Convinced something bigger is going on, they go to their parents and the authorities. The three embark on a secret adventure to crack the code and follow it to its source, and discover a mysterious being from another world who desperately needs their help. The journey that follows will change all their lives forever.
## 8732 In 1988, young sisters Katie and Kristi befriend an invisible entity who resides in their home.
## 8733 Despondent over the closing of his karate school, Cobra Kai teacher John Kreese joins a ruthless businessman and martial artist to get revenge on Daniel and Mr. Miyagi.
## 8734 Xander Cage is your standard adrenaline junkie with no fear and a lousy attitude. When the US Government "recruits" him to go on a mission, he's not exactly thrilled. His mission: to gather information on an organization that may just be planning the destruction of the world, led by the nihilistic Yorgi.
## 8735 With a new iPhone, an apartment near the Grove, and a comfortable bank account left to her by her beloved late husband, Marnie Minervini has happily relocated from New Jersey to Los Angeles to be near her daughter Lori, a successful (but still single) screenwriter, and smother her with motherly love. But when the dozens of texts, unexpected visits, and conversations dominated by unsolicited advice force Lori to draw strict personal boundaries, Marnie finds ways to channel her eternal optimism and forceful generosity to change the lives of others - as well as her own - and find a new purpose in life.
## 8736 A mysterious virus hits an isolated elementary school, transforming the kids into a feral swarm of mass savages. An unlikely hero must lead a motley band of teachers in the fight of their lives.
## 8737 A young boy's discovery of a colorful, wish-granting rock causes chaos in the suburban town of Black Falls when jealous kids and scheming adults alike set out to get their hands on it.
## 8738 A young girl inhabits an isolated island with her scientist father and communicates with a reclusive author of the novel she's reading.
## 8739 After a Tibetan boy, the mystical Golden Child, is kidnapped by the evil Sardo Numspa, humankind's fate hangs in the balance. On the other side of the world in Los Angeles, the priestess Kee Nang seeks the Chosen One, who will save the boy from death. When Nang sees social worker Chandler Jarrell on television discussing his ability to find missing children, she solicits his expertise, despite his skepticism over being "chosen."
## 8740 A group of unwitting teens are stranded near a strange wax museum and soon must fight to survive and keep from becoming the next exhibit.
## 8741 Jérémie, 34, wakes up in an apartment he doesn't know, next to a woman he doesn't know. She is Adna, a stunning Swedish woman who is as funny as she is sweet. Is this the beginning of a fairy tale? Not quite, since Jérémie is about to get married—to Antoine.
## 8742 Kham is the last in long line of guards who once watched over the King of Thailand's war elephants. Traditionally, only the perfect elephants could successfully help defend the throne, after his harrowing quest to retrieve the elephants, Kham returns to his village to live in peace. But for someone as good in martial arts as him, peace is but a wishful thought.
## 8743 A vigilante homeless man pulls into a new city and finds himself trapped in urban chaos, a city where crime rules and where the city's crime boss reigns. Seeing an urban landscape filled with armed robbers, corrupt cops, abused prostitutes and even a pedophile Santa, the Hobo goes about bringing justice to the city the best way he knows how - with a 20-gauge shotgun. Mayhem ensues when he tries to make things better for the future generation. Street justice will indeed prevail.
## 8744 It's 2006, YouTube is in its infancy, and internet porn is still behind a paywall. Taking the stage name Brent Corrigan, a fresh-faced, wannabe adult video performer is molded into a star by Stephen, a closeted gay porn mogul who runs the skin flick empire Cobra Video from his seemingly ordinary suburban home. But as Brent's rise and demands for more money put him at odds with his boss, he also attracts the attention of a rival producer and his unstable lover who will stop at nothing to squash Cobra Video and steal its number one star.
## 8745 A high-rolling corporate shark and his impoverished young guide play the most dangerous game during a hunting trip in the Mojave Desert.
## 8746 The wealthy businessman Vincenzo realizes that he is a father too absent, but also that his two sons and 1aughter are spoiled and unable to support themselves economically. So Vincenzo stages their fraudulent bankruptcy and runs with their children in Taranto, in his old house. The boys are struggling to settle, but Vincenzo is confident about them and hope that they will soon find a job in the city. Meanwhile, an impostor blackmailer, who wants to marry the daughter of Vincenzo, arrives in Puglia, to expose the scam.
## 8747 A distant Federation outpost Fort Casey comes under attack by bugs. The team on the fast attack ship Alesia is assigned to help the Starship John A. Warden stationed in Fort Casey evacuate along with the survivors and bring military intelligence safely back to Earth. Carl Jenkins, now ministry of Paranormal Warfare, takes the starship on a clandestine mission before its rendezvous with the Alesia and goes missing in the nebula. Now, the battle-hardened troopers are charged with a rescue mission that may lead to a much more sinister consequence than they ever could have imagined....
## 8748 To the amusement of their adult children and friends, long divorced couple Don and Ellie Griffin are once again forced to play the happy couple for the sake of their adopted son's wedding after his ultra conservative biological mother unexpectedly decides to fly halfway across the world to attend. With all of the wedding guests looking on, the Griffins are hilariously forced to confront their past, present and future - and hopefully avoid killing each other in the process.
## 8749 Set in the near future, Lockout follows a falsely convicted ex-government agent , whose one chance at obtaining freedom lies in the dangerous mission of rescuing the President's daughter from rioting convicts at an outer space maximum security prison.
## 8750 As a corporate auditor who works in a number of different offices, Jonathan McQuarry wanders without an anchor among New York's power brokers. A chance meeting with charismatic lawyer Wyatt Bose leads to Jonathan's introduction to The List, an underground sex club. Jonathan begins an affair with a woman known only as S, who introduces Jonathan to a world of treachery and murder.
## 8751 Cocky researcher Sebastian Caine is working on a project to make living creatures invisible. Determined to achieve the ultimate breakthrough, Caine pushes his team to move to the next phase — using himself as the subject. The test is a success, but when the process can't be reversed and Caine seems doomed to future without flesh, he starts to turn increasingly dangerous.
## 8752 The Million Dollar Hotel starts with a jump from a roof top that clears up a death in a hotel that was burning to the ground where a lot of strange people had been living.
## 8753 A war-hardened Crusader and his Moorish commander mount an audacious revolt against the corrupt English crown.
## 8754 Literature professor Jim Bennett leads a secret life as a high-stakes gambler. Always a risk-taker, Bennett bets it all when he borrows from a gangster and offers his own life as collateral. Staying one step ahead, he pits his creditor against the operator of an illicit gambling ring while garnering the attention of Frank, a paternalistic loan shark. As his relationship with a student deepens, Bennett must risk everything for a second chance.
## 8755 Paolo needs to reach the castle of Alberto Caccia, where he was invited to spend Christmas with his family and Margherita, the ninth month of pregnancy. With them there will also be blessed, daughter of Alberto and childhood friend of Margherita, who was also pregnant. Among various mishaps and blunders, Paolo will combine another of his, coming to make everyone believe, because of a misunderstanding, that Alberto's died for his fault.
## 8756 The year is 2029. John Connor, leader of the resistance continues the war against the machines. At the Los Angeles offensive, John's fears of the unknown future begin to emerge when TECOM spies reveal a new plot by SkyNet that will attack him from both fronts; past and future, and will ultimately change warfare forever.
## 8757 An alcoholic writer is visited by an incarnation of his cancer.
## 8758 A bet pits a British inventor, a Chinese thief and a French artist on a worldwide adventure that they can circle the globe in 80 days.
## 8759 San Francisco police officer Frank Connor is in a frantic search for a compatible bone marrow donor for his gravely ill son. There's only one catch the potential donor is convicted multiple murderer Peter McCabe who sees a trip to the hospital as the perfect opportunity to get what he wants most: freedom. With McCabe's escape, the entire hospital becomes a battleground and Connor must pursue and, ironically, protect the deadly fugitive who is his son's only hope for survival.
## 8760 When a Hollywood star mysteriously disappears in the middle of filming, the studio sends their fixer to get him back.
## 8761 Set in 1990s Belfast, a woman is forced to betray all she believes in for the sake of her son.
## 8762 Alexander, the King of Macedonia, leads his legions against the giant Persian Empire. After defeating the Persians, he leads his army across the then known world, venturing farther than any westerner had ever gone, all the way to India.
## 8763 Two married couples find only trouble and heartache as their complicated lives unfold. After 40 years of marriage, Alfie leaves his wife to pursue what he thinks is happiness with a call girl. His wife, Helena, reeling from abandonment, decides to follow the advice of a psychic. Sally, the daughter of Alfie and Helena, is unhappy in her marriage and develops a crush on her boss, while her husband, Roy, falls for a woman engaged to be married.
## 8764 Yorkshire moorlands, northern England, in the late 18th century. Young Heathcliff, rescued from the streets of Liverpool by Mr. Earnshaw, the owner of Wuthering Heights, an isolated farm, develops over the years an insane passion for Cathy, his foster sister, a sick obsession destined to end tragically.
## 8765 A troubled psychologist is sent to investigate the crew of an isolated research station orbiting a bizarre planet.
## 8766 In a dystopian Detroit, grand houses that once housed the wealthy are now homes of the city's most-dangerous criminals. Surrounding the area is a giant wall to keep the rest of Detroit safe. For undercover cop Damien Collier, every day is a battle against corruption as he struggles to bring his father's killer, Tremaine, to justice. Meanwhile, Damien and an ex-con named Lino work together to save the city from a plot to destroy it.
## 8767 The wife of a British Judge is caught in a self-destructive love affair with a Royal Air Force pilot.
## 8768 Tells the story of Rainbow Randolph, the corrupt, costumed star of a popular children's TV show, who is fired over a bribery scandal and replaced by squeaky-clean Smoochy, a puffy fuscia rhinoceros. As Smoochy catapults to fame - scoring hit ratings and the affections of a network executive - Randolph makes the unsuspecting rhino the target of his numerous outrageous attempts to exact revenge and reclaim his status as America's sweetheart.
## 8769 Three strong-willed women strive to forge their own paths amidst the wide-open plains of the American Northwest: a lawyer forced to subdue a troubled client; a wife and mother whose plans to construct her dream home reveal fissures in her marriage; and a lonely ranch hand who forms an ambiguous bond with a young law student.
## 8770 Josephine doesn't like her job and keeps on having relationships without a future. Her sister and parents keep pushing her to find a good husband. To shut them up, she creates a handsome Brazilian millionaire but her little white lie has a flip side - she loses everything to find the love of her life.
## 8771 A woman who survived the brutal killing of her family as a child is forced to confront the events of that day.
## 8772 Fifty years of war between the Great Eastern Federation and Europa - now merged as Eurasia - have taken their toll on planet Earth. As a result of the use of biological, chemical and nuclear weapons, much of Earth has become uninhabitable and people have become prey to new diseases. Professor Azuma's "neo-cell" project, which is supposed to be the answer to mankind's hardships, becomes a nightmare come true when mutants spawned from the experiment escape and declare war on the human race. Azuma's son Tetsuya, who was killed during the previous war, is reborn into the cyborg Casshern as mankind's last hope against the new mutant threat. This live-action sci-fi movie based on a 1973 Japanese animé of the same name.
## 8773 Paris, 1830. In the heart of the town, Vidocq, a famous detective, disappears as he fights the Alchemist, an assassin that he has been pursuing for a few months. His young biographer, Etienne Boisset, decides to avenge Vidocq's death and takes the investigation on...
## 8774 Private eye Rafe Guttman is hired by repressed, born-again Katherine to find her missing bad-boy brother. The trail leads him to a whorehouse run by a thousand-year-old vampire and secretly backed by Katherine's boss, televangelist Jimmy Current.
## 8775 Angela de Marco is fed up with her gangster husband's line of work and wants no part of the crime world. When her husband is killed for having an affair with the mistress of mob boss Tony "The Tiger" Russo, Angela and her son depart for New York City to make a fresh start. Unfortunately, Tony has set his sights upon Angela -- and so has an undercover FBI agent looking to use her to bust Tony.
## 8776 Inside the halls of an elite arts academy, a timid music student begins to outshine her more accomplished and outgoing twin sister when she discovers a mysterious notebook belonging to a recently deceased classmate.
## 8777 Sara and Nicola are expecting their second son. Through the late Mattia Torre's sharp look, all the joys and sorrows of being a parent in the modern day Italy are unraveled in an absolutely brilliant and witty way.
## 8778 Two kids find themselves in the centre of a deadly game of cat and mouse after taking a sheriff's cruiser for a joy ride.
## 8779 Bernand Fréderic is a mediocre bank executive. He's married and has a son. He used to have another profession: being French star Claude Francois. Now, with the Imitators Gala Night coming up, he must choose between his wife or the only thing that makes him happy: the applause.
## 8780 Two men get laid off and have to become stay-at-home dads when they can't find jobs, which inspires them to open their own day-care center.
## 8781 Shattered illusions are hard to repair -- especially for a good-hearted zebra named Stripes who's spent his life on a Kentucky farm amidst the sorely mistaken notion that he's a debonair thoroughbred. Once he faces the fact that his stark stripes mark him as different, he decides he'll race anyway. And with help from the young girl who raised him, he just might end up in the winner's circle.
## 8782 More than a dozen Angelenos navigate Valentine's Day from early morning until midnight. Three couples awake together, but each relationship will sputter. A grade-school boy wants flowers for his first true love. Two high school seniors plan first-time sex at noon. A TV sports reporter gets the assignment to find romance in LA. A star quarterback contemplates his future. Two strangers meet on a plane. Grandparents, together for years, face a crisis. An 'I Hate Valentine's Day' dinner beckons the lonely and the lied to.
## 8783 Cursed since childhood, dentist Charlie Logan cannot find the right woman. Even worse, he learns that each of his ex-girlfriends finds true love with the man she meets after her relationship with him ends. Hearing of Charlie's reputation as a good-luck charm, women from all over line up for a quick tryst. But when Charlie meets the woman of his dreams, he must find a way to break the curse or risk losing her to the next man she meets.
## 8784 Jason Kelly is one week away from marrying his boss's uber-controlling daughter, putting him on the fast track for a partnership at the law firm. However, when the straight-laced Jason is tricked into driving his foul-mouthed grandfather, Dick, to Daytona for spring break, his pending nuptials are suddenly in jeopardy. Between riotous frat parties, bar fights, and an epic night of karaoke, Dick is on a quest to live his life to the fullest and bring Jason along for the ride.
## 8785 A young undercover FBI agent infiltrates a gang of thieves who share a common interest in extreme sports. A remake of the 1991 film, "Point Break".
## 8786 An evil, high-fashion designer plots to steal Dalmatian puppies in order to make an extravagant fur coat, but instead creates an extravagant mess.
## 8787 It took Anna 10 years to recover from the death of her husband, Sean, but now she's on the verge of marrying her boyfriend, Joseph, and finally moving on. However, on the night of her engagement party, a young boy named Sean turns up, saying he is her dead husband reincarnated. At first she ignores the child, but his knowledge of her former husband's life is uncanny, leading her to believe that he might be telling the truth.
## 8788 In a broken city rife with injustice, ex-cop Billy Taggart seeks redemption and revenge after being double-crossed and then framed by its most powerful figure, the mayor. Billy's relentless pursuit of justice, matched only by his streetwise toughness, makes him an unstoppable force - and the mayor's worst nightmare.
## 8789 Oscar Diggs, a small-time circus illusionist and con-artist, is whisked from Kansas to the Land of Oz where the inhabitants assume he's the great wizard of prophecy, there to save Oz from the clutches of evil.
## 8790 The career of a disillusioned producer, who is desperate for a hit, is endangered when his star walks off the film set. Forced to think fast, the producer decides to digitally create an actress "Simone" to sub for the star — the first totally believable synthetic actress.
## 8791 A fast-talking lawyer transforms his body and takes a vow of silence, not to be broken until he finds out who killed his wife and daughter and has his revenge.
## 8792 As humanity picks up the pieces, following the conclusion of "Transformers: Dark of the Moon," Autobots and Decepticons have all but vanished from the face of the planet. However, a group of powerful, ingenious businessman and scientists attempt to learn from past Transformer incursions and push the boundaries of technology beyond what they can control - all while an ancient, powerful Transformer menace sets Earth in his cross-hairs.
## 8793 Trapped in a London subway station, a woman who's being pursued by a potential attacker heads into the unknown labyrinth of tunnels beneath the city's streets
## 8794 Maureen, mid-20s, is a personal shopper for a media celebrity. The job pays for her stay in Paris, a city she refuses to leave until she makes contact with her twin brother who previously died there. Her life becomes more complicated when a mysterious person contacts her via text message.
## 8795 Teenage sisters Charli and Lola are on the verge of an experience beyond their wildest dreams! Pack your bags and jet off to Rome as the girls start their summer internship working for the legendary Derek Hanson - the totally cool international tycoon whose empire reaches from airlines to cutting-edge fashion. Amid the fabulous sights of this exciting city, the girls do their best to impress their boss, while still finding time to design their own line of very hip clothing, meet some very cute guys and turn their summer abroad into one awesome adventure they - and you - will never forget!
## 8796 A comic movie divided in three episodes.
## 8797 A 707 aircraft jetliner, en route from Athens to Rome and then to New York City, is hijacked by Lebanese terrorists, who demand that the pilot take them to Beirut. What the terrorists don't realize is that an elite team of commandos have been called in to eliminate all terrorists on the jetliner.
## 8798 A group of unwitting sorority sisters accidentally awaken the serial-killing Leprechaun after they build a sorority house on his hunting grounds.
## 8799 College "frenemies" Lauren and Katie move in together after losing a relationship and rent control, respectively. Sharing Katie's late grandmother's apartment in New York City, the girls bicker with each other until one fateful night, when Katie's noisy bedroom activities make Lauren barge in and discover a dirty little secret. This revelation brings them closer together, and Lauren (the brains) and Katie (the talent) concoct a wildly successful business venture. As profits swell, the girls reevaluate their hopes and dreams and realize that just because someone pees in your hair in college doesn't mean she won't be your best friend 10 years later.
## 8800 B Movie Legend Bruce Campbell is mistaken for his character Ash from the Evil Dead trilogy and forced to fight a real monster in a small town in Oregon.
## 8801 When college senior Anastasia Steele steps in for her sick roommate to interview prominent businessman Christian Grey for their campus paper, little does she realize the path her life will take. Christian, as enigmatic as he is rich and powerful, finds himself strangely drawn to Ana, and she to him. Though sexually inexperienced, Ana plunges headlong into an affair -- and learns that Christian's true sexual proclivities push the boundaries of pain and pleasure.
## 8802 When a kingpin threatens New York City, a group of mutated turtle warriors must emerge from the shadows to protect their home.
## 8803 Angela Baker escapes from a mental hospital and surfaces at a summer camp as a counselor who lectures her teenage charges on proper moral behavior. Those teens who break her strict rules -- from the camp chatterbox or a sex-obsessed girl to the boys who are peeping Toms -- are murdered by the impostor in various gruesome ways. As more campers go missing, intrepid counselor Molly begins to piece together the truth.
## 8804 Jennifer, a gorgeous, seductive cheerleader takes evil to a whole new level after she's possessed by a sinister demon. Now it's up to her best friend to stop Jennifer's reign of terror before it's too late.
## 8805 Bad Grandpa .5 gives you a whole new perspective on the world of Irving Zisman with bonus scenes and pranks also featuring Spike Jonze as "Gloria" and Catherine Keener as Irving's wife "Ellie", plus a look at the evolution of Johnny Knoxville's naughty alter-ego, the makeup effects, and a behind-the-scenes peek at the idiocy it takes to make a hidden camera movie in public.
## 8806 Alex Belli is a 37 year old advertising executive whose fiancée Elena has just left him, and who is having difficulty at work trying to think of a good advertising campaign for a new Japanese product. Niki is a bubbly 17 year old student. She has three best friends with whom she shares all her problems, and an annoying ex-boyfriend Fabio who is set on getting her back, but Niki's not interested. One day on his way to work, Alex collides with Niki on a city street. They soon begin a romance, despite their 20-year age gap.
## 8807 Snow White's mother dies during childbirth, leaving baby Snow and father John for dead on an icy field, who then receives a visit from one of Satan's representatives, granting him three wishes.
## 8808 Rosie, an ageing single mother, is helped by Mother Nature in experiencing love again through Adam, a charming young man. But matters complicate when her young daughter falls in love with a local boy.
## 8809 A shy bank clerk orders a Russian mail order bride, and finds his life turned upside down.
## 8810 In 1950s Los Angeles, a special crime squad of the LAPD investigates the murder of a young woman.
## 8811 When a man is eaten alive by an unknown creature, the local Game Warden teams up with a paleontologist from New York to find the beast. Add to the mix an eccentric philanthropist with a penchant for "Crocs", and here we go! This quiet, remote lake is suddenly the focus of an intense search for a crocodile with a taste for live animals...and people!
## 8812 Maddy and Cole were inseparable friends until high school started and Maddy became the most popular girl on campus. When she starts feeling lonely and heartbroken, she reconnects with Cole and the duo conspire to destroy the ultimate teen popularity contest
## 8813 Walter Meyer is a retired mechanic who lost the love of his life one year earlier. Now that the holiday season is here, he invites daughters Rachel and Cheryl and sons Christian and Evan to his house for a traditional celebration. Poor Walter soon realizes that if his bickering children and the rest of the family can spend five days together under the same roof, it will truly be a Christmas miracle.
## 8814 It was a normal night in Las Vegas, Nevada, all the lights were flashing brightly, until a man with one hand, one eye, and one leg walks into a pawn shop with a statue of a hideous looking Leprechaun. The owner claims it's a good luck charm. The statue also wore a medallion around it's neck. The careless pawn shop owner took off the medallion setting the Leprechaun free...
## 8815 A group of friends enjoying a weekend steal a couple of jetskis racing them out to sea, ending up in a horrific head-on collision. They struggle to find a way home with a badly injured friend while from the waters below predators lurk.
## 8816 Five people travelling by camper crash into a tree. When they recover, the road they were driving on has been replaced by an impenetrable forest and a wooden house.
## 8817 Based on the extraordinary true story of the European city’s 1973 bank heist and hostage crisis that was documented in the 1974 New Yorker article “The Bank Drama” by Daniel Lang. The events grasped the world’s attention when the hostages bonded with their captors and turned against the authorities, giving rise to the psychological phenomenon known as “Stockholm Syndrome.”
## 8818 A young cobra and his scorpion best friend go on a journey across the Sahara desert to save a new-found love.
## 8819 During the Civil War, at a Southern girls’ boarding school, young women take in an injured enemy soldier. As they provide refuge and tend to his wounds, the house is taken over with sexual tension and dangerous rivalries, and taboos are broken in an unexpected turn of events.
## 8820 A gang of ruthless highway killers kidnap a wealthy couple traveling cross country only to shockingly discover that things are not what they seem.
## 8821 A group of 30-year-olds who have been friends since high school attempt to throw an end-of-summer orgy.
## 8822 With John's social life at a standstill and his ex-wife about to get remarried, a down on his luck divorcée finally meets the woman of his dreams, only to discover she has another man in her life - her son. Before long, the two are locked in a battle of wits for the woman they both love-and it appears only one man can be left standing when it's over.
## 8823 Survivors of a nuclear attack are grouped together for days in the basement of their apartment building, where fear and dwindling supplies wear away at their dynamic.
## 8824 Jerry Welbach, a reluctant bagman, has been given two ultimatums: The first is from his mob boss to travel to Mexico and retrieve a priceless antique pistol, known as "the Mexican"... or suffer the consequences. The second is from his girlfriend Samantha to end his association with the mob. Jerry figures alive and in trouble with Samantha is better than the more permanent alternative, so he heads south of the border.
## 8825 Samuel Salomon, a literature professor, has been off work for almost a year after the tragic death of his girlfriend. Samuel has been suffering from a recurring nightmare in which a woman is brutally murdered in a strange ritual. Suddenly, the same woman who appears every night in his dreams is found dead in exactly the same circumstances. Samuel sneaks into the crime scene and there h