-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpi_theater_2_inserts.sql
3610 lines (3536 loc) · 352 KB
/
pi_theater_2_inserts.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- --------------------------------------------------------
-- Host: 192.168.1.204
-- Server version: 10.3.17-MariaDB-0+deb10u1 - Raspbian 10
-- Server OS: debian-linux-gnueabihf
-- HeidiSQL Version: 9.5.0.5196
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
-- Dumping data for table pi_theater_2.collections: ~12 rows (approximately)
/*!40000 ALTER TABLE `collections` DISABLE KEYS */;
INSERT INTO `collections` (`id`, `name`, `menu_image`, `jumbotron_image`, `created_at`, `updated_at`) VALUES
(1, '80s Classics', 'menu-80s-classics.png', NULL, '2017-11-04 10:36:37', '2019-10-17 19:32:50'),
(2, 'Batman', 'menu-batman.png', NULL, '2017-10-26 20:54:36', '2019-10-17 19:32:50'),
(3, 'Cult Classics', 'menu-cult-classics.png', NULL, '2017-11-05 10:43:12', '2019-10-17 19:32:50'),
(4, 'DC Comics', 'menu-dc-comics.png', NULL, '2017-10-14 10:24:28', '2019-10-17 19:32:50'),
(5, 'Evil Dead', 'menu-evil-dead.png', NULL, '2017-10-10 19:53:55', '2019-10-17 19:32:50'),
(6, 'Halloween Favorites', 'menu-halloween.png', NULL, '2017-10-10 18:52:24', '2019-10-17 19:32:50'),
(7, 'Harry Potter', 'menu-harry-potter.png', NULL, '2018-06-30 09:17:28', '2019-10-17 19:32:50'),
(8, 'Marvel', 'menu-marvel.png', NULL, '2017-10-14 10:18:05', '2019-10-17 19:32:50'),
(9, 'Red Letter Media', 'menu-red-letter-media.png', NULL, '2017-10-15 16:35:13', '2019-10-17 19:32:50'),
(10, 'Spider-Man', 'menu-spider-man.png', NULL, '2017-10-26 21:04:54', '2019-10-17 19:32:50'),
(11, 'Star Wars', 'menu-star-wars.png', NULL, '2017-10-09 18:59:19', '2019-10-17 19:32:50'),
(12, 'The King of Horror', 'menu-stephen-king.png', NULL, '2018-01-05 21:54:00', '2019-10-17 19:32:50');
/*!40000 ALTER TABLE `collections` ENABLE KEYS */;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
-- --------------------------------------------------------
-- Host: 192.168.1.204
-- Server version: 10.3.17-MariaDB-0+deb10u1 - Raspbian 10
-- Server OS: debian-linux-gnueabihf
-- HeidiSQL Version: 9.5.0.5196
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
-- Dumping data for table pi_theater_2.drives: ~1 rows (approximately)
/*!40000 ALTER TABLE `drives` DISABLE KEYS */;
INSERT INTO `drives` (`id`, `name`, `created_at`, `updated_at`) VALUES
(1, 'hdd1', '2019-10-17 19:33:27', '2019-10-17 19:33:27');
/*!40000 ALTER TABLE `drives` ENABLE KEYS */;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
-- --------------------------------------------------------
-- Host: 192.168.1.204
-- Server version: 10.3.17-MariaDB-0+deb10u1 - Raspbian 10
-- Server OS: debian-linux-gnueabihf
-- HeidiSQL Version: 9.5.0.5196
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
-- Dumping data for table pi_theater_2.genres: ~26 rows (approximately)
/*!40000 ALTER TABLE `genres` DISABLE KEYS */;
INSERT INTO `genres` (`id`, `name`, `created_at`, `updated_at`) VALUES
(1, 'Action', '2017-09-10 10:55:41', '2019-10-17 19:32:50'),
(2, 'Adventure', '2017-09-10 14:08:19', '2019-10-17 19:32:50'),
(3, 'Animation', '2017-09-10 11:38:30', '2019-10-17 19:32:50'),
(4, 'Anthology', '2017-09-10 11:55:42', '2019-10-17 19:32:50'),
(5, 'Comedy', '2017-09-10 10:08:06', '2019-10-17 19:32:50'),
(6, 'Crime', '2017-10-07 17:20:05', '2019-10-17 19:32:50'),
(7, 'Cyberpunk', '2017-10-20 18:58:08', '2019-10-17 19:32:50'),
(8, 'Documentary', '2017-09-10 11:23:47', '2019-10-17 19:32:50'),
(9, 'Drama', '2017-09-10 12:19:13', '2019-10-17 19:32:50'),
(10, 'Fantasy', '2017-09-10 11:44:44', '2019-10-17 19:32:50'),
(11, 'Foreign', '2018-01-07 15:01:36', '2019-10-17 19:32:50'),
(12, 'Heist', '2017-10-28 16:07:59', '2019-10-17 19:32:50'),
(13, 'Horror', '2017-09-10 09:14:06', '2019-10-17 19:32:50'),
(14, 'Indie', '2017-09-10 11:04:05', '2019-10-17 19:32:50'),
(15, 'Martial Arts', '2017-10-08 19:21:38', '2019-10-17 19:32:50'),
(16, 'Mockumentary', '2017-11-05 09:10:21', '2019-10-17 19:32:50'),
(17, 'Noir', '2018-02-10 14:05:50', '2019-10-17 19:32:50'),
(18, 'Parody', '2017-10-07 17:29:16', '2019-10-17 19:32:50'),
(19, 'Reality', '2018-07-01 08:54:26', '2019-10-17 19:32:50'),
(20, 'Satire', '2017-12-16 17:10:51', '2019-10-17 19:32:50'),
(21, 'Sci-Fi', '2017-09-10 09:14:06', '2019-10-17 19:32:50'),
(22, 'Standup', '2017-09-10 10:08:06', '2019-10-17 19:32:50'),
(23, 'Superhero', '2017-09-10 10:01:20', '2019-10-17 19:32:50'),
(24, 'Suspense', '2018-01-04 11:33:08', '2019-10-17 19:32:50'),
(25, 'Travel', '2017-09-10 14:17:23', '2019-10-17 19:32:50'),
(26, 'Western', '2017-10-07 17:00:44', '2019-10-17 19:32:50');
/*!40000 ALTER TABLE `genres` ENABLE KEYS */;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
-- --------------------------------------------------------
-- Host: 192.168.1.204
-- Server version: 10.3.17-MariaDB-0+deb10u1 - Raspbian 10
-- Server OS: debian-linux-gnueabihf
-- HeidiSQL Version: 9.5.0.5196
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
-- Dumping data for table pi_theater_2.media: ~305 rows (approximately)
/*!40000 ALTER TABLE `media` DISABLE KEYS */;
INSERT INTO `media` (`id`, `media_type`, `title`, `summary`, `notes`, `poster`, `jumbotron`, `created_at`, `updated_at`) VALUES
(1, 'movie', 'Alien Resurrection', 'Two centuries after her death, Ellen Ripley is revived as a powerful human/alien hybrid clone who must continue her war against the aliens.', NULL, 'alien-resurrection.jpg', NULL, '2017-09-10 08:56:03', '2019-10-17 19:32:50'),
(2, 'movie', 'Alien', 'After a space merchant vessel perceives an unknown transmission as a distress call, its landing on the source moon finds one of the crew attacked by a mysterious life-form, and they soon realize that its life cycle has merely begun.', NULL, 'alien.jpg', NULL, '2017-09-10 09:14:47', '2019-10-17 19:32:50'),
(3, 'movie', 'Aliens', 'After floating in space for 57 years, Lt. Ripley\'s shuttle is found by a deep space salvage team. Upon arriving at LV-426, the marines find only one survivor, a nine year old girl named Newt. But even these battle-hardened marines with all the latest weaponry are no match for the hundreds of aliens that have invaded the colony.', NULL, 'aliens.jpg', NULL, '2017-09-10 09:56:12', '2019-10-17 19:32:50'),
(4, 'movie', 'Chronicle', 'Whilst attending a party, three high school friends gain superpowers after making an incredible discovery underground. Soon, though, they find their lives spinning out of control and their bond tested as they embrace their darker sides.', NULL, 'chronicle.jpg', NULL, '2017-09-10 10:01:20', '2019-10-17 19:32:50'),
(5, 'movie', 'Dave Chappelle: For What It\'s Worth', 'Chappelle cuts loose in what he does best, Chappelle-style! And for what it\'s worth, no one is safe from Dave!', NULL, 'for-what-its-worth.jpg', NULL, '2017-09-10 10:08:06', '2019-10-18 10:26:30'),
(6, 'movie', 'Deadpool', 'A fast-talking mercenary with a morbid sense of humor is subjected to a rogue experiment that leaves him with accelerated healing powers and a quest for revenge.', NULL, 'deadpool.jpg', NULL, '2017-09-10 10:55:41', '2019-10-17 19:32:50'),
(7, 'movie', 'Donald Glover: Weirdo', 'With his unique brand of youthful storytelling Donald Glover brings down the house in his hysterical stand-up special Weirdo.', NULL, 'weirdo.jpg', NULL, '2017-09-10 10:58:19', '2019-10-17 19:32:50'),
(8, 'movie', 'Edge of Tomorrow', 'A soldier fighting aliens gets to relive the same day over and over again, the day restarting every time he dies.', NULL, 'edge-of-tomorrow.jpg', NULL, '2017-09-10 11:00:31', '2019-10-17 19:32:51'),
(9, 'movie', 'Feeding Frenzy', 'A tongue-in-cheek homage to the rubber puppet monster movies of the 1980\'s like Critters and Gremlins.', NULL, 'feeding-frenzy.jpg', NULL, '2017-09-10 11:04:05', '2019-10-17 19:32:51'),
(10, 'movie', 'Fright Night Part 2', 'Charley Brewster and Peter Vincent must face more vampires which are out for revenge.', NULL, 'fright-night-part-2.jpg', NULL, '2017-09-10 11:08:56', '2019-10-17 19:32:51'),
(11, 'movie', 'Ghost in the Shell', 'In the near future, Major is the first of her kind: A human saved from a terrible crash, who is cyber-enhanced to be a perfect soldier devoted to stopping the world\'s most dangerous criminals.', NULL, 'ghost-in-the-shell.jpg', NULL, '2017-09-10 11:11:19', '2019-10-17 19:32:51'),
(12, 'movie', 'Ghostbusters', 'Three former parapsychology professors set up shop as a unique ghost removal service.', NULL, 'ghostbusters.jpg', NULL, '2017-09-10 11:13:38', '2019-10-17 19:32:51'),
(13, 'movie', 'Gorilla Interrupted', 'Four misfits band together to save the world from an alien invasion. Schlock ensues.', NULL, 'gorilla-interrupted.jpg', NULL, '2017-09-10 11:15:53', '2019-10-17 19:32:51'),
(14, 'movie', 'Green Lantern', 'Reckless test pilot Hal Jordan is granted an alien ring that bestows him with otherworldly powers that inducts him into an intergalactic police force, the Green Lantern Corps.', NULL, 'green-lantern.jpg', NULL, '2017-09-10 11:17:26', '2019-10-17 19:32:51'),
(15, 'movie', 'Guardians of the Galaxy Vol. 2', 'The Guardians must fight to keep their newfound family together as they unravel the mystery of Peter Quill\'s true parentage.', NULL, 'guardians-of-the-galaxy-vol-2.jpg', NULL, '2017-09-10 11:19:49', '2019-10-17 19:32:51'),
(16, 'movie', 'Guyver: Dark Hero', 'Sean Barker became the unwilling host to an alien bio-armor known as the Guyver. A year ago he destroyed the Kronos Corporation, an organization of mutants who want the Guyver. Now he is trying to find why the Guyver unit forces him to fight and kill evil. He is lead to an archelogical site where scientists discover an ancient space craft. Now he must fight Kronos again before they discover the secrets of the Guyver\'s origin.', NULL, 'guyver-dark-hero.jpg', NULL, '2017-09-10 11:22:11', '2019-10-17 19:32:51'),
(17, 'movie', 'How Not to Make a Movie', 'Both entertaining and educational, "How Not to Make a Movie" chronicles how the Red Letter Media guys all met and started making movies together, which lead to the disasterous production of the 2003 feature film collaboration Gorilla Interrupted (2003). "How Not to Make a Movie" also shows the restoration process of remastering this ancient schlock no budget flop.', NULL, 'how-not-to-make-a-movie.jpg', NULL, '2017-09-10 11:23:47', '2019-10-17 19:32:51'),
(18, 'movie', 'IT: Part 1', 'In 1960, seven pre-teen outcasts fight an evil demon who poses as a child-killing clown.', NULL, 'it.jpg', NULL, '2017-09-10 11:26:10', '2019-10-17 19:32:51'),
(19, 'movie', 'IT: Part 2', 'Thirty years later, the Losers Club reunites to stop Pennywise once and for all when IT reawakens.', NULL, 'it.jpg', NULL, '2017-09-10 11:27:55', '2019-10-17 19:32:51'),
(20, 'movie', 'Iron Man 3', 'When Tony Stark\'s world is torn apart by a formidable terrorist called the Mandarin, he starts an odyssey of rebuilding and retribution.', NULL, 'iron-man-3.jpg', NULL, '2017-09-10 11:31:31', '2019-10-17 19:32:51'),
(21, 'movie', 'John Dies at the End', 'A new street drug that sends its users across time and dimensions has one drawback: some people return as no longer human. Can two college dropouts save humankind from this silent, otherworldly invasion?', NULL, 'john-dies-at-the-end.jpg', NULL, '2017-09-10 11:35:48', '2019-10-17 19:32:51'),
(22, 'movie', 'Justice League: Crisis on Two Earths', 'A good version of Lex Luthor from a parallel Earth comes to the Justice League\'s dimension for help to fight their evil counterparts.', NULL, 'justice-league-crisis-on-two-earths.jpg', NULL, '2017-09-10 11:38:30', '2019-10-17 19:32:51'),
(23, 'movie', 'Justice League: The Flashpoint Paradox', 'The Flash finds himself in a war torn alternate timeline and teams up with alternate versions of his fellow heroes to return home and restore the timeline.', NULL, 'justice-league-the-flashpoint-paradox.jpg', NULL, '2017-09-10 11:40:35', '2019-10-17 19:32:51'),
(24, 'movie', 'Justice League: War', 'The world\'s finest heroes found the Justice League in order to stop an alien invasion of Earth.', NULL, 'justice-league-war.jpg', NULL, '2017-09-10 11:43:09', '2019-10-17 19:32:51'),
(25, 'movie', 'Krampus', 'A boy who has a bad Christmas ends up accidentally summoning a festive demon to his family home.', NULL, 'krampus.jpg', NULL, '2017-09-10 11:44:44', '2019-10-17 19:32:51'),
(26, 'movie', 'Logan', 'In the near future, a weary Logan cares for an ailing Professor X, somewhere on the Mexican border. However, Logan\'s attempts to hide from the world, and his legacy, are upended when a young mutant arrives, pursued by dark forces.', NULL, 'logan.jpg', NULL, '2017-09-10 11:46:53', '2019-10-17 19:32:51'),
(27, 'movie', 'Mad Max: Fury Road', 'A woman rebels against a tyrannical ruler in postapocalyptic Australia in search for her home-land with the help of a group of female prisoners, a psychotic worshipper, and a drifter named Max.', NULL, 'mad-max-fury-road.jpg', NULL, '2017-09-10 11:48:56', '2019-10-17 19:32:51'),
(28, 'movie', 'Necronomicon: Book of the Dead', 'While studying the fabled Necronomicon, H.P. Lovecraft reads three greusome tales of terror.', NULL, 'necronomicon-book-of-the-dead.jpg', NULL, '2017-09-10 11:55:42', '2019-10-17 19:32:51'),
(29, 'movie', 'Office Space', 'Three software developers who hate their jobs decide to rebel against their greedy boss.', NULL, 'office-space.jpg', NULL, '2017-09-10 11:57:22', '2019-10-17 19:32:51'),
(30, 'movie', 'Patton Oswalt: My Weakness is Strong', 'The critically-acclaimed comedian, actor, and writer takes time off from his many film and television outings to return to the comedy stage for his fourth stand-up special.', NULL, 'my-weakness-is-strong.jpg', NULL, '2017-09-10 12:02:28', '2019-10-17 19:32:51'),
(31, 'movie', 'Star Wars: Episode IV - A New Hope', 'Luke Skywalker joins forces with a Jedi Knight, a cocky pilot, a Wookiee, and two droids to save the galaxy from the Empire\'s world-destroying battle-station, while also attempting to rescue Princess Leia from the evil Darth Vader.', NULL, 'star-wars.jpg', NULL, '2017-09-10 12:05:16', '2019-10-17 19:32:51'),
(32, 'movie', 'Star Wars: Episode V - The Empire Strikes Back', 'After the rebels are overpowered by the Empire on their newly established base, Luke Skywalker begins Jedi training with Master Yoda. His friends accept shelter from a questionable ally as Darth Vader hunts them in a plan to capture Luke.', NULL, 'empire-strikes-back.jpg', NULL, '2017-09-10 12:10:20', '2019-10-17 19:32:51'),
(33, 'movie', 'Star Wars: Episode VI - Return of the Jedi', 'After a daring mission to rescue Han Solo from Jabba the Hutt, the rebels dispatch to Endor to destroy a more powerful Death Star. Meanwhile, Luke struggles to help Vader back from the dark side without falling into the Emperor\'s trap.', NULL, 'return-of-the-jedi.jpg', NULL, '2017-09-10 12:11:47', '2019-10-17 19:32:51'),
(34, 'movie', 'The Amazing Spider-Man', 'After Peter Parker is bitten by a genetically altered spider, he gains newfound, spider-like powers and ventures out to solve the mystery of his parent\'s mysterious death.', NULL, 'amazing-spider-man.jpg', NULL, '2017-09-10 12:13:17', '2019-10-17 19:32:51'),
(35, 'movie', 'The Matrix', 'A computer hacker learns from mysterious rebels about the true nature of his reality and his role in the war against its controllers.', NULL, 'the-matrix.jpg', NULL, '2017-09-10 12:14:15', '2019-10-17 19:32:51'),
(36, 'movie', 'Unbreakable', 'After miracuously walking away from a catastrophic train crash, a man is contacted by an eccentric comic book collector who claims that his lack of injuries are the result of amazing superhuman abilities.', NULL, 'unbreakable.jpg', NULL, '2017-09-10 12:19:13', '2019-10-17 19:32:51'),
(37, 'movie', 'V for Vendetta', 'In a future British tyranny, a shadowy freedom fighter, known only by the alias of "V", plots to overthrow it with the help of a young woman.', NULL, 'v-for-vendetta.jpg', NULL, '2017-09-10 12:21:47', '2019-10-17 19:32:51'),
(38, 'movie', 'Trick \'r Treat', 'Five 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 guy for her; a group of teenagers pull a mean prank; a woman who loathes the night has to contend with her holiday-obsessed husband; and a mean old man meets his match with a demonic, supernatural trick-or-treater.', NULL, 'trick-r-treat.jpg', NULL, '2017-09-14 19:41:27', '2019-10-17 19:32:51'),
(39, 'movie', 'Back to the Future', 'Marty McFly, a 17-year-old high school student, is accidentally sent 30 years into the past in a time-traveling DeLorean invented by his close friend, the maverick scientist Doc Brown.', NULL, 'back-to-the-future.jpg', NULL, '2017-09-19 19:37:34', '2019-10-17 19:32:51'),
(40, 'movie', 'Back to the Future Part II', 'After visiting 2015, Marty McFly must repeat his visit to 1955 to prevent disastrous changes to 1985, without interfering with his first trip.', NULL, 'back-to-the-future-2.jpg', NULL, '2017-09-19 19:44:28', '2019-10-17 19:32:51'),
(41, 'movie', 'Back to the Future Part III', 'Enjoying a peaceful existence in 1885, Doctor Emmett Brown is about to be killed by Buford "Mad Dog" Tannen. Marty McFly travels back in time to save him.', NULL, 'back-to-the-future-3.jpg', NULL, '2017-09-19 19:47:16', '2019-10-17 19:32:51'),
(42, 'movie', 'Mystery Men', 'A group of inept, amateur crime-fighters must try to save the day when a supervillian threatens to kill a beloved superhero and destroy all of Empire City.', NULL, 'mystery-men.jpg', NULL, '2017-09-27 20:39:54', '2019-10-17 19:32:51'),
(43, 'movie', 'Star Wars: Episode VII - The Force Awakens', 'Three decades after the Empire\'s defeat, a new threat arises in the militant First Order. A stormtrooper defector Finn and a scavenger named Rey are caught up in the Resistance\'s search for the missing Luke Skywalker.', NULL, 'force-awakens.jpg', NULL, '2017-09-27 20:42:34', '2019-10-17 19:32:51'),
(44, 'movie', 'True Lies', '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.', NULL, 'true-lies.jpg', NULL, '2017-09-27 20:45:22', '2019-10-17 19:32:51'),
(45, 'movie', 'Looper', 'In 2074, when the mob wants to get rid of someone, the target is sent into the past where a hired gun called a Looper awaits - someone like Joe - who one day learns the mob wants to \'close his loop\' by sending back Joe\'s future self for assassination.', NULL, 'looper.jpg', NULL, '2017-09-30 18:47:14', '2019-10-17 19:32:51'),
(46, 'movie', 'Guardians of the Galaxy', 'A group of intergalactic criminals are forced to work together to stop a fanatical warrior from taking control of the universe.', NULL, 'guardians-of-the-galaxy.jpg', NULL, '2017-10-01 10:45:24', '2019-10-17 19:32:51'),
(47, 'movie', 'Fright Night', 'When a teenager learns that his new next door neighbor is a vampire, he seeks the help of a local actor who plays a vampire hunter on TV.', NULL, 'fright-night.jpg', NULL, '2017-10-01 11:58:49', '2019-10-17 19:32:51'),
(48, 'movie', 'Galaxy Quest', 'The alumni cast of a space opera television series have to play their roles as the real thing when an alien race needs their help.', NULL, 'galaxy-quest.jpg', NULL, '2017-10-01 12:01:04', '2019-10-17 19:32:51'),
(49, 'movie', 'Hot Fuzz', 'A skilled London police officer is transferred to a small town that\'s harbouring a dark secret.', NULL, 'hot-fuzz.jpg', NULL, '2017-10-01 12:01:34', '2019-10-17 19:32:51'),
(50, 'movie', 'Kingsman: The Secret Service', 'A spy organization 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.', NULL, 'kingsman.jpg', NULL, '2017-10-01 12:02:22', '2019-10-17 19:32:51'),
(51, 'movie', 'Shaun of the Dead', 'A man decides to turn his moribund life around by winning back his ex-girlfriend, reconciling his relationship with his mother, and dealing with an entire community that has returned from the dead to eat the living.', NULL, 'shaun-of-the-dead.jpg', NULL, '2017-10-01 12:03:16', '2019-10-17 19:32:51'),
(52, 'movie', 'Spider-Man 2', 'Peter Parker is beset with troubles in his failing personal life as he battles a brilliant scientist named Doctor Otto Octavius.', NULL, 'spider-man-2.jpg', NULL, '2017-10-01 12:04:07', '2019-10-17 19:32:51'),
(53, 'movie', 'Spider-Man 3', 'A strange black entity from another world bonds with Peter Parker and causes inner turmoil as he contends with new villains, temptations, and revenge.', NULL, 'spider-man-3.jpg', NULL, '2017-10-01 12:04:38', '2019-10-17 19:32:51'),
(54, 'movie', 'Spider-Man', 'When bitten by a genetically modified spider, a nerdy, shy, and awkward high school student gains spider-like abilities that he eventually must use to fight evil as a superhero after tragedy befalls his family.', NULL, 'spider-man.jpg', NULL, '2017-10-01 12:05:05', '2019-10-17 19:32:51'),
(55, 'movie', 'The Fly', 'A brilliant but eccentric scientist begins to transform into a giant man/fly hybrid after one of his experiments goes horribly wrong.', NULL, 'the-fly.jpg', NULL, '2017-10-01 12:05:32', '2019-10-17 19:32:51'),
(56, 'movie', 'Total Recall', 'When a man goes for virtual vacation memories of the planet Mars, an unexpected and harrowing series of events forces him to go to the planet for real - or does he?', NULL, 'total-recall.jpg', NULL, '2017-10-01 12:06:39', '2019-10-17 19:32:51'),
(57, 'movie', 'Creepshow', 'An anthology which tells five terrifying tales based on the E.C. horror comic books of the 1950s.', NULL, 'creepshow.jpg', NULL, '2017-10-01 14:43:32', '2019-10-17 19:32:51'),
(58, 'movie', 'Dredd', 'In a violent, futuristic city where the police have the authority to act as judge, jury and executioner, a cop teams with a trainee to take down a gang that deals the reality-altering drug, SLO-MO.', NULL, 'dredd.jpg', NULL, '2017-10-01 14:44:17', '2019-10-17 19:32:51'),
(59, 'movie', 'Sherlock Holmes', 'Detective Sherlock Holmes and his stalwart partner Watson engage in a battle of wits and brawn with a nemesis whose plot is a threat to all of England.', NULL, 'sherlock-holmes.jpg', NULL, '2017-10-06 17:20:07', '2019-10-17 19:32:51'),
(60, 'movie', 'Batman Begins', 'After training with his mentor, Batman begins his fight to free crime-ridden Gotham City from the corruption that Scarecrow and the League of Shadows have cast upon it.', NULL, 'batman-begins.jpg', NULL, '2017-10-07 16:53:54', '2019-10-17 19:32:51'),
(61, 'movie', 'Casino Royale', 'Armed with a license to kill, Secret Agent James Bond sets out on his first mission as 007, and must defeat a private banker to terrorists in a high stakes game of poker at Casino Royale, Montenegro, but things are not what they seem.', NULL, 'casino-royale.jpg', NULL, '2017-10-07 16:56:32', '2019-10-17 19:32:51'),
(62, 'movie', 'Creepshow 2', 'Three more bone-chilling tales that include a vengeful wooden Native American, a monstrous blob in a lake, and a hitchhiker who wants revenge and will not die.', NULL, 'creepshow-2.jpg', NULL, '2017-10-07 16:58:51', '2019-10-17 19:32:51'),
(63, 'movie', 'Django Unchained', 'With the help of a German bounty hunter, a freed slave sets out to rescue his wife from a brutal Mississippi plantation owner.', NULL, 'django-unchained.jpg', NULL, '2017-10-07 17:00:44', '2019-10-17 19:32:51'),
(64, 'movie', 'Elvira: Mistress of the Dark', 'Upon arriving in a small town where she has inherited a rundown mansion, a famous horror hostess battles an evil uncle who wants her burned at the stake.', NULL, 'elvira-mistress-of-the-dark.jpg', NULL, '2017-10-07 17:02:34', '2019-10-17 19:32:51'),
(65, 'movie', 'Evil Dead 2: Dead by Dawn', 'The lone survivor of an onslaught of flesh-possessing spirits holes up in a cabin with a group of strangers while the demons continue their attack.', NULL, 'evil-dead-2.jpg', NULL, '2017-10-07 17:04:00', '2019-10-17 19:32:51'),
(66, 'movie', 'Ghostbusters 2', 'The discovery of a massive river of ectoplasm and a resurgence of spectral activity allows the staff of Ghostbusters to revive the business.', NULL, 'ghostbusters-2.jpg', NULL, '2017-10-07 17:05:38', '2019-10-17 19:32:51'),
(67, 'movie', 'Indiana Jones and the Last Crusade', 'When Dr. Henry Jones, Sr. suddenly goes missing while pursuing the Holy Grail, eminent archaeologist Dr. Henry "Indiana" Jones, Jr. must follow in his father\'s footsteps to stop the Nazis from getting their hands on the Holy Grail first.', NULL, 'last-crusade.jpg', NULL, '2017-10-07 17:09:05', '2019-10-17 19:32:51'),
(68, 'movie', 'Indiana Jones and the Raiders of the Lost Ark', 'Archaeologist and adventurer Indiana Jones is hired by the U.S. government to find the Ark of the Covenant before the Nazis.', NULL, 'raiders-of-the-lost-ark.jpg', NULL, '2017-10-07 17:10:07', '2019-10-17 19:32:51'),
(69, 'movie', 'Indiana Jones and the Temple of Doom', '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.', NULL, 'temple-of-doom.jpg', NULL, '2017-10-07 17:10:45', '2019-10-17 19:32:51'),
(70, 'movie', 'It Follows', 'A young woman is followed by an unknown supernatural force after a sexual encounter.', NULL, 'it-follows.jpg', NULL, '2017-10-07 17:11:25', '2019-10-17 19:32:51'),
(71, 'movie', 'Night of the Demons', 'Ten teenagers party at an abandoned funeral parlor on Halloween night. When an evil force awakens, demonic spirits keep them from leaving and turn their gathering into a living Hell.', NULL, 'night-of-the-demons.jpg', NULL, '2017-10-07 17:15:05', '2019-10-17 19:32:51'),
(72, 'movie', 'The Cabin in the Woods', '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.', NULL, 'cabin-in-the-woods.jpg', NULL, '2017-10-07 17:16:04', '2019-10-17 19:32:51'),
(73, 'movie', 'The Dark Knight Rises', 'Eight years after the Joker\'s reign of anarchy, the Dark Knight, with the help of the enigmatic Catwoman, is forced from his exile to save Gotham City, now on the edge of total annihilation, from the brutal guerrilla terrorist Bane.', NULL, 'the-dark-knight-rises.jpg', NULL, '2017-10-07 17:18:09', '2019-10-17 19:32:51'),
(74, 'movie', 'The Dark Knight', 'When the menace known as the Joker emerges from his mysterious past, he wreaks havoc and chaos on the people of Gotham, the Dark Knight must accept one of the greatest psychological and physical tests of his ability to fight injustice.', NULL, 'the-dark-knight.jpg', NULL, '2017-10-07 17:20:05', '2019-10-17 19:32:51'),
(75, 'movie', 'The Evil Dead', 'Five friends travel to a cabin in the woods, where they unknowingly release flesh-possessing demons.', NULL, 'evil-dead.jpg', NULL, '2017-10-07 17:23:32', '2019-10-17 19:32:51'),
(76, 'movie', 'The World\'s End', 'Five friends who reunite in an attempt to top their epic pub crawl from twenty years earlier unwittingly become humanity\'s only hope for survival.', NULL, 'the-worlds-end.jpg', NULL, '2017-10-07 17:25:31', '2019-10-17 19:32:51'),
(77, 'movie', 'Army of Darkness', 'A man is accidentally transported to 1300 A.D., where he must battle an army of the dead and retrieve the Necronomicon so he can return home.', NULL, 'army-of-darkness.jpg', NULL, '2017-10-07 22:15:28', '2019-10-17 19:32:51'),
(78, 'movie', 'Batman: Gotham Knight', 'A collection of key events mark Bruce Wayne\'s life, as he journeys from beginner to Dark Knight.', NULL, 'batman-gotham-knight.jpg', NULL, '2017-10-07 22:18:04', '2019-10-17 19:32:51'),
(79, 'movie', 'Batman: Year One', 'A wealthy playboy and a Chicago cop both return to Gotham City where their lives will intersect in unexpected ways.', NULL, 'batman-year-one.jpg', NULL, '2017-10-07 22:22:34', '2019-10-17 19:32:51'),
(80, 'movie', 'Get Out', 'It\'s time for a young African American to meet with his white girlfriend\'s parents for a weekend in their secluded estate in the woods, but before long, the friendly and polite ambiance will give way to a nightmare.', NULL, 'get-out.jpg', NULL, '2017-10-07 22:24:49', '2019-10-17 19:32:51'),
(81, 'movie', 'Tremors', 'Natives of a small isolated town defend themselves against strange underground creatures which are killing them one by one.', NULL, 'tremors.jpg', NULL, '2017-10-07 22:26:26', '2019-10-17 19:32:51'),
(82, 'movie', 'Watchmen', 'In 1985 where former superheroes exist, the murder of a colleague sends active vigilante Rorschach into his own sprawling investigation, uncovering something that could completely change the course of history as we know it.', NULL, 'watchmen.jpg', NULL, '2017-10-07 22:28:38', '2019-10-17 19:32:51'),
(83, 'movie', 'X-Men: Days of Future Past', 'The X-Men send Wolverine to the past in a desperate effort to change history and prevent an event that results in doom for both humans and mutants.', NULL, 'days-of-future-past.jpg', NULL, '2017-10-07 22:31:01', '2019-10-17 19:32:51'),
(84, 'movie', 'Tales from the Crypt: Demon Knight', 'A mysterious man on the run is hunted by a demon known as the Collector who poses as a small-town sheriff.', NULL, 'demon-knight.jpg', NULL, '2017-10-08 09:20:23', '2019-10-17 19:32:51'),
(85, 'movie', 'The LEGO Movie', 'An ordinary Lego construction worker, thought to be the prophesied \'Special\', is recruited to join a quest to stop an evil tyrant from gluing the Lego universe into eternal stasis.', NULL, 'lego-movie.jpg', NULL, '2017-10-08 09:22:30', '2019-10-17 19:32:51'),
(86, 'movie', 'The Mist', 'A freak storm unleashes a series of bloodthirsty creatures on a quiet town, where a small band of citizens hole up in a supermarket and fight for their lives.', NULL, 'the-mist.jpg', NULL, '2017-10-08 09:25:24', '2019-10-17 19:32:51'),
(87, 'movie', 'The Raid: Redemption', 'A S.W.A.T. team becomes trapped in a tenement run by a ruthless mobster and his army of killers and thugs.', 'Indonesian with English subtitles', 'the-raid-redemption.jpg', NULL, '2017-10-08 19:21:38', '2019-10-22 14:23:18'),
(88, 'movie', 'Iron Man', 'After being held captive in an Afghan cave, billionaire engineer Tony Stark creates a unique weaponized suit of armor to fight evil.', NULL, 'iron-man.jpg', NULL, '2017-10-13 19:38:12', '2019-10-17 19:32:51'),
(89, 'movie', 'Pacific Rim', 'As a war between mankind 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 from the apocalypse.', NULL, 'pacific-rim.jpg', NULL, '2017-10-13 19:39:33', '2019-10-17 19:32:51'),
(90, 'movie', 'Predator 2', 'Amidst a territorial gang war in 1997, a sophisticated alien hunter stalks the citizens of Los Angeles and the only man between him and his prey is veteran L.A.P.D. officer, Lieutenant Mike Harrigan.', NULL, 'predator-2.jpg', NULL, '2017-10-13 19:40:14', '2019-10-17 19:32:51'),
(91, 'movie', 'Predator', 'A team of commandos on a mission in a Central American jungle find themselves being stalked by an extraterrestrial hunter.', NULL, 'predator.jpg', NULL, '2017-10-13 19:41:05', '2019-10-17 19:32:51'),
(92, 'movie', 'Captain America: The Winter Soldier', 'As Steve Rogers struggles to embrace his role in the modern world, he teams up with a fellow Avenger and S.H.I.E.L.D. agent, Black Widow, to battle a new threat from history: an assassin known as the Winter Soldier.', NULL, 'winter-soldier.jpg', NULL, '2017-10-15 10:01:02', '2019-10-17 19:32:51'),
(93, 'movie', 'Captain America: Civil War', 'Political interference in the Avengers\' activities causes a rift between former allies Captain America and Iron Man.', NULL, 'civil-war.jpg', NULL, '2017-10-15 21:31:58', '2019-10-17 19:32:51'),
(94, 'movie', 'Spider-Man: Homecoming', 'Peter Parker balances his life as an ordinary high school student in Queens with his superhero alter-ego Spider-Man, and finds himself on the trail of a new menace prowling the skies of New York City.', NULL, 'spiderman-homecoming.jpg', NULL, '2017-10-18 20:57:32', '2019-10-17 19:32:51'),
(95, 'movie', 'Batman: The Dark Knight Returns, Part 1', '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?', NULL, 'dark-knight-returns-part-1.jpg', NULL, '2017-10-20 23:20:23', '2019-10-17 19:32:51'),
(96, 'movie', 'Batman: The Dark Knight Returns, Part 2', 'The Batman has returned after a 10-year absence. The Gotham authorities want to arrest him. An old foe wants a reunion. The Feds want the Man of Tomorrow to put a stop to him.', NULL, 'dark-knight-returns-part-2.jpg', NULL, '2017-10-21 09:50:08', '2019-10-17 19:32:51'),
(97, 'movie', 'From Dusk Till Dawn', 'Two criminals and their hostages unknowingly seek temporary refuge in an establishment populated by vampires, with chaotic results.', NULL, 'from-dusk-till-dawn.jpg', NULL, '2017-10-21 12:27:04', '2019-10-17 19:32:51'),
(98, 'movie', 'Iron Man 2', 'With the world now aware of his identity as Iron Man, Tony Stark must contend with both his declining health and a vengeful mad man with ties to his father\'s legacy.', NULL, 'iron-man-2.jpg', NULL, '2017-10-21 12:28:24', '2019-10-17 19:32:51'),
(99, 'movie', 'Evil Dead', 'Five friends head to a remote cabin, where the discovery of a Book of the Dead leads them to unwittingly summon up demons living in the nearby woods.', NULL, 'evil-dead-2013.jpg', NULL, '2017-10-24 20:37:27', '2019-10-17 19:32:51'),
(100, 'movie', 'The Witch', 'A family in 1630s New England is torn apart by the forces of witchcraft, black magic and possession.', NULL, 'the-witch.jpg', NULL, '2017-10-28 11:12:09', '2019-10-17 19:32:51'),
(101, 'movie', 'Arrival', 'When twelve mysterious spacecraft appear around the world, linguistics professor Louise Banks is tasked with interpreting the language of the alien visitors.', NULL, 'arrival.jpg', NULL, '2017-10-28 12:18:18', '2019-10-17 19:32:51'),
(102, 'movie', 'The Amazing Spider-Man 2', 'When New York is put under siege by Oscorp, it is up to Spider-Man to save the city he swore to protect as well as his loved ones.', NULL, 'amazing-spider-man-2.jpg', NULL, '2017-10-28 14:20:22', '2019-10-17 19:32:51'),
(103, 'movie', 'Men in Black', 'A police officer joins a secret organization that polices and monitors extraterrestrial interactions on Earth.', NULL, 'men-in-black.jpg', NULL, '2017-10-28 15:50:28', '2019-10-17 19:32:51'),
(104, 'movie', 'Ant-Man', 'Armed with a super-suit with the astonishing ability to shrink in scale but increase in strength, cat burglar Scott Lang must embrace his inner hero and help his mentor, Dr. Hank Pym, plan and pull off a heist that will save the world.', NULL, 'ant-man.jpg', NULL, '2017-10-28 16:07:59', '2019-10-17 19:32:51'),
(105, 'movie', 'Rogue One: A Star Wars Story', 'Jyn Erso leads the Rebel Alliance in a risky move to steal the plans for the Death Star, setting up the epic saga to follow.', NULL, 'rogue-one.jpg', NULL, '2017-10-28 18:32:50', '2019-10-17 19:32:51'),
(106, 'movie', 'The Avengers', 'Earth\'s mightiest heroes must come together and learn to fight as a team if they are going to stop the mischievous Loki and his alien army from enslaving humanity.', NULL, 'the-avengers.jpg', NULL, '2017-10-29 12:39:51', '2019-10-17 19:32:51'),
(107, 'movie', 'Avengers: Age of Ultron', 'When Tony Stark and Bruce Banner try to jump-start a dormant peacekeeping program called Ultron, things go horribly wrong and it\'s up to Earth\'s mightiest heroes to stop the villainous AI from enacting his terrible plan.', NULL, 'avengers-age-of-ultron.jpg', NULL, '2017-10-29 15:58:01', '2019-10-17 19:32:51'),
(108, 'movie', 'Split', 'After being kidnapped by a man with multiple personalities, three young girls must try to find a way to escape before their mysterious captor unleashes his newest persona: The Beast.', NULL, 'split.jpg', NULL, '2017-10-31 20:30:03', '2019-10-17 19:32:51'),
(109, 'movie', 'Star Trek: Beyond', 'The U.S.S. Enterprise crew explores the furthest reaches of uncharted space, where they encounter a new ruthless enemy, who puts them, and everything the Federation stands for, to the test.', NULL, 'star-trek-beyond.jpg', NULL, '2017-11-01 20:05:02', '2019-10-17 19:32:51'),
(110, 'movie', 'Doctor Strange', 'While on a journey of physical and spiritual healing, a brilliant neurosurgeon is drawn into the world of the mystic arts.', NULL, 'doctor-strange.jpg', NULL, '2017-11-02 20:29:20', '2019-10-17 19:32:51'),
(111, 'movie', 'John Wick', 'An ex-hitman comes out of retirement to track down the gangsters that took everything from him.', NULL, 'john-wick.jpg', NULL, '2017-11-03 20:11:08', '2019-10-17 19:32:51'),
(112, 'movie', 'The Dark Tower', 'The last Gunslinger, Roland Deschain, has been locked in an eternal battle with Walter O\'Dim, also known as the Man in Black, determined to prevent him from toppling the Dark Tower, which holds the universe together. With the fate of the worlds at stake, good and evil will collide in the ultimate battle as only Roland can defend the Tower from the Man in Black.', NULL, 'the-dark-tower.jpg', NULL, '2017-11-04 10:58:56', '2019-10-17 19:32:51'),
(113, 'movie', '10 Cloverfield Lane', 'After getting in a car accident, a woman is held in a bomb shelter with two strangers who claim the outside world has been affected by an attack from an unknown source.', NULL, '10-cloverfield-lane.jpg', NULL, '2017-11-05 18:29:06', '2019-10-17 19:32:51'),
(114, 'movie', 'Bowfinger', 'When a desperate movie producer fails to get a major star for his bargain basement film, he decides to shoot the film secretly around him.', NULL, 'bowfinger.jpg', NULL, '2017-11-23 09:34:39', '2019-10-17 19:32:51'),
(115, 'movie', 'Jurassic Park', 'During a preview tour, a theme park suffers a major power breakdown that allows its cloned dinosaur exhibits to run amok.', NULL, 'jurassic-park.jpg', NULL, '2017-11-24 14:45:03', '2019-10-17 19:32:51'),
(116, 'movie', 'The Forbidden Kingdom', 'A martial arts obsessed American teen is sent on an adventure back in time to ancient China where he joins forces with a drunken kung fu master, a monk, and a beautiful warrior out for revenge in a quest to free the imprisoned Monkey King.', NULL, 'forbidden-kingdom.jpg', NULL, '2017-11-25 15:49:03', '2019-10-17 19:32:51'),
(117, 'movie', 'Jaws', 'A giant great white shark arrives on the shores of a New England beach resort and wreaks havoc with bloody attacks on swimmers, until a local sheriff teams up with a marine biologist and an old seafarer to hunt the monster down.', NULL, 'jaws.jpg', NULL, '2017-11-25 16:13:23', '2019-10-17 19:32:51'),
(118, 'movie', 'The Mummy', 'An American serving in the French Foreign Legion on an archaeological dig at the ancient city of Hamunaptra accidentally awakens a mummy that wreaks havoc on him, and his crew.', NULL, 'the-mummy.jpg', NULL, '2017-11-25 17:32:00', '2019-10-17 19:32:52'),
(119, 'movie', 'Beetlejuice', 'When a recently deceased couple find their now-vacant home invaded by an obnoxious family, they hire a sleazy ghost and self-proclaimed "bio-exorcist" to help them scare away their unwanted tenants.', NULL, 'beetlejuice.jpg', NULL, '2017-12-02 17:17:05', '2019-10-17 19:32:52'),
(120, 'movie', 'The Incredibles', 'A family of undercover superheroes, while trying to live the quiet suburban life, are forced into action to save the world.', NULL, 'the-incredibles.jpg', NULL, '2017-12-15 16:49:17', '2019-10-17 19:32:52'),
(121, 'movie', 'Star Trek', 'The brash James T. Kirk tries to live up to his father\'s legacy with Mr. Spock keeping him in check as a vengeful Romulan from the future creates black holes to destroy the Federation one planet at a time.', NULL, 'star-trek.jpg', NULL, '2017-12-15 17:14:54', '2019-10-17 19:32:52'),
(122, 'movie', 'From Beyond', '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.', NULL, 'from-beyond.jpg', NULL, '2017-12-16 17:09:26', '2019-10-17 19:32:52'),
(123, 'movie', 'Starship Troopers', 'Humans in a fascistic, militaristic future do battle with giant alien bugs in a fight for survival.', NULL, 'starship-troopers.jpg', NULL, '2017-12-16 17:10:51', '2019-10-17 19:32:52'),
(124, 'movie', 'Tropic Thunder', 'Through a series of freak occurrences, a group of actors shooting a big-budget war movie are forced to become the soldiers they are portraying.', NULL, 'tropic-thunder.jpg', NULL, '2017-12-16 17:11:56', '2019-10-17 19:32:52'),
(125, 'movie', 'Let Me In', 'A bullied young boy befriends a young female vampire who lives in secrecy with her guardian.', NULL, 'let-me-in.jpg', NULL, '2017-12-30 14:21:37', '2019-10-17 19:32:52'),
(126, 'movie', 'Interstellar', 'A team of explorers travel through a wormhole in space in an attempt to ensure the survival of the human race.', NULL, 'interstellar.jpg', NULL, '2017-12-31 09:58:05', '2019-10-17 19:32:52'),
(127, 'movie', 'Predators', 'A group of elite warriors parachute into an unfamiliar jungle and are hunted by members of a merciless alien race.', NULL, 'predators.jpg', NULL, '2017-12-31 10:00:36', '2019-10-17 19:32:52'),
(128, 'movie', 'Serenity', 'The crew of the ship Serenity try to evade an assassin sent to recapture one of their members: a telepath with valuable, and dangerous knowledge.', NULL, 'serenity.jpg', NULL, '2017-12-31 10:04:31', '2019-10-17 19:32:52'),
(129, 'movie', 'Space Cop', 'Space Cop is the story of a cop from the future of space who travels back in time to the present and is teamed up with a cop from the past who is unfrozen in the present. Together, they must defeat evil aliens with a sinister plan.', NULL, 'space-cop.jpg', NULL, '2017-12-31 10:09:42', '2019-10-17 19:32:52'),
(130, 'movie', 'Space Cop (with audio commentary)', 'Space Cop is the story of a cop from the future of space who travels back in time to the present and is teamed up with a cop from the past who is unfrozen in the present. Together, they must defeat evil aliens with a sinister plan.', 'Features audio commentary by Mike Stoklasa, Jay Bauman, and Rich Evans of Red Letter Media', 'space-cop-commentary.jpg', NULL, '2017-12-31 12:02:56', '2019-10-22 14:23:31'),
(131, 'movie', 'Batman', 'The Dark Knight of Gotham City begins his war on crime with his first major enemy being the clownishly homicidal Joker.', NULL, 'batman.jpg', NULL, '2017-12-31 16:54:12', '2019-10-17 19:32:52'),
(132, 'movie', 'Batman Returns', 'When a corrupt businessman and the grotesque Penguin plot to take control of Gotham City, only Batman can stop them, while the Catwoman has her own agenda.', NULL, 'batman-returns.jpg', NULL, '2017-12-31 16:57:10', '2019-10-17 19:32:52'),
(133, 'movie', 'Gremlins', 'A boy inadvertently breaks three important rules concerning his new pet and unleashes a horde of malevolently mischievous monsters on a small town.', NULL, 'gremlins.jpg', NULL, '2018-01-01 17:04:58', '2019-10-17 19:32:52'),
(134, 'movie', 'Poltergeist', 'After young Carol Anne is taken by malevolent spirits, her family enlists the help of a group of paranormal researchers and a mysterious psychic.', NULL, 'poltergeist.jpg', NULL, '2018-01-01 17:12:06', '2019-10-17 19:32:52'),
(135, 'movie', 'The Thing', 'A crew in Antarctica finds a neighboring camp destroyed and its crew dead. Whatever killed them is nowhere to be found, unless it\'s hidden in plain sight.', NULL, 'the-thing.jpg', NULL, '2018-01-04 11:33:08', '2019-10-17 19:32:52'),
(136, 'movie', 'Prometheus', 'A group of scientists and explorers set out to the deepest reaches of space in order to discover the origins of our species, but what they find may spell doom for the entire human race.', NULL, 'prometheus.jpg', NULL, '2018-01-05 21:14:08', '2019-10-17 19:32:52'),
(137, 'movie', 'This is the End', 'While attending a party at James Franco\'s house, Seth Rogen, Jay Baruchel and many other celebrities are faced with the Biblical Apocalypse.', NULL, 'this-is-the-end.jpg', NULL, '2018-01-05 21:16:19', '2019-10-17 19:32:52'),
(138, 'movie', 'IT', 'A group of bullied kids band together when a shapeshifting monster, taking the appearance of a clown, begins hunting children.', NULL, 'it-2017.jpg', NULL, '2018-01-13 14:56:04', '2019-10-17 19:32:52'),
(139, 'movie', 'District 9', 'An extraterrestrial race forced to live in slum-like conditions on Earth suddenly finds a kindred spirit in a government agent who is exposed to their biotechnology.', NULL, 'district-9.jpg', NULL, '2018-01-20 15:46:33', '2019-10-17 19:32:52'),
(140, 'movie', 'Gods of Egypt', 'Mortal hero Bek teams with the god Horus in an alliance against Set, the merciless god of darkness, who has usurped Egypt\'s throne, plunging the once peaceful and prosperous empire into chaos and conflict.', NULL, 'gods-of-egypt.jpg', NULL, '2018-01-20 15:47:45', '2019-10-17 19:32:52'),
(141, 'movie', 'Hansel and Gretel: Witch Hunters', 'Hansel & Gretel are bounty hunters who track and kill witches all over the world. As the fabled Blood Moon approaches, the siblings encounter a new form of evil that might hold a secret to their past.', NULL, 'hansel-and-gretel-witch-hunters.jpg', NULL, '2018-02-02 18:31:06', '2019-10-17 19:32:52'),
(142, 'movie', 'Inception', 'A thief, who steals corporate secrets through the use of dream-sharing technology is given the inverse task of planting an idea into the mind of a CEO.', NULL, 'inception.jpg', NULL, '2018-02-02 18:32:30', '2019-10-17 19:32:52'),
(143, 'movie', 'Independence Day: Resurgence', 'Two decades after the first Independence Day invasion, Earth is faced with a new extra-Solar threat. But will mankind\'s new space defenses be enough?', NULL, 'independence-day-resurgence.jpg', NULL, '2018-02-02 18:33:35', '2019-10-17 19:32:52'),
(144, 'movie', 'Jeepers Creepers 2', 'Set a few days after the original, a championship basketball team\'s bus is attacked by The Creeper, the winged, flesh-eating terror, on the last day of his 23-day feeding frenzy.', NULL, 'jeepers-creepers-2.jpg', NULL, '2018-02-02 18:36:09', '2019-10-17 19:32:52'),
(145, 'movie', 'Jeepers Creepers', 'A brother and sister driving home through the isolated countryside for spring break encounter a flesh-eating creature which is in the midst of it\'s ritualistic eating spree.', NULL, 'jeepers-creepers.jpg', NULL, '2018-02-02 18:38:47', '2019-10-17 19:32:52'),
(146, 'movie', 'The Lost Boys', 'After moving to a new town, two brothers discover that the area is a haven for vampires.', NULL, 'the-lost-boys.jpg', NULL, '2018-02-02 18:39:33', '2019-10-17 19:32:52'),
(147, 'movie', 'The One', 'A rogue agent who works for an organization that polices travel between parallel dimensions goes on a manhunt for alternate versions of himself, getting stronger with each kill. With only one doppelganger remaining, he races against the clock to finish him and become "The One."', NULL, 'the-one.jpg', NULL, '2018-02-09 20:18:15', '2019-10-17 19:32:52'),
(148, 'movie', 'Blade Runner', 'A blade runner must pursue and try to terminate four replicants who have stolen a ship in space and have returned to Earth to find their creator.', NULL, 'blade-runner.jpg', NULL, '2018-02-10 14:05:50', '2019-10-17 19:32:52'),
(149, 'movie', 'The Blob', 'A cheerleader and the local bad-boy outcast try to save their town when it is besieged by a hungry, amorphous creature spawned from a meteorite which consumes everything in it\'s path.', NULL, 'the-blob.jpg', NULL, '2018-02-17 17:21:29', '2019-10-17 19:32:52'),
(150, 'movie', 'Man of Steel', 'Clark Kent, one of the last of an extinguished alien race disguised as an unremarkable human, is forced to reveal his identity when Earth is invaded by an army of fellow survivors from his home-world who threaten to bring Earth to the brink of destruction.', NULL, 'man-of-steel.jpg', NULL, '2018-03-03 11:48:03', '2019-10-17 19:32:52'),
(151, 'movie', 'The Martian', 'An astronaut becomes stranded on Mars after his team assumes him dead. Relying on his ingenuity, he must find a way to signal to Earth that he is alive and survive until he can be rescued.', NULL, 'the-martian.jpg', NULL, '2018-03-03 11:54:04', '2019-10-17 19:32:52'),
(152, 'movie', 'The Terminator', 'A seemingly indestructible humanoid cyborg is sent from 2029 to 1984 to assassinate a waitress, whose unborn son will lead humanity in a war against the machines, while a soldier from that war is sent to protect her at all costs.', NULL, 'the-terminator.jpg', NULL, '2018-03-24 10:07:16', '2019-10-17 19:32:52'),
(153, 'movie', 'Terminator 2: Judgement Day', 'A cyborg, identical to the one who failed to kill Sarah Connor, must now protect her ten year old son, John Connor, from a more advanced cyborg.', NULL, 'terminator-2.jpg', NULL, '2018-03-24 10:09:05', '2019-10-17 19:32:52'),
(154, 'movie', 'Thor: Ragnarok', 'Imprisoned on the other side of the universe, the mighty Thor finds himself in a deadly gladiatorial contest that pits him against the Hulk, his former ally and fellow Avenger. Thor\'s quest for survival leads him in a race against time to prevent the all-powerful Hela from destroying his home world and the Asgardian civilization.', NULL, 'thor-ragnarok.jpg', NULL, '2018-03-24 12:01:18', '2019-10-17 19:32:52'),
(155, 'movie', 'Blade Runner 2049', 'A young blade runner\'s discovery of a long-buried secret leads him to track down former blade runner Rick Deckard, who\'s been missing for thirty years.', NULL, 'blade-runner-2049.jpg', NULL, '2018-03-24 16:04:15', '2019-10-17 19:32:52'),
(156, 'movie', 'The Shape of Water', 'A cleaning lady working in a top-secret government research facility forms an unlikely bond with a mysterious, amphibious creature.', NULL, 'the-shape-of-water.jpg', NULL, '2018-03-24 17:37:54', '2019-10-17 19:32:52'),
(157, 'movie', 'Phantasm', 'The residents of a small town have begun dying under strange circumstances, leading young Mike to investigate. After discovering that the Tall Man, the town\'s mortician, is killing and reanimating the dead as misshapen zombies, Mike seeks help from his older brother, Jody, and local ice cream man Reggie. Working together, they try to lure out and kill the Tall Man, all the while avoiding his minions and a deadly silver sphere.', NULL, 'phantasm.jpg', NULL, '2018-04-07 12:12:19', '2019-10-17 19:32:52'),
(158, 'movie', 'Phantasm II: The Ball is Back', 'Years after surviving his encounter with the sinister Tall Man, Mike Pearson, now a mental patient, still has nightmares about the evil gaunt mortician. Upon being released from the institution, Mike and his friend Reggie set out to track down the Tall Man and end his murderous and macabre practices. Also involved is Liz Reynolds, a young woman who has a psychic connection to both Mike and the Tall Man.', NULL, 'phantasm-2.jpg', NULL, '2018-04-07 12:15:52', '2019-10-17 19:32:52'),
(159, 'movie', 'Phantasm III: Lord of the Dead', 'The evil alien known as the Tall Man has infiltrated the minds of Mike and Reggie. The two friends embark on a journey to find and kill him, only to discover that he has destroyed town after town, leaving zombies in place of the living. Along the way, Mike and Reggie meet several characters who share their goal, including a murderous boy named Tim and two young women who are excellent fighters.', NULL, 'phantasm-3.jpg', NULL, '2018-04-07 12:19:28', '2019-10-17 19:32:52'),
(160, 'movie', 'Sherlock Holmes: A Game of Shadows', 'When Austria\'s crown prince is found dead, evidence seems to point to suicide. However, detective Sherlock Holmes deduces that the prince was murdered and that the crime is but a piece of a puzzle designed by an evil genius named Moriarty. Holmes and his friend Dr. Watson, who are accompanied by a Gypsy whose life Holmes saved, chase Moriarty across Europe in the hope that they can thwart his plot before it can come to fruition.', NULL, 'sherlock-holmes-2.jpg', NULL, '2018-04-07 12:21:36', '2019-10-17 19:32:52'),
(161, 'movie', 'Star Wars: Episode VIII - The Last Jedi', 'Luke Skywalker\'s peaceful and solitary existence gets upended when he encounters Rey, a young woman who shows strong signs of the Force. Her desire to learn the ways of the Jedi forces Luke to make a decision that changes their lives forever. Meanwhile, Kylo Ren and General Hux lead the First Order in an all-out assault against Leia and the Resistance for supremacy of the galaxy.', NULL, 'the-last-jedi.jpg', NULL, '2018-04-07 12:23:28', '2019-10-17 19:32:52'),
(162, 'movie', 'Phantasm IV: Oblivion', 'With a hearse as his escape vehicle, Mike flees from the Tall Man, who wants to enslave him as an undead servant. Along the way, he investigates the origins of his enemy. Elsewhere, Mike\'s friend Reggie searches for him in a variety of dimensions, all the while battling the Tall Man\'s mysterious, flying spheres.', NULL, 'phantasm-oblivion.jpg', NULL, '2018-04-08 17:26:15', '2019-10-17 19:32:52'),
(163, 'movie', 'Bill & Ted\'s Bogus Journey', '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.', NULL, 'bill-and-teds-bogus-journey.jpg', NULL, '2018-04-14 10:51:42', '2019-10-17 19:32:52'),
(164, 'movie', 'Bill & Ted\'s Excellent Adventure', 'Bill and Ted are high school buddies starting a band. However, they are about to fail their history class, which means Ted would be sent to military school. They receive help from Rufus, a traveler 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.', NULL, 'bill-and-teds-excellent-adventure.jpg', NULL, '2018-04-14 10:58:10', '2019-10-17 19:32:52'),
(165, 'movie', 'Gremlins 2: The New Batch', 'The magical collectibles store that Gizmo calls home has just been destroyed, and the tiny monster finds his way into a newly erected skyscraper. Billy Peltzer and his bride-to-be, Kate, discover that Gizmo and an impish legion of reptilian pals are inhabiting the downtown building. The couple tries to stop the creatures from escaping into New York City, but this new batch of beasts might be uncontrollable.', NULL, 'gremlins-2.jpg', NULL, '2018-04-22 07:32:39', '2019-10-17 19:32:52'),
(166, 'movie', 'A Nightmare on Elm Street', 'The children of Elm Street are hunted by a cruel serial killer who kills his victims in their dreams. While the survivors are trying to find the reason for being chosen, the murderer won\'t lose any chance to kill them as soon as they fall asleep.', NULL, 'nightmare-on-elm-street.jpg', NULL, '2018-05-24 20:15:32', '2019-10-17 19:32:52'),
(167, 'movie', 'A Nightmare on Elm Street 2: Freddy\'s Revenge', 'A teenage boy is haunted in his dreams by deceased child murderer Freddy Krueger, who is out to possess him in order to continue his reign of terror in the real world.', NULL, 'nightmare-on-elm-street-2.jpg', NULL, '2018-05-24 20:21:27', '2019-10-17 19:32:52'),
(168, 'movie', 'A Nightmare on Elm Street 3: Dream Warriors', 'A psychiatrist familiar with knife-wielding dream demon Freddy Krueger helps teens at a mental hospital battle the killer who is invading their dreams.', NULL, 'nightmare-on-elm-street-3.jpg', NULL, '2018-05-24 20:22:41', '2019-10-17 19:32:52'),
(169, 'movie', 'A Nightmare on Elm Street 4: The Dream Master', 'Freddy Krueger returns once again to terrorize the dreams of the remaining Dream Warriors, as well as those of a young woman who may be able to defeat him for good.', NULL, 'nightmare-on-elm-street-4.jpg', NULL, '2018-05-24 20:29:39', '2019-10-17 19:32:52'),
(170, 'movie', 'A Nightmare on Elm Street 5: The Dream Child', 'Alice, now pregnant, finds Freddy Krueger striking through the sleeping mind of her unborn child, hoping to be reborn into the real world.', NULL, 'nightmare-on-elm-street-5.jpg', NULL, '2018-05-26 16:05:54', '2019-10-17 19:32:52'),
(171, 'movie', 'Freddy\'s Dead: The Final Nightmare', 'Freddy Krueger returns once again to prowl the nightmares of Springwood\'s last surviving teenager, and of a woman whose personal connection to Krueger may mean his doom.', NULL, 'nightmare-on-elm-street-6.jpg', NULL, '2018-05-26 16:09:37', '2019-10-17 19:32:52'),
(172, 'movie', 'Wes Craven\'s New Nightmare', 'A demonic force has chosen Freddy Krueger as it\'s 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?', NULL, 'new-nightmare.jpg', NULL, '2018-05-26 16:10:57', '2019-10-17 19:32:52'),
(173, 'movie', 'Freddy vs Jason', 'Freddy Krueger and Jason Voorhees return to terrorize the teenage population. Except this time, they\'re out to get each other, too.', NULL, 'freddy-vs-jason.jpg', NULL, '2018-05-26 16:20:35', '2019-10-17 19:32:52'),
(174, 'movie', 'Graveyard Shift', 'In a very old textile mill with a serious rat infestation, the workers discover a horrifying secret deep in the basement.', NULL, 'graveyard-shift.jpg', NULL, '2018-06-02 14:49:17', '2019-10-17 19:32:52'),
(175, 'movie', 'Friday the 13th', 'A group of camp counselors are stalked and murdered by an unknown assailant while trying to reopen a summer camp which, years before, was the site of a child\'s drowning.', NULL, 'friday-the-13th.jpg', NULL, '2018-06-02 14:58:29', '2019-10-17 19:32:52'),
(176, 'movie', 'Friday the 13th Part 2', 'Mrs. Voorhees is dead, and Camp Crystal Lake is shut down, but a camp next to the infamous place is stalked by an unknown assailant.', NULL, 'friday-the-13th-part-2.jpg', NULL, '2018-06-02 15:01:20', '2019-10-17 19:32:52'),
(177, 'movie', 'Friday the 13th Part III: 3D', 'Having revived from his wound, Jason Voorhees takes refuge at a cabin near Crystal Lake. As a group of co-eds arrive for their vacation, Jason continues his killing spree.', NULL, 'friday-the-13th-part-3.jpg', NULL, '2018-06-02 15:02:41', '2019-10-17 19:32:52'),
(178, 'movie', 'Friday the 13th: The Final Chapter', 'After being mortally wounded and taken to the morgue, murderer Jason Voorhees spontaneously revives and embarks on a killing spree as he makes his way back to his home at Camp Crystal Lake.', NULL, 'friday-the-13th-the-final-chapter.jpg', NULL, '2018-06-02 15:06:26', '2019-10-17 19:32:52'),
(179, 'movie', 'Friday the 13th Part V: A New Beginning', 'Still haunted by his past, Tommy Jarvis - who, as a child, killed Jason Voorhees - wonders if the serial killer is connected to a series of brutal murders occurring in and around the secluded halfway house where he now lives.', NULL, 'friday-the-13th-part-5.jpg', NULL, '2018-06-02 15:10:30', '2019-10-17 19:32:52'),
(180, 'movie', 'Jason Lives: Friday the 13th Part VI', 'Tommy Jarvis goes to the graveyard to get rid of Jason Voorhees\' body once and for all, but inadvertently brings him back to life instead. The newly revived killer once again seeks revenge, and Tommy may be the only one who can defeat him.', NULL, 'friday-the-13th-part-6.jpg', NULL, '2018-06-02 15:13:57', '2019-10-17 19:32:52'),
(181, 'movie', 'Friday the 13th Part VII: The New Blood', 'Years after Tommy Jarvis chained him underwater at Camp Crystal Lake, the dormant Jason Voorhees returns to the camp grounds when he is accidentally released from his prison by a teenager who possesses psychic powers.', NULL, 'friday-the-13th-part-7.jpg', NULL, '2018-06-02 15:15:51', '2019-10-17 19:32:52'),
(182, 'movie', 'Friday the 13th Part VIII: Jason Takes Manhattan', 'A boatful of graduating high school students headed to Manhattan accidentally pull Jason Voorhees along for the ride.', NULL, 'friday-the-13th-part-8.jpg', NULL, '2018-06-02 15:22:09', '2019-10-17 19:32:52'),
(183, 'movie', 'Jason Goes to Hell: The Final Friday', 'After being blown away by a team of FBI agents, Jason Voorhees possesses the bodies of several unfortunate victims as he makes his way back to his old stomping grounds, Camp Crystal Lake.', NULL, 'friday-the-13th-part-9.jpg', NULL, '2018-06-02 19:46:49', '2019-10-17 19:32:52'),
(184, 'movie', 'Tales of Halloween', 'Ten stories are woven together by their shared theme of Halloween night in an American suburb, where ghouls, imps, aliens and axe murderers appear for one night only to terrorize unsuspecting residents.', NULL, 'tales-of-halloween.jpg', NULL, '2018-06-03 09:01:39', '2019-10-17 19:32:52'),
(185, 'movie', 'Tales from the Hood', 'A funeral director tells four strange tales of horror with an African American focus to three drug dealers he traps in his place of business.', NULL, 'tales-from-the-hood.jpg', NULL, '2018-06-03 09:02:47', '2019-10-17 19:32:52'),
(186, 'movie', 'The Howling', 'After a bizarre and near fatal encounter with a serial killer, a television newswoman is sent to a remote mountain resort whose residents may not be what they seem.', NULL, 'the-howling.jpg', NULL, '2018-06-03 09:06:24', '2019-10-17 19:32:52'),
(187, 'movie', '1408', '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.', NULL, '1408.jpg', NULL, '2018-06-03 09:08:52', '2019-10-17 19:32:52'),
(188, 'movie', 'Halloween', '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 to kill again.', NULL, 'halloween.jpg', NULL, '2018-06-03 09:12:23', '2019-10-17 19:32:52'),
(189, 'movie', 'Hellraiser', 'An unfaithful wife encounters the zombie of her dead lover, who is being pursued by the demonic Cenobites after he escaped their sadomasochistic underworld.', NULL, 'hellraiser.jpg', NULL, '2018-06-03 09:18:49', '2019-10-17 19:32:52'),
(190, 'movie', 'Hellbound: Hellraiser II', 'Kirsty is brought to an institution after the death of her family, where her occult-obsessed therapist resurrects Julia and unleashes the Cenobites once again.', NULL, 'hellraiser-2.jpg', NULL, '2018-06-03 09:22:49', '2019-10-17 19:32:52'),
(191, 'movie', 'Justice League', 'Fueled by his restored faith in humanity and inspired by Superman\'s selfless act, Bruce Wayne enlists the help of his newfound ally, Diana Prince, to face an even greater enemy.', NULL, 'justice-league.jpg', NULL, '2018-06-09 17:05:23', '2019-10-17 19:32:52'),
(192, 'movie', 'Southbound', 'Five interlocking tales of terror follow the fates of a group of weary travellers who confront their worst nightmares - and darkest secrets - over one long night on a desolate stretch of desert highway.', NULL, 'southbound.jpg', NULL, '2018-06-09 17:11:08', '2019-10-17 19:32:52'),
(193, 'movie', 'Batman v Superman: Dawn of Justice', 'As the world demands accountability for the Kryptonian attack on Earth, Batman vows to bring down the Man of Steel once and for all to ensure that his power does not go unchecked.', NULL, 'batman-v-superman.jpg', NULL, '2018-06-17 19:00:32', '2019-10-17 19:32:52'),
(194, 'movie', 'Suicide Squad', 'A secret government agency recruits some of the most dangerous incarcerated super-villains to form a defensive task force. Their first mission: save the world from the apocalypse.', NULL, 'suicide-squad.jpg', NULL, '2018-06-21 18:51:20', '2019-10-17 19:32:52'),
(195, 'movie', 'Wonder Woman', 'When a pilot crashes and tells of conflict in the outside world, Diana, an Amazonian warrior in training, leaves home to fight a war, discovering her full powers and true destiny.', NULL, 'wonder-woman.jpg', NULL, '2018-06-23 10:43:38', '2019-10-17 19:32:52'),
(196, 'movie', 'In the Mouth of Madness', 'An insurance investigator begins discovering that the impact a horror writer\'s books have on his fans is more than inspirational.', NULL, 'in-the-mouth-of-madness.jpg', NULL, '2018-06-24 09:45:22', '2019-10-17 19:32:52'),
(197, 'movie', 'Event Horizon', 'A rescue crew investigates a spaceship that disappeared into a black hole and has now returned with someone, or something, new on-board.', NULL, 'event-horizon.jpg', NULL, '2018-06-24 15:14:15', '2019-10-17 19:32:52'),
(198, 'movie', 'The Endless', 'Two brothers return to the UFO death cult they fled from years ago to discover that the group\'s beliefs may be more sane than they once thought.', NULL, 'the-endless.jpg', NULL, '2018-06-27 20:45:00', '2019-10-17 19:32:52'),
(199, 'movie', 'Harry Potter and the Sorcerer\'s Stone', 'Harry Potter learns on his 11th birthday that he is the orphaned first son of two powerful wizards and possesses magical powers of his own.\r\n\r\nAt Hogwarts School of Witchcraft and Wizardry, Harry embarks on the adventure of a lifetime. He learns the high-flying sport Quidditch and plays a thrilling game with living chess pieces on his way to face a Dark Wizard bent on destroying him.', NULL, 'harry-potter-1.jpg', NULL, '2018-06-30 09:17:28', '2019-10-17 19:32:52'),
(200, 'movie', 'Harry Potter and the Chamber of Secrets', 'Young wizard Harry Potter and his friends Ron Weasley and Hermione Granger face new challenges during their second year at Hogwarts School of Witchcraft and Wizardry as they try to uncover a dark force that is terrorizing the school.', NULL, 'harry-potter-2.jpg', NULL, '2018-06-30 09:19:43', '2019-10-17 19:32:52'),
(201, 'movie', 'Harry Potter and the Prisoner of Azkaban', 'Harry, Ron and Hermione, now teenagers, return for their third year at Hogwarts, where they are forced to face escaped prisoner, Sirius Black, who poses a great threat to Harry.', NULL, 'harry-potter-3.jpg', NULL, '2018-06-30 09:21:20', '2019-10-17 19:32:52'),
(202, 'movie', 'Harry Potter and the Goblet of Fire', '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.\r\n\r\nBut since Harry never submitted his name for the Tournament, who did?', NULL, 'harry-potter-4.jpg', NULL, '2018-06-30 09:27:07', '2019-10-17 19:32:52'),
(203, 'movie', 'Harry Potter and the Order of the Phoenix', 'Lord Voldemort has returned, but few want to believe it. In fact, the Ministry of Magic is doing everything it can to keep the wizarding world from knowing the truth—including appointing Ministry official Dolores Umbridge as the new Defense Against the Dark Arts teacher at Hogwarts. When Professor Umbridge refuses to train her students in practical defensive magic, a select group of students decides to learn on their own with Harry Potter as their leader.', NULL, 'harry-potter-5.jpg', NULL, '2018-06-30 09:36:48', '2019-10-17 19:32:52'),
(204, 'movie', 'Harry Potter and the Half-Blood Prince', 'Voldemort is tightening his grip on both the Muggle and wizarding worlds and Hogwarts is no longer the safe haven it once was. Harry suspects that dangers may even lie within the castle, but Dumbledore is more intent upon preparing him for the final battle that he knows is fast approaching.', NULL, 'harry-potter-6.jpg', NULL, '2018-06-30 09:38:24', '2019-10-17 19:32:52'),
(205, 'movie', 'Harry Potter and the Deathly Hallows: Part 1', 'Harry, Ron and Hermione set out on their perilous mission to track down and destroy the secret to Voldemort’s immortality and destruction—the Horcruxes.', NULL, 'harry-potter-7.jpg', NULL, '2018-06-30 09:39:53', '2019-10-17 19:32:52'),
(206, 'movie', 'Harry Potter and the Deathly Hallows: Part 2', 'The battle between the good and evil forces of the Wizarding World escalates into an all-out war. But it is Harry Potter who may be called upon to make the ultimate sacrifice as he draws closer to the climactic showdown with Lord Voldemort. It all ends here.', NULL, 'harry-potter-8.jpg', NULL, '2018-06-30 09:41:26', '2019-10-17 19:32:52'),
(207, 'movie', 'Ginger Snaps', 'Two death-obsessed sisters, outcasts in their suburban neighborhood, must deal with the tragic consequences when one of them is bitten by a werewolf.', NULL, 'ginger-snaps.jpg', NULL, '2018-06-30 09:46:33', '2019-10-17 19:32:52'),
(208, 'movie', 'Pee-Wee\'s Big Adventure', 'When eccentric man-child Pee-Wee Herman gets his beloved bike stolen in broad daylight, he sets out across the U.S. on the adventure of his life.', NULL, 'pee-wees-big-adventure.jpg', NULL, '2018-07-07 09:02:16', '2019-10-17 19:32:52'),
(209, 'movie', 'Night of the Creeps', 'Fraternity pledges pull a prank with a frozen body, unwittingly unleashing slug-like creatures which possess their victims, turning them into zombies.', NULL, 'night-of-the-creeps.jpg', NULL, '2018-07-08 15:14:59', '2019-10-17 19:32:52'),
(210, 'movie', 'Tales from the Darkside: The Movie', 'A young boy tells three stories of horror to distract a witch who plans to eat him.', NULL, 'tales-from-the-darkside.jpg', NULL, '2018-07-14 14:58:27', '2019-10-17 19:32:52'),
(211, 'movie', 'A Quiet Place', 'In a post-apocalyptic world, a family is forced to live in silence while hiding from monsters with ultra-sensitive hearing.', NULL, 'a-quiet-place.jpg', NULL, '2018-07-20 20:57:03', '2019-10-17 19:32:52'),
(212, 'movie', 'Christine', 'When a high school outcast buys a red 1958 Plymouth Fury, which seems to have some supernatural abilities, he develops an unhealthy obsession with the car.', NULL, 'christine.jpg', NULL, '2018-07-22 14:39:42', '2019-10-17 19:32:52'),
(213, 'movie', 'Near Dark', 'The son of a small-town farmer reluctantly joins a traveling group of vampires after he is seduced by a beautiful drifter.', NULL, 'near-dark.jpg', NULL, '2018-08-11 09:34:41', '2019-10-17 19:32:52'),
(214, 'movie', 'The Conjuring', 'Paranormal investigators Ed and Lorraine Warren work to help a family terrorized by a dark presence in their farmhouse.', NULL, 'the-conjuring.jpg', NULL, '2018-08-11 09:38:07', '2019-10-17 19:32:52'),
(215, 'movie', 'The Conjuring 2', 'Ed and Lorraine Warren travel to North London to help a single mother raising 4 children alone in a house plagued by a supernatural spirit.', NULL, 'the-conjuring-2.jpg', NULL, '2018-08-11 09:39:23', '2019-10-17 19:32:52'),
(216, 'movie', 'The Resurrected', 'Charles Dexter Ward\'s wife enlists the help of a private detective to find out what her husband is up to in a remote cabin owned by his family for centuries.', NULL, 'the-resurrected.jpg', NULL, '2018-08-18 10:37:26', '2019-10-17 19:32:52'),
(217, 'movie', 'Avengers: Infinity War', 'The Avengers unite to battle their most powerful enemy yet - the evil Thanos - who is on a mission to grant himself god-like powers by collecting all six Infinity Stones.', NULL, 'avengers-infinity-war.jpg', 'infinity-war.jpg', '2018-08-25 11:31:18', '2019-10-17 19:35:36'),
(218, 'movie', 'Deadpool 2', 'Foul-mouthed mutant mercenary Wade Wilson (AKA. Deadpool), brings together a team of fellow mutant rogues to protect a young boy with supernatural abilities from the brutal, time-traveling cyborg, Cable.', NULL, 'deadpool-2.jpg', NULL, '2018-08-25 14:41:39', '2019-10-17 19:32:52'),
(219, 'movie', 'Captain America: The First Avenger', 'The diminutive Steve Rogers is transformed into the heroic Captain America after being subjected to a military super soldier experiment.', NULL, 'captain-america.jpg', NULL, '2018-08-26 14:13:26', '2019-10-17 19:32:52'),
(220, 'movie', 'Club Dread', 'When a serial killer interrupts the fun at the swanky Coconut Pete\'s Coconut Beach Resort, a hedonistic island paradise for swingers, it\'s up to the club staff to stop the violence... or at least hide it.', NULL, 'club-dread.jpg', NULL, '2018-08-31 21:44:39', '2019-10-17 19:32:52'),
(221, 'movie', 'Crystal Lake Memories: The Complete History of Friday the 13th', 'A chronicle of the history of the Friday the 13th franchise.', NULL, 'crystal-lake-memories.jpg', NULL, '2018-09-09 18:52:23', '2019-10-17 19:32:52'),
(222, 'movie', 'Never Sleep Again: The Elm Street Legacy', 'Explore the origins of "dream demon" Freddy Krueger in this award-winning documentary that takes you behind the scenes of the most frightening and imaginative horror franchise in motion picture history!', NULL, 'never-sleep-again.jpg', NULL, '2018-10-19 21:42:33', '2019-10-17 19:32:52'),
(223, 'movie', 'The Night Flier', 'A reporter is put on the trail of a vampiric murderer who travels by plane.', NULL, 'the-night-flier.jpg', NULL, '2018-10-26 19:41:33', '2019-10-17 19:32:52'),
(224, 'movie', 'Child\'s Play 3', 'Chucky returns for revenge against Andy, the young boy who defeated him, who is now a teenager living in a military academy.', NULL, 'childs-play-3.jpg', NULL, '2018-11-17 07:20:41', '2019-10-17 19:32:52'),
(225, 'movie', 'Child\'s Play 2', 'While Andy\'s mother is admitted to a psychiatric hospital, the young boy is placed in foster care, and Chucky, determined to claim Andy\'s soul, is not far behind.', NULL, 'childs-play-2.jpg', NULL, '2018-11-17 16:30:31', '2019-10-17 19:32:52'),
(226, 'movie', 'Hereditary', 'A grieving family is haunted by tragic and disturbing occurrences as they begin to unravel dark secrets about their recently deceased matriarch.', NULL, 'hereditary.jpg', NULL, '2018-11-17 19:34:06', '2019-10-17 19:32:52'),
(227, 'movie', 'The Autopsy of Jane Doe', 'Two coroners are pulled into a complex mystery while attempting to identify the body of a young woman who was apparently harboring dark secrets.', NULL, 'the-autopsy-of-jane-doe.jpg', NULL, '2018-11-18 20:12:06', '2019-10-17 19:32:52'),
(228, 'movie', 'Child\'s Play', 'A single mother gives her son a much sought-after doll for his birthday, only to discover that it is possessed by the soul of a serial killer who is seeking a new body.', NULL, 'childs-play.jpg', NULL, '2018-11-30 22:15:17', '2019-10-17 19:32:52'),
(229, 'movie', 'Candyman', 'The Candyman, a murderous soul with a hook for a hand, is accidentally summoned by a skeptic grad student who is researching urban legends.', NULL, 'candyman.jpg', NULL, '2018-12-02 09:16:41', '2019-10-17 19:32:52'),
(230, 'movie', 'Critters', 'A pair of intergalactic bounty hunters pursue their targets: a group of pint-sized, furry aliens who are making lunch out of the locals in a small farming town.', NULL, 'critters.jpg', NULL, '2018-12-02 13:50:47', '2019-10-17 19:32:52'),
(231, 'movie', 'Critters 2', 'Critter eggs are left behind on Earth, causing the furry alien carnivores to begin feasting on the citizens of the town of Grover\'s Bend.', NULL, 'critters-2.jpg', NULL, '2018-12-02 17:58:34', '2019-10-17 19:32:52'),
(232, 'movie', 'Incredibles 2', 'Mr. Incredible is left to care for the kids while his wife, Elastigirl, is out saving the world.', NULL, 'the-incredibles-2.jpg', NULL, '2018-12-08 12:13:39', '2019-10-17 19:32:52'),
(233, 'movie', 'The Fog', 'An unearthly fog rolls into a small coastal town exactly 100 years after a ship mysteriously sank in its waters.', NULL, 'the-fog.jpg', NULL, '2018-12-08 15:27:34', '2019-10-17 19:32:52'),
(234, 'movie', 'Poltergeist II: The Other Side', 'The Freeling family have a new house, but their troubles with supernatural forces don\'t seem to be over.', NULL, 'poltergeist-2.jpg', NULL, '2018-12-16 17:14:57', '2019-10-17 19:32:52'),
(235, 'movie', 'Lake Mungo', 'A family begins experiencing inexplicable events in their home after their daughter drowns, causing them to hire a parapsychologist whose investigation unveils their daughter\'s secret double life.', NULL, 'lake-mungo.jpg', NULL, '2018-12-20 21:01:15', '2019-10-17 19:32:53'),
(236, 'movie', 'Jingle All the Way', 'A father vows to get his son a Turbo Man action figure for Christmas. However, every store is sold out, causing him to have to travel all over town and compete with other parents in order to find the perfect gift for his son.', NULL, 'jingle-all-the-way.jpg', NULL, '2018-12-26 14:31:53', '2019-10-17 19:32:53'),
(237, 'movie', 'Poltergeist III', 'Carol Anne is staying with her aunt in a high-rise building, where the supernatural forces haunting her make their return.', NULL, 'poltergeist-3.jpg', NULL, '2018-12-29 09:38:14', '2019-10-17 19:32:53'),
(238, 'movie', 'Wishmaster', 'A demonic djinn attempts to grant its owner three wishes, which will allow him to summon his brethren to Earth.', NULL, 'wishmaster.jpg', NULL, '2019-01-05 13:42:55', '2019-10-17 19:32:53'),
(239, 'movie', 'Wishmaster 2: Evil Never Dies', 'The evil Djinn is awakened once more, and must collect 1001 souls to begin the Apocalypse.', NULL, 'wishmaster-2.jpg', NULL, '2019-01-05 13:44:17', '2019-10-17 19:32:53'),
(240, 'movie', 'Tales from the Crypt: Bordello of Blood', 'The Crypt Keeper returns to tell the story of a funeral parlor that moonlights as a vampire brothel.', NULL, 'tales-from-the-crypt-bordello-of-blood.jpg', NULL, '2019-01-11 19:21:44', '2019-10-17 19:32:53'),
(241, 'movie', 'House', 'A troubled writer moves into a haunted house after inheriting it from his aunt.', NULL, 'house.jpg', NULL, '2019-01-15 09:20:27', '2019-10-17 19:32:53'),
(242, 'movie', 'The Frighteners', 'After a tragic car accident kills his wife, a man discovers he can communicate with the dead. For years he uses his abilities to con people. However, when a demonic spirit appears, he may be the only one who can stop it from killing the living and the dead.', NULL, 'the-frighteners.jpg', NULL, '2019-01-20 07:29:15', '2019-10-17 19:32:53'),
(243, 'movie', 'The Return of the Living Dead', 'When two bumbling employees at a medical supply warehouse accidentally release a deadly gas into the air, the vapors cause the dead to rise as brain-eating zombies.', NULL, 'return-of-the-living-dead.jpg', NULL, '2019-02-22 20:55:33', '2019-10-17 19:32:53'),
(244, 'movie', 'Psycho II', 'After twenty-two years of psychiatric care, Norman Bates attempts to return to a life of solitude, but the specters of his crimes - and his mother - continue to haunt him.', NULL, 'psycho-2.jpg', NULL, '2019-02-23 23:03:20', '2019-10-17 19:32:53'),
(245, 'movie', 'Psycho III', 'Norman Bates falls in love with a fallen nun who stays at the Bates Motel alongside a drifter and a curious reporter. Meanwhile, "mother" is still watching.', NULL, 'psycho-3.jpg', NULL, '2019-02-23 23:04:13', '2019-10-17 19:32:53'),
(246, 'movie', 'Psycho IV: The Beginning', 'Norman Bates recalls his childhood with his abusive mother, all the while fearing that his unborn child will inherit his murderous compulsions.', NULL, 'psycho-4.jpg', NULL, '2019-02-23 23:05:53', '2019-10-17 19:32:53'),
(247, 'movie', 'Night of the Comet', 'A comet wipes out most of life on Earth, leaving two Valley Girls fighting against cannibal zombies and a sinister group of scientists.', NULL, 'night-of-the-comet.jpg', NULL, '2019-03-02 17:37:22', '2019-10-17 19:32:53'),
(248, 'movie', 'Prince of Darkness', 'A research team finds a mysterious cylinder in a deserted church. If opened, it could mean the end of the world.', NULL, 'prince-of-darkness.jpg', NULL, '2019-03-09 07:01:20', '2019-10-17 19:32:53'),
(249, 'movie', 'Final Fantasy VII: Advent Children', 'An ex-mercenary is forced out of isolation when three mysterious men kidnap and brainwash the children of the city, who are all afflicted with a mysterious disease..', NULL, 'final-fantasy-vii-advent-children.jpg', NULL, '2019-03-15 22:59:01', '2019-10-17 19:32:53'),
(250, 'movie', 'Under the Skin', 'A mysterious young woman seduces lonely men in the evening hours in Scotland, until events begin to lead her on a journey of self-discovery.', NULL, 'under-the-skin.jpg', NULL, '2019-03-16 21:28:22', '2019-10-17 19:32:53'),
(251, 'movie', 'Suspiria', 'A darkness swirls at the center of a world-renowned dance company, one that will engulf the artistic director, an ambitious young dancer, and a grieving psychotherapist. Some will succumb to the nightmare. Others will finally wake up.', NULL, 'suspiria-2018.jpg', 'suspiria.jpg', '2019-03-30 12:18:57', '2019-10-17 19:35:44'),
(252, 'movie', 'Vampire in Brooklyn', 'In the wake of her mother\'s death in a mental institution, detective Rita Veder is assigned to a baffling serial murder case. After examining the crime scene -- a corpse-filled ship found adrift at sea -- Rita meets Maximilian, a smooth-talking Caribbean playboy determined to romance her. When Rita begins suffering from crippling hallucinations, she calls upon Dr. Zeko, an occultist who suspects a vampire is on the loose.', NULL, 'vampire-in-brooklyn.jpeg', NULL, '2019-04-07 17:11:02', '2019-10-17 19:32:53'),
(253, 'movie', 'Darkman', 'When thugs employed by a crime boss lead a vicious assault on Dr. Peyton Westlake, leaving him physically and psychologically scarred, an emergency procedure allows him to survive. Upon his recovery, Peyton can find solace only by returning to his scientific work developing synthetic skin, and seeking revenge against the crime boss. He assumes a phantom avenger persona called Darkman, who, with malleable facial qualities, is able to infiltrate and sow terror in the criminal community.', NULL, 'darkman.jpg', NULL, '2019-04-07 17:16:26', '2019-10-17 19:32:53'),
(254, 'movie', 'Pumpkinhead', 'After his son dies in a hit-and-run accident, Ed Harley seeks revenge against the teenagers responsible. With the help of a local witch, Ed summons the vengeful demon Pumpkinhead to hunt and kill the group of friends. But when Ed discovers a bond between himself and the creature, he begins to have second thoughts about employing the vicious monster, and he fights to end Pumpkinhead\'s murderous rampage before it is too late.', NULL, 'pumpkinhead.jpg', NULL, '2019-04-07 17:20:56', '2019-10-17 19:32:53'),
(255, 'movie', 'Thor: The Dark World', 'When Dr. Jane Foster gets cursed with a powerful entity known as the Aether, Thor is heralded of the cosmic event known as the Convergence and the genocidal Dark Elves.', NULL, 'thor-the-dark-world.jpg', NULL, '2019-04-07 17:25:19', '2019-10-17 19:32:53'),
(256, 'movie', 'Deep Rising', 'A group of heavily armed hijackers board a luxury ocean liner in the South Pacific ocean, only to discover that a series of large, tentacled, man-eating sea creatures have already invaded the ship.', NULL, 'deep-rising.jpg', NULL, '2019-04-12 17:48:08', '2019-10-17 19:32:53'),
(257, 'movie', 'Close Encounters of the Third Kind', 'A family man\'s quiet and ordinary life is turned upside down after he experiences a close encounter with a UFO.', NULL, 'close-encounters-of-the-third-kind.jpg', NULL, '2019-04-19 19:21:38', '2019-10-17 19:32:53'),
(258, 'movie', 'Signs', 'A family living on a farm finds mysterious crop circles in their fields, suggesting the arrival of something more frightening.', NULL, 'signs.jpg', NULL, '2019-04-19 19:24:51', '2019-10-17 19:32:53'),
(259, 'movie', 'Sleepy Hollow', 'Ichabod Crane is sent to investigate a series of decapitations in the town of Sleepy Hollow, where he encounters the legendary apparition, The Headless Horseman.', NULL, 'sleepy-hollow.jpg', NULL, '2019-04-19 19:29:50', '2019-10-17 19:32:53'),
(260, 'movie', 'Midnight Special', 'A father and son go on the run, pursued by the government and a cult drawn to the child\'s special powers.', NULL, 'midnight-special.jpg', NULL, '2019-04-19 19:32:24', '2019-10-17 19:32:53'),
(261, 'movie', 'Arachnophobia', 'A deadly species of South American spider hitches a lift to the U.S. in a coffin, where it begins to breed and kill.', NULL, 'arachnophobia.jpg', NULL, '2019-04-20 12:30:45', '2019-10-17 19:32:53'),
(262, 'movie', 'Kill Bill: Vol. 1', 'After awakening from a four-year coma, a former assassin wreaks vengeance on the team of assassins who betrayed her.', NULL, 'kill-bill-1.jpg', NULL, '2019-04-21 11:40:32', '2019-10-17 19:32:53'),
(263, 'movie', 'Kill Bill: Vol. 2', 'The Bride continues her quest of vengeance against her former boss and lover Bill, the reclusive bouncer Budd, and the treacherous, one-eyed Elle.', NULL, 'kill-bill-2.jpg', NULL, '2019-04-21 11:41:58', '2019-10-17 19:32:53'),
(264, 'movie', 'X-Men: First Class', 'In the 1960s, superpowered humans Charles Xavier and Erik Lensherr work together to find others like them, but Erik\'s vengeful pursuit of the mutant who ruined his life causes a schism to divide them.', NULL, 'xmen-first-class.jpeg', NULL, '2019-05-05 13:20:44', '2019-10-17 19:32:53'),
(265, 'movie', 'Hellraiser III: Hell on Earth', 'An investigative reporter must send the newly unbound Pinhead and his legions back to Hell after they are revived by an unwitting nightclub owner.', NULL, 'hellraiser-3.jpg', NULL, '2019-05-05 13:23:04', '2019-10-17 19:32:53'),
(266, 'movie', 'Big Trouble in Little China', 'A rough-and-tumble trucker helps rescue his friend\'s fiance from an ancient sorcerer in a supernatural battle beneath Chinatown.', NULL, 'big-trouble-in-little-china.jpg', NULL, '2019-05-05 13:25:22', '2019-10-17 19:32:53'),
(267, 'movie', 'An American Werewolf in London', 'Two American college students on a walking tour of Britain are attacked by a werewolf, causing one of them to be marked by the creature\'s curse.', NULL, 'an-american-werewolf-in-london.jpg', NULL, '2019-05-26 12:32:41', '2019-10-17 19:32:53'),
(268, 'movie', 'Glass', 'Security guard David Dunn uses his supernatural abilities to track Kevin Wendell Crumb, a disturbed man who has twenty-four personalities.', NULL, 'glass.jpg', 'glass.jpg', '2019-05-26 12:36:17', '2019-10-17 19:35:50'),
(269, 'movie', 'Blazing Saddles', 'In order to ruin a western town, a corrupt politician appoints a black Sheriff, who promptly becomes his most formidable adversary.', NULL, 'blazing-saddles.jpg', NULL, '2019-05-26 12:38:40', '2019-10-17 19:32:53'),
(270, 'show', 'Adventure Time', 'A human boy named Finn and adoptive brother and best friend Jake the Dog, protect the citizens of the Land of Ooo from foes of various shapes and sizes.', NULL, 'adventure-time.jpg', NULL, '2017-09-10 14:08:19', '2019-10-17 19:32:53'),
(271, 'show', 'An Idiot Abroad', 'Brit Karl Pilkington has led a sheltered life. As such, his friends Ricky Gervais and Stephen Merchant decide to send Karl to various parts of the world to experience unfamiliar cultures. For Ricky, this experiment is the most expensive gag for his own pleasure that he ever could have conceived.', NULL, 'an-idiot-abroad.jpg', NULL, '2017-09-10 14:17:23', '2019-10-17 19:32:53'),
(272, 'show', 'Are You Afraid of the Dark?', 'Several young friends form a secretive group, The Midnight Society. Each night they meet in the woods to tell each other scary stories.', NULL, 'are-you-afraid-of-the-dark.jpg', NULL, '2017-09-10 14:23:19', '2019-10-17 19:32:53'),
(273, 'show', 'Batman Tech', 'The History Channel offers a look into the real-world science behind The Dark Knight\'s crime-fighting gadgets.', NULL, 'batman-tech.jpg', NULL, '2017-09-10 14:27:44', '2019-10-17 19:32:53'),
(274, 'show', 'Batman Unmasked: The Psychology of the Dark Knight', 'Various analysts propose a psychological examination of the Dark Knight.', NULL, 'batman-unmasked.jpg', NULL, '2017-09-10 14:30:12', '2019-10-17 19:32:53'),
(275, 'show', 'Bravo\'s 100 Scariest Movie Moments', 'Film-makers, performers, genre authorities and selected high-profile fans count down the most chilling moments in cinematic history.', NULL, 'bravos-100-scariest-movie-moments.jpg', NULL, '2017-09-10 14:34:04', '2019-10-17 19:32:53'),
(276, 'show', 'Bravo\'s 30 Even Scarier Movie Moments', 'In the follow-up to Bravo\'s 100 Scariest Movie Moments, famous actors, directors, and producers count down 30 more spine-chilling scenes from popular genre classics.', NULL, 'bravos-30-even-scarier-movie-moments.jpg', NULL, '2017-09-10 14:59:46', '2019-10-17 19:32:53'),
(277, 'show', 'Game of Thrones', 'Nine noble families fight for control over the mythical lands of Westeros, while a forgotten race returns after being dormant for thousands of years.', NULL, 'game-of-thrones.jpg', NULL, '2017-09-10 15:01:40', '2019-10-17 19:32:53'),
(278, 'show', 'Mystery Science Theater 3000', 'In the not-too-distant future, a man and his robots are trapped aboard the Satellite of Love, where mad scientists force them to sit through the worst movies ever made.', NULL, 'mst3k.jpg', NULL, '2017-09-10 15:07:25', '2019-10-17 19:32:53'),
(279, 'show', 'Night Visions', 'Night Visions is an anthology series similar to The Twilight Zone - some tales are supernatural, others are just commentaries on twisted human nature.', NULL, 'night-visions.jpg', NULL, '2017-09-10 15:17:09', '2019-10-17 19:32:53'),
(280, 'show', 'Star Wars - The Legacy Revealed', 'Filmmakers, critics and even politicians discuss the social impact of the "Star Wars" films and the franchise\'s reliance in mythology and history.', NULL, 'star-wars-the-legacy-revealed.jpg', NULL, '2017-09-10 15:19:36', '2019-10-17 19:32:53'),
(281, 'show', 'Star Wars Tech', 'This History Channel documentary gathers engineers and scientists to theorize on the possible real-world technologies behind the ships, weapons, droids, and gadgets of the Star Wars universe.', NULL, 'star-wars-tech.jpg', NULL, '2017-09-10 15:23:33', '2019-10-17 19:32:53'),
(282, 'show', 'Tales from the Crypt', 'The iconic Crypt Keeper relates tales of horror in the vein of the gruesome E.C. comic books of the 1950s.', NULL, 'tales-from-the-crypt.jpg', NULL, '2017-09-10 15:28:01', '2019-10-17 19:32:53'),
(283, 'show', 'The Ricky Gervais Show', 'Ricky Gervais and Stephen Merchant talk to Karl Pilkington about important things in life whilst Karl provides anything but intelligent answers. Comedy at its finest with wonderful animation.', NULL, 'the-ricky-gervais-show.jpg', NULL, '2017-09-10 15:30:35', '2019-10-17 19:32:53'),
(284, 'show', 'The Spectacular Spider-Man', 'Young Peter Parker tries to balance life as a high-schooler with his superhero responsibilities, battling such foes as Doc Ock, Sandman, and The Green Goblin.', NULL, 'the-spectacular-spiderman.jpg', NULL, '2017-09-10 15:34:08', '2019-10-17 19:32:53'),
(285, 'show', 'Todd and the Book of Pure Evil', 'A stoner metalhead named Todd Smith, his crush Jenny, his best friend Curtis, and the geeky Hannah, search their high school for a mayhem-causing Satanic spell book while being opposed by Atticus, their evil guidance counselor.', NULL, 'todd-and-the-book-of-pure-evil.jpg', NULL, '2017-09-10 15:36:02', '2019-10-17 19:32:53'),
(286, 'show', 'True Blood', 'Telepathic waitress Sookie Stackhouse encounters a strange new supernatural world when she meets the mysterious Bill, a southern Louisiana gentleman and vampire.', NULL, 'true-blood.jpg', NULL, '2017-09-10 15:38:34', '2019-10-17 19:32:53'),
(287, 'show', 'Garth Marenghi\'s Darkplace', 'This parody series is an unearthed 80s horror/drama, complete with poor production values, awful dialogue and hilarious violence. The series is set in a Hospital in Romford, which is situated over the gates of Hell.', NULL, 'garth-marenghis-darkplace.jpg', NULL, '2017-10-07 17:29:16', '2019-10-17 19:32:53'),
(288, 'show', 'Ash vs Evil Dead', 'Having spent the last 30 years of his life avoiding responsibility and maturity, Ash must now face the resurrected threat of the Deadites. Accompanied by two co-workers, he must try to find a way to use the Necronomicon Ex-Mortis to put an end to the demonic forces and save the world from sure destruction.', NULL, 'ash-vs-evil-dead.jpg', NULL, '2017-11-04 14:35:14', '2019-10-17 19:32:53'),
(289, 'show', 'Summer Heights High', 'The daily routines and dysfunctional relationships of several students and teachers at an Australian public school are captured in this mockumentary series.', NULL, 'summer-heights-high.jpg', NULL, '2017-11-05 09:10:21', '2019-10-17 19:32:53'),
(290, 'show', 'Community', 'A disgraced lawyer with a fake law degree is forced to enroll in a cut-rate community college with an eclectic, and eccentric, student body.', NULL, 'community.jpg', NULL, '2017-11-05 12:16:13', '2019-10-17 19:32:53'),
(291, 'show', 'The Moaning of Life', 'Karl Pilkington is faced with the different aspects of life by travelling around the world and discovering how different people face life\'s challenges.', NULL, 'the-moaning-of-life.jpg', NULL, '2018-07-01 08:54:26', '2019-10-17 19:32:53'),
(292, 'movie', 'Spider-Man: Far From Home', 'Following the events of Avengers: Endgame, Spider-Man must step up to take on new threats in a world without Tony Stark.', NULL, 'spiderman-far-from-home.jpg', 'spiderman-far-from-home.jpg', '2019-10-19 15:20:39', '2019-10-19 15:20:40'),
(293, 'movie', 'Avengers: Endgame', 'After the devastating events of Avengers: Infinity War, the universe is in ruins. With the help of their few remaining allies, the Avengers assemble once more in order to reverse the actions of the evil Thanos and restore balance to the universe.', NULL, 'avengers-endgame.jpg', NULL, '2019-11-16 03:49:20', '2019-11-15 22:50:54'),
(294, 'movie', '13 Real Asian Horror Stories', '13 supposedly true Japanese horror stories are depicted in this horror anthology.', 'Japanese with English subtitles', '13-real-asian-horror-stories.jpeg', NULL, '2019-11-16 17:17:04', '2019-11-16 17:17:04'),
(295, 'movie', '21', '"21" is the fact-based story about six MIT students who were trained to become experts in card counting and subsequently took Vegas casinos for millions in winnings.', NULL, '21.jpeg', NULL, '2019-11-23 20:21:18', '2019-11-23 20:21:18'),
(296, 'movie', 'The 40-Year-Old Virgin', 'Goaded by his buddies, a nerdy guy who\'s never "done the deed" finds the pressure mounting when he meets a single mother.', NULL, 'the-40yearold-virgin.jpeg', NULL, '2019-11-23 20:26:19', '2019-11-23 20:26:19'),
(297, 'movie', 'Body Bags', 'In this horror anthology, John Carpenter portrays an undead coroner who recounts the unfortunate fates of the recently deceased who fill his morgue.', NULL, 'body-bags.jpeg', NULL, '2019-11-23 20:31:14', '2019-11-23 20:31:14'),
(298, 'movie', 'the Matrix Reloaded', 'As freedom fighters Neo, Trinity, and Morpheus continue to lead the revolt against the Machine Army, they gain greater insight into the construct of The Matrix and Neo\'s pivotal role in the fate of mankind.', NULL, 'the-matrix-reloaded.jpeg', NULL, '2019-11-23 20:34:51', '2019-11-23 20:34:51'),
(299, 'movie', 'Waxwork', 'A wax museum owner uses his horror exhibits to unleash evil on the world.', NULL, 'waxwork.jpeg', NULL, '2019-11-23 20:36:03', '2019-11-23 20:36:03'),
(300, 'movie', 'Waxwork II: Lost in Time', 'Lovers flee through the centuries on a time-trip of terror in a showdown with an evil demon lord.', NULL, 'waxwork-ii-lost-in-time.jpeg', NULL, '2019-11-23 20:38:02', '2019-11-23 20:38:02'),
(301, 'movie', 'The Guest', '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.', NULL, 'the-guest.jpeg', NULL, '2019-11-23 20:45:17', '2019-11-23 20:45:17'),
(302, 'movie', 'A Dark Song', '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.', NULL, 'a-dark-song.jpeg', NULL, '2019-11-23 22:01:39', '2019-11-23 22:01:39'),
(303, 'movie', 'Us', 'A family\'s serene beach vacation turns to chaos when their doppelgangers appear and begin to terrorize them.', NULL, 'us.jpeg', NULL, '2019-11-24 19:38:16', '2019-11-24 19:38:16'),
(304, 'movie', 'The Matrix Revolutions', '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.', NULL, 'the-matrix-revolutions.jpeg', NULL, '2019-11-24 19:42:26', '2019-11-24 19:42:26'),
(305, 'movie', 'The Animatrix', 'The Animatrix is a collection of several animated short films, detailing the backstory of the "Matrix" universe, and the original war between man and machines which led to the creation of the Matrix.', NULL, 'the-animatrix.jpeg', NULL, '2019-11-24 21:53:00', '2019-11-24 21:53:00'),
(306, 'movie', 'The Abyss', 'A civilian diving team is enlisted to search for a lost nuclear submarine and face danger while encountering an aquatic alien species.', NULL, 'the-abyss.jpeg', NULL, '2019-11-24 21:54:29', '2019-11-24 21:54:29');
/*!40000 ALTER TABLE `media` ENABLE KEYS */;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
-- --------------------------------------------------------
-- Host: 192.168.1.204
-- Server version: 10.3.17-MariaDB-0+deb10u1 - Raspbian 10
-- Server OS: debian-linux-gnueabihf
-- HeidiSQL Version: 9.5.0.5196
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
-- Dumping data for table pi_theater_2.users: ~2 rows (approximately)
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` (`id`, `name`, `email`, `password`, `admin`, `remember_token`, `created_at`, `updated_at`) VALUES
(1, 'Steve', '[email protected]', '$2y$10$3VD0jIXf3EqDGkG7ATz4/.crsirM5fCqYbHncuF3NGfgcrKYkIqf6', 1, 'K9QKqkGmqHaIm0bEFpCzowR0wbiKvc2et3e9rvPLLmzP3Vj1IiGwoFYo6FFI', '2019-10-20 13:48:31', '2019-10-25 13:47:30'),
(2, 'Tester', '[email protected]', '$2y$10$NfyVkPviyXRqbRI6r9WX.OJnOs9mfD5x0knbblux4TAFsaWf8l5r.', 0, 'VXvdHh1H4wjWyn2g1fnYCxtD7Gf5sa8X1ZzXiRsPfdJ1UYzEDwuLOn450AVY', '2019-10-23 17:11:52', '2019-10-23 13:59:06');
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
-- --------------------------------------------------------
-- Host: 192.168.1.204
-- Server version: 10.3.17-MariaDB-0+deb10u1 - Raspbian 10
-- Server OS: debian-linux-gnueabihf
-- HeidiSQL Version: 9.5.0.5196
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
-- Dumping data for table pi_theater_2.collection_media: ~220 rows (approximately)
/*!40000 ALTER TABLE `collection_media` DISABLE KEYS */;
INSERT INTO `collection_media` (`collection_id`, `media_id`, `created_at`, `updated_at`) VALUES
(1, 3, '2017-11-04 10:36:37', '2019-10-17 19:33:10'),
(1, 12, '2017-11-04 10:36:37', '2019-10-17 19:33:10'),
(1, 32, '2017-11-04 10:36:37', '2019-10-17 19:33:10'),
(1, 33, '2017-11-04 10:36:37', '2019-10-17 19:33:10'),
(1, 39, '2017-11-04 10:36:37', '2019-10-17 19:33:10'),
(1, 40, '2017-11-04 10:36:37', '2019-10-17 19:33:10'),
(1, 41, '2017-11-04 10:36:37', '2019-10-17 19:33:10'),
(1, 47, '2017-11-04 10:36:37', '2019-10-17 19:33:10'),
(1, 67, '2017-11-04 10:36:37', '2019-10-17 19:33:10'),
(1, 68, '2017-11-04 10:36:37', '2019-10-17 19:33:10'),
(1, 69, '2017-11-04 10:36:37', '2019-10-17 19:33:10'),
(1, 91, '2017-11-04 10:36:37', '2019-10-17 19:33:10'),
(1, 131, '2017-12-31 16:54:12', '2019-10-17 19:33:10'),
(1, 133, '2018-01-01 17:04:58', '2019-10-17 19:33:10'),
(1, 134, '2018-01-01 17:12:06', '2019-10-17 19:33:10'),
(1, 135, '2018-01-04 11:33:08', '2019-10-17 19:33:10'),
(1, 146, '2018-02-02 18:39:33', '2019-10-17 19:33:10'),
(1, 148, '2018-02-10 14:05:50', '2019-10-17 19:33:10'),
(1, 152, '2018-03-24 10:07:16', '2019-10-17 19:33:10'),
(1, 164, '2018-04-14 10:58:10', '2019-10-17 19:33:10'),
(1, 208, '2018-07-07 09:02:16', '2019-10-17 19:33:10'),
(1, 267, '2019-05-26 12:32:41', '2019-10-17 19:33:11'),
(1, 306, '2019-11-24 16:54:29', '2019-11-24 16:54:29'),
(2, 60, '2017-10-26 20:54:36', '2019-10-17 19:33:10'),
(2, 73, '2017-10-26 20:54:36', '2019-10-17 19:33:10'),
(2, 74, '2017-10-26 20:54:36', '2019-10-17 19:33:10'),
(2, 78, '2017-10-26 20:54:36', '2019-10-17 19:33:10'),
(2, 79, '2017-10-26 20:54:36', '2019-10-17 19:33:10'),
(2, 95, '2017-10-26 20:54:36', '2019-10-17 19:33:10'),
(2, 96, '2017-10-26 20:54:36', '2019-10-17 19:33:10'),
(2, 131, '2017-12-31 16:54:12', '2019-10-17 19:33:10'),
(2, 132, '2017-12-31 16:57:10', '2019-10-17 19:33:10'),
(2, 193, '2018-06-17 19:00:32', '2019-10-17 19:33:10'),
(2, 273, '2017-10-26 20:54:36', '2019-10-17 19:33:10'),
(2, 274, '2017-10-26 20:54:37', '2019-10-17 19:33:10'),
(3, 16, '2017-11-05 10:43:12', '2019-10-17 19:33:10'),
(3, 28, '2017-11-05 10:55:42', '2019-10-17 19:33:10'),
(3, 55, '2017-11-05 10:43:12', '2019-10-17 19:33:10'),
(3, 57, '2017-11-05 10:43:12', '2019-10-17 19:33:10'),
(3, 62, '2017-11-05 10:43:12', '2019-10-17 19:33:10'),
(3, 64, '2017-11-05 10:43:12', '2019-10-17 19:33:10'),
(3, 65, '2017-11-05 10:43:12', '2019-10-17 19:33:10'),
(3, 71, '2017-11-05 10:43:12', '2019-10-17 19:33:10'),
(3, 75, '2017-11-05 10:43:12', '2019-10-17 19:33:10'),
(3, 77, '2017-11-05 10:43:12', '2019-10-17 19:33:10'),
(3, 81, '2017-11-23 08:01:04', '2019-10-17 19:33:10'),
(3, 84, '2017-11-05 10:43:12', '2019-10-17 19:33:10'),
(3, 97, '2017-11-05 10:43:12', '2019-10-17 19:33:10'),
(3, 122, '2017-12-16 17:09:26', '2019-10-17 19:33:10'),
(3, 135, '2018-01-04 11:33:08', '2019-10-17 19:33:10'),
(3, 149, '2018-02-17 17:21:29', '2019-10-17 19:33:10'),
(3, 157, '2018-04-07 12:17:23', '2019-10-17 19:33:10'),
(3, 158, '2018-04-07 12:15:52', '2019-10-17 19:33:10'),
(3, 159, '2018-04-07 12:19:28', '2019-10-17 19:33:10'),
(3, 162, '2018-04-08 17:26:15', '2019-10-17 19:33:10'),
(3, 166, '2018-05-24 20:15:32', '2019-10-17 19:33:10'),
(3, 167, '2018-06-03 09:26:40', '2019-10-17 19:33:10'),
(3, 168, '2018-06-03 09:26:40', '2019-10-17 19:33:10'),
(3, 169, '2018-06-03 09:26:40', '2019-10-17 19:33:10'),
(3, 170, '2018-06-03 09:26:40', '2019-10-17 19:33:10'),
(3, 171, '2018-06-03 09:26:41', '2019-10-17 19:33:10'),
(3, 172, '2018-06-03 09:26:41', '2019-10-17 19:33:10'),
(3, 173, '2018-06-03 09:26:41', '2019-10-17 19:33:10'),
(3, 175, '2018-06-02 14:58:29', '2019-10-17 19:33:10'),
(3, 176, '2018-06-03 09:25:13', '2019-10-17 19:33:10'),
(3, 177, '2018-06-03 09:25:13', '2019-10-17 19:33:10'),
(3, 178, '2018-06-03 09:25:13', '2019-10-17 19:33:10'),
(3, 179, '2018-06-03 09:25:13', '2019-10-17 19:33:10'),
(3, 180, '2018-06-03 09:25:13', '2019-10-17 19:33:10'),
(3, 181, '2018-06-03 09:25:13', '2019-10-17 19:33:10'),
(3, 182, '2018-06-03 09:25:13', '2019-10-17 19:33:10'),
(3, 183, '2018-06-03 09:25:13', '2019-10-17 19:33:10'),
(3, 186, '2018-06-03 09:06:24', '2019-10-17 19:33:10'),
(3, 189, '2018-06-03 09:18:49', '2019-10-17 19:33:10'),
(3, 190, '2018-06-03 09:22:49', '2019-10-17 19:33:10'),
(3, 196, '2018-06-24 09:45:22', '2019-10-17 19:33:10'),
(3, 197, '2018-06-24 15:14:15', '2019-10-17 19:33:10'),
(3, 209, '2018-07-08 15:14:59', '2019-10-17 19:33:10'),
(3, 210, '2018-07-14 14:58:27', '2019-10-17 19:33:10'),
(3, 213, '2018-08-11 09:34:41', '2019-10-17 19:33:10'),
(3, 216, '2018-08-18 10:37:26', '2019-10-17 19:33:10'),
(3, 224, '2018-11-17 07:20:41', '2019-10-17 19:33:10'),
(3, 225, '2018-11-17 16:30:31', '2019-10-17 19:33:10'),
(3, 228, '2018-11-30 22:15:17', '2019-10-17 19:33:10'),
(3, 229, '2018-12-02 09:16:42', '2019-10-17 19:33:10'),
(3, 230, '2018-12-02 13:50:47', '2019-10-17 19:33:10'),
(3, 231, '2018-12-02 17:58:34', '2019-10-17 19:33:10'),
(3, 233, '2018-12-08 15:27:34', '2019-10-17 19:33:10'),
(3, 234, '2018-12-16 17:14:57', '2019-10-17 19:33:10'),
(3, 237, '2018-12-29 09:38:14', '2019-10-17 19:33:10'),
(3, 238, '2019-01-05 13:42:55', '2019-10-17 19:33:10'),
(3, 239, '2019-01-05 13:44:17', '2019-10-17 19:33:10'),
(3, 240, '2019-01-11 19:21:44', '2019-10-17 19:33:10'),
(3, 241, '2019-01-15 09:20:27', '2019-10-17 19:33:11'),
(3, 242, '2019-01-20 07:29:15', '2019-10-17 19:33:11'),
(3, 243, '2019-02-22 20:55:33', '2019-10-17 19:33:11'),
(3, 244, '2019-02-23 23:03:20', '2019-10-17 19:33:11'),
(3, 245, '2019-02-23 23:04:13', '2019-10-17 19:33:11'),
(3, 246, '2019-02-23 23:05:53', '2019-10-17 19:33:11'),
(3, 247, '2019-03-02 17:37:22', '2019-10-17 19:33:11'),
(3, 248, '2019-03-09 07:01:20', '2019-10-17 19:33:11'),
(3, 252, '2019-04-07 17:11:02', '2019-10-17 19:33:11'),
(3, 253, '2019-04-07 17:16:26', '2019-10-17 19:33:11'),
(3, 254, '2019-04-07 17:20:56', '2019-10-17 19:33:11'),
(3, 256, '2019-04-12 17:48:08', '2019-10-17 19:33:11'),
(3, 261, '2019-04-20 12:30:45', '2019-10-17 19:33:11'),
(3, 265, '2019-05-05 13:23:04', '2019-10-17 19:33:11'),
(3, 266, '2019-05-05 13:25:22', '2019-10-17 19:33:11'),
(3, 297, '2019-11-23 15:31:14', '2019-11-23 15:31:14'),
(3, 299, '2019-11-23 15:36:03', '2019-11-23 15:36:03'),
(3, 300, '2019-11-23 15:38:03', '2019-11-23 15:38:03'),
(4, 14, '2017-10-14 10:24:28', '2019-10-17 19:33:10'),
(4, 22, '2017-10-14 10:24:28', '2019-10-17 19:33:10'),
(4, 23, '2017-10-14 10:24:28', '2019-10-17 19:33:10'),
(4, 24, '2017-10-14 10:24:28', '2019-10-17 19:33:10'),
(4, 37, '2017-10-14 10:24:28', '2019-10-17 19:33:10'),
(4, 60, '2017-10-14 10:24:28', '2019-10-17 19:33:10'),
(4, 73, '2017-10-14 10:24:28', '2019-10-17 19:33:10'),
(4, 74, '2017-10-14 10:24:28', '2019-10-17 19:33:10'),
(4, 78, '2017-10-14 10:24:28', '2019-10-17 19:33:10'),
(4, 79, '2017-10-14 10:24:28', '2019-10-17 19:33:10'),
(4, 82, '2017-10-14 10:24:28', '2019-10-17 19:33:10'),
(4, 95, '2017-10-20 23:21:28', '2019-10-17 19:33:10'),
(4, 96, '2017-10-21 09:50:50', '2019-10-17 19:33:10'),
(4, 131, '2017-12-31 16:54:12', '2019-10-17 19:33:10'),
(4, 132, '2017-12-31 16:57:10', '2019-10-17 19:33:10'),
(4, 150, '2018-03-03 11:48:03', '2019-10-17 19:33:10'),
(4, 191, '2018-06-09 17:05:23', '2019-10-17 19:33:10'),
(4, 193, '2018-06-17 19:00:32', '2019-10-17 19:33:10'),
(4, 194, '2018-06-21 18:51:20', '2019-10-17 19:33:10'),
(4, 195, '2018-06-23 10:43:38', '2019-10-17 19:33:10'),
(4, 273, '2017-10-14 10:24:28', '2019-10-17 19:33:10'),
(4, 274, '2017-10-14 10:24:28', '2019-10-17 19:33:10'),
(5, 65, '2017-10-10 19:53:55', '2019-10-17 19:33:10'),
(5, 75, '2017-10-10 19:53:55', '2019-10-17 19:33:10'),
(5, 77, '2017-10-10 19:53:55', '2019-10-17 19:33:10'),
(5, 99, '2017-10-24 20:37:28', '2019-10-17 19:33:10'),
(5, 288, '2017-11-04 14:35:14', '2019-10-17 19:33:10'),
(6, 38, '2017-10-10 18:52:25', '2019-10-17 19:33:09'),
(6, 47, '2017-10-10 18:52:25', '2019-10-17 19:33:09'),
(6, 57, '2017-10-10 18:52:24', '2019-10-17 19:33:09'),
(6, 62, '2017-10-10 18:52:24', '2019-10-17 19:33:09'),
(6, 65, '2017-10-10 18:52:24', '2019-10-17 19:33:09'),
(6, 71, '2017-10-10 18:52:25', '2019-10-17 19:33:09'),
(6, 72, '2017-10-10 18:52:25', '2019-10-17 19:33:09'),
(6, 180, '2018-10-20 09:14:57', '2019-10-17 19:33:10'),
(6, 184, '2018-06-03 09:01:39', '2019-10-17 19:33:10'),
(6, 188, '2018-06-03 09:12:23', '2019-10-17 19:33:10'),
(6, 275, '2017-10-10 18:52:25', '2019-10-17 19:33:10'),
(6, 276, '2017-10-10 18:52:25', '2019-10-17 19:33:10'),
(6, 301, '2019-11-23 15:45:18', '2019-11-23 15:45:18'),
(7, 199, '2018-06-30 09:17:28', '2019-10-17 19:33:10'),
(7, 200, '2018-06-30 09:19:43', '2019-10-17 19:33:10'),
(7, 201, '2018-06-30 09:21:20', '2019-10-17 19:33:10'),
(7, 202, '2018-06-30 09:27:07', '2019-10-17 19:33:10'),
(7, 203, '2018-06-30 09:36:48', '2019-10-17 19:33:10'),
(7, 204, '2018-06-30 09:38:24', '2019-10-17 19:33:10'),
(7, 205, '2018-06-30 09:39:53', '2019-10-17 19:33:10'),
(7, 206, '2018-06-30 09:41:26', '2019-10-17 19:33:10'),
(8, 6, '2017-10-14 10:18:05', '2019-10-17 19:33:10'),
(8, 15, '2017-10-14 10:18:05', '2019-10-17 19:33:10'),
(8, 20, '2017-10-14 10:18:06', '2019-10-17 19:33:10'),
(8, 26, '2017-10-14 10:18:06', '2019-10-17 19:33:10'),
(8, 34, '2017-10-14 10:18:06', '2019-10-17 19:33:10'),
(8, 46, '2017-10-14 10:18:05', '2019-10-17 19:33:10'),
(8, 52, '2017-10-14 10:18:06', '2019-10-17 19:33:10'),
(8, 53, '2017-10-14 10:18:06', '2019-10-17 19:33:10'),
(8, 54, '2017-10-14 10:18:06', '2019-10-17 19:33:10'),
(8, 83, '2017-10-14 10:18:06', '2019-10-17 19:33:10'),
(8, 88, '2017-10-14 10:18:05', '2019-10-17 19:33:10'),
(8, 92, '2017-10-15 10:01:43', '2019-10-17 19:33:10'),
(8, 93, '2017-10-16 19:41:09', '2019-10-17 19:33:10'),
(8, 94, '2017-10-18 20:58:12', '2019-10-17 19:33:10'),
(8, 98, '2017-10-21 12:28:24', '2019-10-17 19:33:10'),
(8, 102, '2017-10-28 14:20:22', '2019-10-17 19:33:10'),
(8, 104, '2017-10-28 16:07:59', '2019-10-17 19:33:10'),
(8, 106, '2017-10-29 12:39:51', '2019-10-17 19:33:10'),
(8, 107, '2017-10-29 15:58:01', '2019-10-17 19:33:10'),
(8, 110, '2017-11-02 20:29:20', '2019-10-17 19:33:10'),
(8, 154, '2018-03-24 12:01:18', '2019-10-17 19:33:10'),
(8, 217, '2018-08-25 11:31:18', '2019-10-17 19:33:10'),
(8, 218, '2018-08-25 14:41:39', '2019-10-17 19:33:10'),
(8, 219, '2018-08-26 14:13:26', '2019-10-17 19:33:10'),
(8, 255, '2019-04-07 17:25:19', '2019-10-17 19:33:11'),
(8, 264, '2019-05-05 13:20:44', '2019-10-17 19:33:11'),
(8, 284, '2017-10-14 10:18:06', '2019-10-17 19:33:10'),
(8, 292, '2019-10-19 15:22:16', '2019-10-19 15:22:16'),
(8, 293, '2019-11-15 22:49:21', '2019-11-15 22:49:21'),
(9, 9, '2017-10-15 16:35:13', '2019-10-17 19:33:10'),
(9, 13, '2017-10-15 16:35:13', '2019-10-17 19:33:10'),
(9, 17, '2017-10-15 16:35:13', '2019-10-17 19:33:10'),
(9, 129, '2017-12-31 10:09:42', '2019-10-17 19:33:10'),
(9, 130, '2017-12-31 12:02:56', '2019-10-17 19:33:10'),
(10, 34, '2017-10-26 21:04:55', '2019-10-17 19:33:10'),
(10, 52, '2017-10-26 21:04:54', '2019-10-17 19:33:10'),
(10, 53, '2017-10-26 21:04:55', '2019-10-17 19:33:10'),
(10, 54, '2017-10-26 21:04:54', '2019-10-17 19:33:10'),
(10, 94, '2017-10-26 21:04:55', '2019-10-17 19:33:10'),
(10, 102, '2017-10-28 14:20:22', '2019-10-17 19:33:10'),
(10, 284, '2017-10-26 21:04:55', '2019-10-17 19:33:10'),
(10, 292, '2019-10-19 15:22:29', '2019-10-19 15:22:29'),
(11, 31, '2017-10-09 18:59:19', '2019-10-17 19:33:09'),
(11, 32, '2017-10-09 18:59:19', '2019-10-17 19:33:09'),
(11, 33, '2017-10-09 18:59:19', '2019-10-17 19:33:09'),
(11, 43, '2017-10-09 18:59:19', '2019-10-17 19:33:09'),
(11, 105, '2017-10-28 18:32:50', '2019-10-17 19:33:10'),
(11, 161, '2018-04-07 12:23:28', '2019-10-17 19:33:10'),
(11, 280, '2017-10-14 10:18:06', '2019-10-17 19:33:10'),
(11, 281, '2017-10-14 10:18:06', '2019-10-17 19:33:10'),
(12, 18, '2018-01-05 21:54:00', '2019-10-17 19:33:10'),
(12, 19, '2018-01-05 21:54:00', '2019-10-17 19:33:10'),
(12, 57, '2018-01-05 21:54:00', '2019-10-17 19:33:10'),
(12, 62, '2018-01-05 21:54:00', '2019-10-17 19:33:10'),
(12, 86, '2018-01-05 21:54:00', '2019-10-17 19:33:10'),
(12, 112, '2018-01-05 21:54:00', '2019-10-17 19:33:10'),
(12, 138, '2018-01-13 14:56:04', '2019-10-17 19:33:10'),
(12, 174, '2018-06-02 14:49:17', '2019-10-17 19:33:10'),
(12, 187, '2018-06-03 09:08:52', '2019-10-17 19:33:10'),
(12, 212, '2018-07-22 14:39:42', '2019-10-17 19:33:10'),
(12, 223, '2018-10-26 19:41:33', '2019-10-17 19:33:10');
/*!40000 ALTER TABLE `collection_media` ENABLE KEYS */;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
-- --------------------------------------------------------
-- Host: 192.168.1.204
-- Server version: 10.3.17-MariaDB-0+deb10u1 - Raspbian 10
-- Server OS: debian-linux-gnueabihf
-- HeidiSQL Version: 9.5.0.5196
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
-- Dumping data for table pi_theater_2.drive_episode: ~659 rows (approximately)
/*!40000 ALTER TABLE `drive_episode` DISABLE KEYS */;
INSERT INTO `drive_episode` (`episode_id`, `drive_id`, `filename`, `created_at`, `updated_at`) VALUES
(1, 1, 'adventure-time_s03-e01.m4v', '2019-10-18 10:55:41', '2019-10-18 10:55:41'),
(2, 1, 'adventure-time_s03-e02.mp4', '2019-10-18 10:55:41', '2019-10-18 10:55:41'),
(3, 1, 'the-ricky-gervais-show_s01-e01.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(4, 1, 'adventure-time_s03-e03.m4v', '2019-10-18 10:55:41', '2019-10-18 10:55:41'),
(5, 1, 'adventure-time_s03-e04.m4v', '2019-10-18 10:55:41', '2019-10-18 10:55:41'),
(6, 1, 'adventure-time_s03-e05.m4v', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(7, 1, 'adventure-time_s03-e06.m4v', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(8, 1, 'adventure-time_s03-e07.m4v', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(9, 1, 'adventure-time_s03-e08.m4v', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(10, 1, 'adventure-time_s03-e09.m4v', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(11, 1, 'adventure-time_s03-e10.m4v', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(12, 1, 'adventure-time_s03-e11.m4v', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(13, 1, 'adventure-time_s03-e12.m4v', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(14, 1, 'adventure-time_s03-e13.m4v', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(15, 1, 'adventure-time_s03-e14.m4v', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(16, 1, 'adventure-time_s03-e15.m4v', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(17, 1, 'adventure-time_s03-e16.m4v', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(18, 1, 'adventure-time_s03-e17.m4v', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(19, 1, 'adventure-time_s03-e18.m4v', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(20, 1, 'adventure-time_s03-e19.m4v', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(21, 1, 'adventure-time_s03-e20.m4v', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(22, 1, 'adventure-time_s03-e21.m4v', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(23, 1, 'adventure-time_s03-e22.m4v', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(24, 1, 'adventure-time_s03-e23.m4v', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(25, 1, 'adventure-time_s03-e24.m4v', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(26, 1, 'adventure-time_s03-e25.m4v', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(27, 1, 'adventure-time_s03-e26.m4v', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(28, 1, 'todd-and-the-book-of-pure-evil_s01-e01.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(29, 1, 'todd-and-the-book-of-pure-evil_s01-e02.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(30, 1, 'todd-and-the-book-of-pure-evil_s01-e03.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(31, 1, 'todd-and-the-book-of-pure-evil_s01-e04.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(32, 1, 'todd-and-the-book-of-pure-evil_s01-e05.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(33, 1, 'todd-and-the-book-of-pure-evil_s01-e06.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(34, 1, 'todd-and-the-book-of-pure-evil_s01-e07.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(35, 1, 'todd-and-the-book-of-pure-evil_s01-e08.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(36, 1, 'todd-and-the-book-of-pure-evil_s01-e09.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(37, 1, 'todd-and-the-book-of-pure-evil_s01-e10.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(38, 1, 'todd-and-the-book-of-pure-evil_s01-e11.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(39, 1, 'todd-and-the-book-of-pure-evil_s01-e12.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(40, 1, 'todd-and-the-book-of-pure-evil_s01-e13.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(41, 1, 'todd-and-the-book-of-pure-evil_s02-e01.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(42, 1, 'todd-and-the-book-of-pure-evil_s02-e02.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(43, 1, 'todd-and-the-book-of-pure-evil_s02-e03.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(44, 1, 'todd-and-the-book-of-pure-evil_s02-e04.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(45, 1, 'todd-and-the-book-of-pure-evil_s02-e05.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(46, 1, 'todd-and-the-book-of-pure-evil_s02-e06.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(47, 1, 'todd-and-the-book-of-pure-evil_s02-e07.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(48, 1, 'todd-and-the-book-of-pure-evil_s02-e08.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(49, 1, 'todd-and-the-book-of-pure-evil_s02-e09.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(50, 1, 'todd-and-the-book-of-pure-evil_s02-e10.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(51, 1, 'todd-and-the-book-of-pure-evil_s02-e11.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(52, 1, 'todd-and-the-book-of-pure-evil_s02-e12.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(53, 1, 'todd-and-the-book-of-pure-evil_s02-e13.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(54, 1, 'star-wars-tech_s01-e01.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(55, 1, 'garth-marenghis-darkplace_s01-e01.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(56, 1, 'batman-tech_s01-e01.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(57, 1, 'batman-unmasked-the-psychology-of-the-dark-knight_s01-e01.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(58, 1, 'garth-marenghis-darkplace_s01-e02.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(59, 1, 'star-wars-the-legacy-revealed_s01-e01.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(60, 1, 'bravos-30-even-scarier-movie-moments_s01-e01.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(61, 1, 'bravos-30-even-scarier-movie-moments_s01-e02.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(62, 1, 'bravos-100-scariest-movie-moments_s01-e01.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(63, 1, 'bravos-100-scariest-movie-moments_s01-e02.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(64, 1, 'bravos-100-scariest-movie-moments_s01-e03.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(65, 1, 'bravos-100-scariest-movie-moments_s01-e04.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(66, 1, 'bravos-100-scariest-movie-moments_s01-e05.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(67, 1, 'the-spectacular-spiderman_s01-e01.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(68, 1, 'the-spectacular-spiderman_s01-e02.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(69, 1, 'the-spectacular-spiderman_s01-e03.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(70, 1, 'the-spectacular-spiderman_s01-e04.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(71, 1, 'the-spectacular-spiderman_s01-e05.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(72, 1, 'the-spectacular-spiderman_s01-e06.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(73, 1, 'the-spectacular-spiderman_s01-e07.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(74, 1, 'the-spectacular-spiderman_s01-e08.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(75, 1, 'the-spectacular-spiderman_s01-e09.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(76, 1, 'the-spectacular-spiderman_s01-e10.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(77, 1, 'the-spectacular-spiderman_s01-e11.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(78, 1, 'the-spectacular-spiderman_s01-e12.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(79, 1, 'the-spectacular-spiderman_s01-e13.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(80, 1, 'the-spectacular-spiderman_s02-e01.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(81, 1, 'the-spectacular-spiderman_s02-e02.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(82, 1, 'the-spectacular-spiderman_s02-e03.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(83, 1, 'the-spectacular-spiderman_s02-e04.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(84, 1, 'the-spectacular-spiderman_s02-e05.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(85, 1, 'the-spectacular-spiderman_s02-e06.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(86, 1, 'the-spectacular-spiderman_s02-e07.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(87, 1, 'the-spectacular-spiderman_s02-e08.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(88, 1, 'the-spectacular-spiderman_s02-e09.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(89, 1, 'the-spectacular-spiderman_s02-e10.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(90, 1, 'the-spectacular-spiderman_s02-e11.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(91, 1, 'the-spectacular-spiderman_s02-e12.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(92, 1, 'the-spectacular-spiderman_s02-e13.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(93, 1, 'true-blood_s01-e01.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(94, 1, 'true-blood_s01-e02.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(95, 1, 'true-blood_s01-e03.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(96, 1, 'true-blood_s01-e04.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(97, 1, 'true-blood_s01-e05.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(98, 1, 'true-blood_s01-e06.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(99, 1, 'true-blood_s01-e07.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(100, 1, 'true-blood_s01-e08.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(101, 1, 'true-blood_s01-e09.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(102, 1, 'true-blood_s01-e10.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(103, 1, 'true-blood_s01-e11.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(104, 1, 'true-blood_s01-e12.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(105, 1, 'garth-marenghis-darkplace_s01-e03.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(106, 1, 'garth-marenghis-darkplace_s01-e04.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(107, 1, 'garth-marenghis-darkplace_s01-e05.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(108, 1, 'garth-marenghis-darkplace_s01-e06.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(109, 1, 'true-blood_s02-e01.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(110, 1, 'true-blood_s02-e02.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(111, 1, 'true-blood_s02-e03.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(112, 1, 'true-blood_s02-e04.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(113, 1, 'true-blood_s02-e05.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(114, 1, 'true-blood_s02-e06.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(115, 1, 'true-blood_s02-e07.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(116, 1, 'true-blood_s02-e08.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(117, 1, 'true-blood_s02-e09.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(118, 1, 'true-blood_s02-e10.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(119, 1, 'true-blood_s02-e11.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(120, 1, 'true-blood_s02-e12.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(121, 1, 'true-blood_s03-e01.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(122, 1, 'true-blood_s03-e02.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(123, 1, 'true-blood_s03-e03.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(124, 1, 'true-blood_s03-e04.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(125, 1, 'true-blood_s03-e05.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(126, 1, 'true-blood_s03-e06.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(127, 1, 'true-blood_s03-e07.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(128, 1, 'true-blood_s03-e08.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(129, 1, 'true-blood_s03-e09.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(130, 1, 'true-blood_s03-e10.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(131, 1, 'true-blood_s03-e11.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(132, 1, 'true-blood_s03-e12.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(133, 1, 'true-blood_s04-e01.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(134, 1, 'true-blood_s04-e02.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(135, 1, 'true-blood_s04-e03.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(136, 1, 'true-blood_s04-e04.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(137, 1, 'true-blood_s04-e05.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(138, 1, 'true-blood_s04-e06.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(139, 1, 'true-blood_s04-e07.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(140, 1, 'true-blood_s04-e08.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(141, 1, 'true-blood_s04-e09.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(142, 1, 'true-blood_s04-e10.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(143, 1, 'true-blood_s04-e11.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(144, 1, 'true-blood_s04-e12.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(145, 1, 'true-blood_s05-e01.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(146, 1, 'true-blood_s05-e02.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(147, 1, 'true-blood_s05-e03.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(148, 1, 'true-blood_s05-e04.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(149, 1, 'true-blood_s05-e05.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(150, 1, 'true-blood_s05-e06.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(151, 1, 'true-blood_s05-e07.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(152, 1, 'true-blood_s05-e08.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(153, 1, 'true-blood_s05-e09.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(154, 1, 'true-blood_s05-e10.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(155, 1, 'true-blood_s05-e11.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(156, 1, 'true-blood_s05-e12.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(157, 1, 'true-blood_s06-e01.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(158, 1, 'true-blood_s06-e02.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(159, 1, 'true-blood_s06-e03.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(160, 1, 'true-blood_s06-e04.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(161, 1, 'true-blood_s06-e05.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(162, 1, 'true-blood_s06-e06.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(163, 1, 'true-blood_s06-e07.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(164, 1, 'true-blood_s06-e08.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(165, 1, 'true-blood_s06-e09.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(166, 1, 'true-blood_s06-e10.mp4', '2019-10-18 10:55:44', '2019-10-18 10:55:44'),
(167, 1, 'an-idiot-abroad_s01-e00.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(168, 1, 'an-idiot-abroad_s01-e01.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(169, 1, 'an-idiot-abroad_s01-e02.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(170, 1, 'an-idiot-abroad_s01-e03.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(171, 1, 'an-idiot-abroad_s01-e04.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(172, 1, 'an-idiot-abroad_s01-e05.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(173, 1, 'an-idiot-abroad_s01-e06.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(174, 1, 'an-idiot-abroad_s01-e07.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(175, 1, 'an-idiot-abroad_s01-e08.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(176, 1, 'an-idiot-abroad_s02-e01.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(177, 1, 'an-idiot-abroad_s02-e02.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(178, 1, 'an-idiot-abroad_s02-e03.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(179, 1, 'an-idiot-abroad_s02-e04.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(180, 1, 'an-idiot-abroad_s02-e05.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(181, 1, 'mystery-science-theater-3000_s10-e04.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(182, 1, 'an-idiot-abroad_s02-e06.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(183, 1, 'an-idiot-abroad_s02-e07.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(184, 1, 'an-idiot-abroad_s02-e08.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(185, 1, 'an-idiot-abroad_s03-e01.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(186, 1, 'an-idiot-abroad_s03-e02.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(187, 1, 'an-idiot-abroad_s03-e03.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(188, 1, 'are-you-afraid-of-the-dark_s01-e01.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(189, 1, 'mystery-science-theater-3000_s11-e12.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(190, 1, 'mystery-science-theater-3000_s10-e07.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(191, 1, 'night-visions_s01-e01.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(192, 1, 'night-visions_s01-e02.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(193, 1, 'night-visions_s01-e03.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(194, 1, 'night-visions_s01-e04.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(195, 1, 'night-visions_s01-e05.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(196, 1, 'night-visions_s01-e06.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(197, 1, 'night-visions_s01-e07.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(198, 1, 'night-visions_s01-e08.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(199, 1, 'night-visions_s01-e09.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(200, 1, 'night-visions_s01-e10.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(201, 1, 'night-visions_s01-e11.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(202, 1, 'night-visions_s01-e12.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(203, 1, 'night-visions_s01-e13.mp4', '2019-10-18 10:55:43', '2019-10-18 10:55:43'),
(204, 1, 'are-you-afraid-of-the-dark_s01-e02.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(205, 1, 'are-you-afraid-of-the-dark_s01-e03.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(206, 1, 'are-you-afraid-of-the-dark_s01-e04.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(207, 1, 'are-you-afraid-of-the-dark_s01-e05.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(208, 1, 'are-you-afraid-of-the-dark_s01-e06.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(209, 1, 'are-you-afraid-of-the-dark_s01-e07.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(210, 1, 'are-you-afraid-of-the-dark_s01-e08.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(211, 1, 'are-you-afraid-of-the-dark_s01-e09.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(212, 1, 'are-you-afraid-of-the-dark_s01-e10.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(213, 1, 'are-you-afraid-of-the-dark_s01-e11.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(214, 1, 'are-you-afraid-of-the-dark_s01-e12.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(215, 1, 'are-you-afraid-of-the-dark_s01-e13.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(216, 1, 'are-you-afraid-of-the-dark_s02-e01.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(217, 1, 'are-you-afraid-of-the-dark_s02-e02.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(218, 1, 'are-you-afraid-of-the-dark_s02-e03.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(219, 1, 'are-you-afraid-of-the-dark_s02-e04.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(220, 1, 'are-you-afraid-of-the-dark_s02-e05.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(221, 1, 'are-you-afraid-of-the-dark_s02-e06.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(222, 1, 'are-you-afraid-of-the-dark_s02-e07.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(223, 1, 'are-you-afraid-of-the-dark_s02-e08.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(224, 1, 'are-you-afraid-of-the-dark_s02-e09.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(225, 1, 'are-you-afraid-of-the-dark_s02-e10.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(226, 1, 'are-you-afraid-of-the-dark_s02-e11.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(227, 1, 'are-you-afraid-of-the-dark_s02-e12.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(228, 1, 'are-you-afraid-of-the-dark_s02-e13.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(229, 1, 'are-you-afraid-of-the-dark_s03-e01.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(230, 1, 'are-you-afraid-of-the-dark_s03-e02.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(231, 1, 'are-you-afraid-of-the-dark_s03-e03.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(232, 1, 'are-you-afraid-of-the-dark_s03-e04.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(233, 1, 'are-you-afraid-of-the-dark_s03-e05.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(234, 1, 'are-you-afraid-of-the-dark_s03-e06.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(235, 1, 'are-you-afraid-of-the-dark_s03-e07.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(236, 1, 'are-you-afraid-of-the-dark_s03-e08.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(237, 1, 'are-you-afraid-of-the-dark_s03-e09.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(238, 1, 'are-you-afraid-of-the-dark_s03-e10.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(239, 1, 'are-you-afraid-of-the-dark_s03-e11.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(240, 1, 'are-you-afraid-of-the-dark_s03-e12.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(241, 1, 'are-you-afraid-of-the-dark_s03-e13.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(242, 1, 'are-you-afraid-of-the-dark_s04-e01.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(243, 1, 'are-you-afraid-of-the-dark_s04-e02.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(244, 1, 'are-you-afraid-of-the-dark_s04-e03.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(245, 1, 'are-you-afraid-of-the-dark_s04-e04.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(246, 1, 'are-you-afraid-of-the-dark_s04-e05.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(247, 1, 'are-you-afraid-of-the-dark_s04-e06.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(248, 1, 'are-you-afraid-of-the-dark_s04-e07.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(249, 1, 'are-you-afraid-of-the-dark_s04-e08.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(250, 1, 'are-you-afraid-of-the-dark_s04-e09.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(251, 1, 'are-you-afraid-of-the-dark_s04-e10.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(252, 1, 'are-you-afraid-of-the-dark_s04-e11.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(253, 1, 'are-you-afraid-of-the-dark_s04-e12.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(254, 1, 'are-you-afraid-of-the-dark_s04-e13.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(255, 1, 'are-you-afraid-of-the-dark_s05-e01.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(256, 1, 'are-you-afraid-of-the-dark_s05-e02.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(257, 1, 'are-you-afraid-of-the-dark_s05-e03.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(258, 1, 'are-you-afraid-of-the-dark_s05-e04.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(259, 1, 'are-you-afraid-of-the-dark_s05-e05.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(260, 1, 'are-you-afraid-of-the-dark_s05-e06.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(261, 1, 'are-you-afraid-of-the-dark_s05-e07.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(262, 1, 'are-you-afraid-of-the-dark_s05-e08.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(263, 1, 'are-you-afraid-of-the-dark_s05-e09.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(264, 1, 'are-you-afraid-of-the-dark_s05-e10.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(265, 1, 'are-you-afraid-of-the-dark_s05-e11.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(266, 1, 'are-you-afraid-of-the-dark_s05-e12.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(267, 1, 'are-you-afraid-of-the-dark_s05-e13.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(268, 1, 'are-you-afraid-of-the-dark_s06-e01.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(269, 1, 'are-you-afraid-of-the-dark_s06-e02.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(270, 1, 'are-you-afraid-of-the-dark_s06-e03.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(271, 1, 'are-you-afraid-of-the-dark_s06-e04.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(272, 1, 'are-you-afraid-of-the-dark_s06-e05.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(273, 1, 'are-you-afraid-of-the-dark_s06-e06.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(274, 1, 'are-you-afraid-of-the-dark_s06-e07.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(275, 1, 'are-you-afraid-of-the-dark_s06-e08.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(276, 1, 'are-you-afraid-of-the-dark_s06-e09.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(277, 1, 'are-you-afraid-of-the-dark_s06-e10.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),
(278, 1, 'are-you-afraid-of-the-dark_s06-e11.mp4', '2019-10-18 10:55:42', '2019-10-18 10:55:42'),