-- -- PostgreSQL database dump -- -- Started on 2006-07-12 01:29:42 CST SET client_encoding = 'LATIN1'; SET check_function_bodies = false; SET client_min_messages = warning; -- -- TOC entry 1676 (class 0 OID 0) -- Dependencies: 4 -- Name: SCHEMA public; Type: COMMENT; Schema: -; Owner: postgres -- COMMENT ON SCHEMA public IS 'Standard public schema'; SET search_path = public, pg_catalog; SET default_tablespace = ''; SET default_with_oids = false; -- -- TOC entry 1211 (class 1259 OID 60337) -- Dependencies: 4 -- Name: actors; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE actors ( id serial NOT NULL, first_name character varying(45), last_name character varying(45) ); -- -- TOC entry 1226 (class 1259 OID 60393) -- Dependencies: 4 -- Name: actors_films; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE actors_films ( actor_id integer NOT NULL, film_id integer NOT NULL ); -- -- TOC entry 1677 (class 0 OID 0) -- Dependencies: 1210 -- Name: actors_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('actors', 'id'), 201, false); -- -- TOC entry 1213 (class 1259 OID 60342) -- Dependencies: 1561 1562 1563 1564 4 -- Name: addresses; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE addresses ( id serial NOT NULL, address character varying(255) DEFAULT ''::character varying NOT NULL, address2 character varying(255), district character varying(60) DEFAULT ''::character varying NOT NULL, city_id integer NOT NULL, postal_code character varying(20) DEFAULT ''::character varying NOT NULL, phone character varying(20) DEFAULT ''::character varying NOT NULL ); -- -- TOC entry 1678 (class 0 OID 0) -- Dependencies: 1212 -- Name: addresses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('addresses', 'id'), 604, false); -- -- TOC entry 1215 (class 1259 OID 60351) -- Dependencies: 4 -- Name: categories; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE categories ( id serial NOT NULL, name character varying(25) ); -- -- TOC entry 1679 (class 0 OID 0) -- Dependencies: 1214 -- Name: categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('categories', 'id'), 18, false); -- -- TOC entry 1217 (class 1259 OID 60356) -- Dependencies: 1567 4 -- Name: cities; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE cities ( id serial NOT NULL, city character varying(60) DEFAULT ''::character varying NOT NULL, country_id integer NOT NULL ); -- -- TOC entry 1680 (class 0 OID 0) -- Dependencies: 1216 -- Name: cities_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('cities', 'id'), 601, false); -- -- TOC entry 1219 (class 1259 OID 60362) -- Dependencies: 1569 4 -- Name: countries; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE countries ( id serial NOT NULL, country character varying(60) DEFAULT ''::character varying NOT NULL ); -- -- TOC entry 1681 (class 0 OID 0) -- Dependencies: 1218 -- Name: countries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('countries', 'id'), 110, false); -- -- TOC entry 1221 (class 1259 OID 60368) -- Dependencies: 1571 1572 1573 4 -- Name: customers; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE customers ( id serial NOT NULL, store_id integer NOT NULL, last_name character varying(45) DEFAULT ''::character varying NOT NULL, first_name character varying(45) DEFAULT ''::character varying NOT NULL, address_id integer NOT NULL, active boolean DEFAULT true NOT NULL ); -- -- TOC entry 1682 (class 0 OID 0) -- Dependencies: 1220 -- Name: customers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('customers', 'id'), 1, false); -- -- TOC entry 1225 (class 1259 OID 60390) -- Dependencies: 4 -- Name: features; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE features ( id serial NOT NULL, name character varying(255) NOT NULL ); -- -- TOC entry 1227 (class 1259 OID 60395) -- Dependencies: 4 -- Name: features_films; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE features_films ( feature_id integer NOT NULL, film_id integer NOT NULL ); -- -- TOC entry 1683 (class 0 OID 0) -- Dependencies: 1224 -- Name: features_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('features', 'id'), 5, false); -- -- TOC entry 1223 (class 1259 OID 60376) -- Dependencies: 1575 1576 1577 1578 1579 1580 4 -- Name: films; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE films ( id serial NOT NULL, title character varying(255) DEFAULT ''::character varying NOT NULL, description text, category_id integer NOT NULL, rental_duration smallint DEFAULT 3 NOT NULL, rental_rate numeric(4,2) DEFAULT 4.99 NOT NULL, length integer, replacement_cost numeric(5,2) DEFAULT 0.00 NOT NULL, rating character varying(5) DEFAULT 'G'::character varying, CONSTRAINT film_rating_check CHECK ((((((((rating)::text = ''::text) OR ((rating)::text = 'G'::text)) OR ((rating)::text = 'PG'::text)) OR ((rating)::text = 'PG-13'::text)) OR ((rating)::text = 'R'::text)) OR ((rating)::text = 'NC-17'::text))) ); -- -- TOC entry 1684 (class 0 OID 0) -- Dependencies: 1222 -- Name: films_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('films', 'id'), 1001, false); -- -- TOC entry 1229 (class 1259 OID 60399) -- Dependencies: 4 -- Name: inventory_items; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE inventory_items ( id serial NOT NULL, film_id integer NOT NULL, store_id integer NOT NULL ); -- -- TOC entry 1685 (class 0 OID 0) -- Dependencies: 1228 -- Name: inventory_items_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('inventory_items', 'id'), 4582, false); -- -- TOC entry 1231 (class 1259 OID 60404) -- Dependencies: 4 -- Name: payments; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE payments ( id serial NOT NULL, customer_id integer NOT NULL, staff_member_id integer NOT NULL, amount numeric(5,2), payment_date timestamp(0) without time zone ); -- -- TOC entry 1686 (class 0 OID 0) -- Dependencies: 1230 -- Name: payments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('payments', 'id'), 16089, false); -- -- TOC entry 1233 (class 1259 OID 60409) -- Dependencies: 4 -- Name: rentals; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE rentals ( id serial NOT NULL, rent_date timestamp(0) without time zone NOT NULL, inventory_item_id integer NOT NULL, customer_id integer NOT NULL, return_date timestamp(0) without time zone, staff_member_id integer NOT NULL ); -- -- TOC entry 1687 (class 0 OID 0) -- Dependencies: 1232 -- Name: rentals_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('rentals', 'id'), 16089, false); -- -- TOC entry 1235 (class 1259 OID 60414) -- Dependencies: 1586 1587 1588 4 -- Name: staff_members; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE staff_members ( id serial NOT NULL, last_name character varying(45) DEFAULT ''::character varying NOT NULL, first_name character varying(45) DEFAULT ''::character varying NOT NULL, address_id integer NOT NULL, picture bytea, store_id integer, active boolean DEFAULT true NOT NULL ); -- -- TOC entry 1688 (class 0 OID 0) -- Dependencies: 1234 -- Name: staff_members_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('staff_members', 'id'), 3, false); -- -- TOC entry 1237 (class 1259 OID 60425) -- Dependencies: 4 -- Name: stores; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE stores ( id serial NOT NULL, manager_id integer, address_id integer NOT NULL ); -- -- TOC entry 1689 (class 0 OID 0) -- Dependencies: 1236 -- Name: stores_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('stores', 'id'), 3, false); -- -- TOC entry 1659 (class 0 OID 60337) -- Dependencies: 1211 -- Data for Name: actors; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO actors (id, first_name, last_name) VALUES (1, 'PENELOPE', 'GUINESS'); INSERT INTO actors (id, first_name, last_name) VALUES (2, 'NICK', 'WAHLBERG'); INSERT INTO actors (id, first_name, last_name) VALUES (3, 'ED', 'CHASE'); INSERT INTO actors (id, first_name, last_name) VALUES (4, 'JENNIFER', 'DAVIS'); INSERT INTO actors (id, first_name, last_name) VALUES (5, 'JOHNNY', 'LOLLOBRIGIDA'); INSERT INTO actors (id, first_name, last_name) VALUES (6, 'BETTE', 'NICHOLSON'); INSERT INTO actors (id, first_name, last_name) VALUES (7, 'GRACE', 'MOSTEL'); INSERT INTO actors (id, first_name, last_name) VALUES (8, 'MATTHEW', 'JOHANSSON'); INSERT INTO actors (id, first_name, last_name) VALUES (9, 'JOE', 'SWANK'); INSERT INTO actors (id, first_name, last_name) VALUES (10, 'CHRISTIAN', 'GABLE'); INSERT INTO actors (id, first_name, last_name) VALUES (11, 'ZERO', 'CAGE'); INSERT INTO actors (id, first_name, last_name) VALUES (12, 'KARL', 'BERRY'); INSERT INTO actors (id, first_name, last_name) VALUES (13, 'UMA', 'WOOD'); INSERT INTO actors (id, first_name, last_name) VALUES (14, 'VIVIEN', 'BERGEN'); INSERT INTO actors (id, first_name, last_name) VALUES (15, 'CUBA', 'OLIVIER'); INSERT INTO actors (id, first_name, last_name) VALUES (16, 'FRED', 'COSTNER'); INSERT INTO actors (id, first_name, last_name) VALUES (17, 'HELEN', 'VOIGHT'); INSERT INTO actors (id, first_name, last_name) VALUES (18, 'DAN', 'TORN'); INSERT INTO actors (id, first_name, last_name) VALUES (19, 'BOB', 'FAWCETT'); INSERT INTO actors (id, first_name, last_name) VALUES (20, 'LUCILLE', 'TRACY'); INSERT INTO actors (id, first_name, last_name) VALUES (21, 'KIRSTEN', 'PALTROW'); INSERT INTO actors (id, first_name, last_name) VALUES (22, 'ELVIS', 'MARX'); INSERT INTO actors (id, first_name, last_name) VALUES (23, 'SANDRA', 'KILMER'); INSERT INTO actors (id, first_name, last_name) VALUES (24, 'CAMERON', 'STREEP'); INSERT INTO actors (id, first_name, last_name) VALUES (25, 'KEVIN', 'BLOOM'); INSERT INTO actors (id, first_name, last_name) VALUES (26, 'RIP', 'CRAWFORD'); INSERT INTO actors (id, first_name, last_name) VALUES (27, 'JULIA', 'MCQUEEN'); INSERT INTO actors (id, first_name, last_name) VALUES (28, 'WOODY', 'HOFFMAN'); INSERT INTO actors (id, first_name, last_name) VALUES (29, 'ALEC', 'WAYNE'); INSERT INTO actors (id, first_name, last_name) VALUES (30, 'SANDRA', 'PECK'); INSERT INTO actors (id, first_name, last_name) VALUES (31, 'SISSY', 'SOBIESKI'); INSERT INTO actors (id, first_name, last_name) VALUES (32, 'TIM', 'HACKMAN'); INSERT INTO actors (id, first_name, last_name) VALUES (33, 'MILLA', 'PECK'); INSERT INTO actors (id, first_name, last_name) VALUES (34, 'AUDREY', 'OLIVIER'); INSERT INTO actors (id, first_name, last_name) VALUES (35, 'JUDY', 'DEAN'); INSERT INTO actors (id, first_name, last_name) VALUES (36, 'BURT', 'DUKAKIS'); INSERT INTO actors (id, first_name, last_name) VALUES (37, 'VAL', 'BOLGER'); INSERT INTO actors (id, first_name, last_name) VALUES (38, 'TOM', 'MCKELLEN'); INSERT INTO actors (id, first_name, last_name) VALUES (39, 'GOLDIE', 'BRODY'); INSERT INTO actors (id, first_name, last_name) VALUES (40, 'JOHNNY', 'CAGE'); INSERT INTO actors (id, first_name, last_name) VALUES (41, 'JODIE', 'DEGENERES'); INSERT INTO actors (id, first_name, last_name) VALUES (42, 'TOM', 'MIRANDA'); INSERT INTO actors (id, first_name, last_name) VALUES (43, 'KIRK', 'JOVOVICH'); INSERT INTO actors (id, first_name, last_name) VALUES (44, 'NICK', 'STALLONE'); INSERT INTO actors (id, first_name, last_name) VALUES (45, 'REESE', 'KILMER'); INSERT INTO actors (id, first_name, last_name) VALUES (46, 'PARKER', 'GOLDBERG'); INSERT INTO actors (id, first_name, last_name) VALUES (47, 'JULIA', 'BARRYMORE'); INSERT INTO actors (id, first_name, last_name) VALUES (48, 'FRANCES', 'DAY-LEWIS'); INSERT INTO actors (id, first_name, last_name) VALUES (49, 'ANNE', 'CRONYN'); INSERT INTO actors (id, first_name, last_name) VALUES (50, 'NATALIE', 'HOPKINS'); INSERT INTO actors (id, first_name, last_name) VALUES (51, 'GARY', 'PHOENIX'); INSERT INTO actors (id, first_name, last_name) VALUES (52, 'CARMEN', 'HUNT'); INSERT INTO actors (id, first_name, last_name) VALUES (53, 'MENA', 'TEMPLE'); INSERT INTO actors (id, first_name, last_name) VALUES (54, 'PENELOPE', 'PINKETT'); INSERT INTO actors (id, first_name, last_name) VALUES (55, 'FAY', 'KILMER'); INSERT INTO actors (id, first_name, last_name) VALUES (56, 'DAN', 'HARRIS'); INSERT INTO actors (id, first_name, last_name) VALUES (57, 'JUDE', 'CRUISE'); INSERT INTO actors (id, first_name, last_name) VALUES (58, 'CHRISTIAN', 'AKROYD'); INSERT INTO actors (id, first_name, last_name) VALUES (59, 'DUSTIN', 'TAUTOU'); INSERT INTO actors (id, first_name, last_name) VALUES (60, 'HENRY', 'BERRY'); INSERT INTO actors (id, first_name, last_name) VALUES (61, 'CHRISTIAN', 'NEESON'); INSERT INTO actors (id, first_name, last_name) VALUES (62, 'JAYNE', 'NEESON'); INSERT INTO actors (id, first_name, last_name) VALUES (63, 'CAMERON', 'WRAY'); INSERT INTO actors (id, first_name, last_name) VALUES (64, 'RAY', 'JOHANSSON'); INSERT INTO actors (id, first_name, last_name) VALUES (65, 'ANGELA', 'HUDSON'); INSERT INTO actors (id, first_name, last_name) VALUES (66, 'MARY', 'TANDY'); INSERT INTO actors (id, first_name, last_name) VALUES (67, 'JESSICA', 'BAILEY'); INSERT INTO actors (id, first_name, last_name) VALUES (68, 'RIP', 'WINSLET'); INSERT INTO actors (id, first_name, last_name) VALUES (69, 'KENNETH', 'PALTROW'); INSERT INTO actors (id, first_name, last_name) VALUES (70, 'MICHELLE', 'MCCONAUGHEY'); INSERT INTO actors (id, first_name, last_name) VALUES (71, 'ADAM', 'GRANT'); INSERT INTO actors (id, first_name, last_name) VALUES (72, 'SEAN', 'WILLIAMS'); INSERT INTO actors (id, first_name, last_name) VALUES (73, 'GARY', 'PENN'); INSERT INTO actors (id, first_name, last_name) VALUES (74, 'MILLA', 'KEITEL'); INSERT INTO actors (id, first_name, last_name) VALUES (75, 'BURT', 'POSEY'); INSERT INTO actors (id, first_name, last_name) VALUES (76, 'ANGELINA', 'ASTAIRE'); INSERT INTO actors (id, first_name, last_name) VALUES (77, 'CARY', 'MCCONAUGHEY'); INSERT INTO actors (id, first_name, last_name) VALUES (78, 'GROUCHO', 'SINATRA'); INSERT INTO actors (id, first_name, last_name) VALUES (79, 'MAE', 'HOFFMAN'); INSERT INTO actors (id, first_name, last_name) VALUES (80, 'RALPH', 'CRUZ'); INSERT INTO actors (id, first_name, last_name) VALUES (81, 'SCARLETT', 'DAMON'); INSERT INTO actors (id, first_name, last_name) VALUES (82, 'WOODY', 'JOLIE'); INSERT INTO actors (id, first_name, last_name) VALUES (83, 'BEN', 'WILLIS'); INSERT INTO actors (id, first_name, last_name) VALUES (84, 'JAMES', 'PITT'); INSERT INTO actors (id, first_name, last_name) VALUES (85, 'MINNIE', 'ZELLWEGER'); INSERT INTO actors (id, first_name, last_name) VALUES (86, 'GREG', 'CHAPLIN'); INSERT INTO actors (id, first_name, last_name) VALUES (87, 'SPENCER', 'PECK'); INSERT INTO actors (id, first_name, last_name) VALUES (88, 'KENNETH', 'PESCI'); INSERT INTO actors (id, first_name, last_name) VALUES (89, 'CHARLIZE', 'DENCH'); INSERT INTO actors (id, first_name, last_name) VALUES (90, 'SEAN', 'GUINESS'); INSERT INTO actors (id, first_name, last_name) VALUES (91, 'CHRISTOPHER', 'BERRY'); INSERT INTO actors (id, first_name, last_name) VALUES (92, 'KIRSTEN', 'AKROYD'); INSERT INTO actors (id, first_name, last_name) VALUES (93, 'ELLEN', 'PRESLEY'); INSERT INTO actors (id, first_name, last_name) VALUES (94, 'KENNETH', 'TORN'); INSERT INTO actors (id, first_name, last_name) VALUES (95, 'DARYL', 'WAHLBERG'); INSERT INTO actors (id, first_name, last_name) VALUES (96, 'GENE', 'WILLIS'); INSERT INTO actors (id, first_name, last_name) VALUES (97, 'MEG', 'HAWKE'); INSERT INTO actors (id, first_name, last_name) VALUES (98, 'CHRIS', 'BRIDGES'); INSERT INTO actors (id, first_name, last_name) VALUES (99, 'JIM', 'MOSTEL'); INSERT INTO actors (id, first_name, last_name) VALUES (100, 'SPENCER', 'DEPP'); INSERT INTO actors (id, first_name, last_name) VALUES (101, 'SUSAN', 'DAVIS'); INSERT INTO actors (id, first_name, last_name) VALUES (102, 'WALTER', 'TORN'); INSERT INTO actors (id, first_name, last_name) VALUES (103, 'MATTHEW', 'LEIGH'); INSERT INTO actors (id, first_name, last_name) VALUES (104, 'PENELOPE', 'CRONYN'); INSERT INTO actors (id, first_name, last_name) VALUES (105, 'SIDNEY', 'CROWE'); INSERT INTO actors (id, first_name, last_name) VALUES (106, 'GROUCHO', 'DUNST'); INSERT INTO actors (id, first_name, last_name) VALUES (107, 'GINA', 'DEGENERES'); INSERT INTO actors (id, first_name, last_name) VALUES (108, 'WARREN', 'NOLTE'); INSERT INTO actors (id, first_name, last_name) VALUES (109, 'SYLVESTER', 'DERN'); INSERT INTO actors (id, first_name, last_name) VALUES (110, 'SUSAN', 'DAVIS'); INSERT INTO actors (id, first_name, last_name) VALUES (111, 'CAMERON', 'ZELLWEGER'); INSERT INTO actors (id, first_name, last_name) VALUES (112, 'RUSSELL', 'BACALL'); INSERT INTO actors (id, first_name, last_name) VALUES (113, 'MORGAN', 'HOPKINS'); INSERT INTO actors (id, first_name, last_name) VALUES (114, 'MORGAN', 'MCDORMAND'); INSERT INTO actors (id, first_name, last_name) VALUES (115, 'HARRISON', 'BALE'); INSERT INTO actors (id, first_name, last_name) VALUES (116, 'DAN', 'STREEP'); INSERT INTO actors (id, first_name, last_name) VALUES (117, 'RENEE', 'TRACY'); INSERT INTO actors (id, first_name, last_name) VALUES (118, 'CUBA', 'ALLEN'); INSERT INTO actors (id, first_name, last_name) VALUES (119, 'WARREN', 'JACKMAN'); INSERT INTO actors (id, first_name, last_name) VALUES (120, 'PENELOPE', 'MONROE'); INSERT INTO actors (id, first_name, last_name) VALUES (121, 'LIZA', 'BERGMAN'); INSERT INTO actors (id, first_name, last_name) VALUES (122, 'SALMA', 'NOLTE'); INSERT INTO actors (id, first_name, last_name) VALUES (123, 'JULIANNE', 'DENCH'); INSERT INTO actors (id, first_name, last_name) VALUES (124, 'SCARLETT', 'BENING'); INSERT INTO actors (id, first_name, last_name) VALUES (125, 'ALBERT', 'NOLTE'); INSERT INTO actors (id, first_name, last_name) VALUES (126, 'FRANCES', 'TOMEI'); INSERT INTO actors (id, first_name, last_name) VALUES (127, 'KEVIN', 'GARLAND'); INSERT INTO actors (id, first_name, last_name) VALUES (128, 'CATE', 'MCQUEEN'); INSERT INTO actors (id, first_name, last_name) VALUES (129, 'DARYL', 'CRAWFORD'); INSERT INTO actors (id, first_name, last_name) VALUES (130, 'GRETA', 'KEITEL'); INSERT INTO actors (id, first_name, last_name) VALUES (131, 'JANE', 'JACKMAN'); INSERT INTO actors (id, first_name, last_name) VALUES (132, 'ADAM', 'HOPPER'); INSERT INTO actors (id, first_name, last_name) VALUES (133, 'RICHARD', 'PENN'); INSERT INTO actors (id, first_name, last_name) VALUES (134, 'GENE', 'HOPKINS'); INSERT INTO actors (id, first_name, last_name) VALUES (135, 'RITA', 'REYNOLDS'); INSERT INTO actors (id, first_name, last_name) VALUES (136, 'ED', 'MANSFIELD'); INSERT INTO actors (id, first_name, last_name) VALUES (137, 'MORGAN', 'WILLIAMS'); INSERT INTO actors (id, first_name, last_name) VALUES (138, 'LUCILLE', 'DEE'); INSERT INTO actors (id, first_name, last_name) VALUES (139, 'EWAN', 'GOODING'); INSERT INTO actors (id, first_name, last_name) VALUES (140, 'WHOOPI', 'HURT'); INSERT INTO actors (id, first_name, last_name) VALUES (141, 'CATE', 'HARRIS'); INSERT INTO actors (id, first_name, last_name) VALUES (142, 'JADA', 'RYDER'); INSERT INTO actors (id, first_name, last_name) VALUES (143, 'RIVER', 'DEAN'); INSERT INTO actors (id, first_name, last_name) VALUES (144, 'ANGELA', 'WITHERSPOON'); INSERT INTO actors (id, first_name, last_name) VALUES (145, 'KIM', 'ALLEN'); INSERT INTO actors (id, first_name, last_name) VALUES (146, 'ALBERT', 'JOHANSSON'); INSERT INTO actors (id, first_name, last_name) VALUES (147, 'FAY', 'WINSLET'); INSERT INTO actors (id, first_name, last_name) VALUES (148, 'EMILY', 'DEE'); INSERT INTO actors (id, first_name, last_name) VALUES (149, 'RUSSELL', 'TEMPLE'); INSERT INTO actors (id, first_name, last_name) VALUES (150, 'JAYNE', 'NOLTE'); INSERT INTO actors (id, first_name, last_name) VALUES (151, 'GEOFFREY', 'HESTON'); INSERT INTO actors (id, first_name, last_name) VALUES (152, 'BEN', 'HARRIS'); INSERT INTO actors (id, first_name, last_name) VALUES (153, 'MINNIE', 'KILMER'); INSERT INTO actors (id, first_name, last_name) VALUES (154, 'MERYL', 'GIBSON'); INSERT INTO actors (id, first_name, last_name) VALUES (155, 'IAN', 'TANDY'); INSERT INTO actors (id, first_name, last_name) VALUES (156, 'FAY', 'WOOD'); INSERT INTO actors (id, first_name, last_name) VALUES (157, 'GRETA', 'MALDEN'); INSERT INTO actors (id, first_name, last_name) VALUES (158, 'VIVIEN', 'BASINGER'); INSERT INTO actors (id, first_name, last_name) VALUES (159, 'LAURA', 'BRODY'); INSERT INTO actors (id, first_name, last_name) VALUES (160, 'CHRIS', 'DEPP'); INSERT INTO actors (id, first_name, last_name) VALUES (161, 'HARVEY', 'HOPE'); INSERT INTO actors (id, first_name, last_name) VALUES (162, 'OPRAH', 'KILMER'); INSERT INTO actors (id, first_name, last_name) VALUES (163, 'CHRISTOPHER', 'WEST'); INSERT INTO actors (id, first_name, last_name) VALUES (164, 'HUMPHREY', 'WILLIS'); INSERT INTO actors (id, first_name, last_name) VALUES (165, 'AL', 'GARLAND'); INSERT INTO actors (id, first_name, last_name) VALUES (166, 'NICK', 'DEGENERES'); INSERT INTO actors (id, first_name, last_name) VALUES (167, 'LAURENCE', 'BULLOCK'); INSERT INTO actors (id, first_name, last_name) VALUES (168, 'WILL', 'WILSON'); INSERT INTO actors (id, first_name, last_name) VALUES (169, 'KENNETH', 'HOFFMAN'); INSERT INTO actors (id, first_name, last_name) VALUES (170, 'MENA', 'HOPPER'); INSERT INTO actors (id, first_name, last_name) VALUES (171, 'OLYMPIA', 'PFEIFFER'); INSERT INTO actors (id, first_name, last_name) VALUES (172, 'GROUCHO', 'WILLIAMS'); INSERT INTO actors (id, first_name, last_name) VALUES (173, 'ALAN', 'DREYFUSS'); INSERT INTO actors (id, first_name, last_name) VALUES (174, 'MICHAEL', 'BENING'); INSERT INTO actors (id, first_name, last_name) VALUES (175, 'WILLIAM', 'HACKMAN'); INSERT INTO actors (id, first_name, last_name) VALUES (176, 'JON', 'CHASE'); INSERT INTO actors (id, first_name, last_name) VALUES (177, 'GENE', 'MCKELLEN'); INSERT INTO actors (id, first_name, last_name) VALUES (178, 'LISA', 'MONROE'); INSERT INTO actors (id, first_name, last_name) VALUES (179, 'ED', 'GUINESS'); INSERT INTO actors (id, first_name, last_name) VALUES (180, 'JEFF', 'SILVERSTONE'); INSERT INTO actors (id, first_name, last_name) VALUES (181, 'MATTHEW', 'CARREY'); INSERT INTO actors (id, first_name, last_name) VALUES (182, 'DEBBIE', 'AKROYD'); INSERT INTO actors (id, first_name, last_name) VALUES (183, 'RUSSELL', 'CLOSE'); INSERT INTO actors (id, first_name, last_name) VALUES (184, 'HUMPHREY', 'GARLAND'); INSERT INTO actors (id, first_name, last_name) VALUES (185, 'MICHAEL', 'BOLGER'); INSERT INTO actors (id, first_name, last_name) VALUES (186, 'JULIA', 'ZELLWEGER'); INSERT INTO actors (id, first_name, last_name) VALUES (187, 'RENEE', 'BALL'); INSERT INTO actors (id, first_name, last_name) VALUES (188, 'ROCK', 'DUKAKIS'); INSERT INTO actors (id, first_name, last_name) VALUES (189, 'CUBA', 'BIRCH'); INSERT INTO actors (id, first_name, last_name) VALUES (190, 'AUDREY', 'BAILEY'); INSERT INTO actors (id, first_name, last_name) VALUES (191, 'GREGORY', 'GOODING'); INSERT INTO actors (id, first_name, last_name) VALUES (192, 'JOHN', 'SUVARI'); INSERT INTO actors (id, first_name, last_name) VALUES (193, 'BURT', 'TEMPLE'); INSERT INTO actors (id, first_name, last_name) VALUES (194, 'MERYL', 'ALLEN'); INSERT INTO actors (id, first_name, last_name) VALUES (195, 'JAYNE', 'SILVERSTONE'); INSERT INTO actors (id, first_name, last_name) VALUES (196, 'BELA', 'WALKEN'); INSERT INTO actors (id, first_name, last_name) VALUES (197, 'REESE', 'WEST'); INSERT INTO actors (id, first_name, last_name) VALUES (198, 'MARY', 'KEITEL'); INSERT INTO actors (id, first_name, last_name) VALUES (199, 'JULIA', 'FAWCETT'); INSERT INTO actors (id, first_name, last_name) VALUES (200, 'THORA', 'TEMPLE'); -- -- TOC entry 1667 (class 0 OID 60393) -- Dependencies: 1226 -- Data for Name: actors_films; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO actors_films (actor_id, film_id) VALUES (1, 1); INSERT INTO actors_films (actor_id, film_id) VALUES (1, 23); INSERT INTO actors_films (actor_id, film_id) VALUES (1, 25); INSERT INTO actors_films (actor_id, film_id) VALUES (1, 106); INSERT INTO actors_films (actor_id, film_id) VALUES (1, 140); INSERT INTO actors_films (actor_id, film_id) VALUES (1, 166); INSERT INTO actors_films (actor_id, film_id) VALUES (1, 277); INSERT INTO actors_films (actor_id, film_id) VALUES (1, 361); INSERT INTO actors_films (actor_id, film_id) VALUES (1, 438); INSERT INTO actors_films (actor_id, film_id) VALUES (1, 499); INSERT INTO actors_films (actor_id, film_id) VALUES (1, 506); INSERT INTO actors_films (actor_id, film_id) VALUES (1, 509); INSERT INTO actors_films (actor_id, film_id) VALUES (1, 605); INSERT INTO actors_films (actor_id, film_id) VALUES (1, 635); INSERT INTO actors_films (actor_id, film_id) VALUES (1, 749); INSERT INTO actors_films (actor_id, film_id) VALUES (1, 832); INSERT INTO actors_films (actor_id, film_id) VALUES (1, 939); INSERT INTO actors_films (actor_id, film_id) VALUES (1, 970); INSERT INTO actors_films (actor_id, film_id) VALUES (1, 980); INSERT INTO actors_films (actor_id, film_id) VALUES (2, 3); INSERT INTO actors_films (actor_id, film_id) VALUES (2, 31); INSERT INTO actors_films (actor_id, film_id) VALUES (2, 47); INSERT INTO actors_films (actor_id, film_id) VALUES (2, 105); INSERT INTO actors_films (actor_id, film_id) VALUES (2, 132); INSERT INTO actors_films (actor_id, film_id) VALUES (2, 145); INSERT INTO actors_films (actor_id, film_id) VALUES (2, 226); INSERT INTO actors_films (actor_id, film_id) VALUES (2, 249); INSERT INTO actors_films (actor_id, film_id) VALUES (2, 314); INSERT INTO actors_films (actor_id, film_id) VALUES (2, 321); INSERT INTO actors_films (actor_id, film_id) VALUES (2, 357); INSERT INTO actors_films (actor_id, film_id) VALUES (2, 369); INSERT INTO actors_films (actor_id, film_id) VALUES (2, 399); INSERT INTO actors_films (actor_id, film_id) VALUES (2, 458); INSERT INTO actors_films (actor_id, film_id) VALUES (2, 481); INSERT INTO actors_films (actor_id, film_id) VALUES (2, 485); INSERT INTO actors_films (actor_id, film_id) VALUES (2, 518); INSERT INTO actors_films (actor_id, film_id) VALUES (2, 540); INSERT INTO actors_films (actor_id, film_id) VALUES (2, 550); INSERT INTO actors_films (actor_id, film_id) VALUES (2, 555); INSERT INTO actors_films (actor_id, film_id) VALUES (2, 561); INSERT INTO actors_films (actor_id, film_id) VALUES (2, 742); INSERT INTO actors_films (actor_id, film_id) VALUES (2, 754); INSERT INTO actors_films (actor_id, film_id) VALUES (2, 811); INSERT INTO actors_films (actor_id, film_id) VALUES (2, 958); INSERT INTO actors_films (actor_id, film_id) VALUES (3, 17); INSERT INTO actors_films (actor_id, film_id) VALUES (3, 40); INSERT INTO actors_films (actor_id, film_id) VALUES (3, 42); INSERT INTO actors_films (actor_id, film_id) VALUES (3, 87); INSERT INTO actors_films (actor_id, film_id) VALUES (3, 111); INSERT INTO actors_films (actor_id, film_id) VALUES (3, 185); INSERT INTO actors_films (actor_id, film_id) VALUES (3, 289); INSERT INTO actors_films (actor_id, film_id) VALUES (3, 329); INSERT INTO actors_films (actor_id, film_id) VALUES (3, 336); INSERT INTO actors_films (actor_id, film_id) VALUES (3, 341); INSERT INTO actors_films (actor_id, film_id) VALUES (3, 393); INSERT INTO actors_films (actor_id, film_id) VALUES (3, 441); INSERT INTO actors_films (actor_id, film_id) VALUES (3, 453); INSERT INTO actors_films (actor_id, film_id) VALUES (3, 480); INSERT INTO actors_films (actor_id, film_id) VALUES (3, 539); INSERT INTO actors_films (actor_id, film_id) VALUES (3, 618); INSERT INTO actors_films (actor_id, film_id) VALUES (3, 685); INSERT INTO actors_films (actor_id, film_id) VALUES (3, 827); INSERT INTO actors_films (actor_id, film_id) VALUES (3, 966); INSERT INTO actors_films (actor_id, film_id) VALUES (3, 967); INSERT INTO actors_films (actor_id, film_id) VALUES (3, 971); INSERT INTO actors_films (actor_id, film_id) VALUES (3, 996); INSERT INTO actors_films (actor_id, film_id) VALUES (4, 23); INSERT INTO actors_films (actor_id, film_id) VALUES (4, 25); INSERT INTO actors_films (actor_id, film_id) VALUES (4, 56); INSERT INTO actors_films (actor_id, film_id) VALUES (4, 62); INSERT INTO actors_films (actor_id, film_id) VALUES (4, 79); INSERT INTO actors_films (actor_id, film_id) VALUES (4, 87); INSERT INTO actors_films (actor_id, film_id) VALUES (4, 355); INSERT INTO actors_films (actor_id, film_id) VALUES (4, 379); INSERT INTO actors_films (actor_id, film_id) VALUES (4, 398); INSERT INTO actors_films (actor_id, film_id) VALUES (4, 463); INSERT INTO actors_films (actor_id, film_id) VALUES (4, 490); INSERT INTO actors_films (actor_id, film_id) VALUES (4, 616); INSERT INTO actors_films (actor_id, film_id) VALUES (4, 635); INSERT INTO actors_films (actor_id, film_id) VALUES (4, 691); INSERT INTO actors_films (actor_id, film_id) VALUES (4, 712); INSERT INTO actors_films (actor_id, film_id) VALUES (4, 714); INSERT INTO actors_films (actor_id, film_id) VALUES (4, 721); INSERT INTO actors_films (actor_id, film_id) VALUES (4, 798); INSERT INTO actors_films (actor_id, film_id) VALUES (4, 832); INSERT INTO actors_films (actor_id, film_id) VALUES (4, 858); INSERT INTO actors_films (actor_id, film_id) VALUES (4, 909); INSERT INTO actors_films (actor_id, film_id) VALUES (4, 924); INSERT INTO actors_films (actor_id, film_id) VALUES (5, 19); INSERT INTO actors_films (actor_id, film_id) VALUES (5, 54); INSERT INTO actors_films (actor_id, film_id) VALUES (5, 85); INSERT INTO actors_films (actor_id, film_id) VALUES (5, 146); INSERT INTO actors_films (actor_id, film_id) VALUES (5, 171); INSERT INTO actors_films (actor_id, film_id) VALUES (5, 172); INSERT INTO actors_films (actor_id, film_id) VALUES (5, 202); INSERT INTO actors_films (actor_id, film_id) VALUES (5, 203); INSERT INTO actors_films (actor_id, film_id) VALUES (5, 286); INSERT INTO actors_films (actor_id, film_id) VALUES (5, 288); INSERT INTO actors_films (actor_id, film_id) VALUES (5, 316); INSERT INTO actors_films (actor_id, film_id) VALUES (5, 340); INSERT INTO actors_films (actor_id, film_id) VALUES (5, 369); INSERT INTO actors_films (actor_id, film_id) VALUES (5, 375); INSERT INTO actors_films (actor_id, film_id) VALUES (5, 383); INSERT INTO actors_films (actor_id, film_id) VALUES (5, 392); INSERT INTO actors_films (actor_id, film_id) VALUES (5, 411); INSERT INTO actors_films (actor_id, film_id) VALUES (5, 503); INSERT INTO actors_films (actor_id, film_id) VALUES (5, 535); INSERT INTO actors_films (actor_id, film_id) VALUES (5, 571); INSERT INTO actors_films (actor_id, film_id) VALUES (5, 650); INSERT INTO actors_films (actor_id, film_id) VALUES (5, 665); INSERT INTO actors_films (actor_id, film_id) VALUES (5, 687); INSERT INTO actors_films (actor_id, film_id) VALUES (5, 730); INSERT INTO actors_films (actor_id, film_id) VALUES (5, 732); INSERT INTO actors_films (actor_id, film_id) VALUES (5, 811); INSERT INTO actors_films (actor_id, film_id) VALUES (5, 817); INSERT INTO actors_films (actor_id, film_id) VALUES (5, 841); INSERT INTO actors_films (actor_id, film_id) VALUES (5, 865); INSERT INTO actors_films (actor_id, film_id) VALUES (6, 29); INSERT INTO actors_films (actor_id, film_id) VALUES (6, 53); INSERT INTO actors_films (actor_id, film_id) VALUES (6, 60); INSERT INTO actors_films (actor_id, film_id) VALUES (6, 70); INSERT INTO actors_films (actor_id, film_id) VALUES (6, 112); INSERT INTO actors_films (actor_id, film_id) VALUES (6, 164); INSERT INTO actors_films (actor_id, film_id) VALUES (6, 165); INSERT INTO actors_films (actor_id, film_id) VALUES (6, 193); INSERT INTO actors_films (actor_id, film_id) VALUES (6, 256); INSERT INTO actors_films (actor_id, film_id) VALUES (6, 451); INSERT INTO actors_films (actor_id, film_id) VALUES (6, 503); INSERT INTO actors_films (actor_id, film_id) VALUES (6, 509); INSERT INTO actors_films (actor_id, film_id) VALUES (6, 517); INSERT INTO actors_films (actor_id, film_id) VALUES (6, 519); INSERT INTO actors_films (actor_id, film_id) VALUES (6, 605); INSERT INTO actors_films (actor_id, film_id) VALUES (6, 692); INSERT INTO actors_films (actor_id, film_id) VALUES (6, 826); INSERT INTO actors_films (actor_id, film_id) VALUES (6, 892); INSERT INTO actors_films (actor_id, film_id) VALUES (6, 902); INSERT INTO actors_films (actor_id, film_id) VALUES (6, 994); INSERT INTO actors_films (actor_id, film_id) VALUES (7, 25); INSERT INTO actors_films (actor_id, film_id) VALUES (7, 27); INSERT INTO actors_films (actor_id, film_id) VALUES (7, 35); INSERT INTO actors_films (actor_id, film_id) VALUES (7, 67); INSERT INTO actors_films (actor_id, film_id) VALUES (7, 96); INSERT INTO actors_films (actor_id, film_id) VALUES (7, 170); INSERT INTO actors_films (actor_id, film_id) VALUES (7, 173); INSERT INTO actors_films (actor_id, film_id) VALUES (7, 217); INSERT INTO actors_films (actor_id, film_id) VALUES (7, 218); INSERT INTO actors_films (actor_id, film_id) VALUES (7, 225); INSERT INTO actors_films (actor_id, film_id) VALUES (7, 292); INSERT INTO actors_films (actor_id, film_id) VALUES (7, 351); INSERT INTO actors_films (actor_id, film_id) VALUES (7, 414); INSERT INTO actors_films (actor_id, film_id) VALUES (7, 463); INSERT INTO actors_films (actor_id, film_id) VALUES (7, 554); INSERT INTO actors_films (actor_id, film_id) VALUES (7, 618); INSERT INTO actors_films (actor_id, film_id) VALUES (7, 633); INSERT INTO actors_films (actor_id, film_id) VALUES (7, 637); INSERT INTO actors_films (actor_id, film_id) VALUES (7, 691); INSERT INTO actors_films (actor_id, film_id) VALUES (7, 758); INSERT INTO actors_films (actor_id, film_id) VALUES (7, 766); INSERT INTO actors_films (actor_id, film_id) VALUES (7, 770); INSERT INTO actors_films (actor_id, film_id) VALUES (7, 805); INSERT INTO actors_films (actor_id, film_id) VALUES (7, 806); INSERT INTO actors_films (actor_id, film_id) VALUES (7, 846); INSERT INTO actors_films (actor_id, film_id) VALUES (7, 900); INSERT INTO actors_films (actor_id, film_id) VALUES (7, 901); INSERT INTO actors_films (actor_id, film_id) VALUES (7, 910); INSERT INTO actors_films (actor_id, film_id) VALUES (7, 957); INSERT INTO actors_films (actor_id, film_id) VALUES (7, 959); INSERT INTO actors_films (actor_id, film_id) VALUES (8, 47); INSERT INTO actors_films (actor_id, film_id) VALUES (8, 115); INSERT INTO actors_films (actor_id, film_id) VALUES (8, 158); INSERT INTO actors_films (actor_id, film_id) VALUES (8, 179); INSERT INTO actors_films (actor_id, film_id) VALUES (8, 195); INSERT INTO actors_films (actor_id, film_id) VALUES (8, 205); INSERT INTO actors_films (actor_id, film_id) VALUES (8, 255); INSERT INTO actors_films (actor_id, film_id) VALUES (8, 263); INSERT INTO actors_films (actor_id, film_id) VALUES (8, 321); INSERT INTO actors_films (actor_id, film_id) VALUES (8, 396); INSERT INTO actors_films (actor_id, film_id) VALUES (8, 458); INSERT INTO actors_films (actor_id, film_id) VALUES (8, 523); INSERT INTO actors_films (actor_id, film_id) VALUES (8, 532); INSERT INTO actors_films (actor_id, film_id) VALUES (8, 554); INSERT INTO actors_films (actor_id, film_id) VALUES (8, 752); INSERT INTO actors_films (actor_id, film_id) VALUES (8, 769); INSERT INTO actors_films (actor_id, film_id) VALUES (8, 771); INSERT INTO actors_films (actor_id, film_id) VALUES (8, 859); INSERT INTO actors_films (actor_id, film_id) VALUES (8, 895); INSERT INTO actors_films (actor_id, film_id) VALUES (8, 936); INSERT INTO actors_films (actor_id, film_id) VALUES (9, 30); INSERT INTO actors_films (actor_id, film_id) VALUES (9, 74); INSERT INTO actors_films (actor_id, film_id) VALUES (9, 147); INSERT INTO actors_films (actor_id, film_id) VALUES (9, 148); INSERT INTO actors_films (actor_id, film_id) VALUES (9, 191); INSERT INTO actors_films (actor_id, film_id) VALUES (9, 200); INSERT INTO actors_films (actor_id, film_id) VALUES (9, 204); INSERT INTO actors_films (actor_id, film_id) VALUES (9, 434); INSERT INTO actors_films (actor_id, film_id) VALUES (9, 510); INSERT INTO actors_films (actor_id, film_id) VALUES (9, 514); INSERT INTO actors_films (actor_id, film_id) VALUES (9, 552); INSERT INTO actors_films (actor_id, film_id) VALUES (9, 650); INSERT INTO actors_films (actor_id, film_id) VALUES (9, 671); INSERT INTO actors_films (actor_id, film_id) VALUES (9, 697); INSERT INTO actors_films (actor_id, film_id) VALUES (9, 722); INSERT INTO actors_films (actor_id, film_id) VALUES (9, 752); INSERT INTO actors_films (actor_id, film_id) VALUES (9, 811); INSERT INTO actors_films (actor_id, film_id) VALUES (9, 815); INSERT INTO actors_films (actor_id, film_id) VALUES (9, 865); INSERT INTO actors_films (actor_id, film_id) VALUES (9, 873); INSERT INTO actors_films (actor_id, film_id) VALUES (9, 889); INSERT INTO actors_films (actor_id, film_id) VALUES (9, 903); INSERT INTO actors_films (actor_id, film_id) VALUES (9, 926); INSERT INTO actors_films (actor_id, film_id) VALUES (9, 964); INSERT INTO actors_films (actor_id, film_id) VALUES (9, 974); INSERT INTO actors_films (actor_id, film_id) VALUES (10, 1); INSERT INTO actors_films (actor_id, film_id) VALUES (10, 9); INSERT INTO actors_films (actor_id, film_id) VALUES (10, 191); INSERT INTO actors_films (actor_id, film_id) VALUES (10, 236); INSERT INTO actors_films (actor_id, film_id) VALUES (10, 251); INSERT INTO actors_films (actor_id, film_id) VALUES (10, 366); INSERT INTO actors_films (actor_id, film_id) VALUES (10, 477); INSERT INTO actors_films (actor_id, film_id) VALUES (10, 480); INSERT INTO actors_films (actor_id, film_id) VALUES (10, 522); INSERT INTO actors_films (actor_id, film_id) VALUES (10, 530); INSERT INTO actors_films (actor_id, film_id) VALUES (10, 587); INSERT INTO actors_films (actor_id, film_id) VALUES (10, 694); INSERT INTO actors_films (actor_id, film_id) VALUES (10, 703); INSERT INTO actors_films (actor_id, film_id) VALUES (10, 716); INSERT INTO actors_films (actor_id, film_id) VALUES (10, 782); INSERT INTO actors_films (actor_id, film_id) VALUES (10, 914); INSERT INTO actors_films (actor_id, film_id) VALUES (10, 929); INSERT INTO actors_films (actor_id, film_id) VALUES (10, 930); INSERT INTO actors_films (actor_id, film_id) VALUES (10, 964); INSERT INTO actors_films (actor_id, film_id) VALUES (10, 966); INSERT INTO actors_films (actor_id, film_id) VALUES (10, 980); INSERT INTO actors_films (actor_id, film_id) VALUES (10, 983); INSERT INTO actors_films (actor_id, film_id) VALUES (11, 118); INSERT INTO actors_films (actor_id, film_id) VALUES (11, 205); INSERT INTO actors_films (actor_id, film_id) VALUES (11, 281); INSERT INTO actors_films (actor_id, film_id) VALUES (11, 283); INSERT INTO actors_films (actor_id, film_id) VALUES (11, 348); INSERT INTO actors_films (actor_id, film_id) VALUES (11, 364); INSERT INTO actors_films (actor_id, film_id) VALUES (11, 395); INSERT INTO actors_films (actor_id, film_id) VALUES (11, 429); INSERT INTO actors_films (actor_id, film_id) VALUES (11, 433); INSERT INTO actors_films (actor_id, film_id) VALUES (11, 453); INSERT INTO actors_films (actor_id, film_id) VALUES (11, 485); INSERT INTO actors_films (actor_id, film_id) VALUES (11, 532); INSERT INTO actors_films (actor_id, film_id) VALUES (11, 567); INSERT INTO actors_films (actor_id, film_id) VALUES (11, 587); INSERT INTO actors_films (actor_id, film_id) VALUES (11, 597); INSERT INTO actors_films (actor_id, film_id) VALUES (11, 636); INSERT INTO actors_films (actor_id, film_id) VALUES (11, 709); INSERT INTO actors_films (actor_id, film_id) VALUES (11, 850); INSERT INTO actors_films (actor_id, film_id) VALUES (11, 854); INSERT INTO actors_films (actor_id, film_id) VALUES (11, 888); INSERT INTO actors_films (actor_id, film_id) VALUES (11, 896); INSERT INTO actors_films (actor_id, film_id) VALUES (11, 928); INSERT INTO actors_films (actor_id, film_id) VALUES (11, 938); INSERT INTO actors_films (actor_id, film_id) VALUES (11, 969); INSERT INTO actors_films (actor_id, film_id) VALUES (11, 988); INSERT INTO actors_films (actor_id, film_id) VALUES (12, 16); INSERT INTO actors_films (actor_id, film_id) VALUES (12, 17); INSERT INTO actors_films (actor_id, film_id) VALUES (12, 34); INSERT INTO actors_films (actor_id, film_id) VALUES (12, 37); INSERT INTO actors_films (actor_id, film_id) VALUES (12, 91); INSERT INTO actors_films (actor_id, film_id) VALUES (12, 92); INSERT INTO actors_films (actor_id, film_id) VALUES (12, 107); INSERT INTO actors_films (actor_id, film_id) VALUES (12, 155); INSERT INTO actors_films (actor_id, film_id) VALUES (12, 177); INSERT INTO actors_films (actor_id, film_id) VALUES (12, 208); INSERT INTO actors_films (actor_id, film_id) VALUES (12, 213); INSERT INTO actors_films (actor_id, film_id) VALUES (12, 216); INSERT INTO actors_films (actor_id, film_id) VALUES (12, 243); INSERT INTO actors_films (actor_id, film_id) VALUES (12, 344); INSERT INTO actors_films (actor_id, film_id) VALUES (12, 400); INSERT INTO actors_films (actor_id, film_id) VALUES (12, 416); INSERT INTO actors_films (actor_id, film_id) VALUES (12, 420); INSERT INTO actors_films (actor_id, film_id) VALUES (12, 457); INSERT INTO actors_films (actor_id, film_id) VALUES (12, 513); INSERT INTO actors_films (actor_id, film_id) VALUES (12, 540); INSERT INTO actors_films (actor_id, film_id) VALUES (12, 593); INSERT INTO actors_films (actor_id, film_id) VALUES (12, 631); INSERT INTO actors_films (actor_id, film_id) VALUES (12, 635); INSERT INTO actors_films (actor_id, film_id) VALUES (12, 672); INSERT INTO actors_films (actor_id, film_id) VALUES (12, 716); INSERT INTO actors_films (actor_id, film_id) VALUES (12, 728); INSERT INTO actors_films (actor_id, film_id) VALUES (12, 812); INSERT INTO actors_films (actor_id, film_id) VALUES (12, 838); INSERT INTO actors_films (actor_id, film_id) VALUES (12, 871); INSERT INTO actors_films (actor_id, film_id) VALUES (12, 880); INSERT INTO actors_films (actor_id, film_id) VALUES (12, 945); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 17); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 29); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 45); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 87); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 110); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 144); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 154); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 162); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 203); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 254); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 337); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 346); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 381); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 385); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 427); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 456); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 513); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 515); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 522); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 524); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 528); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 571); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 588); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 597); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 600); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 718); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 729); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 816); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 817); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 832); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 833); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 843); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 897); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 966); INSERT INTO actors_films (actor_id, film_id) VALUES (13, 998); INSERT INTO actors_films (actor_id, film_id) VALUES (14, 154); INSERT INTO actors_films (actor_id, film_id) VALUES (14, 187); INSERT INTO actors_films (actor_id, film_id) VALUES (14, 232); INSERT INTO actors_films (actor_id, film_id) VALUES (14, 241); INSERT INTO actors_films (actor_id, film_id) VALUES (14, 253); INSERT INTO actors_films (actor_id, film_id) VALUES (14, 255); INSERT INTO actors_films (actor_id, film_id) VALUES (14, 258); INSERT INTO actors_films (actor_id, film_id) VALUES (14, 284); INSERT INTO actors_films (actor_id, film_id) VALUES (14, 292); INSERT INTO actors_films (actor_id, film_id) VALUES (14, 370); INSERT INTO actors_films (actor_id, film_id) VALUES (14, 415); INSERT INTO actors_films (actor_id, film_id) VALUES (14, 417); INSERT INTO actors_films (actor_id, film_id) VALUES (14, 418); INSERT INTO actors_films (actor_id, film_id) VALUES (14, 454); INSERT INTO actors_films (actor_id, film_id) VALUES (14, 472); INSERT INTO actors_films (actor_id, film_id) VALUES (14, 475); INSERT INTO actors_films (actor_id, film_id) VALUES (14, 495); INSERT INTO actors_films (actor_id, film_id) VALUES (14, 536); INSERT INTO actors_films (actor_id, film_id) VALUES (14, 537); INSERT INTO actors_films (actor_id, film_id) VALUES (14, 612); INSERT INTO actors_films (actor_id, film_id) VALUES (14, 688); INSERT INTO actors_films (actor_id, film_id) VALUES (14, 759); INSERT INTO actors_films (actor_id, film_id) VALUES (14, 764); INSERT INTO actors_films (actor_id, film_id) VALUES (14, 847); INSERT INTO actors_films (actor_id, film_id) VALUES (14, 856); INSERT INTO actors_films (actor_id, film_id) VALUES (14, 890); INSERT INTO actors_films (actor_id, film_id) VALUES (14, 908); INSERT INTO actors_films (actor_id, film_id) VALUES (14, 919); INSERT INTO actors_films (actor_id, film_id) VALUES (14, 948); INSERT INTO actors_films (actor_id, film_id) VALUES (14, 970); INSERT INTO actors_films (actor_id, film_id) VALUES (15, 31); INSERT INTO actors_films (actor_id, film_id) VALUES (15, 89); INSERT INTO actors_films (actor_id, film_id) VALUES (15, 91); INSERT INTO actors_films (actor_id, film_id) VALUES (15, 108); INSERT INTO actors_films (actor_id, film_id) VALUES (15, 125); INSERT INTO actors_films (actor_id, film_id) VALUES (15, 236); INSERT INTO actors_films (actor_id, film_id) VALUES (15, 275); INSERT INTO actors_films (actor_id, film_id) VALUES (15, 280); INSERT INTO actors_films (actor_id, film_id) VALUES (15, 326); INSERT INTO actors_films (actor_id, film_id) VALUES (15, 342); INSERT INTO actors_films (actor_id, film_id) VALUES (15, 414); INSERT INTO actors_films (actor_id, film_id) VALUES (15, 445); INSERT INTO actors_films (actor_id, film_id) VALUES (15, 500); INSERT INTO actors_films (actor_id, film_id) VALUES (15, 502); INSERT INTO actors_films (actor_id, film_id) VALUES (15, 541); INSERT INTO actors_films (actor_id, film_id) VALUES (15, 553); INSERT INTO actors_films (actor_id, film_id) VALUES (15, 594); INSERT INTO actors_films (actor_id, film_id) VALUES (15, 626); INSERT INTO actors_films (actor_id, film_id) VALUES (15, 635); INSERT INTO actors_films (actor_id, film_id) VALUES (15, 745); INSERT INTO actors_films (actor_id, film_id) VALUES (15, 783); INSERT INTO actors_films (actor_id, film_id) VALUES (15, 795); INSERT INTO actors_films (actor_id, film_id) VALUES (15, 817); INSERT INTO actors_films (actor_id, film_id) VALUES (15, 886); INSERT INTO actors_films (actor_id, film_id) VALUES (15, 924); INSERT INTO actors_films (actor_id, film_id) VALUES (15, 949); INSERT INTO actors_films (actor_id, film_id) VALUES (15, 968); INSERT INTO actors_films (actor_id, film_id) VALUES (15, 985); INSERT INTO actors_films (actor_id, film_id) VALUES (16, 80); INSERT INTO actors_films (actor_id, film_id) VALUES (16, 87); INSERT INTO actors_films (actor_id, film_id) VALUES (16, 101); INSERT INTO actors_films (actor_id, film_id) VALUES (16, 121); INSERT INTO actors_films (actor_id, film_id) VALUES (16, 155); INSERT INTO actors_films (actor_id, film_id) VALUES (16, 177); INSERT INTO actors_films (actor_id, film_id) VALUES (16, 218); INSERT INTO actors_films (actor_id, film_id) VALUES (16, 221); INSERT INTO actors_films (actor_id, film_id) VALUES (16, 267); INSERT INTO actors_films (actor_id, film_id) VALUES (16, 269); INSERT INTO actors_films (actor_id, film_id) VALUES (16, 271); INSERT INTO actors_films (actor_id, film_id) VALUES (16, 280); INSERT INTO actors_films (actor_id, film_id) VALUES (16, 287); INSERT INTO actors_films (actor_id, film_id) VALUES (16, 345); INSERT INTO actors_films (actor_id, film_id) VALUES (16, 438); INSERT INTO actors_films (actor_id, film_id) VALUES (16, 453); INSERT INTO actors_films (actor_id, film_id) VALUES (16, 455); INSERT INTO actors_films (actor_id, film_id) VALUES (16, 456); INSERT INTO actors_films (actor_id, film_id) VALUES (16, 503); INSERT INTO actors_films (actor_id, film_id) VALUES (16, 548); INSERT INTO actors_films (actor_id, film_id) VALUES (16, 582); INSERT INTO actors_films (actor_id, film_id) VALUES (16, 583); INSERT INTO actors_films (actor_id, film_id) VALUES (16, 717); INSERT INTO actors_films (actor_id, film_id) VALUES (16, 758); INSERT INTO actors_films (actor_id, film_id) VALUES (16, 779); INSERT INTO actors_films (actor_id, film_id) VALUES (16, 886); INSERT INTO actors_films (actor_id, film_id) VALUES (16, 967); INSERT INTO actors_films (actor_id, film_id) VALUES (17, 96); INSERT INTO actors_films (actor_id, film_id) VALUES (17, 119); INSERT INTO actors_films (actor_id, film_id) VALUES (17, 124); INSERT INTO actors_films (actor_id, film_id) VALUES (17, 127); INSERT INTO actors_films (actor_id, film_id) VALUES (17, 154); INSERT INTO actors_films (actor_id, film_id) VALUES (17, 199); INSERT INTO actors_films (actor_id, film_id) VALUES (17, 201); INSERT INTO actors_films (actor_id, film_id) VALUES (17, 236); INSERT INTO actors_films (actor_id, film_id) VALUES (17, 280); INSERT INTO actors_films (actor_id, film_id) VALUES (17, 310); INSERT INTO actors_films (actor_id, film_id) VALUES (17, 313); INSERT INTO actors_films (actor_id, film_id) VALUES (17, 378); INSERT INTO actors_films (actor_id, film_id) VALUES (17, 457); INSERT INTO actors_films (actor_id, film_id) VALUES (17, 469); INSERT INTO actors_films (actor_id, film_id) VALUES (17, 478); INSERT INTO actors_films (actor_id, film_id) VALUES (17, 500); INSERT INTO actors_films (actor_id, film_id) VALUES (17, 515); INSERT INTO actors_films (actor_id, film_id) VALUES (17, 521); INSERT INTO actors_films (actor_id, film_id) VALUES (17, 573); INSERT INTO actors_films (actor_id, film_id) VALUES (17, 603); INSERT INTO actors_films (actor_id, film_id) VALUES (17, 606); INSERT INTO actors_films (actor_id, film_id) VALUES (17, 734); INSERT INTO actors_films (actor_id, film_id) VALUES (17, 770); INSERT INTO actors_films (actor_id, film_id) VALUES (17, 794); INSERT INTO actors_films (actor_id, film_id) VALUES (17, 800); INSERT INTO actors_films (actor_id, film_id) VALUES (17, 853); INSERT INTO actors_films (actor_id, film_id) VALUES (17, 873); INSERT INTO actors_films (actor_id, film_id) VALUES (17, 874); INSERT INTO actors_films (actor_id, film_id) VALUES (17, 880); INSERT INTO actors_films (actor_id, film_id) VALUES (17, 948); INSERT INTO actors_films (actor_id, film_id) VALUES (17, 957); INSERT INTO actors_films (actor_id, film_id) VALUES (17, 959); INSERT INTO actors_films (actor_id, film_id) VALUES (18, 44); INSERT INTO actors_films (actor_id, film_id) VALUES (18, 84); INSERT INTO actors_films (actor_id, film_id) VALUES (18, 144); INSERT INTO actors_films (actor_id, film_id) VALUES (18, 172); INSERT INTO actors_films (actor_id, film_id) VALUES (18, 268); INSERT INTO actors_films (actor_id, film_id) VALUES (18, 279); INSERT INTO actors_films (actor_id, film_id) VALUES (18, 280); INSERT INTO actors_films (actor_id, film_id) VALUES (18, 321); INSERT INTO actors_films (actor_id, film_id) VALUES (18, 386); INSERT INTO actors_films (actor_id, film_id) VALUES (18, 460); INSERT INTO actors_films (actor_id, film_id) VALUES (18, 462); INSERT INTO actors_films (actor_id, film_id) VALUES (18, 484); INSERT INTO actors_films (actor_id, film_id) VALUES (18, 536); INSERT INTO actors_films (actor_id, film_id) VALUES (18, 561); INSERT INTO actors_films (actor_id, film_id) VALUES (18, 612); INSERT INTO actors_films (actor_id, film_id) VALUES (18, 717); INSERT INTO actors_films (actor_id, film_id) VALUES (18, 808); INSERT INTO actors_films (actor_id, film_id) VALUES (18, 842); INSERT INTO actors_films (actor_id, film_id) VALUES (18, 863); INSERT INTO actors_films (actor_id, film_id) VALUES (18, 883); INSERT INTO actors_films (actor_id, film_id) VALUES (18, 917); INSERT INTO actors_films (actor_id, film_id) VALUES (18, 944); INSERT INTO actors_films (actor_id, film_id) VALUES (19, 2); INSERT INTO actors_films (actor_id, film_id) VALUES (19, 3); INSERT INTO actors_films (actor_id, film_id) VALUES (19, 144); INSERT INTO actors_films (actor_id, film_id) VALUES (19, 152); INSERT INTO actors_films (actor_id, film_id) VALUES (19, 182); INSERT INTO actors_films (actor_id, film_id) VALUES (19, 208); INSERT INTO actors_films (actor_id, film_id) VALUES (19, 212); INSERT INTO actors_films (actor_id, film_id) VALUES (19, 217); INSERT INTO actors_films (actor_id, film_id) VALUES (19, 266); INSERT INTO actors_films (actor_id, film_id) VALUES (19, 404); INSERT INTO actors_films (actor_id, film_id) VALUES (19, 428); INSERT INTO actors_films (actor_id, film_id) VALUES (19, 473); INSERT INTO actors_films (actor_id, film_id) VALUES (19, 490); INSERT INTO actors_films (actor_id, film_id) VALUES (19, 510); INSERT INTO actors_films (actor_id, film_id) VALUES (19, 513); INSERT INTO actors_films (actor_id, film_id) VALUES (19, 644); INSERT INTO actors_films (actor_id, film_id) VALUES (19, 670); INSERT INTO actors_films (actor_id, film_id) VALUES (19, 673); INSERT INTO actors_films (actor_id, film_id) VALUES (19, 711); INSERT INTO actors_films (actor_id, film_id) VALUES (19, 750); INSERT INTO actors_films (actor_id, film_id) VALUES (19, 752); INSERT INTO actors_films (actor_id, film_id) VALUES (19, 756); INSERT INTO actors_films (actor_id, film_id) VALUES (19, 771); INSERT INTO actors_films (actor_id, film_id) VALUES (19, 785); INSERT INTO actors_films (actor_id, film_id) VALUES (19, 877); INSERT INTO actors_films (actor_id, film_id) VALUES (20, 1); INSERT INTO actors_films (actor_id, film_id) VALUES (20, 54); INSERT INTO actors_films (actor_id, film_id) VALUES (20, 63); INSERT INTO actors_films (actor_id, film_id) VALUES (20, 140); INSERT INTO actors_films (actor_id, film_id) VALUES (20, 146); INSERT INTO actors_films (actor_id, film_id) VALUES (20, 165); INSERT INTO actors_films (actor_id, film_id) VALUES (20, 231); INSERT INTO actors_films (actor_id, film_id) VALUES (20, 243); INSERT INTO actors_films (actor_id, film_id) VALUES (20, 269); INSERT INTO actors_films (actor_id, film_id) VALUES (20, 274); INSERT INTO actors_films (actor_id, film_id) VALUES (20, 348); INSERT INTO actors_films (actor_id, film_id) VALUES (20, 366); INSERT INTO actors_films (actor_id, film_id) VALUES (20, 445); INSERT INTO actors_films (actor_id, film_id) VALUES (20, 478); INSERT INTO actors_films (actor_id, film_id) VALUES (20, 492); INSERT INTO actors_films (actor_id, film_id) VALUES (20, 499); INSERT INTO actors_films (actor_id, film_id) VALUES (20, 527); INSERT INTO actors_films (actor_id, film_id) VALUES (20, 531); INSERT INTO actors_films (actor_id, film_id) VALUES (20, 538); INSERT INTO actors_films (actor_id, film_id) VALUES (20, 589); INSERT INTO actors_films (actor_id, film_id) VALUES (20, 643); INSERT INTO actors_films (actor_id, film_id) VALUES (20, 652); INSERT INTO actors_films (actor_id, film_id) VALUES (20, 663); INSERT INTO actors_films (actor_id, film_id) VALUES (20, 714); INSERT INTO actors_films (actor_id, film_id) VALUES (20, 717); INSERT INTO actors_films (actor_id, film_id) VALUES (20, 757); INSERT INTO actors_films (actor_id, film_id) VALUES (20, 784); INSERT INTO actors_films (actor_id, film_id) VALUES (20, 863); INSERT INTO actors_films (actor_id, film_id) VALUES (20, 962); INSERT INTO actors_films (actor_id, film_id) VALUES (20, 977); INSERT INTO actors_films (actor_id, film_id) VALUES (21, 6); INSERT INTO actors_films (actor_id, film_id) VALUES (21, 87); INSERT INTO actors_films (actor_id, film_id) VALUES (21, 88); INSERT INTO actors_films (actor_id, film_id) VALUES (21, 142); INSERT INTO actors_films (actor_id, film_id) VALUES (21, 159); INSERT INTO actors_films (actor_id, film_id) VALUES (21, 179); INSERT INTO actors_films (actor_id, film_id) VALUES (21, 253); INSERT INTO actors_films (actor_id, film_id) VALUES (21, 281); INSERT INTO actors_films (actor_id, film_id) VALUES (21, 321); INSERT INTO actors_films (actor_id, film_id) VALUES (21, 398); INSERT INTO actors_films (actor_id, film_id) VALUES (21, 426); INSERT INTO actors_films (actor_id, film_id) VALUES (21, 429); INSERT INTO actors_films (actor_id, film_id) VALUES (21, 497); INSERT INTO actors_films (actor_id, film_id) VALUES (21, 507); INSERT INTO actors_films (actor_id, film_id) VALUES (21, 530); INSERT INTO actors_films (actor_id, film_id) VALUES (21, 680); INSERT INTO actors_films (actor_id, film_id) VALUES (21, 686); INSERT INTO actors_films (actor_id, film_id) VALUES (21, 700); INSERT INTO actors_films (actor_id, film_id) VALUES (21, 702); INSERT INTO actors_films (actor_id, film_id) VALUES (21, 733); INSERT INTO actors_films (actor_id, film_id) VALUES (21, 734); INSERT INTO actors_films (actor_id, film_id) VALUES (21, 798); INSERT INTO actors_films (actor_id, film_id) VALUES (21, 804); INSERT INTO actors_films (actor_id, film_id) VALUES (21, 887); INSERT INTO actors_films (actor_id, film_id) VALUES (21, 893); INSERT INTO actors_films (actor_id, film_id) VALUES (21, 920); INSERT INTO actors_films (actor_id, film_id) VALUES (21, 983); INSERT INTO actors_films (actor_id, film_id) VALUES (22, 9); INSERT INTO actors_films (actor_id, film_id) VALUES (22, 23); INSERT INTO actors_films (actor_id, film_id) VALUES (22, 56); INSERT INTO actors_films (actor_id, film_id) VALUES (22, 89); INSERT INTO actors_films (actor_id, film_id) VALUES (22, 111); INSERT INTO actors_films (actor_id, film_id) VALUES (22, 146); INSERT INTO actors_films (actor_id, film_id) VALUES (22, 291); INSERT INTO actors_films (actor_id, film_id) VALUES (22, 294); INSERT INTO actors_films (actor_id, film_id) VALUES (22, 349); INSERT INTO actors_films (actor_id, film_id) VALUES (22, 369); INSERT INTO actors_films (actor_id, film_id) VALUES (22, 418); INSERT INTO actors_films (actor_id, film_id) VALUES (22, 430); INSERT INTO actors_films (actor_id, film_id) VALUES (22, 483); INSERT INTO actors_films (actor_id, film_id) VALUES (22, 491); INSERT INTO actors_films (actor_id, film_id) VALUES (22, 495); INSERT INTO actors_films (actor_id, film_id) VALUES (22, 536); INSERT INTO actors_films (actor_id, film_id) VALUES (22, 600); INSERT INTO actors_films (actor_id, film_id) VALUES (22, 634); INSERT INTO actors_films (actor_id, film_id) VALUES (22, 648); INSERT INTO actors_films (actor_id, film_id) VALUES (22, 688); INSERT INTO actors_films (actor_id, film_id) VALUES (22, 731); INSERT INTO actors_films (actor_id, film_id) VALUES (22, 742); INSERT INTO actors_films (actor_id, film_id) VALUES (22, 775); INSERT INTO actors_films (actor_id, film_id) VALUES (22, 802); INSERT INTO actors_films (actor_id, film_id) VALUES (22, 912); INSERT INTO actors_films (actor_id, film_id) VALUES (22, 964); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 6); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 42); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 78); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 105); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 116); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 117); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 125); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 212); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 226); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 235); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 254); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 367); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 370); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 414); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 419); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 435); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 449); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 491); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 536); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 549); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 636); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 649); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 673); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 691); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 766); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 782); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 804); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 820); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 826); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 833); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 842); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 853); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 855); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 856); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 935); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 981); INSERT INTO actors_films (actor_id, film_id) VALUES (23, 997); INSERT INTO actors_films (actor_id, film_id) VALUES (24, 3); INSERT INTO actors_films (actor_id, film_id) VALUES (24, 83); INSERT INTO actors_films (actor_id, film_id) VALUES (24, 112); INSERT INTO actors_films (actor_id, film_id) VALUES (24, 126); INSERT INTO actors_films (actor_id, film_id) VALUES (24, 148); INSERT INTO actors_films (actor_id, film_id) VALUES (24, 164); INSERT INTO actors_films (actor_id, film_id) VALUES (24, 178); INSERT INTO actors_films (actor_id, film_id) VALUES (24, 194); INSERT INTO actors_films (actor_id, film_id) VALUES (24, 199); INSERT INTO actors_films (actor_id, film_id) VALUES (24, 242); INSERT INTO actors_films (actor_id, film_id) VALUES (24, 256); INSERT INTO actors_films (actor_id, film_id) VALUES (24, 277); INSERT INTO actors_films (actor_id, film_id) VALUES (24, 335); INSERT INTO actors_films (actor_id, film_id) VALUES (24, 405); INSERT INTO actors_films (actor_id, film_id) VALUES (24, 463); INSERT INTO actors_films (actor_id, film_id) VALUES (24, 515); INSERT INTO actors_films (actor_id, film_id) VALUES (24, 585); INSERT INTO actors_films (actor_id, film_id) VALUES (24, 603); INSERT INTO actors_films (actor_id, film_id) VALUES (24, 653); INSERT INTO actors_films (actor_id, film_id) VALUES (24, 704); INSERT INTO actors_films (actor_id, film_id) VALUES (24, 781); INSERT INTO actors_films (actor_id, film_id) VALUES (24, 829); INSERT INTO actors_films (actor_id, film_id) VALUES (24, 832); INSERT INTO actors_films (actor_id, film_id) VALUES (24, 969); INSERT INTO actors_films (actor_id, film_id) VALUES (25, 21); INSERT INTO actors_films (actor_id, film_id) VALUES (25, 86); INSERT INTO actors_films (actor_id, film_id) VALUES (25, 153); INSERT INTO actors_films (actor_id, film_id) VALUES (25, 179); INSERT INTO actors_films (actor_id, film_id) VALUES (25, 204); INSERT INTO actors_films (actor_id, film_id) VALUES (25, 213); INSERT INTO actors_films (actor_id, film_id) VALUES (25, 226); INSERT INTO actors_films (actor_id, film_id) VALUES (25, 245); INSERT INTO actors_films (actor_id, film_id) VALUES (25, 311); INSERT INTO actors_films (actor_id, film_id) VALUES (25, 404); INSERT INTO actors_films (actor_id, film_id) VALUES (25, 411); INSERT INTO actors_films (actor_id, film_id) VALUES (25, 420); INSERT INTO actors_films (actor_id, film_id) VALUES (25, 538); INSERT INTO actors_films (actor_id, film_id) VALUES (25, 564); INSERT INTO actors_films (actor_id, film_id) VALUES (25, 583); INSERT INTO actors_films (actor_id, film_id) VALUES (25, 606); INSERT INTO actors_films (actor_id, film_id) VALUES (25, 688); INSERT INTO actors_films (actor_id, film_id) VALUES (25, 697); INSERT INTO actors_films (actor_id, film_id) VALUES (25, 755); INSERT INTO actors_films (actor_id, film_id) VALUES (25, 871); INSERT INTO actors_films (actor_id, film_id) VALUES (25, 914); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 9); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 21); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 34); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 90); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 93); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 103); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 147); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 186); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 201); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 225); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 241); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 327); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 329); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 340); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 345); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 390); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 392); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 529); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 544); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 564); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 635); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 644); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 682); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 688); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 715); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 732); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 758); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 764); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 795); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 821); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 885); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 904); INSERT INTO actors_films (actor_id, film_id) VALUES (26, 906); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 19); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 34); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 85); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 150); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 172); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 273); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 334); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 347); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 359); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 398); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 415); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 462); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 477); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 500); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 503); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 540); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 586); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 593); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 637); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 679); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 682); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 695); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 771); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 805); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 830); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 854); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 873); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 880); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 889); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 904); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 967); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 986); INSERT INTO actors_films (actor_id, film_id) VALUES (27, 996); INSERT INTO actors_films (actor_id, film_id) VALUES (28, 14); INSERT INTO actors_films (actor_id, film_id) VALUES (28, 43); INSERT INTO actors_films (actor_id, film_id) VALUES (28, 58); INSERT INTO actors_films (actor_id, film_id) VALUES (28, 74); INSERT INTO actors_films (actor_id, film_id) VALUES (28, 96); INSERT INTO actors_films (actor_id, film_id) VALUES (28, 107); INSERT INTO actors_films (actor_id, film_id) VALUES (28, 259); INSERT INTO actors_films (actor_id, film_id) VALUES (28, 263); INSERT INTO actors_films (actor_id, film_id) VALUES (28, 287); INSERT INTO actors_films (actor_id, film_id) VALUES (28, 358); INSERT INTO actors_films (actor_id, film_id) VALUES (28, 502); INSERT INTO actors_films (actor_id, film_id) VALUES (28, 508); INSERT INTO actors_films (actor_id, film_id) VALUES (28, 532); INSERT INTO actors_films (actor_id, film_id) VALUES (28, 551); INSERT INTO actors_films (actor_id, film_id) VALUES (28, 574); INSERT INTO actors_films (actor_id, film_id) VALUES (28, 597); INSERT INTO actors_films (actor_id, film_id) VALUES (28, 619); INSERT INTO actors_films (actor_id, film_id) VALUES (28, 625); INSERT INTO actors_films (actor_id, film_id) VALUES (28, 652); INSERT INTO actors_films (actor_id, film_id) VALUES (28, 679); INSERT INTO actors_films (actor_id, film_id) VALUES (28, 743); INSERT INTO actors_films (actor_id, film_id) VALUES (28, 790); INSERT INTO actors_films (actor_id, film_id) VALUES (28, 793); INSERT INTO actors_films (actor_id, film_id) VALUES (28, 816); INSERT INTO actors_films (actor_id, film_id) VALUES (28, 827); INSERT INTO actors_films (actor_id, film_id) VALUES (28, 835); INSERT INTO actors_films (actor_id, film_id) VALUES (28, 879); INSERT INTO actors_films (actor_id, film_id) VALUES (28, 908); INSERT INTO actors_films (actor_id, film_id) VALUES (28, 953); INSERT INTO actors_films (actor_id, film_id) VALUES (28, 973); INSERT INTO actors_films (actor_id, film_id) VALUES (28, 994); INSERT INTO actors_films (actor_id, film_id) VALUES (29, 10); INSERT INTO actors_films (actor_id, film_id) VALUES (29, 79); INSERT INTO actors_films (actor_id, film_id) VALUES (29, 105); INSERT INTO actors_films (actor_id, film_id) VALUES (29, 110); INSERT INTO actors_films (actor_id, film_id) VALUES (29, 131); INSERT INTO actors_films (actor_id, film_id) VALUES (29, 133); INSERT INTO actors_films (actor_id, film_id) VALUES (29, 172); INSERT INTO actors_films (actor_id, film_id) VALUES (29, 226); INSERT INTO actors_films (actor_id, film_id) VALUES (29, 273); INSERT INTO actors_films (actor_id, film_id) VALUES (29, 282); INSERT INTO actors_films (actor_id, film_id) VALUES (29, 296); INSERT INTO actors_films (actor_id, film_id) VALUES (29, 311); INSERT INTO actors_films (actor_id, film_id) VALUES (29, 335); INSERT INTO actors_films (actor_id, film_id) VALUES (29, 342); INSERT INTO actors_films (actor_id, film_id) VALUES (29, 436); INSERT INTO actors_films (actor_id, film_id) VALUES (29, 444); INSERT INTO actors_films (actor_id, film_id) VALUES (29, 449); INSERT INTO actors_films (actor_id, film_id) VALUES (29, 462); INSERT INTO actors_films (actor_id, film_id) VALUES (29, 482); INSERT INTO actors_films (actor_id, film_id) VALUES (29, 488); INSERT INTO actors_films (actor_id, film_id) VALUES (29, 519); INSERT INTO actors_films (actor_id, film_id) VALUES (29, 547); INSERT INTO actors_films (actor_id, film_id) VALUES (29, 590); INSERT INTO actors_films (actor_id, film_id) VALUES (29, 646); INSERT INTO actors_films (actor_id, film_id) VALUES (29, 723); INSERT INTO actors_films (actor_id, film_id) VALUES (29, 812); INSERT INTO actors_films (actor_id, film_id) VALUES (29, 862); INSERT INTO actors_films (actor_id, film_id) VALUES (29, 928); INSERT INTO actors_films (actor_id, film_id) VALUES (29, 944); INSERT INTO actors_films (actor_id, film_id) VALUES (30, 1); INSERT INTO actors_films (actor_id, film_id) VALUES (30, 53); INSERT INTO actors_films (actor_id, film_id) VALUES (30, 64); INSERT INTO actors_films (actor_id, film_id) VALUES (30, 69); INSERT INTO actors_films (actor_id, film_id) VALUES (30, 77); INSERT INTO actors_films (actor_id, film_id) VALUES (30, 87); INSERT INTO actors_films (actor_id, film_id) VALUES (30, 260); INSERT INTO actors_films (actor_id, film_id) VALUES (30, 262); INSERT INTO actors_films (actor_id, film_id) VALUES (30, 286); INSERT INTO actors_films (actor_id, film_id) VALUES (30, 292); INSERT INTO actors_films (actor_id, film_id) VALUES (30, 301); INSERT INTO actors_films (actor_id, film_id) VALUES (30, 318); INSERT INTO actors_films (actor_id, film_id) VALUES (30, 321); INSERT INTO actors_films (actor_id, film_id) VALUES (30, 357); INSERT INTO actors_films (actor_id, film_id) VALUES (30, 565); INSERT INTO actors_films (actor_id, film_id) VALUES (30, 732); INSERT INTO actors_films (actor_id, film_id) VALUES (30, 797); INSERT INTO actors_films (actor_id, film_id) VALUES (30, 838); INSERT INTO actors_films (actor_id, film_id) VALUES (30, 945); INSERT INTO actors_films (actor_id, film_id) VALUES (31, 88); INSERT INTO actors_films (actor_id, film_id) VALUES (31, 146); INSERT INTO actors_films (actor_id, film_id) VALUES (31, 163); INSERT INTO actors_films (actor_id, film_id) VALUES (31, 164); INSERT INTO actors_films (actor_id, film_id) VALUES (31, 188); INSERT INTO actors_films (actor_id, film_id) VALUES (31, 299); INSERT INTO actors_films (actor_id, film_id) VALUES (31, 308); INSERT INTO actors_films (actor_id, film_id) VALUES (31, 368); INSERT INTO actors_films (actor_id, film_id) VALUES (31, 380); INSERT INTO actors_films (actor_id, film_id) VALUES (31, 431); INSERT INTO actors_films (actor_id, film_id) VALUES (31, 585); INSERT INTO actors_films (actor_id, film_id) VALUES (31, 637); INSERT INTO actors_films (actor_id, film_id) VALUES (31, 700); INSERT INTO actors_films (actor_id, film_id) VALUES (31, 739); INSERT INTO actors_films (actor_id, film_id) VALUES (31, 793); INSERT INTO actors_films (actor_id, film_id) VALUES (31, 802); INSERT INTO actors_films (actor_id, film_id) VALUES (31, 880); INSERT INTO actors_films (actor_id, film_id) VALUES (31, 978); INSERT INTO actors_films (actor_id, film_id) VALUES (32, 65); INSERT INTO actors_films (actor_id, film_id) VALUES (32, 84); INSERT INTO actors_films (actor_id, film_id) VALUES (32, 103); INSERT INTO actors_films (actor_id, film_id) VALUES (32, 112); INSERT INTO actors_films (actor_id, film_id) VALUES (32, 136); INSERT INTO actors_films (actor_id, film_id) VALUES (32, 197); INSERT INTO actors_films (actor_id, film_id) VALUES (32, 199); INSERT INTO actors_films (actor_id, film_id) VALUES (32, 219); INSERT INTO actors_films (actor_id, film_id) VALUES (32, 309); INSERT INTO actors_films (actor_id, film_id) VALUES (32, 312); INSERT INTO actors_films (actor_id, film_id) VALUES (32, 401); INSERT INTO actors_films (actor_id, film_id) VALUES (32, 427); INSERT INTO actors_films (actor_id, film_id) VALUES (32, 431); INSERT INTO actors_films (actor_id, film_id) VALUES (32, 523); INSERT INTO actors_films (actor_id, film_id) VALUES (32, 567); INSERT INTO actors_films (actor_id, film_id) VALUES (32, 585); INSERT INTO actors_films (actor_id, film_id) VALUES (32, 606); INSERT INTO actors_films (actor_id, film_id) VALUES (32, 651); INSERT INTO actors_films (actor_id, film_id) VALUES (32, 667); INSERT INTO actors_films (actor_id, film_id) VALUES (32, 669); INSERT INTO actors_films (actor_id, film_id) VALUES (32, 815); INSERT INTO actors_films (actor_id, film_id) VALUES (32, 928); INSERT INTO actors_films (actor_id, film_id) VALUES (32, 980); INSERT INTO actors_films (actor_id, film_id) VALUES (33, 56); INSERT INTO actors_films (actor_id, film_id) VALUES (33, 112); INSERT INTO actors_films (actor_id, film_id) VALUES (33, 135); INSERT INTO actors_films (actor_id, film_id) VALUES (33, 154); INSERT INTO actors_films (actor_id, film_id) VALUES (33, 214); INSERT INTO actors_films (actor_id, film_id) VALUES (33, 252); INSERT INTO actors_films (actor_id, film_id) VALUES (33, 305); INSERT INTO actors_films (actor_id, film_id) VALUES (33, 306); INSERT INTO actors_films (actor_id, film_id) VALUES (33, 473); INSERT INTO actors_films (actor_id, film_id) VALUES (33, 489); INSERT INTO actors_films (actor_id, film_id) VALUES (33, 574); INSERT INTO actors_films (actor_id, film_id) VALUES (33, 618); INSERT INTO actors_films (actor_id, film_id) VALUES (33, 667); INSERT INTO actors_films (actor_id, film_id) VALUES (33, 694); INSERT INTO actors_films (actor_id, film_id) VALUES (33, 712); INSERT INTO actors_films (actor_id, film_id) VALUES (33, 735); INSERT INTO actors_films (actor_id, film_id) VALUES (33, 737); INSERT INTO actors_films (actor_id, film_id) VALUES (33, 754); INSERT INTO actors_films (actor_id, film_id) VALUES (33, 775); INSERT INTO actors_films (actor_id, film_id) VALUES (33, 878); INSERT INTO actors_films (actor_id, film_id) VALUES (33, 881); INSERT INTO actors_films (actor_id, film_id) VALUES (33, 965); INSERT INTO actors_films (actor_id, film_id) VALUES (33, 972); INSERT INTO actors_films (actor_id, film_id) VALUES (33, 993); INSERT INTO actors_films (actor_id, film_id) VALUES (34, 43); INSERT INTO actors_films (actor_id, film_id) VALUES (34, 90); INSERT INTO actors_films (actor_id, film_id) VALUES (34, 119); INSERT INTO actors_films (actor_id, film_id) VALUES (34, 125); INSERT INTO actors_films (actor_id, film_id) VALUES (34, 172); INSERT INTO actors_films (actor_id, film_id) VALUES (34, 182); INSERT INTO actors_films (actor_id, film_id) VALUES (34, 244); INSERT INTO actors_films (actor_id, film_id) VALUES (34, 336); INSERT INTO actors_films (actor_id, film_id) VALUES (34, 389); INSERT INTO actors_films (actor_id, film_id) VALUES (34, 393); INSERT INTO actors_films (actor_id, film_id) VALUES (34, 438); INSERT INTO actors_films (actor_id, film_id) VALUES (34, 493); INSERT INTO actors_films (actor_id, film_id) VALUES (34, 502); INSERT INTO actors_films (actor_id, film_id) VALUES (34, 525); INSERT INTO actors_films (actor_id, film_id) VALUES (34, 668); INSERT INTO actors_films (actor_id, film_id) VALUES (34, 720); INSERT INTO actors_films (actor_id, film_id) VALUES (34, 779); INSERT INTO actors_films (actor_id, film_id) VALUES (34, 788); INSERT INTO actors_films (actor_id, film_id) VALUES (34, 794); INSERT INTO actors_films (actor_id, film_id) VALUES (34, 836); INSERT INTO actors_films (actor_id, film_id) VALUES (34, 846); INSERT INTO actors_films (actor_id, film_id) VALUES (34, 853); INSERT INTO actors_films (actor_id, film_id) VALUES (34, 929); INSERT INTO actors_films (actor_id, film_id) VALUES (34, 950); INSERT INTO actors_films (actor_id, film_id) VALUES (34, 971); INSERT INTO actors_films (actor_id, film_id) VALUES (35, 10); INSERT INTO actors_films (actor_id, film_id) VALUES (35, 35); INSERT INTO actors_films (actor_id, film_id) VALUES (35, 52); INSERT INTO actors_films (actor_id, film_id) VALUES (35, 201); INSERT INTO actors_films (actor_id, film_id) VALUES (35, 256); INSERT INTO actors_films (actor_id, film_id) VALUES (35, 389); INSERT INTO actors_films (actor_id, film_id) VALUES (35, 589); INSERT INTO actors_films (actor_id, film_id) VALUES (35, 612); INSERT INTO actors_films (actor_id, film_id) VALUES (35, 615); INSERT INTO actors_films (actor_id, film_id) VALUES (35, 707); INSERT INTO actors_films (actor_id, film_id) VALUES (35, 732); INSERT INTO actors_films (actor_id, film_id) VALUES (35, 738); INSERT INTO actors_films (actor_id, film_id) VALUES (35, 748); INSERT INTO actors_films (actor_id, film_id) VALUES (35, 817); INSERT INTO actors_films (actor_id, film_id) VALUES (35, 914); INSERT INTO actors_films (actor_id, film_id) VALUES (36, 15); INSERT INTO actors_films (actor_id, film_id) VALUES (36, 81); INSERT INTO actors_films (actor_id, film_id) VALUES (36, 171); INSERT INTO actors_films (actor_id, film_id) VALUES (36, 231); INSERT INTO actors_films (actor_id, film_id) VALUES (36, 245); INSERT INTO actors_films (actor_id, film_id) VALUES (36, 283); INSERT INTO actors_films (actor_id, film_id) VALUES (36, 380); INSERT INTO actors_films (actor_id, film_id) VALUES (36, 381); INSERT INTO actors_films (actor_id, film_id) VALUES (36, 387); INSERT INTO actors_films (actor_id, film_id) VALUES (36, 390); INSERT INTO actors_films (actor_id, film_id) VALUES (36, 410); INSERT INTO actors_films (actor_id, film_id) VALUES (36, 426); INSERT INTO actors_films (actor_id, film_id) VALUES (36, 427); INSERT INTO actors_films (actor_id, film_id) VALUES (36, 453); INSERT INTO actors_films (actor_id, film_id) VALUES (36, 466); INSERT INTO actors_films (actor_id, film_id) VALUES (36, 484); INSERT INTO actors_films (actor_id, film_id) VALUES (36, 493); INSERT INTO actors_films (actor_id, film_id) VALUES (36, 499); INSERT INTO actors_films (actor_id, film_id) VALUES (36, 569); INSERT INTO actors_films (actor_id, film_id) VALUES (36, 590); INSERT INTO actors_films (actor_id, film_id) VALUES (36, 600); INSERT INTO actors_films (actor_id, film_id) VALUES (36, 714); INSERT INTO actors_films (actor_id, film_id) VALUES (36, 715); INSERT INTO actors_films (actor_id, film_id) VALUES (36, 716); INSERT INTO actors_films (actor_id, film_id) VALUES (36, 731); INSERT INTO actors_films (actor_id, film_id) VALUES (36, 875); INSERT INTO actors_films (actor_id, film_id) VALUES (36, 915); INSERT INTO actors_films (actor_id, film_id) VALUES (36, 931); INSERT INTO actors_films (actor_id, film_id) VALUES (36, 956); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 10); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 12); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 19); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 118); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 119); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 122); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 146); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 204); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 253); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 260); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 277); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 317); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 467); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 477); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 485); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 508); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 529); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 553); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 555); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 572); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 588); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 662); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 663); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 694); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 697); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 785); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 839); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 840); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 853); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 900); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 925); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 963); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 966); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 989); INSERT INTO actors_films (actor_id, film_id) VALUES (37, 997); INSERT INTO actors_films (actor_id, film_id) VALUES (38, 24); INSERT INTO actors_films (actor_id, film_id) VALUES (38, 111); INSERT INTO actors_films (actor_id, film_id) VALUES (38, 160); INSERT INTO actors_films (actor_id, film_id) VALUES (38, 176); INSERT INTO actors_films (actor_id, film_id) VALUES (38, 223); INSERT INTO actors_films (actor_id, film_id) VALUES (38, 241); INSERT INTO actors_films (actor_id, film_id) VALUES (38, 274); INSERT INTO actors_films (actor_id, film_id) VALUES (38, 335); INSERT INTO actors_films (actor_id, film_id) VALUES (38, 338); INSERT INTO actors_films (actor_id, film_id) VALUES (38, 353); INSERT INTO actors_films (actor_id, film_id) VALUES (38, 448); INSERT INTO actors_films (actor_id, film_id) VALUES (38, 450); INSERT INTO actors_films (actor_id, film_id) VALUES (38, 458); INSERT INTO actors_films (actor_id, film_id) VALUES (38, 501); INSERT INTO actors_films (actor_id, film_id) VALUES (38, 516); INSERT INTO actors_films (actor_id, film_id) VALUES (38, 547); INSERT INTO actors_films (actor_id, film_id) VALUES (38, 583); INSERT INTO actors_films (actor_id, film_id) VALUES (38, 618); INSERT INTO actors_films (actor_id, film_id) VALUES (38, 619); INSERT INTO actors_films (actor_id, film_id) VALUES (38, 705); INSERT INTO actors_films (actor_id, film_id) VALUES (38, 793); INSERT INTO actors_films (actor_id, film_id) VALUES (38, 827); INSERT INTO actors_films (actor_id, film_id) VALUES (38, 839); INSERT INTO actors_films (actor_id, film_id) VALUES (38, 853); INSERT INTO actors_films (actor_id, film_id) VALUES (38, 876); INSERT INTO actors_films (actor_id, film_id) VALUES (39, 71); INSERT INTO actors_films (actor_id, film_id) VALUES (39, 73); INSERT INTO actors_films (actor_id, film_id) VALUES (39, 168); INSERT INTO actors_films (actor_id, film_id) VALUES (39, 203); INSERT INTO actors_films (actor_id, film_id) VALUES (39, 222); INSERT INTO actors_films (actor_id, film_id) VALUES (39, 290); INSERT INTO actors_films (actor_id, film_id) VALUES (39, 293); INSERT INTO actors_films (actor_id, film_id) VALUES (39, 320); INSERT INTO actors_films (actor_id, film_id) VALUES (39, 415); INSERT INTO actors_films (actor_id, film_id) VALUES (39, 425); INSERT INTO actors_films (actor_id, film_id) VALUES (39, 431); INSERT INTO actors_films (actor_id, film_id) VALUES (39, 456); INSERT INTO actors_films (actor_id, film_id) VALUES (39, 476); INSERT INTO actors_films (actor_id, film_id) VALUES (39, 559); INSERT INTO actors_films (actor_id, film_id) VALUES (39, 587); INSERT INTO actors_films (actor_id, film_id) VALUES (39, 598); INSERT INTO actors_films (actor_id, film_id) VALUES (39, 606); INSERT INTO actors_films (actor_id, film_id) VALUES (39, 648); INSERT INTO actors_films (actor_id, film_id) VALUES (39, 683); INSERT INTO actors_films (actor_id, film_id) VALUES (39, 689); INSERT INTO actors_films (actor_id, film_id) VALUES (39, 696); INSERT INTO actors_films (actor_id, film_id) VALUES (39, 700); INSERT INTO actors_films (actor_id, film_id) VALUES (39, 703); INSERT INTO actors_films (actor_id, film_id) VALUES (39, 736); INSERT INTO actors_films (actor_id, film_id) VALUES (39, 772); INSERT INTO actors_films (actor_id, film_id) VALUES (39, 815); INSERT INTO actors_films (actor_id, film_id) VALUES (39, 831); INSERT INTO actors_films (actor_id, film_id) VALUES (39, 920); INSERT INTO actors_films (actor_id, film_id) VALUES (40, 1); INSERT INTO actors_films (actor_id, film_id) VALUES (40, 11); INSERT INTO actors_films (actor_id, film_id) VALUES (40, 34); INSERT INTO actors_films (actor_id, film_id) VALUES (40, 107); INSERT INTO actors_films (actor_id, film_id) VALUES (40, 128); INSERT INTO actors_films (actor_id, film_id) VALUES (40, 163); INSERT INTO actors_films (actor_id, film_id) VALUES (40, 177); INSERT INTO actors_films (actor_id, film_id) VALUES (40, 223); INSERT INTO actors_films (actor_id, film_id) VALUES (40, 233); INSERT INTO actors_films (actor_id, film_id) VALUES (40, 326); INSERT INTO actors_films (actor_id, film_id) VALUES (40, 374); INSERT INTO actors_films (actor_id, film_id) VALUES (40, 394); INSERT INTO actors_films (actor_id, film_id) VALUES (40, 396); INSERT INTO actors_films (actor_id, film_id) VALUES (40, 463); INSERT INTO actors_films (actor_id, film_id) VALUES (40, 466); INSERT INTO actors_films (actor_id, film_id) VALUES (40, 494); INSERT INTO actors_films (actor_id, film_id) VALUES (40, 521); INSERT INTO actors_films (actor_id, film_id) VALUES (40, 723); INSERT INTO actors_films (actor_id, film_id) VALUES (40, 737); INSERT INTO actors_films (actor_id, film_id) VALUES (40, 744); INSERT INTO actors_films (actor_id, film_id) VALUES (40, 747); INSERT INTO actors_films (actor_id, film_id) VALUES (40, 754); INSERT INTO actors_films (actor_id, film_id) VALUES (40, 799); INSERT INTO actors_films (actor_id, film_id) VALUES (40, 835); INSERT INTO actors_films (actor_id, film_id) VALUES (40, 868); INSERT INTO actors_films (actor_id, film_id) VALUES (40, 869); INSERT INTO actors_films (actor_id, film_id) VALUES (40, 887); INSERT INTO actors_films (actor_id, film_id) VALUES (40, 933); INSERT INTO actors_films (actor_id, film_id) VALUES (40, 938); INSERT INTO actors_films (actor_id, film_id) VALUES (41, 4); INSERT INTO actors_films (actor_id, film_id) VALUES (41, 60); INSERT INTO actors_films (actor_id, film_id) VALUES (41, 69); INSERT INTO actors_films (actor_id, film_id) VALUES (41, 86); INSERT INTO actors_films (actor_id, film_id) VALUES (41, 100); INSERT INTO actors_films (actor_id, film_id) VALUES (41, 150); INSERT INTO actors_films (actor_id, film_id) VALUES (41, 159); INSERT INTO actors_films (actor_id, film_id) VALUES (41, 194); INSERT INTO actors_films (actor_id, film_id) VALUES (41, 203); INSERT INTO actors_films (actor_id, film_id) VALUES (41, 212); INSERT INTO actors_films (actor_id, film_id) VALUES (41, 230); INSERT INTO actors_films (actor_id, film_id) VALUES (41, 249); INSERT INTO actors_films (actor_id, film_id) VALUES (41, 252); INSERT INTO actors_films (actor_id, film_id) VALUES (41, 305); INSERT INTO actors_films (actor_id, film_id) VALUES (41, 336); INSERT INTO actors_films (actor_id, film_id) VALUES (41, 383); INSERT INTO actors_films (actor_id, film_id) VALUES (41, 544); INSERT INTO actors_films (actor_id, film_id) VALUES (41, 596); INSERT INTO actors_films (actor_id, film_id) VALUES (41, 657); INSERT INTO actors_films (actor_id, film_id) VALUES (41, 674); INSERT INTO actors_films (actor_id, film_id) VALUES (41, 678); INSERT INTO actors_films (actor_id, film_id) VALUES (41, 721); INSERT INTO actors_films (actor_id, film_id) VALUES (41, 724); INSERT INTO actors_films (actor_id, film_id) VALUES (41, 779); INSERT INTO actors_films (actor_id, film_id) VALUES (41, 784); INSERT INTO actors_films (actor_id, film_id) VALUES (41, 799); INSERT INTO actors_films (actor_id, film_id) VALUES (41, 894); INSERT INTO actors_films (actor_id, film_id) VALUES (41, 912); INSERT INTO actors_films (actor_id, film_id) VALUES (41, 942); INSERT INTO actors_films (actor_id, film_id) VALUES (42, 24); INSERT INTO actors_films (actor_id, film_id) VALUES (42, 139); INSERT INTO actors_films (actor_id, film_id) VALUES (42, 309); INSERT INTO actors_films (actor_id, film_id) VALUES (42, 320); INSERT INTO actors_films (actor_id, film_id) VALUES (42, 333); INSERT INTO actors_films (actor_id, film_id) VALUES (42, 500); INSERT INTO actors_films (actor_id, film_id) VALUES (42, 502); INSERT INTO actors_films (actor_id, film_id) VALUES (42, 505); INSERT INTO actors_films (actor_id, film_id) VALUES (42, 527); INSERT INTO actors_films (actor_id, film_id) VALUES (42, 535); INSERT INTO actors_films (actor_id, film_id) VALUES (42, 546); INSERT INTO actors_films (actor_id, film_id) VALUES (42, 568); INSERT INTO actors_films (actor_id, film_id) VALUES (42, 648); INSERT INTO actors_films (actor_id, film_id) VALUES (42, 665); INSERT INTO actors_films (actor_id, film_id) VALUES (42, 673); INSERT INTO actors_films (actor_id, film_id) VALUES (42, 687); INSERT INTO actors_films (actor_id, film_id) VALUES (42, 713); INSERT INTO actors_films (actor_id, film_id) VALUES (42, 738); INSERT INTO actors_films (actor_id, film_id) VALUES (42, 798); INSERT INTO actors_films (actor_id, film_id) VALUES (42, 861); INSERT INTO actors_films (actor_id, film_id) VALUES (42, 865); INSERT INTO actors_films (actor_id, film_id) VALUES (42, 867); INSERT INTO actors_films (actor_id, film_id) VALUES (42, 876); INSERT INTO actors_films (actor_id, film_id) VALUES (42, 890); INSERT INTO actors_films (actor_id, film_id) VALUES (42, 907); INSERT INTO actors_films (actor_id, film_id) VALUES (42, 922); INSERT INTO actors_films (actor_id, film_id) VALUES (42, 932); INSERT INTO actors_films (actor_id, film_id) VALUES (43, 19); INSERT INTO actors_films (actor_id, film_id) VALUES (43, 42); INSERT INTO actors_films (actor_id, film_id) VALUES (43, 56); INSERT INTO actors_films (actor_id, film_id) VALUES (43, 89); INSERT INTO actors_films (actor_id, film_id) VALUES (43, 105); INSERT INTO actors_films (actor_id, film_id) VALUES (43, 147); INSERT INTO actors_films (actor_id, film_id) VALUES (43, 161); INSERT INTO actors_films (actor_id, film_id) VALUES (43, 180); INSERT INTO actors_films (actor_id, film_id) VALUES (43, 239); INSERT INTO actors_films (actor_id, film_id) VALUES (43, 276); INSERT INTO actors_films (actor_id, film_id) VALUES (43, 330); INSERT INTO actors_films (actor_id, film_id) VALUES (43, 344); INSERT INTO actors_films (actor_id, film_id) VALUES (43, 359); INSERT INTO actors_films (actor_id, film_id) VALUES (43, 377); INSERT INTO actors_films (actor_id, film_id) VALUES (43, 410); INSERT INTO actors_films (actor_id, film_id) VALUES (43, 462); INSERT INTO actors_films (actor_id, film_id) VALUES (43, 533); INSERT INTO actors_films (actor_id, film_id) VALUES (43, 598); INSERT INTO actors_films (actor_id, film_id) VALUES (43, 605); INSERT INTO actors_films (actor_id, film_id) VALUES (43, 608); INSERT INTO actors_films (actor_id, film_id) VALUES (43, 621); INSERT INTO actors_films (actor_id, film_id) VALUES (43, 753); INSERT INTO actors_films (actor_id, film_id) VALUES (43, 827); INSERT INTO actors_films (actor_id, film_id) VALUES (43, 833); INSERT INTO actors_films (actor_id, film_id) VALUES (43, 917); INSERT INTO actors_films (actor_id, film_id) VALUES (43, 958); INSERT INTO actors_films (actor_id, film_id) VALUES (44, 58); INSERT INTO actors_films (actor_id, film_id) VALUES (44, 84); INSERT INTO actors_films (actor_id, film_id) VALUES (44, 88); INSERT INTO actors_films (actor_id, film_id) VALUES (44, 94); INSERT INTO actors_films (actor_id, film_id) VALUES (44, 109); INSERT INTO actors_films (actor_id, film_id) VALUES (44, 176); INSERT INTO actors_films (actor_id, film_id) VALUES (44, 242); INSERT INTO actors_films (actor_id, film_id) VALUES (44, 273); INSERT INTO actors_films (actor_id, film_id) VALUES (44, 322); INSERT INTO actors_films (actor_id, film_id) VALUES (44, 420); INSERT INTO actors_films (actor_id, film_id) VALUES (44, 434); INSERT INTO actors_films (actor_id, film_id) VALUES (44, 490); INSERT INTO actors_films (actor_id, film_id) VALUES (44, 591); INSERT INTO actors_films (actor_id, film_id) VALUES (44, 598); INSERT INTO actors_films (actor_id, film_id) VALUES (44, 604); INSERT INTO actors_films (actor_id, film_id) VALUES (44, 699); INSERT INTO actors_films (actor_id, film_id) VALUES (44, 751); INSERT INTO actors_films (actor_id, film_id) VALUES (44, 784); INSERT INTO actors_films (actor_id, film_id) VALUES (44, 825); INSERT INTO actors_films (actor_id, film_id) VALUES (44, 854); INSERT INTO actors_films (actor_id, film_id) VALUES (44, 875); INSERT INTO actors_films (actor_id, film_id) VALUES (44, 878); INSERT INTO actors_films (actor_id, film_id) VALUES (44, 883); INSERT INTO actors_films (actor_id, film_id) VALUES (44, 896); INSERT INTO actors_films (actor_id, film_id) VALUES (44, 902); INSERT INTO actors_films (actor_id, film_id) VALUES (44, 937); INSERT INTO actors_films (actor_id, film_id) VALUES (44, 944); INSERT INTO actors_films (actor_id, film_id) VALUES (44, 952); INSERT INTO actors_films (actor_id, film_id) VALUES (44, 982); INSERT INTO actors_films (actor_id, film_id) VALUES (44, 998); INSERT INTO actors_films (actor_id, film_id) VALUES (45, 18); INSERT INTO actors_films (actor_id, film_id) VALUES (45, 65); INSERT INTO actors_films (actor_id, film_id) VALUES (45, 66); INSERT INTO actors_films (actor_id, film_id) VALUES (45, 115); INSERT INTO actors_films (actor_id, film_id) VALUES (45, 117); INSERT INTO actors_films (actor_id, film_id) VALUES (45, 164); INSERT INTO actors_films (actor_id, film_id) VALUES (45, 187); INSERT INTO actors_films (actor_id, film_id) VALUES (45, 198); INSERT INTO actors_films (actor_id, film_id) VALUES (45, 219); INSERT INTO actors_films (actor_id, film_id) VALUES (45, 330); INSERT INTO actors_films (actor_id, film_id) VALUES (45, 407); INSERT INTO actors_films (actor_id, film_id) VALUES (45, 416); INSERT INTO actors_films (actor_id, film_id) VALUES (45, 463); INSERT INTO actors_films (actor_id, film_id) VALUES (45, 467); INSERT INTO actors_films (actor_id, film_id) VALUES (45, 484); INSERT INTO actors_films (actor_id, film_id) VALUES (45, 502); INSERT INTO actors_films (actor_id, film_id) VALUES (45, 503); INSERT INTO actors_films (actor_id, film_id) VALUES (45, 508); INSERT INTO actors_films (actor_id, film_id) VALUES (45, 537); INSERT INTO actors_films (actor_id, film_id) VALUES (45, 680); INSERT INTO actors_films (actor_id, film_id) VALUES (45, 714); INSERT INTO actors_films (actor_id, film_id) VALUES (45, 767); INSERT INTO actors_films (actor_id, film_id) VALUES (45, 778); INSERT INTO actors_films (actor_id, film_id) VALUES (45, 797); INSERT INTO actors_films (actor_id, film_id) VALUES (45, 810); INSERT INTO actors_films (actor_id, film_id) VALUES (45, 895); INSERT INTO actors_films (actor_id, film_id) VALUES (45, 900); INSERT INTO actors_films (actor_id, film_id) VALUES (45, 901); INSERT INTO actors_films (actor_id, film_id) VALUES (45, 920); INSERT INTO actors_films (actor_id, film_id) VALUES (45, 925); INSERT INTO actors_films (actor_id, film_id) VALUES (45, 975); INSERT INTO actors_films (actor_id, film_id) VALUES (45, 978); INSERT INTO actors_films (actor_id, film_id) VALUES (46, 38); INSERT INTO actors_films (actor_id, film_id) VALUES (46, 51); INSERT INTO actors_films (actor_id, film_id) VALUES (46, 174); INSERT INTO actors_films (actor_id, film_id) VALUES (46, 254); INSERT INTO actors_films (actor_id, film_id) VALUES (46, 296); INSERT INTO actors_films (actor_id, film_id) VALUES (46, 319); INSERT INTO actors_films (actor_id, film_id) VALUES (46, 407); INSERT INTO actors_films (actor_id, film_id) VALUES (46, 448); INSERT INTO actors_films (actor_id, film_id) VALUES (46, 456); INSERT INTO actors_films (actor_id, film_id) VALUES (46, 463); INSERT INTO actors_films (actor_id, film_id) VALUES (46, 478); INSERT INTO actors_films (actor_id, film_id) VALUES (46, 538); INSERT INTO actors_films (actor_id, film_id) VALUES (46, 540); INSERT INTO actors_films (actor_id, film_id) VALUES (46, 567); INSERT INTO actors_films (actor_id, film_id) VALUES (46, 731); INSERT INTO actors_films (actor_id, film_id) VALUES (46, 766); INSERT INTO actors_films (actor_id, film_id) VALUES (46, 768); INSERT INTO actors_films (actor_id, film_id) VALUES (46, 820); INSERT INTO actors_films (actor_id, film_id) VALUES (46, 829); INSERT INTO actors_films (actor_id, film_id) VALUES (46, 830); INSERT INTO actors_films (actor_id, film_id) VALUES (46, 836); INSERT INTO actors_films (actor_id, film_id) VALUES (46, 889); INSERT INTO actors_films (actor_id, film_id) VALUES (46, 980); INSERT INTO actors_films (actor_id, film_id) VALUES (46, 991); INSERT INTO actors_films (actor_id, film_id) VALUES (47, 25); INSERT INTO actors_films (actor_id, film_id) VALUES (47, 36); INSERT INTO actors_films (actor_id, film_id) VALUES (47, 53); INSERT INTO actors_films (actor_id, film_id) VALUES (47, 67); INSERT INTO actors_films (actor_id, film_id) VALUES (47, 172); INSERT INTO actors_films (actor_id, film_id) VALUES (47, 233); INSERT INTO actors_films (actor_id, film_id) VALUES (47, 273); INSERT INTO actors_films (actor_id, film_id) VALUES (47, 351); INSERT INTO actors_films (actor_id, film_id) VALUES (47, 385); INSERT INTO actors_films (actor_id, film_id) VALUES (47, 484); INSERT INTO actors_films (actor_id, film_id) VALUES (47, 508); INSERT INTO actors_films (actor_id, film_id) VALUES (47, 576); INSERT INTO actors_films (actor_id, film_id) VALUES (47, 670); INSERT INTO actors_films (actor_id, film_id) VALUES (47, 734); INSERT INTO actors_films (actor_id, film_id) VALUES (47, 737); INSERT INTO actors_films (actor_id, film_id) VALUES (47, 770); INSERT INTO actors_films (actor_id, film_id) VALUES (47, 777); INSERT INTO actors_films (actor_id, film_id) VALUES (47, 787); INSERT INTO actors_films (actor_id, film_id) VALUES (47, 790); INSERT INTO actors_films (actor_id, film_id) VALUES (47, 913); INSERT INTO actors_films (actor_id, film_id) VALUES (47, 923); INSERT INTO actors_films (actor_id, film_id) VALUES (47, 924); INSERT INTO actors_films (actor_id, film_id) VALUES (47, 944); INSERT INTO actors_films (actor_id, film_id) VALUES (47, 973); INSERT INTO actors_films (actor_id, film_id) VALUES (48, 99); INSERT INTO actors_films (actor_id, film_id) VALUES (48, 101); INSERT INTO actors_films (actor_id, film_id) VALUES (48, 134); INSERT INTO actors_films (actor_id, film_id) VALUES (48, 150); INSERT INTO actors_films (actor_id, film_id) VALUES (48, 164); INSERT INTO actors_films (actor_id, film_id) VALUES (48, 211); INSERT INTO actors_films (actor_id, film_id) VALUES (48, 245); INSERT INTO actors_films (actor_id, film_id) VALUES (48, 267); INSERT INTO actors_films (actor_id, film_id) VALUES (48, 287); INSERT INTO actors_films (actor_id, film_id) VALUES (48, 295); INSERT INTO actors_films (actor_id, film_id) VALUES (48, 312); INSERT INTO actors_films (actor_id, film_id) VALUES (48, 315); INSERT INTO actors_films (actor_id, film_id) VALUES (48, 345); INSERT INTO actors_films (actor_id, film_id) VALUES (48, 349); INSERT INTO actors_films (actor_id, film_id) VALUES (48, 428); INSERT INTO actors_films (actor_id, film_id) VALUES (48, 506); INSERT INTO actors_films (actor_id, film_id) VALUES (48, 545); INSERT INTO actors_films (actor_id, film_id) VALUES (48, 559); INSERT INTO actors_films (actor_id, film_id) VALUES (48, 570); INSERT INTO actors_films (actor_id, film_id) VALUES (48, 599); INSERT INTO actors_films (actor_id, film_id) VALUES (48, 645); INSERT INTO actors_films (actor_id, film_id) VALUES (48, 705); INSERT INTO actors_films (actor_id, film_id) VALUES (48, 757); INSERT INTO actors_films (actor_id, film_id) VALUES (48, 792); INSERT INTO actors_films (actor_id, film_id) VALUES (48, 922); INSERT INTO actors_films (actor_id, film_id) VALUES (48, 926); INSERT INTO actors_films (actor_id, film_id) VALUES (49, 31); INSERT INTO actors_films (actor_id, film_id) VALUES (49, 151); INSERT INTO actors_films (actor_id, film_id) VALUES (49, 195); INSERT INTO actors_films (actor_id, film_id) VALUES (49, 207); INSERT INTO actors_films (actor_id, film_id) VALUES (49, 250); INSERT INTO actors_films (actor_id, film_id) VALUES (49, 282); INSERT INTO actors_films (actor_id, film_id) VALUES (49, 348); INSERT INTO actors_films (actor_id, film_id) VALUES (49, 391); INSERT INTO actors_films (actor_id, film_id) VALUES (49, 400); INSERT INTO actors_films (actor_id, film_id) VALUES (49, 407); INSERT INTO actors_films (actor_id, film_id) VALUES (49, 423); INSERT INTO actors_films (actor_id, film_id) VALUES (49, 433); INSERT INTO actors_films (actor_id, film_id) VALUES (49, 469); INSERT INTO actors_films (actor_id, film_id) VALUES (49, 506); INSERT INTO actors_films (actor_id, film_id) VALUES (49, 542); INSERT INTO actors_films (actor_id, film_id) VALUES (49, 558); INSERT INTO actors_films (actor_id, film_id) VALUES (49, 579); INSERT INTO actors_films (actor_id, film_id) VALUES (49, 595); INSERT INTO actors_films (actor_id, film_id) VALUES (49, 662); INSERT INTO actors_films (actor_id, film_id) VALUES (49, 709); INSERT INTO actors_films (actor_id, film_id) VALUES (49, 716); INSERT INTO actors_films (actor_id, film_id) VALUES (49, 725); INSERT INTO actors_films (actor_id, film_id) VALUES (49, 729); INSERT INTO actors_films (actor_id, film_id) VALUES (49, 811); INSERT INTO actors_films (actor_id, film_id) VALUES (49, 927); INSERT INTO actors_films (actor_id, film_id) VALUES (49, 977); INSERT INTO actors_films (actor_id, film_id) VALUES (49, 980); INSERT INTO actors_films (actor_id, film_id) VALUES (50, 111); INSERT INTO actors_films (actor_id, film_id) VALUES (50, 178); INSERT INTO actors_films (actor_id, film_id) VALUES (50, 243); INSERT INTO actors_films (actor_id, film_id) VALUES (50, 248); INSERT INTO actors_films (actor_id, film_id) VALUES (50, 274); INSERT INTO actors_films (actor_id, film_id) VALUES (50, 288); INSERT INTO actors_films (actor_id, film_id) VALUES (50, 303); INSERT INTO actors_films (actor_id, film_id) VALUES (50, 306); INSERT INTO actors_films (actor_id, film_id) VALUES (50, 327); INSERT INTO actors_films (actor_id, film_id) VALUES (50, 372); INSERT INTO actors_films (actor_id, film_id) VALUES (50, 401); INSERT INTO actors_films (actor_id, film_id) VALUES (50, 417); INSERT INTO actors_films (actor_id, film_id) VALUES (50, 420); INSERT INTO actors_films (actor_id, film_id) VALUES (50, 437); INSERT INTO actors_films (actor_id, film_id) VALUES (50, 476); INSERT INTO actors_films (actor_id, film_id) VALUES (50, 504); INSERT INTO actors_films (actor_id, film_id) VALUES (50, 520); INSERT INTO actors_films (actor_id, film_id) VALUES (50, 552); INSERT INTO actors_films (actor_id, film_id) VALUES (50, 591); INSERT INTO actors_films (actor_id, film_id) VALUES (50, 621); INSERT INTO actors_films (actor_id, film_id) VALUES (50, 632); INSERT INTO actors_films (actor_id, film_id) VALUES (50, 645); INSERT INTO actors_films (actor_id, film_id) VALUES (50, 672); INSERT INTO actors_films (actor_id, film_id) VALUES (50, 717); INSERT INTO actors_films (actor_id, film_id) VALUES (50, 732); INSERT INTO actors_films (actor_id, film_id) VALUES (50, 795); INSERT INTO actors_films (actor_id, film_id) VALUES (50, 829); INSERT INTO actors_films (actor_id, film_id) VALUES (50, 840); INSERT INTO actors_films (actor_id, film_id) VALUES (50, 897); INSERT INTO actors_films (actor_id, film_id) VALUES (50, 918); INSERT INTO actors_films (actor_id, film_id) VALUES (50, 924); INSERT INTO actors_films (actor_id, film_id) VALUES (50, 957); INSERT INTO actors_films (actor_id, film_id) VALUES (51, 5); INSERT INTO actors_films (actor_id, film_id) VALUES (51, 63); INSERT INTO actors_films (actor_id, film_id) VALUES (51, 103); INSERT INTO actors_films (actor_id, film_id) VALUES (51, 112); INSERT INTO actors_films (actor_id, film_id) VALUES (51, 121); INSERT INTO actors_films (actor_id, film_id) VALUES (51, 153); INSERT INTO actors_films (actor_id, film_id) VALUES (51, 395); INSERT INTO actors_films (actor_id, film_id) VALUES (51, 408); INSERT INTO actors_films (actor_id, film_id) VALUES (51, 420); INSERT INTO actors_films (actor_id, film_id) VALUES (51, 461); INSERT INTO actors_films (actor_id, film_id) VALUES (51, 490); INSERT INTO actors_films (actor_id, film_id) VALUES (51, 525); INSERT INTO actors_films (actor_id, film_id) VALUES (51, 627); INSERT INTO actors_films (actor_id, film_id) VALUES (51, 678); INSERT INTO actors_films (actor_id, film_id) VALUES (51, 733); INSERT INTO actors_films (actor_id, film_id) VALUES (51, 734); INSERT INTO actors_films (actor_id, film_id) VALUES (51, 737); INSERT INTO actors_films (actor_id, film_id) VALUES (51, 750); INSERT INTO actors_films (actor_id, film_id) VALUES (51, 847); INSERT INTO actors_films (actor_id, film_id) VALUES (51, 891); INSERT INTO actors_films (actor_id, film_id) VALUES (51, 895); INSERT INTO actors_films (actor_id, film_id) VALUES (51, 940); INSERT INTO actors_films (actor_id, film_id) VALUES (51, 974); INSERT INTO actors_films (actor_id, film_id) VALUES (51, 990); INSERT INTO actors_films (actor_id, film_id) VALUES (51, 993); INSERT INTO actors_films (actor_id, film_id) VALUES (52, 20); INSERT INTO actors_films (actor_id, film_id) VALUES (52, 92); INSERT INTO actors_films (actor_id, film_id) VALUES (52, 96); INSERT INTO actors_films (actor_id, film_id) VALUES (52, 108); INSERT INTO actors_films (actor_id, film_id) VALUES (52, 203); INSERT INTO actors_films (actor_id, film_id) VALUES (52, 249); INSERT INTO actors_films (actor_id, film_id) VALUES (52, 341); INSERT INTO actors_films (actor_id, film_id) VALUES (52, 376); INSERT INTO actors_films (actor_id, film_id) VALUES (52, 388); INSERT INTO actors_films (actor_id, film_id) VALUES (52, 407); INSERT INTO actors_films (actor_id, film_id) VALUES (52, 424); INSERT INTO actors_films (actor_id, film_id) VALUES (52, 474); INSERT INTO actors_films (actor_id, film_id) VALUES (52, 515); INSERT INTO actors_films (actor_id, film_id) VALUES (52, 517); INSERT INTO actors_films (actor_id, film_id) VALUES (52, 584); INSERT INTO actors_films (actor_id, film_id) VALUES (52, 596); INSERT INTO actors_films (actor_id, film_id) VALUES (52, 664); INSERT INTO actors_films (actor_id, film_id) VALUES (52, 675); INSERT INTO actors_films (actor_id, film_id) VALUES (52, 689); INSERT INTO actors_films (actor_id, film_id) VALUES (52, 714); INSERT INTO actors_films (actor_id, film_id) VALUES (52, 812); INSERT INTO actors_films (actor_id, film_id) VALUES (52, 878); INSERT INTO actors_films (actor_id, film_id) VALUES (52, 879); INSERT INTO actors_films (actor_id, film_id) VALUES (52, 915); INSERT INTO actors_films (actor_id, film_id) VALUES (52, 951); INSERT INTO actors_films (actor_id, film_id) VALUES (52, 999); INSERT INTO actors_films (actor_id, film_id) VALUES (53, 1); INSERT INTO actors_films (actor_id, film_id) VALUES (53, 9); INSERT INTO actors_films (actor_id, film_id) VALUES (53, 51); INSERT INTO actors_films (actor_id, film_id) VALUES (53, 58); INSERT INTO actors_films (actor_id, film_id) VALUES (53, 109); INSERT INTO actors_films (actor_id, film_id) VALUES (53, 122); INSERT INTO actors_films (actor_id, film_id) VALUES (53, 126); INSERT INTO actors_films (actor_id, film_id) VALUES (53, 181); INSERT INTO actors_films (actor_id, film_id) VALUES (53, 256); INSERT INTO actors_films (actor_id, film_id) VALUES (53, 268); INSERT INTO actors_films (actor_id, film_id) VALUES (53, 285); INSERT INTO actors_films (actor_id, film_id) VALUES (53, 307); INSERT INTO actors_films (actor_id, film_id) VALUES (53, 358); INSERT INTO actors_films (actor_id, film_id) VALUES (53, 386); INSERT INTO actors_films (actor_id, film_id) VALUES (53, 447); INSERT INTO actors_films (actor_id, film_id) VALUES (53, 465); INSERT INTO actors_films (actor_id, film_id) VALUES (53, 490); INSERT INTO actors_films (actor_id, film_id) VALUES (53, 492); INSERT INTO actors_films (actor_id, film_id) VALUES (53, 508); INSERT INTO actors_films (actor_id, film_id) VALUES (53, 518); INSERT INTO actors_films (actor_id, film_id) VALUES (53, 573); INSERT INTO actors_films (actor_id, film_id) VALUES (53, 576); INSERT INTO actors_films (actor_id, film_id) VALUES (53, 577); INSERT INTO actors_films (actor_id, film_id) VALUES (53, 697); INSERT INTO actors_films (actor_id, film_id) VALUES (53, 725); INSERT INTO actors_films (actor_id, film_id) VALUES (53, 727); INSERT INTO actors_films (actor_id, film_id) VALUES (53, 937); INSERT INTO actors_films (actor_id, film_id) VALUES (53, 947); INSERT INTO actors_films (actor_id, film_id) VALUES (53, 961); INSERT INTO actors_films (actor_id, film_id) VALUES (53, 980); INSERT INTO actors_films (actor_id, film_id) VALUES (54, 84); INSERT INTO actors_films (actor_id, film_id) VALUES (54, 129); INSERT INTO actors_films (actor_id, film_id) VALUES (54, 150); INSERT INTO actors_films (actor_id, film_id) VALUES (54, 184); INSERT INTO actors_films (actor_id, film_id) VALUES (54, 285); INSERT INTO actors_films (actor_id, film_id) VALUES (54, 292); INSERT INTO actors_films (actor_id, film_id) VALUES (54, 301); INSERT INTO actors_films (actor_id, film_id) VALUES (54, 348); INSERT INTO actors_films (actor_id, film_id) VALUES (54, 489); INSERT INTO actors_films (actor_id, film_id) VALUES (54, 510); INSERT INTO actors_films (actor_id, film_id) VALUES (54, 524); INSERT INTO actors_films (actor_id, film_id) VALUES (54, 546); INSERT INTO actors_films (actor_id, film_id) VALUES (54, 600); INSERT INTO actors_films (actor_id, film_id) VALUES (54, 636); INSERT INTO actors_films (actor_id, film_id) VALUES (54, 649); INSERT INTO actors_films (actor_id, film_id) VALUES (54, 658); INSERT INTO actors_films (actor_id, film_id) VALUES (54, 754); INSERT INTO actors_films (actor_id, film_id) VALUES (54, 764); INSERT INTO actors_films (actor_id, film_id) VALUES (54, 842); INSERT INTO actors_films (actor_id, film_id) VALUES (54, 858); INSERT INTO actors_films (actor_id, film_id) VALUES (54, 861); INSERT INTO actors_films (actor_id, film_id) VALUES (54, 913); INSERT INTO actors_films (actor_id, film_id) VALUES (54, 970); INSERT INTO actors_films (actor_id, film_id) VALUES (54, 988); INSERT INTO actors_films (actor_id, film_id) VALUES (54, 990); INSERT INTO actors_films (actor_id, film_id) VALUES (55, 8); INSERT INTO actors_films (actor_id, film_id) VALUES (55, 27); INSERT INTO actors_films (actor_id, film_id) VALUES (55, 75); INSERT INTO actors_films (actor_id, film_id) VALUES (55, 197); INSERT INTO actors_films (actor_id, film_id) VALUES (55, 307); INSERT INTO actors_films (actor_id, film_id) VALUES (55, 320); INSERT INTO actors_films (actor_id, film_id) VALUES (55, 340); INSERT INTO actors_films (actor_id, film_id) VALUES (55, 403); INSERT INTO actors_films (actor_id, film_id) VALUES (55, 485); INSERT INTO actors_films (actor_id, film_id) VALUES (55, 486); INSERT INTO actors_films (actor_id, film_id) VALUES (55, 603); INSERT INTO actors_films (actor_id, film_id) VALUES (55, 612); INSERT INTO actors_films (actor_id, film_id) VALUES (55, 620); INSERT INTO actors_films (actor_id, film_id) VALUES (55, 709); INSERT INTO actors_films (actor_id, film_id) VALUES (55, 776); INSERT INTO actors_films (actor_id, film_id) VALUES (55, 790); INSERT INTO actors_films (actor_id, film_id) VALUES (55, 815); INSERT INTO actors_films (actor_id, film_id) VALUES (55, 827); INSERT INTO actors_films (actor_id, film_id) VALUES (55, 930); INSERT INTO actors_films (actor_id, film_id) VALUES (55, 963); INSERT INTO actors_films (actor_id, film_id) VALUES (56, 63); INSERT INTO actors_films (actor_id, film_id) VALUES (56, 87); INSERT INTO actors_films (actor_id, film_id) VALUES (56, 226); INSERT INTO actors_films (actor_id, film_id) VALUES (56, 236); INSERT INTO actors_films (actor_id, film_id) VALUES (56, 298); INSERT INTO actors_films (actor_id, film_id) VALUES (56, 307); INSERT INTO actors_films (actor_id, film_id) VALUES (56, 354); INSERT INTO actors_films (actor_id, film_id) VALUES (56, 383); INSERT INTO actors_films (actor_id, film_id) VALUES (56, 417); INSERT INTO actors_films (actor_id, film_id) VALUES (56, 421); INSERT INTO actors_films (actor_id, film_id) VALUES (56, 457); INSERT INTO actors_films (actor_id, film_id) VALUES (56, 462); INSERT INTO actors_films (actor_id, film_id) VALUES (56, 474); INSERT INTO actors_films (actor_id, film_id) VALUES (56, 521); INSERT INTO actors_films (actor_id, film_id) VALUES (56, 593); INSERT INTO actors_films (actor_id, film_id) VALUES (56, 728); INSERT INTO actors_films (actor_id, film_id) VALUES (56, 750); INSERT INTO actors_films (actor_id, film_id) VALUES (56, 769); INSERT INTO actors_films (actor_id, film_id) VALUES (56, 781); INSERT INTO actors_films (actor_id, film_id) VALUES (56, 795); INSERT INTO actors_films (actor_id, film_id) VALUES (56, 844); INSERT INTO actors_films (actor_id, film_id) VALUES (56, 851); INSERT INTO actors_films (actor_id, film_id) VALUES (56, 862); INSERT INTO actors_films (actor_id, film_id) VALUES (56, 868); INSERT INTO actors_films (actor_id, film_id) VALUES (56, 892); INSERT INTO actors_films (actor_id, film_id) VALUES (56, 893); INSERT INTO actors_films (actor_id, film_id) VALUES (56, 936); INSERT INTO actors_films (actor_id, film_id) VALUES (56, 965); INSERT INTO actors_films (actor_id, film_id) VALUES (57, 16); INSERT INTO actors_films (actor_id, film_id) VALUES (57, 34); INSERT INTO actors_films (actor_id, film_id) VALUES (57, 101); INSERT INTO actors_films (actor_id, film_id) VALUES (57, 114); INSERT INTO actors_films (actor_id, film_id) VALUES (57, 122); INSERT INTO actors_films (actor_id, film_id) VALUES (57, 134); INSERT INTO actors_films (actor_id, film_id) VALUES (57, 144); INSERT INTO actors_films (actor_id, film_id) VALUES (57, 153); INSERT INTO actors_films (actor_id, film_id) VALUES (57, 192); INSERT INTO actors_films (actor_id, film_id) VALUES (57, 213); INSERT INTO actors_films (actor_id, film_id) VALUES (57, 258); INSERT INTO actors_films (actor_id, film_id) VALUES (57, 267); INSERT INTO actors_films (actor_id, film_id) VALUES (57, 317); INSERT INTO actors_films (actor_id, film_id) VALUES (57, 340); INSERT INTO actors_films (actor_id, film_id) VALUES (57, 393); INSERT INTO actors_films (actor_id, film_id) VALUES (57, 437); INSERT INTO actors_films (actor_id, film_id) VALUES (57, 447); INSERT INTO actors_films (actor_id, film_id) VALUES (57, 502); INSERT INTO actors_films (actor_id, film_id) VALUES (57, 592); INSERT INTO actors_films (actor_id, film_id) VALUES (57, 605); INSERT INTO actors_films (actor_id, film_id) VALUES (57, 637); INSERT INTO actors_films (actor_id, film_id) VALUES (57, 685); INSERT INTO actors_films (actor_id, film_id) VALUES (57, 707); INSERT INTO actors_films (actor_id, film_id) VALUES (57, 714); INSERT INTO actors_films (actor_id, film_id) VALUES (57, 717); INSERT INTO actors_films (actor_id, film_id) VALUES (57, 737); INSERT INTO actors_films (actor_id, film_id) VALUES (57, 767); INSERT INTO actors_films (actor_id, film_id) VALUES (57, 852); INSERT INTO actors_films (actor_id, film_id) VALUES (57, 891); INSERT INTO actors_films (actor_id, film_id) VALUES (57, 918); INSERT INTO actors_films (actor_id, film_id) VALUES (58, 48); INSERT INTO actors_films (actor_id, film_id) VALUES (58, 68); INSERT INTO actors_films (actor_id, film_id) VALUES (58, 119); INSERT INTO actors_films (actor_id, film_id) VALUES (58, 128); INSERT INTO actors_films (actor_id, film_id) VALUES (58, 135); INSERT INTO actors_films (actor_id, film_id) VALUES (58, 175); INSERT INTO actors_films (actor_id, film_id) VALUES (58, 199); INSERT INTO actors_films (actor_id, film_id) VALUES (58, 235); INSERT INTO actors_films (actor_id, film_id) VALUES (58, 242); INSERT INTO actors_films (actor_id, film_id) VALUES (58, 243); INSERT INTO actors_films (actor_id, film_id) VALUES (58, 254); INSERT INTO actors_films (actor_id, film_id) VALUES (58, 306); INSERT INTO actors_films (actor_id, film_id) VALUES (58, 316); INSERT INTO actors_films (actor_id, film_id) VALUES (58, 417); INSERT INTO actors_films (actor_id, film_id) VALUES (58, 426); INSERT INTO actors_films (actor_id, film_id) VALUES (58, 460); INSERT INTO actors_films (actor_id, film_id) VALUES (58, 477); INSERT INTO actors_films (actor_id, film_id) VALUES (58, 541); INSERT INTO actors_films (actor_id, film_id) VALUES (58, 549); INSERT INTO actors_films (actor_id, film_id) VALUES (58, 551); INSERT INTO actors_films (actor_id, film_id) VALUES (58, 553); INSERT INTO actors_films (actor_id, film_id) VALUES (58, 578); INSERT INTO actors_films (actor_id, film_id) VALUES (58, 602); INSERT INTO actors_films (actor_id, film_id) VALUES (58, 632); INSERT INTO actors_films (actor_id, film_id) VALUES (58, 635); INSERT INTO actors_films (actor_id, film_id) VALUES (58, 638); INSERT INTO actors_films (actor_id, film_id) VALUES (58, 698); INSERT INTO actors_films (actor_id, film_id) VALUES (58, 726); INSERT INTO actors_films (actor_id, film_id) VALUES (58, 755); INSERT INTO actors_films (actor_id, film_id) VALUES (58, 800); INSERT INTO actors_films (actor_id, film_id) VALUES (58, 856); INSERT INTO actors_films (actor_id, film_id) VALUES (58, 858); INSERT INTO actors_films (actor_id, film_id) VALUES (59, 5); INSERT INTO actors_films (actor_id, film_id) VALUES (59, 46); INSERT INTO actors_films (actor_id, film_id) VALUES (59, 54); INSERT INTO actors_films (actor_id, film_id) VALUES (59, 72); INSERT INTO actors_films (actor_id, film_id) VALUES (59, 88); INSERT INTO actors_films (actor_id, film_id) VALUES (59, 121); INSERT INTO actors_films (actor_id, film_id) VALUES (59, 129); INSERT INTO actors_films (actor_id, film_id) VALUES (59, 130); INSERT INTO actors_films (actor_id, film_id) VALUES (59, 183); INSERT INTO actors_films (actor_id, film_id) VALUES (59, 210); INSERT INTO actors_films (actor_id, film_id) VALUES (59, 241); INSERT INTO actors_films (actor_id, film_id) VALUES (59, 295); INSERT INTO actors_films (actor_id, film_id) VALUES (59, 418); INSERT INTO actors_films (actor_id, film_id) VALUES (59, 572); INSERT INTO actors_films (actor_id, film_id) VALUES (59, 644); INSERT INTO actors_films (actor_id, film_id) VALUES (59, 650); INSERT INTO actors_films (actor_id, film_id) VALUES (59, 689); INSERT INTO actors_films (actor_id, film_id) VALUES (59, 694); INSERT INTO actors_films (actor_id, film_id) VALUES (59, 702); INSERT INTO actors_films (actor_id, film_id) VALUES (59, 713); INSERT INTO actors_films (actor_id, film_id) VALUES (59, 749); INSERT INTO actors_films (actor_id, film_id) VALUES (59, 772); INSERT INTO actors_films (actor_id, film_id) VALUES (59, 853); INSERT INTO actors_films (actor_id, film_id) VALUES (59, 862); INSERT INTO actors_films (actor_id, film_id) VALUES (59, 943); INSERT INTO actors_films (actor_id, film_id) VALUES (59, 946); INSERT INTO actors_films (actor_id, film_id) VALUES (59, 984); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 31); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 85); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 133); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 142); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 177); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 179); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 186); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 222); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 235); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 239); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 253); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 262); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 297); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 299); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 334); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 376); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 423); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 436); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 493); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 534); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 551); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 658); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 665); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 679); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 754); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 771); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 783); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 784); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 805); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 830); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 835); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 928); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 952); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 971); INSERT INTO actors_films (actor_id, film_id) VALUES (60, 986); INSERT INTO actors_films (actor_id, film_id) VALUES (61, 235); INSERT INTO actors_films (actor_id, film_id) VALUES (61, 237); INSERT INTO actors_films (actor_id, film_id) VALUES (61, 307); INSERT INTO actors_films (actor_id, film_id) VALUES (61, 362); INSERT INTO actors_films (actor_id, film_id) VALUES (61, 372); INSERT INTO actors_films (actor_id, film_id) VALUES (61, 374); INSERT INTO actors_films (actor_id, film_id) VALUES (61, 423); INSERT INTO actors_films (actor_id, film_id) VALUES (61, 433); INSERT INTO actors_films (actor_id, film_id) VALUES (61, 508); INSERT INTO actors_films (actor_id, film_id) VALUES (61, 518); INSERT INTO actors_films (actor_id, film_id) VALUES (61, 519); INSERT INTO actors_films (actor_id, film_id) VALUES (61, 535); INSERT INTO actors_films (actor_id, film_id) VALUES (61, 537); INSERT INTO actors_films (actor_id, film_id) VALUES (61, 585); INSERT INTO actors_films (actor_id, film_id) VALUES (61, 639); INSERT INTO actors_films (actor_id, film_id) VALUES (61, 648); INSERT INTO actors_films (actor_id, film_id) VALUES (61, 649); INSERT INTO actors_films (actor_id, film_id) VALUES (61, 703); INSERT INTO actors_films (actor_id, film_id) VALUES (61, 752); INSERT INTO actors_films (actor_id, film_id) VALUES (61, 766); INSERT INTO actors_films (actor_id, film_id) VALUES (61, 767); INSERT INTO actors_films (actor_id, film_id) VALUES (61, 780); INSERT INTO actors_films (actor_id, film_id) VALUES (61, 831); INSERT INTO actors_films (actor_id, film_id) VALUES (61, 832); INSERT INTO actors_films (actor_id, film_id) VALUES (61, 990); INSERT INTO actors_films (actor_id, film_id) VALUES (62, 6); INSERT INTO actors_films (actor_id, film_id) VALUES (62, 42); INSERT INTO actors_films (actor_id, film_id) VALUES (62, 54); INSERT INTO actors_films (actor_id, film_id) VALUES (62, 100); INSERT INTO actors_films (actor_id, film_id) VALUES (62, 101); INSERT INTO actors_films (actor_id, film_id) VALUES (62, 129); INSERT INTO actors_films (actor_id, film_id) VALUES (62, 198); INSERT INTO actors_films (actor_id, film_id) VALUES (62, 211); INSERT INTO actors_films (actor_id, film_id) VALUES (62, 231); INSERT INTO actors_films (actor_id, film_id) VALUES (62, 272); INSERT INTO actors_films (actor_id, film_id) VALUES (62, 295); INSERT INTO actors_films (actor_id, film_id) VALUES (62, 337); INSERT INTO actors_films (actor_id, film_id) VALUES (62, 375); INSERT INTO actors_films (actor_id, film_id) VALUES (62, 385); INSERT INTO actors_films (actor_id, film_id) VALUES (62, 393); INSERT INTO actors_films (actor_id, film_id) VALUES (62, 398); INSERT INTO actors_films (actor_id, film_id) VALUES (62, 406); INSERT INTO actors_films (actor_id, film_id) VALUES (62, 413); INSERT INTO actors_films (actor_id, film_id) VALUES (62, 428); INSERT INTO actors_films (actor_id, film_id) VALUES (62, 445); INSERT INTO actors_films (actor_id, film_id) VALUES (62, 457); INSERT INTO actors_films (actor_id, film_id) VALUES (62, 465); INSERT INTO actors_films (actor_id, film_id) VALUES (62, 688); INSERT INTO actors_films (actor_id, film_id) VALUES (62, 707); INSERT INTO actors_films (actor_id, film_id) VALUES (62, 719); INSERT INTO actors_films (actor_id, film_id) VALUES (62, 951); INSERT INTO actors_films (actor_id, film_id) VALUES (62, 981); INSERT INTO actors_films (actor_id, film_id) VALUES (62, 988); INSERT INTO actors_films (actor_id, film_id) VALUES (62, 990); INSERT INTO actors_films (actor_id, film_id) VALUES (63, 73); INSERT INTO actors_films (actor_id, film_id) VALUES (63, 134); INSERT INTO actors_films (actor_id, film_id) VALUES (63, 167); INSERT INTO actors_films (actor_id, film_id) VALUES (63, 208); INSERT INTO actors_films (actor_id, film_id) VALUES (63, 225); INSERT INTO actors_films (actor_id, film_id) VALUES (63, 248); INSERT INTO actors_films (actor_id, film_id) VALUES (63, 249); INSERT INTO actors_films (actor_id, film_id) VALUES (63, 278); INSERT INTO actors_films (actor_id, film_id) VALUES (63, 392); INSERT INTO actors_films (actor_id, film_id) VALUES (63, 517); INSERT INTO actors_films (actor_id, film_id) VALUES (63, 633); INSERT INTO actors_films (actor_id, film_id) VALUES (63, 763); INSERT INTO actors_films (actor_id, film_id) VALUES (63, 781); INSERT INTO actors_films (actor_id, film_id) VALUES (63, 809); INSERT INTO actors_films (actor_id, film_id) VALUES (63, 893); INSERT INTO actors_films (actor_id, film_id) VALUES (63, 932); INSERT INTO actors_films (actor_id, film_id) VALUES (63, 944); INSERT INTO actors_films (actor_id, film_id) VALUES (63, 945); INSERT INTO actors_films (actor_id, film_id) VALUES (63, 981); INSERT INTO actors_films (actor_id, film_id) VALUES (64, 3); INSERT INTO actors_films (actor_id, film_id) VALUES (64, 10); INSERT INTO actors_films (actor_id, film_id) VALUES (64, 37); INSERT INTO actors_films (actor_id, film_id) VALUES (64, 87); INSERT INTO actors_films (actor_id, film_id) VALUES (64, 88); INSERT INTO actors_films (actor_id, film_id) VALUES (64, 124); INSERT INTO actors_films (actor_id, film_id) VALUES (64, 197); INSERT INTO actors_films (actor_id, film_id) VALUES (64, 280); INSERT INTO actors_films (actor_id, film_id) VALUES (64, 291); INSERT INTO actors_films (actor_id, film_id) VALUES (64, 307); INSERT INTO actors_films (actor_id, film_id) VALUES (64, 335); INSERT INTO actors_films (actor_id, film_id) VALUES (64, 345); INSERT INTO actors_films (actor_id, film_id) VALUES (64, 448); INSERT INTO actors_films (actor_id, film_id) VALUES (64, 469); INSERT INTO actors_films (actor_id, film_id) VALUES (64, 471); INSERT INTO actors_films (actor_id, film_id) VALUES (64, 506); INSERT INTO actors_films (actor_id, film_id) VALUES (64, 543); INSERT INTO actors_films (actor_id, film_id) VALUES (64, 557); INSERT INTO actors_films (actor_id, film_id) VALUES (64, 569); INSERT INTO actors_films (actor_id, film_id) VALUES (64, 572); INSERT INTO actors_films (actor_id, film_id) VALUES (64, 597); INSERT INTO actors_films (actor_id, film_id) VALUES (64, 616); INSERT INTO actors_films (actor_id, film_id) VALUES (64, 646); INSERT INTO actors_films (actor_id, film_id) VALUES (64, 694); INSERT INTO actors_films (actor_id, film_id) VALUES (64, 832); INSERT INTO actors_films (actor_id, film_id) VALUES (64, 852); INSERT INTO actors_films (actor_id, film_id) VALUES (64, 860); INSERT INTO actors_films (actor_id, film_id) VALUES (64, 921); INSERT INTO actors_films (actor_id, film_id) VALUES (64, 925); INSERT INTO actors_films (actor_id, film_id) VALUES (64, 980); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 39); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 46); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 97); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 106); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 117); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 125); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 158); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 276); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 305); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 338); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 347); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 371); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 398); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 471); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 475); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 476); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 491); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 496); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 516); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 517); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 541); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 556); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 571); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 577); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 615); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 658); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 683); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 694); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 714); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 735); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 852); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 938); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 951); INSERT INTO actors_films (actor_id, film_id) VALUES (65, 965); INSERT INTO actors_films (actor_id, film_id) VALUES (66, 55); INSERT INTO actors_films (actor_id, film_id) VALUES (66, 143); INSERT INTO actors_films (actor_id, film_id) VALUES (66, 207); INSERT INTO actors_films (actor_id, film_id) VALUES (66, 226); INSERT INTO actors_films (actor_id, film_id) VALUES (66, 229); INSERT INTO actors_films (actor_id, film_id) VALUES (66, 230); INSERT INTO actors_films (actor_id, film_id) VALUES (66, 283); INSERT INTO actors_films (actor_id, film_id) VALUES (66, 300); INSERT INTO actors_films (actor_id, film_id) VALUES (66, 342); INSERT INTO actors_films (actor_id, film_id) VALUES (66, 350); INSERT INTO actors_films (actor_id, film_id) VALUES (66, 361); INSERT INTO actors_films (actor_id, film_id) VALUES (66, 376); INSERT INTO actors_films (actor_id, film_id) VALUES (66, 424); INSERT INTO actors_films (actor_id, film_id) VALUES (66, 434); INSERT INTO actors_films (actor_id, film_id) VALUES (66, 553); INSERT INTO actors_films (actor_id, film_id) VALUES (66, 608); INSERT INTO actors_films (actor_id, film_id) VALUES (66, 676); INSERT INTO actors_films (actor_id, film_id) VALUES (66, 697); INSERT INTO actors_films (actor_id, film_id) VALUES (66, 706); INSERT INTO actors_films (actor_id, film_id) VALUES (66, 725); INSERT INTO actors_films (actor_id, film_id) VALUES (66, 769); INSERT INTO actors_films (actor_id, film_id) VALUES (66, 793); INSERT INTO actors_films (actor_id, film_id) VALUES (66, 829); INSERT INTO actors_films (actor_id, film_id) VALUES (66, 871); INSERT INTO actors_films (actor_id, film_id) VALUES (66, 909); INSERT INTO actors_films (actor_id, film_id) VALUES (66, 915); INSERT INTO actors_films (actor_id, film_id) VALUES (66, 928); INSERT INTO actors_films (actor_id, film_id) VALUES (66, 951); INSERT INTO actors_films (actor_id, film_id) VALUES (66, 957); INSERT INTO actors_films (actor_id, film_id) VALUES (66, 960); INSERT INTO actors_films (actor_id, film_id) VALUES (66, 999); INSERT INTO actors_films (actor_id, film_id) VALUES (67, 24); INSERT INTO actors_films (actor_id, film_id) VALUES (67, 57); INSERT INTO actors_films (actor_id, film_id) VALUES (67, 67); INSERT INTO actors_films (actor_id, film_id) VALUES (67, 144); INSERT INTO actors_films (actor_id, film_id) VALUES (67, 242); INSERT INTO actors_films (actor_id, film_id) VALUES (67, 244); INSERT INTO actors_films (actor_id, film_id) VALUES (67, 256); INSERT INTO actors_films (actor_id, film_id) VALUES (67, 408); INSERT INTO actors_films (actor_id, film_id) VALUES (67, 477); INSERT INTO actors_films (actor_id, film_id) VALUES (67, 496); INSERT INTO actors_films (actor_id, film_id) VALUES (67, 512); INSERT INTO actors_films (actor_id, film_id) VALUES (67, 576); INSERT INTO actors_films (actor_id, film_id) VALUES (67, 601); INSERT INTO actors_films (actor_id, film_id) VALUES (67, 725); INSERT INTO actors_films (actor_id, film_id) VALUES (67, 726); INSERT INTO actors_films (actor_id, film_id) VALUES (67, 731); INSERT INTO actors_films (actor_id, film_id) VALUES (67, 766); INSERT INTO actors_films (actor_id, film_id) VALUES (67, 861); INSERT INTO actors_films (actor_id, film_id) VALUES (67, 870); INSERT INTO actors_films (actor_id, film_id) VALUES (67, 915); INSERT INTO actors_films (actor_id, film_id) VALUES (67, 945); INSERT INTO actors_films (actor_id, film_id) VALUES (67, 972); INSERT INTO actors_films (actor_id, film_id) VALUES (67, 981); INSERT INTO actors_films (actor_id, film_id) VALUES (68, 9); INSERT INTO actors_films (actor_id, film_id) VALUES (68, 45); INSERT INTO actors_films (actor_id, film_id) VALUES (68, 133); INSERT INTO actors_films (actor_id, film_id) VALUES (68, 161); INSERT INTO actors_films (actor_id, film_id) VALUES (68, 205); INSERT INTO actors_films (actor_id, film_id) VALUES (68, 213); INSERT INTO actors_films (actor_id, film_id) VALUES (68, 215); INSERT INTO actors_films (actor_id, film_id) VALUES (68, 255); INSERT INTO actors_films (actor_id, film_id) VALUES (68, 296); INSERT INTO actors_films (actor_id, film_id) VALUES (68, 315); INSERT INTO actors_films (actor_id, film_id) VALUES (68, 325); INSERT INTO actors_films (actor_id, film_id) VALUES (68, 331); INSERT INTO actors_films (actor_id, film_id) VALUES (68, 347); INSERT INTO actors_films (actor_id, film_id) VALUES (68, 357); INSERT INTO actors_films (actor_id, film_id) VALUES (68, 378); INSERT INTO actors_films (actor_id, film_id) VALUES (68, 380); INSERT INTO actors_films (actor_id, film_id) VALUES (68, 386); INSERT INTO actors_films (actor_id, film_id) VALUES (68, 396); INSERT INTO actors_films (actor_id, film_id) VALUES (68, 435); INSERT INTO actors_films (actor_id, film_id) VALUES (68, 497); INSERT INTO actors_films (actor_id, film_id) VALUES (68, 607); INSERT INTO actors_films (actor_id, film_id) VALUES (68, 654); INSERT INTO actors_films (actor_id, film_id) VALUES (68, 665); INSERT INTO actors_films (actor_id, film_id) VALUES (68, 671); INSERT INTO actors_films (actor_id, film_id) VALUES (68, 706); INSERT INTO actors_films (actor_id, film_id) VALUES (68, 747); INSERT INTO actors_films (actor_id, film_id) VALUES (68, 834); INSERT INTO actors_films (actor_id, film_id) VALUES (68, 839); INSERT INTO actors_films (actor_id, film_id) VALUES (68, 840); INSERT INTO actors_films (actor_id, film_id) VALUES (68, 971); INSERT INTO actors_films (actor_id, film_id) VALUES (69, 15); INSERT INTO actors_films (actor_id, film_id) VALUES (69, 88); INSERT INTO actors_films (actor_id, film_id) VALUES (69, 111); INSERT INTO actors_films (actor_id, film_id) VALUES (69, 202); INSERT INTO actors_films (actor_id, film_id) VALUES (69, 236); INSERT INTO actors_films (actor_id, film_id) VALUES (69, 292); INSERT INTO actors_films (actor_id, film_id) VALUES (69, 300); INSERT INTO actors_films (actor_id, film_id) VALUES (69, 306); INSERT INTO actors_films (actor_id, film_id) VALUES (69, 374); INSERT INTO actors_films (actor_id, film_id) VALUES (69, 396); INSERT INTO actors_films (actor_id, film_id) VALUES (69, 452); INSERT INTO actors_films (actor_id, film_id) VALUES (69, 466); INSERT INTO actors_films (actor_id, film_id) VALUES (69, 529); INSERT INTO actors_films (actor_id, film_id) VALUES (69, 612); INSERT INTO actors_films (actor_id, film_id) VALUES (69, 720); INSERT INTO actors_films (actor_id, film_id) VALUES (69, 722); INSERT INTO actors_films (actor_id, film_id) VALUES (69, 761); INSERT INTO actors_films (actor_id, film_id) VALUES (69, 791); INSERT INTO actors_films (actor_id, film_id) VALUES (69, 864); INSERT INTO actors_films (actor_id, film_id) VALUES (69, 877); INSERT INTO actors_films (actor_id, film_id) VALUES (69, 914); INSERT INTO actors_films (actor_id, film_id) VALUES (70, 50); INSERT INTO actors_films (actor_id, film_id) VALUES (70, 53); INSERT INTO actors_films (actor_id, film_id) VALUES (70, 92); INSERT INTO actors_films (actor_id, film_id) VALUES (70, 202); INSERT INTO actors_films (actor_id, film_id) VALUES (70, 227); INSERT INTO actors_films (actor_id, film_id) VALUES (70, 249); INSERT INTO actors_films (actor_id, film_id) VALUES (70, 290); INSERT INTO actors_films (actor_id, film_id) VALUES (70, 304); INSERT INTO actors_films (actor_id, film_id) VALUES (70, 343); INSERT INTO actors_films (actor_id, film_id) VALUES (70, 414); INSERT INTO actors_films (actor_id, film_id) VALUES (70, 453); INSERT INTO actors_films (actor_id, film_id) VALUES (70, 466); INSERT INTO actors_films (actor_id, film_id) VALUES (70, 504); INSERT INTO actors_films (actor_id, film_id) VALUES (70, 584); INSERT INTO actors_films (actor_id, film_id) VALUES (70, 628); INSERT INTO actors_films (actor_id, film_id) VALUES (70, 654); INSERT INTO actors_films (actor_id, film_id) VALUES (70, 725); INSERT INTO actors_films (actor_id, film_id) VALUES (70, 823); INSERT INTO actors_films (actor_id, film_id) VALUES (70, 834); INSERT INTO actors_films (actor_id, film_id) VALUES (70, 856); INSERT INTO actors_films (actor_id, film_id) VALUES (70, 869); INSERT INTO actors_films (actor_id, film_id) VALUES (70, 953); INSERT INTO actors_films (actor_id, film_id) VALUES (70, 964); INSERT INTO actors_films (actor_id, film_id) VALUES (71, 26); INSERT INTO actors_films (actor_id, film_id) VALUES (71, 52); INSERT INTO actors_films (actor_id, film_id) VALUES (71, 233); INSERT INTO actors_films (actor_id, film_id) VALUES (71, 317); INSERT INTO actors_films (actor_id, film_id) VALUES (71, 359); INSERT INTO actors_films (actor_id, film_id) VALUES (71, 362); INSERT INTO actors_films (actor_id, film_id) VALUES (71, 385); INSERT INTO actors_films (actor_id, film_id) VALUES (71, 399); INSERT INTO actors_films (actor_id, film_id) VALUES (71, 450); INSERT INTO actors_films (actor_id, film_id) VALUES (71, 532); INSERT INTO actors_films (actor_id, film_id) VALUES (71, 560); INSERT INTO actors_films (actor_id, film_id) VALUES (71, 574); INSERT INTO actors_films (actor_id, film_id) VALUES (71, 638); INSERT INTO actors_films (actor_id, film_id) VALUES (71, 773); INSERT INTO actors_films (actor_id, film_id) VALUES (71, 833); INSERT INTO actors_films (actor_id, film_id) VALUES (71, 874); INSERT INTO actors_films (actor_id, film_id) VALUES (71, 918); INSERT INTO actors_films (actor_id, film_id) VALUES (71, 956); INSERT INTO actors_films (actor_id, film_id) VALUES (72, 34); INSERT INTO actors_films (actor_id, film_id) VALUES (72, 144); INSERT INTO actors_films (actor_id, film_id) VALUES (72, 237); INSERT INTO actors_films (actor_id, film_id) VALUES (72, 249); INSERT INTO actors_films (actor_id, film_id) VALUES (72, 286); INSERT INTO actors_films (actor_id, film_id) VALUES (72, 296); INSERT INTO actors_films (actor_id, film_id) VALUES (72, 325); INSERT INTO actors_films (actor_id, film_id) VALUES (72, 331); INSERT INTO actors_films (actor_id, film_id) VALUES (72, 405); INSERT INTO actors_films (actor_id, film_id) VALUES (72, 450); INSERT INTO actors_films (actor_id, film_id) VALUES (72, 550); INSERT INTO actors_films (actor_id, film_id) VALUES (72, 609); INSERT INTO actors_films (actor_id, film_id) VALUES (72, 623); INSERT INTO actors_films (actor_id, film_id) VALUES (72, 636); INSERT INTO actors_films (actor_id, film_id) VALUES (72, 640); INSERT INTO actors_films (actor_id, film_id) VALUES (72, 665); INSERT INTO actors_films (actor_id, film_id) VALUES (72, 718); INSERT INTO actors_films (actor_id, film_id) VALUES (72, 743); INSERT INTO actors_films (actor_id, film_id) VALUES (72, 757); INSERT INTO actors_films (actor_id, film_id) VALUES (72, 773); INSERT INTO actors_films (actor_id, film_id) VALUES (72, 854); INSERT INTO actors_films (actor_id, film_id) VALUES (72, 865); INSERT INTO actors_films (actor_id, film_id) VALUES (72, 938); INSERT INTO actors_films (actor_id, film_id) VALUES (72, 956); INSERT INTO actors_films (actor_id, film_id) VALUES (72, 964); INSERT INTO actors_films (actor_id, film_id) VALUES (72, 969); INSERT INTO actors_films (actor_id, film_id) VALUES (73, 36); INSERT INTO actors_films (actor_id, film_id) VALUES (73, 45); INSERT INTO actors_films (actor_id, film_id) VALUES (73, 51); INSERT INTO actors_films (actor_id, film_id) VALUES (73, 77); INSERT INTO actors_films (actor_id, film_id) VALUES (73, 148); INSERT INTO actors_films (actor_id, film_id) VALUES (73, 245); INSERT INTO actors_films (actor_id, film_id) VALUES (73, 275); INSERT INTO actors_films (actor_id, film_id) VALUES (73, 322); INSERT INTO actors_films (actor_id, film_id) VALUES (73, 374); INSERT INTO actors_films (actor_id, film_id) VALUES (73, 379); INSERT INTO actors_films (actor_id, film_id) VALUES (73, 467); INSERT INTO actors_films (actor_id, film_id) VALUES (73, 548); INSERT INTO actors_films (actor_id, film_id) VALUES (73, 561); INSERT INTO actors_films (actor_id, film_id) VALUES (73, 562); INSERT INTO actors_films (actor_id, film_id) VALUES (73, 565); INSERT INTO actors_films (actor_id, film_id) VALUES (73, 627); INSERT INTO actors_films (actor_id, film_id) VALUES (73, 666); INSERT INTO actors_films (actor_id, film_id) VALUES (73, 667); INSERT INTO actors_films (actor_id, film_id) VALUES (73, 707); INSERT INTO actors_films (actor_id, film_id) VALUES (73, 748); INSERT INTO actors_films (actor_id, film_id) VALUES (73, 772); INSERT INTO actors_films (actor_id, film_id) VALUES (73, 823); INSERT INTO actors_films (actor_id, film_id) VALUES (73, 936); INSERT INTO actors_films (actor_id, film_id) VALUES (73, 946); INSERT INTO actors_films (actor_id, film_id) VALUES (73, 950); INSERT INTO actors_films (actor_id, film_id) VALUES (73, 998); INSERT INTO actors_films (actor_id, film_id) VALUES (74, 28); INSERT INTO actors_films (actor_id, film_id) VALUES (74, 44); INSERT INTO actors_films (actor_id, film_id) VALUES (74, 117); INSERT INTO actors_films (actor_id, film_id) VALUES (74, 185); INSERT INTO actors_films (actor_id, film_id) VALUES (74, 192); INSERT INTO actors_films (actor_id, film_id) VALUES (74, 203); INSERT INTO actors_films (actor_id, film_id) VALUES (74, 263); INSERT INTO actors_films (actor_id, film_id) VALUES (74, 321); INSERT INTO actors_films (actor_id, film_id) VALUES (74, 415); INSERT INTO actors_films (actor_id, film_id) VALUES (74, 484); INSERT INTO actors_films (actor_id, film_id) VALUES (74, 503); INSERT INTO actors_films (actor_id, film_id) VALUES (74, 537); INSERT INTO actors_films (actor_id, film_id) VALUES (74, 543); INSERT INTO actors_films (actor_id, film_id) VALUES (74, 617); INSERT INTO actors_films (actor_id, film_id) VALUES (74, 626); INSERT INTO actors_films (actor_id, film_id) VALUES (74, 637); INSERT INTO actors_films (actor_id, film_id) VALUES (74, 663); INSERT INTO actors_films (actor_id, film_id) VALUES (74, 704); INSERT INTO actors_films (actor_id, film_id) VALUES (74, 720); INSERT INTO actors_films (actor_id, film_id) VALUES (74, 747); INSERT INTO actors_films (actor_id, film_id) VALUES (74, 780); INSERT INTO actors_films (actor_id, film_id) VALUES (74, 804); INSERT INTO actors_films (actor_id, film_id) VALUES (74, 834); INSERT INTO actors_films (actor_id, film_id) VALUES (74, 836); INSERT INTO actors_films (actor_id, film_id) VALUES (74, 848); INSERT INTO actors_films (actor_id, film_id) VALUES (74, 872); INSERT INTO actors_films (actor_id, film_id) VALUES (74, 902); INSERT INTO actors_films (actor_id, film_id) VALUES (74, 956); INSERT INTO actors_films (actor_id, film_id) VALUES (75, 12); INSERT INTO actors_films (actor_id, film_id) VALUES (75, 34); INSERT INTO actors_films (actor_id, film_id) VALUES (75, 143); INSERT INTO actors_films (actor_id, film_id) VALUES (75, 170); INSERT INTO actors_films (actor_id, film_id) VALUES (75, 222); INSERT INTO actors_films (actor_id, film_id) VALUES (75, 301); INSERT INTO actors_films (actor_id, film_id) VALUES (75, 347); INSERT INTO actors_films (actor_id, film_id) VALUES (75, 372); INSERT INTO actors_films (actor_id, film_id) VALUES (75, 436); INSERT INTO actors_films (actor_id, film_id) VALUES (75, 445); INSERT INTO actors_films (actor_id, film_id) VALUES (75, 446); INSERT INTO actors_films (actor_id, film_id) VALUES (75, 492); INSERT INTO actors_films (actor_id, film_id) VALUES (75, 498); INSERT INTO actors_films (actor_id, film_id) VALUES (75, 508); INSERT INTO actors_films (actor_id, film_id) VALUES (75, 541); INSERT INTO actors_films (actor_id, film_id) VALUES (75, 547); INSERT INTO actors_films (actor_id, film_id) VALUES (75, 579); INSERT INTO actors_films (actor_id, film_id) VALUES (75, 645); INSERT INTO actors_films (actor_id, film_id) VALUES (75, 667); INSERT INTO actors_films (actor_id, film_id) VALUES (75, 744); INSERT INTO actors_films (actor_id, film_id) VALUES (75, 764); INSERT INTO actors_films (actor_id, film_id) VALUES (75, 780); INSERT INTO actors_films (actor_id, film_id) VALUES (75, 870); INSERT INTO actors_films (actor_id, film_id) VALUES (75, 920); INSERT INTO actors_films (actor_id, film_id) VALUES (76, 60); INSERT INTO actors_films (actor_id, film_id) VALUES (76, 66); INSERT INTO actors_films (actor_id, film_id) VALUES (76, 68); INSERT INTO actors_films (actor_id, film_id) VALUES (76, 95); INSERT INTO actors_films (actor_id, film_id) VALUES (76, 122); INSERT INTO actors_films (actor_id, film_id) VALUES (76, 187); INSERT INTO actors_films (actor_id, film_id) VALUES (76, 223); INSERT INTO actors_films (actor_id, film_id) VALUES (76, 234); INSERT INTO actors_films (actor_id, film_id) VALUES (76, 251); INSERT INTO actors_films (actor_id, film_id) VALUES (76, 348); INSERT INTO actors_films (actor_id, film_id) VALUES (76, 444); INSERT INTO actors_films (actor_id, film_id) VALUES (76, 464); INSERT INTO actors_films (actor_id, film_id) VALUES (76, 474); INSERT INTO actors_films (actor_id, film_id) VALUES (76, 498); INSERT INTO actors_films (actor_id, film_id) VALUES (76, 568); INSERT INTO actors_films (actor_id, film_id) VALUES (76, 604); INSERT INTO actors_films (actor_id, film_id) VALUES (76, 606); INSERT INTO actors_films (actor_id, film_id) VALUES (76, 642); INSERT INTO actors_films (actor_id, film_id) VALUES (76, 648); INSERT INTO actors_films (actor_id, film_id) VALUES (76, 650); INSERT INTO actors_films (actor_id, film_id) VALUES (76, 709); INSERT INTO actors_films (actor_id, film_id) VALUES (76, 760); INSERT INTO actors_films (actor_id, film_id) VALUES (76, 765); INSERT INTO actors_films (actor_id, film_id) VALUES (76, 781); INSERT INTO actors_films (actor_id, film_id) VALUES (76, 850); INSERT INTO actors_films (actor_id, film_id) VALUES (76, 862); INSERT INTO actors_films (actor_id, film_id) VALUES (76, 866); INSERT INTO actors_films (actor_id, film_id) VALUES (76, 870); INSERT INTO actors_films (actor_id, film_id) VALUES (76, 912); INSERT INTO actors_films (actor_id, film_id) VALUES (76, 935); INSERT INTO actors_films (actor_id, film_id) VALUES (76, 958); INSERT INTO actors_films (actor_id, film_id) VALUES (77, 13); INSERT INTO actors_films (actor_id, film_id) VALUES (77, 22); INSERT INTO actors_films (actor_id, film_id) VALUES (77, 40); INSERT INTO actors_films (actor_id, film_id) VALUES (77, 73); INSERT INTO actors_films (actor_id, film_id) VALUES (77, 78); INSERT INTO actors_films (actor_id, film_id) VALUES (77, 153); INSERT INTO actors_films (actor_id, film_id) VALUES (77, 224); INSERT INTO actors_films (actor_id, film_id) VALUES (77, 240); INSERT INTO actors_films (actor_id, film_id) VALUES (77, 245); INSERT INTO actors_films (actor_id, film_id) VALUES (77, 261); INSERT INTO actors_films (actor_id, film_id) VALUES (77, 343); INSERT INTO actors_films (actor_id, film_id) VALUES (77, 442); INSERT INTO actors_films (actor_id, film_id) VALUES (77, 458); INSERT INTO actors_films (actor_id, film_id) VALUES (77, 538); INSERT INTO actors_films (actor_id, film_id) VALUES (77, 566); INSERT INTO actors_films (actor_id, film_id) VALUES (77, 612); INSERT INTO actors_films (actor_id, film_id) VALUES (77, 635); INSERT INTO actors_films (actor_id, film_id) VALUES (77, 694); INSERT INTO actors_films (actor_id, film_id) VALUES (77, 749); INSERT INTO actors_films (actor_id, film_id) VALUES (77, 938); INSERT INTO actors_films (actor_id, film_id) VALUES (77, 943); INSERT INTO actors_films (actor_id, film_id) VALUES (77, 963); INSERT INTO actors_films (actor_id, film_id) VALUES (77, 969); INSERT INTO actors_films (actor_id, film_id) VALUES (77, 993); INSERT INTO actors_films (actor_id, film_id) VALUES (78, 86); INSERT INTO actors_films (actor_id, film_id) VALUES (78, 239); INSERT INTO actors_films (actor_id, film_id) VALUES (78, 260); INSERT INTO actors_films (actor_id, film_id) VALUES (78, 261); INSERT INTO actors_films (actor_id, film_id) VALUES (78, 265); INSERT INTO actors_films (actor_id, film_id) VALUES (78, 301); INSERT INTO actors_films (actor_id, film_id) VALUES (78, 387); INSERT INTO actors_films (actor_id, film_id) VALUES (78, 393); INSERT INTO actors_films (actor_id, film_id) VALUES (78, 428); INSERT INTO actors_films (actor_id, film_id) VALUES (78, 457); INSERT INTO actors_films (actor_id, film_id) VALUES (78, 505); INSERT INTO actors_films (actor_id, film_id) VALUES (78, 520); INSERT INTO actors_films (actor_id, film_id) VALUES (78, 530); INSERT INTO actors_films (actor_id, film_id) VALUES (78, 549); INSERT INTO actors_films (actor_id, film_id) VALUES (78, 552); INSERT INTO actors_films (actor_id, film_id) VALUES (78, 599); INSERT INTO actors_films (actor_id, film_id) VALUES (78, 670); INSERT INTO actors_films (actor_id, film_id) VALUES (78, 674); INSERT INTO actors_films (actor_id, film_id) VALUES (78, 689); INSERT INTO actors_films (actor_id, film_id) VALUES (78, 762); INSERT INTO actors_films (actor_id, film_id) VALUES (78, 767); INSERT INTO actors_films (actor_id, film_id) VALUES (78, 811); INSERT INTO actors_films (actor_id, film_id) VALUES (78, 852); INSERT INTO actors_films (actor_id, film_id) VALUES (78, 880); INSERT INTO actors_films (actor_id, film_id) VALUES (78, 963); INSERT INTO actors_films (actor_id, film_id) VALUES (78, 968); INSERT INTO actors_films (actor_id, film_id) VALUES (79, 32); INSERT INTO actors_films (actor_id, film_id) VALUES (79, 33); INSERT INTO actors_films (actor_id, film_id) VALUES (79, 40); INSERT INTO actors_films (actor_id, film_id) VALUES (79, 141); INSERT INTO actors_films (actor_id, film_id) VALUES (79, 205); INSERT INTO actors_films (actor_id, film_id) VALUES (79, 230); INSERT INTO actors_films (actor_id, film_id) VALUES (79, 242); INSERT INTO actors_films (actor_id, film_id) VALUES (79, 262); INSERT INTO actors_films (actor_id, film_id) VALUES (79, 267); INSERT INTO actors_films (actor_id, film_id) VALUES (79, 269); INSERT INTO actors_films (actor_id, film_id) VALUES (79, 299); INSERT INTO actors_films (actor_id, film_id) VALUES (79, 367); INSERT INTO actors_films (actor_id, film_id) VALUES (79, 428); INSERT INTO actors_films (actor_id, film_id) VALUES (79, 430); INSERT INTO actors_films (actor_id, film_id) VALUES (79, 473); INSERT INTO actors_films (actor_id, film_id) VALUES (79, 607); INSERT INTO actors_films (actor_id, film_id) VALUES (79, 628); INSERT INTO actors_films (actor_id, film_id) VALUES (79, 634); INSERT INTO actors_films (actor_id, film_id) VALUES (79, 646); INSERT INTO actors_films (actor_id, film_id) VALUES (79, 727); INSERT INTO actors_films (actor_id, film_id) VALUES (79, 750); INSERT INTO actors_films (actor_id, film_id) VALUES (79, 753); INSERT INTO actors_films (actor_id, film_id) VALUES (79, 769); INSERT INTO actors_films (actor_id, film_id) VALUES (79, 776); INSERT INTO actors_films (actor_id, film_id) VALUES (79, 788); INSERT INTO actors_films (actor_id, film_id) VALUES (79, 840); INSERT INTO actors_films (actor_id, film_id) VALUES (79, 853); INSERT INTO actors_films (actor_id, film_id) VALUES (79, 916); INSERT INTO actors_films (actor_id, film_id) VALUES (80, 69); INSERT INTO actors_films (actor_id, film_id) VALUES (80, 118); INSERT INTO actors_films (actor_id, film_id) VALUES (80, 124); INSERT INTO actors_films (actor_id, film_id) VALUES (80, 175); INSERT INTO actors_films (actor_id, film_id) VALUES (80, 207); INSERT INTO actors_films (actor_id, film_id) VALUES (80, 212); INSERT INTO actors_films (actor_id, film_id) VALUES (80, 260); INSERT INTO actors_films (actor_id, film_id) VALUES (80, 262); INSERT INTO actors_films (actor_id, film_id) VALUES (80, 280); INSERT INTO actors_films (actor_id, film_id) VALUES (80, 341); INSERT INTO actors_films (actor_id, film_id) VALUES (80, 342); INSERT INTO actors_films (actor_id, film_id) VALUES (80, 343); INSERT INTO actors_films (actor_id, film_id) VALUES (80, 362); INSERT INTO actors_films (actor_id, film_id) VALUES (80, 436); INSERT INTO actors_films (actor_id, film_id) VALUES (80, 475); INSERT INTO actors_films (actor_id, film_id) VALUES (80, 553); INSERT INTO actors_films (actor_id, film_id) VALUES (80, 619); INSERT INTO actors_films (actor_id, film_id) VALUES (80, 622); INSERT INTO actors_films (actor_id, film_id) VALUES (80, 680); INSERT INTO actors_films (actor_id, film_id) VALUES (80, 687); INSERT INTO actors_films (actor_id, film_id) VALUES (80, 688); INSERT INTO actors_films (actor_id, film_id) VALUES (80, 709); INSERT INTO actors_films (actor_id, film_id) VALUES (80, 788); INSERT INTO actors_films (actor_id, film_id) VALUES (80, 807); INSERT INTO actors_films (actor_id, film_id) VALUES (80, 858); INSERT INTO actors_films (actor_id, film_id) VALUES (80, 888); INSERT INTO actors_films (actor_id, film_id) VALUES (80, 941); INSERT INTO actors_films (actor_id, film_id) VALUES (80, 979); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 4); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 11); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 59); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 89); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 178); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 186); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 194); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 215); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 219); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 232); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 260); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 267); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 268); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 304); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 332); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 389); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 398); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 453); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 458); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 465); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 505); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 508); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 527); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 545); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 564); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 578); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 579); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 613); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 619); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 643); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 692); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 710); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 729); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 761); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 827); INSERT INTO actors_films (actor_id, film_id) VALUES (81, 910); INSERT INTO actors_films (actor_id, film_id) VALUES (82, 17); INSERT INTO actors_films (actor_id, film_id) VALUES (82, 33); INSERT INTO actors_films (actor_id, film_id) VALUES (82, 104); INSERT INTO actors_films (actor_id, film_id) VALUES (82, 143); INSERT INTO actors_films (actor_id, film_id) VALUES (82, 188); INSERT INTO actors_films (actor_id, film_id) VALUES (82, 242); INSERT INTO actors_films (actor_id, film_id) VALUES (82, 247); INSERT INTO actors_films (actor_id, film_id) VALUES (82, 290); INSERT INTO actors_films (actor_id, film_id) VALUES (82, 306); INSERT INTO actors_films (actor_id, film_id) VALUES (82, 316); INSERT INTO actors_films (actor_id, film_id) VALUES (82, 344); INSERT INTO actors_films (actor_id, film_id) VALUES (82, 453); INSERT INTO actors_films (actor_id, film_id) VALUES (82, 468); INSERT INTO actors_films (actor_id, film_id) VALUES (82, 480); INSERT INTO actors_films (actor_id, film_id) VALUES (82, 497); INSERT INTO actors_films (actor_id, film_id) VALUES (82, 503); INSERT INTO actors_films (actor_id, film_id) VALUES (82, 527); INSERT INTO actors_films (actor_id, film_id) VALUES (82, 551); INSERT INTO actors_films (actor_id, film_id) VALUES (82, 561); INSERT INTO actors_films (actor_id, film_id) VALUES (82, 750); INSERT INTO actors_films (actor_id, film_id) VALUES (82, 787); INSERT INTO actors_films (actor_id, film_id) VALUES (82, 802); INSERT INTO actors_films (actor_id, film_id) VALUES (82, 838); INSERT INTO actors_films (actor_id, film_id) VALUES (82, 839); INSERT INTO actors_films (actor_id, film_id) VALUES (82, 870); INSERT INTO actors_films (actor_id, film_id) VALUES (82, 877); INSERT INTO actors_films (actor_id, film_id) VALUES (82, 893); INSERT INTO actors_films (actor_id, film_id) VALUES (82, 911); INSERT INTO actors_films (actor_id, film_id) VALUES (82, 954); INSERT INTO actors_films (actor_id, film_id) VALUES (82, 978); INSERT INTO actors_films (actor_id, film_id) VALUES (82, 985); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 49); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 52); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 58); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 110); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 120); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 121); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 135); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 165); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 217); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 247); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 249); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 263); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 268); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 279); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 281); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 339); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 340); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 369); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 412); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 519); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 529); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 615); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 631); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 655); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 672); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 686); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 719); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 764); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 777); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 784); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 833); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 873); INSERT INTO actors_films (actor_id, film_id) VALUES (83, 932); INSERT INTO actors_films (actor_id, film_id) VALUES (84, 19); INSERT INTO actors_films (actor_id, film_id) VALUES (84, 39); INSERT INTO actors_films (actor_id, film_id) VALUES (84, 46); INSERT INTO actors_films (actor_id, film_id) VALUES (84, 175); INSERT INTO actors_films (actor_id, film_id) VALUES (84, 238); INSERT INTO actors_films (actor_id, film_id) VALUES (84, 281); INSERT INTO actors_films (actor_id, film_id) VALUES (84, 290); INSERT INTO actors_films (actor_id, film_id) VALUES (84, 312); INSERT INTO actors_films (actor_id, film_id) VALUES (84, 317); INSERT INTO actors_films (actor_id, film_id) VALUES (84, 413); INSERT INTO actors_films (actor_id, film_id) VALUES (84, 414); INSERT INTO actors_films (actor_id, film_id) VALUES (84, 460); INSERT INTO actors_films (actor_id, film_id) VALUES (84, 479); INSERT INTO actors_films (actor_id, film_id) VALUES (84, 491); INSERT INTO actors_films (actor_id, film_id) VALUES (84, 529); INSERT INTO actors_films (actor_id, film_id) VALUES (84, 540); INSERT INTO actors_films (actor_id, film_id) VALUES (84, 566); INSERT INTO actors_films (actor_id, film_id) VALUES (84, 574); INSERT INTO actors_films (actor_id, film_id) VALUES (84, 589); INSERT INTO actors_films (actor_id, film_id) VALUES (84, 616); INSERT INTO actors_films (actor_id, film_id) VALUES (84, 646); INSERT INTO actors_films (actor_id, film_id) VALUES (84, 703); INSERT INTO actors_films (actor_id, film_id) VALUES (84, 729); INSERT INTO actors_films (actor_id, film_id) VALUES (84, 764); INSERT INTO actors_films (actor_id, film_id) VALUES (84, 782); INSERT INTO actors_films (actor_id, film_id) VALUES (84, 809); INSERT INTO actors_films (actor_id, film_id) VALUES (84, 830); INSERT INTO actors_films (actor_id, film_id) VALUES (84, 843); INSERT INTO actors_films (actor_id, film_id) VALUES (84, 887); INSERT INTO actors_films (actor_id, film_id) VALUES (84, 975); INSERT INTO actors_films (actor_id, film_id) VALUES (84, 996); INSERT INTO actors_films (actor_id, film_id) VALUES (85, 2); INSERT INTO actors_films (actor_id, film_id) VALUES (85, 14); INSERT INTO actors_films (actor_id, film_id) VALUES (85, 72); INSERT INTO actors_films (actor_id, film_id) VALUES (85, 85); INSERT INTO actors_films (actor_id, film_id) VALUES (85, 92); INSERT INTO actors_films (actor_id, film_id) VALUES (85, 148); INSERT INTO actors_films (actor_id, film_id) VALUES (85, 216); INSERT INTO actors_films (actor_id, film_id) VALUES (85, 290); INSERT INTO actors_films (actor_id, film_id) VALUES (85, 296); INSERT INTO actors_films (actor_id, film_id) VALUES (85, 297); INSERT INTO actors_films (actor_id, film_id) VALUES (85, 337); INSERT INTO actors_films (actor_id, film_id) VALUES (85, 383); INSERT INTO actors_films (actor_id, film_id) VALUES (85, 421); INSERT INTO actors_films (actor_id, film_id) VALUES (85, 446); INSERT INTO actors_films (actor_id, film_id) VALUES (85, 461); INSERT INTO actors_films (actor_id, film_id) VALUES (85, 475); INSERT INTO actors_films (actor_id, film_id) VALUES (85, 478); INSERT INTO actors_films (actor_id, film_id) VALUES (85, 522); INSERT INTO actors_films (actor_id, film_id) VALUES (85, 543); INSERT INTO actors_films (actor_id, film_id) VALUES (85, 558); INSERT INTO actors_films (actor_id, film_id) VALUES (85, 591); INSERT INTO actors_films (actor_id, film_id) VALUES (85, 630); INSERT INTO actors_films (actor_id, film_id) VALUES (85, 678); INSERT INTO actors_films (actor_id, film_id) VALUES (85, 711); INSERT INTO actors_films (actor_id, film_id) VALUES (85, 761); INSERT INTO actors_films (actor_id, film_id) VALUES (85, 812); INSERT INTO actors_films (actor_id, film_id) VALUES (85, 869); INSERT INTO actors_films (actor_id, film_id) VALUES (85, 875); INSERT INTO actors_films (actor_id, film_id) VALUES (85, 895); INSERT INTO actors_films (actor_id, film_id) VALUES (85, 957); INSERT INTO actors_films (actor_id, film_id) VALUES (85, 960); INSERT INTO actors_films (actor_id, film_id) VALUES (86, 137); INSERT INTO actors_films (actor_id, film_id) VALUES (86, 163); INSERT INTO actors_films (actor_id, film_id) VALUES (86, 196); INSERT INTO actors_films (actor_id, film_id) VALUES (86, 216); INSERT INTO actors_films (actor_id, film_id) VALUES (86, 249); INSERT INTO actors_films (actor_id, film_id) VALUES (86, 303); INSERT INTO actors_films (actor_id, film_id) VALUES (86, 331); INSERT INTO actors_films (actor_id, film_id) VALUES (86, 364); INSERT INTO actors_films (actor_id, film_id) VALUES (86, 391); INSERT INTO actors_films (actor_id, film_id) VALUES (86, 432); INSERT INTO actors_films (actor_id, film_id) VALUES (86, 482); INSERT INTO actors_films (actor_id, film_id) VALUES (86, 486); INSERT INTO actors_films (actor_id, film_id) VALUES (86, 519); INSERT INTO actors_films (actor_id, film_id) VALUES (86, 520); INSERT INTO actors_films (actor_id, film_id) VALUES (86, 548); INSERT INTO actors_films (actor_id, film_id) VALUES (86, 623); INSERT INTO actors_films (actor_id, film_id) VALUES (86, 631); INSERT INTO actors_films (actor_id, film_id) VALUES (86, 636); INSERT INTO actors_films (actor_id, film_id) VALUES (86, 752); INSERT INTO actors_films (actor_id, film_id) VALUES (86, 760); INSERT INTO actors_films (actor_id, film_id) VALUES (86, 808); INSERT INTO actors_films (actor_id, film_id) VALUES (86, 857); INSERT INTO actors_films (actor_id, film_id) VALUES (86, 878); INSERT INTO actors_films (actor_id, film_id) VALUES (86, 893); INSERT INTO actors_films (actor_id, film_id) VALUES (86, 905); INSERT INTO actors_films (actor_id, film_id) VALUES (86, 923); INSERT INTO actors_films (actor_id, film_id) VALUES (86, 929); INSERT INTO actors_films (actor_id, film_id) VALUES (87, 48); INSERT INTO actors_films (actor_id, film_id) VALUES (87, 157); INSERT INTO actors_films (actor_id, film_id) VALUES (87, 161); INSERT INTO actors_films (actor_id, film_id) VALUES (87, 199); INSERT INTO actors_films (actor_id, film_id) VALUES (87, 207); INSERT INTO actors_films (actor_id, film_id) VALUES (87, 250); INSERT INTO actors_films (actor_id, film_id) VALUES (87, 253); INSERT INTO actors_films (actor_id, film_id) VALUES (87, 312); INSERT INTO actors_films (actor_id, film_id) VALUES (87, 421); INSERT INTO actors_films (actor_id, film_id) VALUES (87, 570); INSERT INTO actors_films (actor_id, film_id) VALUES (87, 599); INSERT INTO actors_films (actor_id, film_id) VALUES (87, 606); INSERT INTO actors_films (actor_id, film_id) VALUES (87, 654); INSERT INTO actors_films (actor_id, film_id) VALUES (87, 679); INSERT INTO actors_films (actor_id, film_id) VALUES (87, 706); INSERT INTO actors_films (actor_id, film_id) VALUES (87, 718); INSERT INTO actors_films (actor_id, film_id) VALUES (87, 721); INSERT INTO actors_films (actor_id, film_id) VALUES (87, 830); INSERT INTO actors_films (actor_id, film_id) VALUES (87, 870); INSERT INTO actors_films (actor_id, film_id) VALUES (87, 952); INSERT INTO actors_films (actor_id, film_id) VALUES (87, 961); INSERT INTO actors_films (actor_id, film_id) VALUES (88, 4); INSERT INTO actors_films (actor_id, film_id) VALUES (88, 76); INSERT INTO actors_films (actor_id, film_id) VALUES (88, 87); INSERT INTO actors_films (actor_id, film_id) VALUES (88, 128); INSERT INTO actors_films (actor_id, film_id) VALUES (88, 170); INSERT INTO actors_films (actor_id, film_id) VALUES (88, 193); INSERT INTO actors_films (actor_id, film_id) VALUES (88, 234); INSERT INTO actors_films (actor_id, film_id) VALUES (88, 304); INSERT INTO actors_films (actor_id, film_id) VALUES (88, 602); INSERT INTO actors_films (actor_id, film_id) VALUES (88, 620); INSERT INTO actors_films (actor_id, film_id) VALUES (88, 668); INSERT INTO actors_films (actor_id, film_id) VALUES (88, 717); INSERT INTO actors_films (actor_id, film_id) VALUES (88, 785); INSERT INTO actors_films (actor_id, film_id) VALUES (88, 819); INSERT INTO actors_films (actor_id, film_id) VALUES (88, 839); INSERT INTO actors_films (actor_id, film_id) VALUES (88, 881); INSERT INTO actors_films (actor_id, film_id) VALUES (88, 908); INSERT INTO actors_films (actor_id, film_id) VALUES (88, 929); INSERT INTO actors_films (actor_id, film_id) VALUES (88, 940); INSERT INTO actors_films (actor_id, film_id) VALUES (88, 968); INSERT INTO actors_films (actor_id, film_id) VALUES (89, 47); INSERT INTO actors_films (actor_id, film_id) VALUES (89, 103); INSERT INTO actors_films (actor_id, film_id) VALUES (89, 117); INSERT INTO actors_films (actor_id, film_id) VALUES (89, 162); INSERT INTO actors_films (actor_id, film_id) VALUES (89, 182); INSERT INTO actors_films (actor_id, film_id) VALUES (89, 187); INSERT INTO actors_films (actor_id, film_id) VALUES (89, 212); INSERT INTO actors_films (actor_id, film_id) VALUES (89, 254); INSERT INTO actors_films (actor_id, film_id) VALUES (89, 266); INSERT INTO actors_films (actor_id, film_id) VALUES (89, 306); INSERT INTO actors_films (actor_id, film_id) VALUES (89, 342); INSERT INTO actors_films (actor_id, film_id) VALUES (89, 406); INSERT INTO actors_films (actor_id, film_id) VALUES (89, 410); INSERT INTO actors_films (actor_id, film_id) VALUES (89, 446); INSERT INTO actors_films (actor_id, film_id) VALUES (89, 473); INSERT INTO actors_films (actor_id, film_id) VALUES (89, 488); INSERT INTO actors_films (actor_id, film_id) VALUES (89, 529); INSERT INTO actors_films (actor_id, film_id) VALUES (89, 542); INSERT INTO actors_films (actor_id, film_id) VALUES (89, 564); INSERT INTO actors_films (actor_id, film_id) VALUES (89, 697); INSERT INTO actors_films (actor_id, film_id) VALUES (89, 833); INSERT INTO actors_films (actor_id, film_id) VALUES (89, 864); INSERT INTO actors_films (actor_id, film_id) VALUES (89, 970); INSERT INTO actors_films (actor_id, film_id) VALUES (89, 976); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 2); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 11); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 100); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 197); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 212); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 262); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 303); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 330); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 363); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 374); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 384); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 385); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 391); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 406); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 433); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 442); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 451); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 520); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 529); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 542); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 586); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 633); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 663); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 676); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 771); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 817); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 838); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 855); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 858); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 868); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 880); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 901); INSERT INTO actors_films (actor_id, film_id) VALUES (90, 925); INSERT INTO actors_films (actor_id, film_id) VALUES (91, 13); INSERT INTO actors_films (actor_id, film_id) VALUES (91, 25); INSERT INTO actors_films (actor_id, film_id) VALUES (91, 48); INSERT INTO actors_films (actor_id, film_id) VALUES (91, 176); INSERT INTO actors_films (actor_id, film_id) VALUES (91, 181); INSERT INTO actors_films (actor_id, film_id) VALUES (91, 190); INSERT INTO actors_films (actor_id, film_id) VALUES (91, 335); INSERT INTO actors_films (actor_id, film_id) VALUES (91, 416); INSERT INTO actors_films (actor_id, film_id) VALUES (91, 447); INSERT INTO actors_films (actor_id, film_id) VALUES (91, 480); INSERT INTO actors_films (actor_id, film_id) VALUES (91, 493); INSERT INTO actors_films (actor_id, film_id) VALUES (91, 509); INSERT INTO actors_films (actor_id, film_id) VALUES (91, 511); INSERT INTO actors_films (actor_id, film_id) VALUES (91, 608); INSERT INTO actors_films (actor_id, film_id) VALUES (91, 807); INSERT INTO actors_films (actor_id, film_id) VALUES (91, 829); INSERT INTO actors_films (actor_id, film_id) VALUES (91, 849); INSERT INTO actors_films (actor_id, film_id) VALUES (91, 859); INSERT INTO actors_films (actor_id, film_id) VALUES (91, 941); INSERT INTO actors_films (actor_id, film_id) VALUES (91, 982); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 90); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 94); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 103); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 104); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 123); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 137); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 207); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 229); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 338); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 381); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 436); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 443); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 453); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 470); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 505); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 512); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 543); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 545); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 547); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 553); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 564); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 568); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 618); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 662); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 686); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 699); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 712); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 728); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 802); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 825); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 838); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 889); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 929); INSERT INTO actors_films (actor_id, film_id) VALUES (92, 991); INSERT INTO actors_films (actor_id, film_id) VALUES (93, 71); INSERT INTO actors_films (actor_id, film_id) VALUES (93, 120); INSERT INTO actors_films (actor_id, film_id) VALUES (93, 124); INSERT INTO actors_films (actor_id, film_id) VALUES (93, 280); INSERT INTO actors_films (actor_id, film_id) VALUES (93, 325); INSERT INTO actors_films (actor_id, film_id) VALUES (93, 339); INSERT INTO actors_films (actor_id, film_id) VALUES (93, 427); INSERT INTO actors_films (actor_id, film_id) VALUES (93, 445); INSERT INTO actors_films (actor_id, film_id) VALUES (93, 453); INSERT INTO actors_films (actor_id, film_id) VALUES (93, 473); INSERT INTO actors_films (actor_id, film_id) VALUES (93, 573); INSERT INTO actors_films (actor_id, film_id) VALUES (93, 621); INSERT INTO actors_films (actor_id, film_id) VALUES (93, 644); INSERT INTO actors_films (actor_id, film_id) VALUES (93, 678); INSERT INTO actors_films (actor_id, film_id) VALUES (93, 680); INSERT INTO actors_films (actor_id, film_id) VALUES (93, 699); INSERT INTO actors_films (actor_id, film_id) VALUES (93, 744); INSERT INTO actors_films (actor_id, film_id) VALUES (93, 768); INSERT INTO actors_films (actor_id, film_id) VALUES (93, 777); INSERT INTO actors_films (actor_id, film_id) VALUES (93, 835); INSERT INTO actors_films (actor_id, film_id) VALUES (93, 856); INSERT INTO actors_films (actor_id, film_id) VALUES (93, 874); INSERT INTO actors_films (actor_id, film_id) VALUES (93, 909); INSERT INTO actors_films (actor_id, film_id) VALUES (93, 916); INSERT INTO actors_films (actor_id, film_id) VALUES (93, 982); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 13); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 60); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 76); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 122); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 153); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 193); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 206); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 228); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 270); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 275); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 320); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 322); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 337); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 354); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 402); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 428); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 457); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 473); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 475); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 512); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 517); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 521); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 533); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 540); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 548); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 551); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 712); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 713); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 724); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 775); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 788); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 950); INSERT INTO actors_films (actor_id, film_id) VALUES (94, 989); INSERT INTO actors_films (actor_id, film_id) VALUES (95, 22); INSERT INTO actors_films (actor_id, film_id) VALUES (95, 35); INSERT INTO actors_films (actor_id, film_id) VALUES (95, 47); INSERT INTO actors_films (actor_id, film_id) VALUES (95, 52); INSERT INTO actors_films (actor_id, film_id) VALUES (95, 65); INSERT INTO actors_films (actor_id, film_id) VALUES (95, 74); INSERT INTO actors_films (actor_id, film_id) VALUES (95, 126); INSERT INTO actors_films (actor_id, film_id) VALUES (95, 207); INSERT INTO actors_films (actor_id, film_id) VALUES (95, 245); INSERT INTO actors_films (actor_id, film_id) VALUES (95, 294); INSERT INTO actors_films (actor_id, film_id) VALUES (95, 301); INSERT INTO actors_films (actor_id, film_id) VALUES (95, 312); INSERT INTO actors_films (actor_id, film_id) VALUES (95, 329); INSERT INTO actors_films (actor_id, film_id) VALUES (95, 353); INSERT INTO actors_films (actor_id, film_id) VALUES (95, 375); INSERT INTO actors_films (actor_id, film_id) VALUES (95, 420); INSERT INTO actors_films (actor_id, film_id) VALUES (95, 424); INSERT INTO actors_films (actor_id, film_id) VALUES (95, 431); INSERT INTO actors_films (actor_id, film_id) VALUES (95, 498); INSERT INTO actors_films (actor_id, film_id) VALUES (95, 522); INSERT INTO actors_films (actor_id, film_id) VALUES (95, 546); INSERT INTO actors_films (actor_id, film_id) VALUES (95, 551); INSERT INTO actors_films (actor_id, film_id) VALUES (95, 619); INSERT INTO actors_films (actor_id, film_id) VALUES (95, 627); INSERT INTO actors_films (actor_id, film_id) VALUES (95, 690); INSERT INTO actors_films (actor_id, film_id) VALUES (95, 748); INSERT INTO actors_films (actor_id, film_id) VALUES (95, 813); INSERT INTO actors_films (actor_id, film_id) VALUES (95, 828); INSERT INTO actors_films (actor_id, film_id) VALUES (95, 855); INSERT INTO actors_films (actor_id, film_id) VALUES (95, 903); INSERT INTO actors_films (actor_id, film_id) VALUES (95, 923); INSERT INTO actors_films (actor_id, film_id) VALUES (96, 8); INSERT INTO actors_films (actor_id, film_id) VALUES (96, 36); INSERT INTO actors_films (actor_id, film_id) VALUES (96, 40); INSERT INTO actors_films (actor_id, film_id) VALUES (96, 54); INSERT INTO actors_films (actor_id, film_id) VALUES (96, 58); INSERT INTO actors_films (actor_id, film_id) VALUES (96, 66); INSERT INTO actors_films (actor_id, film_id) VALUES (96, 134); INSERT INTO actors_films (actor_id, film_id) VALUES (96, 209); INSERT INTO actors_films (actor_id, film_id) VALUES (96, 244); INSERT INTO actors_films (actor_id, film_id) VALUES (96, 320); INSERT INTO actors_films (actor_id, film_id) VALUES (96, 430); INSERT INTO actors_films (actor_id, film_id) VALUES (96, 452); INSERT INTO actors_films (actor_id, film_id) VALUES (96, 486); INSERT INTO actors_films (actor_id, film_id) VALUES (96, 572); INSERT INTO actors_films (actor_id, film_id) VALUES (96, 590); INSERT INTO actors_films (actor_id, film_id) VALUES (96, 661); INSERT INTO actors_films (actor_id, film_id) VALUES (96, 778); INSERT INTO actors_films (actor_id, film_id) VALUES (96, 832); INSERT INTO actors_films (actor_id, film_id) VALUES (96, 846); INSERT INTO actors_films (actor_id, film_id) VALUES (96, 874); INSERT INTO actors_films (actor_id, film_id) VALUES (96, 945); INSERT INTO actors_films (actor_id, film_id) VALUES (96, 968); INSERT INTO actors_films (actor_id, film_id) VALUES (96, 987); INSERT INTO actors_films (actor_id, film_id) VALUES (97, 143); INSERT INTO actors_films (actor_id, film_id) VALUES (97, 177); INSERT INTO actors_films (actor_id, film_id) VALUES (97, 188); INSERT INTO actors_films (actor_id, film_id) VALUES (97, 197); INSERT INTO actors_films (actor_id, film_id) VALUES (97, 256); INSERT INTO actors_films (actor_id, film_id) VALUES (97, 312); INSERT INTO actors_films (actor_id, film_id) VALUES (97, 342); INSERT INTO actors_films (actor_id, film_id) VALUES (97, 348); INSERT INTO actors_films (actor_id, film_id) VALUES (97, 358); INSERT INTO actors_films (actor_id, film_id) VALUES (97, 370); INSERT INTO actors_films (actor_id, film_id) VALUES (97, 437); INSERT INTO actors_films (actor_id, film_id) VALUES (97, 446); INSERT INTO actors_films (actor_id, film_id) VALUES (97, 466); INSERT INTO actors_films (actor_id, film_id) VALUES (97, 518); INSERT INTO actors_films (actor_id, film_id) VALUES (97, 553); INSERT INTO actors_films (actor_id, film_id) VALUES (97, 561); INSERT INTO actors_films (actor_id, film_id) VALUES (97, 641); INSERT INTO actors_films (actor_id, film_id) VALUES (97, 656); INSERT INTO actors_films (actor_id, film_id) VALUES (97, 728); INSERT INTO actors_films (actor_id, film_id) VALUES (97, 755); INSERT INTO actors_films (actor_id, film_id) VALUES (97, 757); INSERT INTO actors_films (actor_id, film_id) VALUES (97, 826); INSERT INTO actors_films (actor_id, film_id) VALUES (97, 862); INSERT INTO actors_films (actor_id, film_id) VALUES (97, 930); INSERT INTO actors_films (actor_id, film_id) VALUES (97, 933); INSERT INTO actors_films (actor_id, film_id) VALUES (97, 947); INSERT INTO actors_films (actor_id, film_id) VALUES (97, 951); INSERT INTO actors_films (actor_id, film_id) VALUES (98, 66); INSERT INTO actors_films (actor_id, film_id) VALUES (98, 72); INSERT INTO actors_films (actor_id, film_id) VALUES (98, 81); INSERT INTO actors_films (actor_id, film_id) VALUES (98, 87); INSERT INTO actors_films (actor_id, film_id) VALUES (98, 107); INSERT INTO actors_films (actor_id, film_id) VALUES (98, 120); INSERT INTO actors_films (actor_id, film_id) VALUES (98, 183); INSERT INTO actors_films (actor_id, film_id) VALUES (98, 194); INSERT INTO actors_films (actor_id, film_id) VALUES (98, 212); INSERT INTO actors_films (actor_id, film_id) VALUES (98, 297); INSERT INTO actors_films (actor_id, film_id) VALUES (98, 607); INSERT INTO actors_films (actor_id, film_id) VALUES (98, 634); INSERT INTO actors_films (actor_id, film_id) VALUES (98, 686); INSERT INTO actors_films (actor_id, film_id) VALUES (98, 705); INSERT INTO actors_films (actor_id, film_id) VALUES (98, 710); INSERT INTO actors_films (actor_id, film_id) VALUES (98, 721); INSERT INTO actors_films (actor_id, film_id) VALUES (98, 725); INSERT INTO actors_films (actor_id, film_id) VALUES (98, 734); INSERT INTO actors_films (actor_id, film_id) VALUES (98, 738); INSERT INTO actors_films (actor_id, film_id) VALUES (98, 765); INSERT INTO actors_films (actor_id, film_id) VALUES (98, 782); INSERT INTO actors_films (actor_id, film_id) VALUES (98, 824); INSERT INTO actors_films (actor_id, film_id) VALUES (98, 829); INSERT INTO actors_films (actor_id, film_id) VALUES (98, 912); INSERT INTO actors_films (actor_id, film_id) VALUES (98, 955); INSERT INTO actors_films (actor_id, film_id) VALUES (98, 985); INSERT INTO actors_films (actor_id, film_id) VALUES (98, 990); INSERT INTO actors_films (actor_id, film_id) VALUES (99, 7); INSERT INTO actors_films (actor_id, film_id) VALUES (99, 27); INSERT INTO actors_films (actor_id, film_id) VALUES (99, 84); INSERT INTO actors_films (actor_id, film_id) VALUES (99, 250); INSERT INTO actors_films (actor_id, film_id) VALUES (99, 322); INSERT INTO actors_films (actor_id, film_id) VALUES (99, 325); INSERT INTO actors_films (actor_id, film_id) VALUES (99, 381); INSERT INTO actors_films (actor_id, film_id) VALUES (99, 414); INSERT INTO actors_films (actor_id, film_id) VALUES (99, 475); INSERT INTO actors_films (actor_id, film_id) VALUES (99, 490); INSERT INTO actors_films (actor_id, film_id) VALUES (99, 512); INSERT INTO actors_films (actor_id, film_id) VALUES (99, 540); INSERT INTO actors_films (actor_id, film_id) VALUES (99, 572); INSERT INTO actors_films (actor_id, film_id) VALUES (99, 600); INSERT INTO actors_films (actor_id, film_id) VALUES (99, 618); INSERT INTO actors_films (actor_id, film_id) VALUES (99, 620); INSERT INTO actors_films (actor_id, film_id) VALUES (99, 622); INSERT INTO actors_films (actor_id, film_id) VALUES (99, 636); INSERT INTO actors_films (actor_id, film_id) VALUES (99, 672); INSERT INTO actors_films (actor_id, film_id) VALUES (99, 726); INSERT INTO actors_films (actor_id, film_id) VALUES (99, 741); INSERT INTO actors_films (actor_id, film_id) VALUES (99, 796); INSERT INTO actors_films (actor_id, film_id) VALUES (99, 835); INSERT INTO actors_films (actor_id, film_id) VALUES (99, 967); INSERT INTO actors_films (actor_id, film_id) VALUES (99, 978); INSERT INTO actors_films (actor_id, film_id) VALUES (99, 982); INSERT INTO actors_films (actor_id, film_id) VALUES (100, 17); INSERT INTO actors_films (actor_id, film_id) VALUES (100, 118); INSERT INTO actors_films (actor_id, film_id) VALUES (100, 250); INSERT INTO actors_films (actor_id, film_id) VALUES (100, 411); INSERT INTO actors_films (actor_id, film_id) VALUES (100, 414); INSERT INTO actors_films (actor_id, film_id) VALUES (100, 513); INSERT INTO actors_films (actor_id, film_id) VALUES (100, 563); INSERT INTO actors_films (actor_id, film_id) VALUES (100, 642); INSERT INTO actors_films (actor_id, film_id) VALUES (100, 714); INSERT INTO actors_films (actor_id, film_id) VALUES (100, 718); INSERT INTO actors_films (actor_id, film_id) VALUES (100, 759); INSERT INTO actors_films (actor_id, film_id) VALUES (100, 779); INSERT INTO actors_films (actor_id, film_id) VALUES (100, 815); INSERT INTO actors_films (actor_id, film_id) VALUES (100, 846); INSERT INTO actors_films (actor_id, film_id) VALUES (100, 850); INSERT INTO actors_films (actor_id, film_id) VALUES (100, 872); INSERT INTO actors_films (actor_id, film_id) VALUES (100, 877); INSERT INTO actors_films (actor_id, film_id) VALUES (100, 909); INSERT INTO actors_films (actor_id, film_id) VALUES (100, 919); INSERT INTO actors_films (actor_id, film_id) VALUES (100, 944); INSERT INTO actors_films (actor_id, film_id) VALUES (100, 967); INSERT INTO actors_films (actor_id, film_id) VALUES (100, 979); INSERT INTO actors_films (actor_id, film_id) VALUES (100, 991); INSERT INTO actors_films (actor_id, film_id) VALUES (100, 992); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 60); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 66); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 85); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 146); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 189); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 250); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 255); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 263); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 275); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 289); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 491); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 494); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 511); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 568); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 608); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 617); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 655); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 662); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 700); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 702); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 758); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 774); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 787); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 828); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 841); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 928); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 932); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 936); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 941); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 978); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 980); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 984); INSERT INTO actors_films (actor_id, film_id) VALUES (101, 988); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 20); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 34); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 53); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 123); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 124); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 194); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 200); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 205); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 268); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 326); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 329); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 334); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 351); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 418); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 431); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 446); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 485); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 508); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 517); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 521); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 526); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 529); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 544); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 600); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 605); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 606); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 624); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 631); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 712); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 728); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 744); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 796); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 802); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 810); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 828); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 837); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 845); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 852); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 958); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 979); INSERT INTO actors_films (actor_id, film_id) VALUES (102, 980); INSERT INTO actors_films (actor_id, film_id) VALUES (103, 5); INSERT INTO actors_films (actor_id, film_id) VALUES (103, 118); INSERT INTO actors_films (actor_id, film_id) VALUES (103, 130); INSERT INTO actors_films (actor_id, film_id) VALUES (103, 197); INSERT INTO actors_films (actor_id, film_id) VALUES (103, 199); INSERT INTO actors_films (actor_id, film_id) VALUES (103, 206); INSERT INTO actors_films (actor_id, film_id) VALUES (103, 215); INSERT INTO actors_films (actor_id, film_id) VALUES (103, 221); INSERT INTO actors_films (actor_id, film_id) VALUES (103, 271); INSERT INTO actors_films (actor_id, film_id) VALUES (103, 285); INSERT INTO actors_films (actor_id, film_id) VALUES (103, 315); INSERT INTO actors_films (actor_id, film_id) VALUES (103, 318); INSERT INTO actors_films (actor_id, film_id) VALUES (103, 333); INSERT INTO actors_films (actor_id, film_id) VALUES (103, 347); INSERT INTO actors_films (actor_id, film_id) VALUES (103, 356); INSERT INTO actors_films (actor_id, film_id) VALUES (103, 360); INSERT INTO actors_films (actor_id, film_id) VALUES (103, 378); INSERT INTO actors_films (actor_id, film_id) VALUES (103, 437); INSERT INTO actors_films (actor_id, film_id) VALUES (103, 585); INSERT INTO actors_films (actor_id, film_id) VALUES (103, 609); INSERT INTO actors_films (actor_id, film_id) VALUES (103, 639); INSERT INTO actors_films (actor_id, film_id) VALUES (103, 643); INSERT INTO actors_films (actor_id, film_id) VALUES (103, 692); INSERT INTO actors_films (actor_id, film_id) VALUES (103, 735); INSERT INTO actors_films (actor_id, film_id) VALUES (103, 822); INSERT INTO actors_films (actor_id, film_id) VALUES (103, 895); INSERT INTO actors_films (actor_id, film_id) VALUES (103, 903); INSERT INTO actors_films (actor_id, film_id) VALUES (103, 912); INSERT INTO actors_films (actor_id, film_id) VALUES (103, 942); INSERT INTO actors_films (actor_id, film_id) VALUES (103, 956); INSERT INTO actors_films (actor_id, film_id) VALUES (104, 19); INSERT INTO actors_films (actor_id, film_id) VALUES (104, 39); INSERT INTO actors_films (actor_id, film_id) VALUES (104, 40); INSERT INTO actors_films (actor_id, film_id) VALUES (104, 59); INSERT INTO actors_films (actor_id, film_id) VALUES (104, 70); INSERT INTO actors_films (actor_id, film_id) VALUES (104, 136); INSERT INTO actors_films (actor_id, film_id) VALUES (104, 156); INSERT INTO actors_films (actor_id, film_id) VALUES (104, 184); INSERT INTO actors_films (actor_id, film_id) VALUES (104, 198); INSERT INTO actors_films (actor_id, film_id) VALUES (104, 233); INSERT INTO actors_films (actor_id, film_id) VALUES (104, 259); INSERT INTO actors_films (actor_id, film_id) VALUES (104, 287); INSERT INTO actors_films (actor_id, film_id) VALUES (104, 309); INSERT INTO actors_films (actor_id, film_id) VALUES (104, 313); INSERT INTO actors_films (actor_id, film_id) VALUES (104, 394); INSERT INTO actors_films (actor_id, film_id) VALUES (104, 401); INSERT INTO actors_films (actor_id, film_id) VALUES (104, 463); INSERT INTO actors_films (actor_id, film_id) VALUES (104, 506); INSERT INTO actors_films (actor_id, film_id) VALUES (104, 516); INSERT INTO actors_films (actor_id, film_id) VALUES (104, 583); INSERT INTO actors_films (actor_id, film_id) VALUES (104, 600); INSERT INTO actors_films (actor_id, film_id) VALUES (104, 607); INSERT INTO actors_films (actor_id, film_id) VALUES (104, 657); INSERT INTO actors_films (actor_id, film_id) VALUES (104, 677); INSERT INTO actors_films (actor_id, film_id) VALUES (104, 739); INSERT INTO actors_films (actor_id, film_id) VALUES (104, 892); INSERT INTO actors_films (actor_id, film_id) VALUES (104, 904); INSERT INTO actors_films (actor_id, film_id) VALUES (104, 926); INSERT INTO actors_films (actor_id, film_id) VALUES (104, 945); INSERT INTO actors_films (actor_id, film_id) VALUES (104, 984); INSERT INTO actors_films (actor_id, film_id) VALUES (104, 999); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 12); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 15); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 21); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 29); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 42); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 116); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 158); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 239); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 280); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 283); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 315); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 333); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 372); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 377); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 530); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 558); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 561); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 606); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 649); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 686); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 750); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 795); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 831); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 835); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 858); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 864); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 893); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 906); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 910); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 915); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 954); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 990); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 993); INSERT INTO actors_films (actor_id, film_id) VALUES (105, 994); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 44); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 83); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 108); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 126); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 136); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 166); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 189); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 194); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 204); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 229); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 241); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 345); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 365); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 399); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 439); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 457); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 469); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 500); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 505); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 559); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 566); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 585); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 639); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 654); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 659); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 675); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 687); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 752); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 763); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 780); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 858); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 866); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 881); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 894); INSERT INTO actors_films (actor_id, film_id) VALUES (106, 934); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 62); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 112); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 133); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 136); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 138); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 162); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 165); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 172); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 209); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 220); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 239); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 277); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 292); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 338); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 348); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 369); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 388); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 392); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 409); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 430); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 445); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 454); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 458); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 467); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 520); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 534); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 548); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 571); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 574); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 603); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 606); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 637); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 774); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 781); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 796); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 831); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 849); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 859); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 879); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 905); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 973); INSERT INTO actors_films (actor_id, film_id) VALUES (107, 977); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 1); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 6); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 9); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 137); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 208); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 219); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 242); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 278); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 302); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 350); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 378); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 379); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 495); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 507); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 517); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 561); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 567); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 648); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 652); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 655); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 673); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 693); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 696); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 702); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 721); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 733); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 741); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 744); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 887); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 892); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 894); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 920); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 958); INSERT INTO actors_films (actor_id, film_id) VALUES (108, 966); INSERT INTO actors_films (actor_id, film_id) VALUES (109, 12); INSERT INTO actors_films (actor_id, film_id) VALUES (109, 48); INSERT INTO actors_films (actor_id, film_id) VALUES (109, 77); INSERT INTO actors_films (actor_id, film_id) VALUES (109, 157); INSERT INTO actors_films (actor_id, film_id) VALUES (109, 174); INSERT INTO actors_films (actor_id, film_id) VALUES (109, 190); INSERT INTO actors_films (actor_id, film_id) VALUES (109, 243); INSERT INTO actors_films (actor_id, film_id) VALUES (109, 281); INSERT INTO actors_films (actor_id, film_id) VALUES (109, 393); INSERT INTO actors_films (actor_id, film_id) VALUES (109, 463); INSERT INTO actors_films (actor_id, film_id) VALUES (109, 622); INSERT INTO actors_films (actor_id, film_id) VALUES (109, 657); INSERT INTO actors_films (actor_id, film_id) VALUES (109, 694); INSERT INTO actors_films (actor_id, film_id) VALUES (109, 700); INSERT INTO actors_films (actor_id, film_id) VALUES (109, 732); INSERT INTO actors_films (actor_id, film_id) VALUES (109, 753); INSERT INTO actors_films (actor_id, film_id) VALUES (109, 785); INSERT INTO actors_films (actor_id, film_id) VALUES (109, 786); INSERT INTO actors_films (actor_id, film_id) VALUES (109, 863); INSERT INTO actors_films (actor_id, film_id) VALUES (109, 885); INSERT INTO actors_films (actor_id, film_id) VALUES (109, 955); INSERT INTO actors_films (actor_id, film_id) VALUES (109, 967); INSERT INTO actors_films (actor_id, film_id) VALUES (110, 8); INSERT INTO actors_films (actor_id, film_id) VALUES (110, 27); INSERT INTO actors_films (actor_id, film_id) VALUES (110, 62); INSERT INTO actors_films (actor_id, film_id) VALUES (110, 120); INSERT INTO actors_films (actor_id, film_id) VALUES (110, 126); INSERT INTO actors_films (actor_id, film_id) VALUES (110, 156); INSERT INTO actors_films (actor_id, film_id) VALUES (110, 292); INSERT INTO actors_films (actor_id, film_id) VALUES (110, 343); INSERT INTO actors_films (actor_id, film_id) VALUES (110, 360); INSERT INTO actors_films (actor_id, film_id) VALUES (110, 369); INSERT INTO actors_films (actor_id, film_id) VALUES (110, 435); INSERT INTO actors_films (actor_id, film_id) VALUES (110, 513); INSERT INTO actors_films (actor_id, film_id) VALUES (110, 525); INSERT INTO actors_films (actor_id, film_id) VALUES (110, 539); INSERT INTO actors_films (actor_id, film_id) VALUES (110, 545); INSERT INTO actors_films (actor_id, film_id) VALUES (110, 625); INSERT INTO actors_films (actor_id, film_id) VALUES (110, 650); INSERT INTO actors_films (actor_id, film_id) VALUES (110, 801); INSERT INTO actors_films (actor_id, film_id) VALUES (110, 912); INSERT INTO actors_films (actor_id, film_id) VALUES (110, 961); INSERT INTO actors_films (actor_id, film_id) VALUES (110, 987); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 61); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 78); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 98); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 162); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 179); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 194); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 325); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 359); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 382); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 403); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 407); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 414); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 474); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 489); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 508); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 555); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 603); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 608); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 643); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 669); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 679); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 680); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 699); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 731); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 732); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 737); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 744); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 777); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 847); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 894); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 919); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 962); INSERT INTO actors_films (actor_id, film_id) VALUES (111, 973); INSERT INTO actors_films (actor_id, film_id) VALUES (112, 34); INSERT INTO actors_films (actor_id, film_id) VALUES (112, 37); INSERT INTO actors_films (actor_id, film_id) VALUES (112, 151); INSERT INTO actors_films (actor_id, film_id) VALUES (112, 173); INSERT INTO actors_films (actor_id, film_id) VALUES (112, 188); INSERT INTO actors_films (actor_id, film_id) VALUES (112, 231); INSERT INTO actors_films (actor_id, film_id) VALUES (112, 312); INSERT INTO actors_films (actor_id, film_id) VALUES (112, 322); INSERT INTO actors_films (actor_id, film_id) VALUES (112, 443); INSERT INTO actors_films (actor_id, film_id) VALUES (112, 450); INSERT INTO actors_films (actor_id, film_id) VALUES (112, 565); INSERT INTO actors_films (actor_id, film_id) VALUES (112, 603); INSERT INTO actors_films (actor_id, film_id) VALUES (112, 606); INSERT INTO actors_films (actor_id, film_id) VALUES (112, 654); INSERT INTO actors_films (actor_id, film_id) VALUES (112, 666); INSERT INTO actors_films (actor_id, film_id) VALUES (112, 700); INSERT INTO actors_films (actor_id, film_id) VALUES (112, 728); INSERT INTO actors_films (actor_id, film_id) VALUES (112, 772); INSERT INTO actors_films (actor_id, film_id) VALUES (112, 796); INSERT INTO actors_films (actor_id, film_id) VALUES (112, 817); INSERT INTO actors_films (actor_id, film_id) VALUES (112, 829); INSERT INTO actors_films (actor_id, film_id) VALUES (112, 856); INSERT INTO actors_films (actor_id, film_id) VALUES (112, 865); INSERT INTO actors_films (actor_id, film_id) VALUES (112, 869); INSERT INTO actors_films (actor_id, film_id) VALUES (112, 988); INSERT INTO actors_films (actor_id, film_id) VALUES (113, 35); INSERT INTO actors_films (actor_id, film_id) VALUES (113, 84); INSERT INTO actors_films (actor_id, film_id) VALUES (113, 116); INSERT INTO actors_films (actor_id, film_id) VALUES (113, 181); INSERT INTO actors_films (actor_id, film_id) VALUES (113, 218); INSERT INTO actors_films (actor_id, film_id) VALUES (113, 249); INSERT INTO actors_films (actor_id, film_id) VALUES (113, 258); INSERT INTO actors_films (actor_id, film_id) VALUES (113, 292); INSERT INTO actors_films (actor_id, film_id) VALUES (113, 322); INSERT INTO actors_films (actor_id, film_id) VALUES (113, 353); INSERT INTO actors_films (actor_id, film_id) VALUES (113, 403); INSERT INTO actors_films (actor_id, film_id) VALUES (113, 525); INSERT INTO actors_films (actor_id, film_id) VALUES (113, 642); INSERT INTO actors_films (actor_id, film_id) VALUES (113, 656); INSERT INTO actors_films (actor_id, film_id) VALUES (113, 674); INSERT INTO actors_films (actor_id, film_id) VALUES (113, 680); INSERT INTO actors_films (actor_id, film_id) VALUES (113, 700); INSERT INTO actors_films (actor_id, film_id) VALUES (113, 719); INSERT INTO actors_films (actor_id, film_id) VALUES (113, 723); INSERT INTO actors_films (actor_id, film_id) VALUES (113, 726); INSERT INTO actors_films (actor_id, film_id) VALUES (113, 732); INSERT INTO actors_films (actor_id, film_id) VALUES (113, 748); INSERT INTO actors_films (actor_id, film_id) VALUES (113, 838); INSERT INTO actors_films (actor_id, film_id) VALUES (113, 890); INSERT INTO actors_films (actor_id, film_id) VALUES (113, 921); INSERT INTO actors_films (actor_id, film_id) VALUES (113, 969); INSERT INTO actors_films (actor_id, film_id) VALUES (113, 981); INSERT INTO actors_films (actor_id, film_id) VALUES (114, 13); INSERT INTO actors_films (actor_id, film_id) VALUES (114, 68); INSERT INTO actors_films (actor_id, film_id) VALUES (114, 90); INSERT INTO actors_films (actor_id, film_id) VALUES (114, 162); INSERT INTO actors_films (actor_id, film_id) VALUES (114, 188); INSERT INTO actors_films (actor_id, film_id) VALUES (114, 194); INSERT INTO actors_films (actor_id, film_id) VALUES (114, 210); INSERT INTO actors_films (actor_id, film_id) VALUES (114, 237); INSERT INTO actors_films (actor_id, film_id) VALUES (114, 254); INSERT INTO actors_films (actor_id, film_id) VALUES (114, 305); INSERT INTO actors_films (actor_id, film_id) VALUES (114, 339); INSERT INTO actors_films (actor_id, film_id) VALUES (114, 420); INSERT INTO actors_films (actor_id, film_id) VALUES (114, 425); INSERT INTO actors_films (actor_id, film_id) VALUES (114, 452); INSERT INTO actors_films (actor_id, film_id) VALUES (114, 538); INSERT INTO actors_films (actor_id, film_id) VALUES (114, 619); INSERT INTO actors_films (actor_id, film_id) VALUES (114, 757); INSERT INTO actors_films (actor_id, film_id) VALUES (114, 807); INSERT INTO actors_films (actor_id, film_id) VALUES (114, 827); INSERT INTO actors_films (actor_id, film_id) VALUES (114, 841); INSERT INTO actors_films (actor_id, film_id) VALUES (114, 861); INSERT INTO actors_films (actor_id, film_id) VALUES (114, 866); INSERT INTO actors_films (actor_id, film_id) VALUES (114, 913); INSERT INTO actors_films (actor_id, film_id) VALUES (114, 961); INSERT INTO actors_films (actor_id, film_id) VALUES (114, 993); INSERT INTO actors_films (actor_id, film_id) VALUES (115, 49); INSERT INTO actors_films (actor_id, film_id) VALUES (115, 52); INSERT INTO actors_films (actor_id, film_id) VALUES (115, 245); INSERT INTO actors_films (actor_id, film_id) VALUES (115, 246); INSERT INTO actors_films (actor_id, film_id) VALUES (115, 277); INSERT INTO actors_films (actor_id, film_id) VALUES (115, 302); INSERT INTO actors_films (actor_id, film_id) VALUES (115, 379); INSERT INTO actors_films (actor_id, film_id) VALUES (115, 383); INSERT INTO actors_films (actor_id, film_id) VALUES (115, 391); INSERT INTO actors_films (actor_id, film_id) VALUES (115, 428); INSERT INTO actors_films (actor_id, film_id) VALUES (115, 506); INSERT INTO actors_films (actor_id, film_id) VALUES (115, 531); INSERT INTO actors_films (actor_id, film_id) VALUES (115, 607); INSERT INTO actors_films (actor_id, film_id) VALUES (115, 615); INSERT INTO actors_films (actor_id, film_id) VALUES (115, 661); INSERT INTO actors_films (actor_id, film_id) VALUES (115, 671); INSERT INTO actors_films (actor_id, film_id) VALUES (115, 686); INSERT INTO actors_films (actor_id, film_id) VALUES (115, 703); INSERT INTO actors_films (actor_id, film_id) VALUES (115, 714); INSERT INTO actors_films (actor_id, film_id) VALUES (115, 740); INSERT INTO actors_films (actor_id, film_id) VALUES (115, 754); INSERT INTO actors_films (actor_id, film_id) VALUES (115, 846); INSERT INTO actors_films (actor_id, film_id) VALUES (115, 887); INSERT INTO actors_films (actor_id, film_id) VALUES (115, 952); INSERT INTO actors_films (actor_id, film_id) VALUES (115, 955); INSERT INTO actors_films (actor_id, film_id) VALUES (115, 966); INSERT INTO actors_films (actor_id, film_id) VALUES (115, 985); INSERT INTO actors_films (actor_id, film_id) VALUES (115, 994); INSERT INTO actors_films (actor_id, film_id) VALUES (116, 36); INSERT INTO actors_films (actor_id, film_id) VALUES (116, 48); INSERT INTO actors_films (actor_id, film_id) VALUES (116, 88); INSERT INTO actors_films (actor_id, film_id) VALUES (116, 90); INSERT INTO actors_films (actor_id, film_id) VALUES (116, 105); INSERT INTO actors_films (actor_id, film_id) VALUES (116, 128); INSERT INTO actors_films (actor_id, film_id) VALUES (116, 336); INSERT INTO actors_films (actor_id, film_id) VALUES (116, 338); INSERT INTO actors_films (actor_id, film_id) VALUES (116, 384); INSERT INTO actors_films (actor_id, film_id) VALUES (116, 412); INSERT INTO actors_films (actor_id, film_id) VALUES (116, 420); INSERT INTO actors_films (actor_id, film_id) VALUES (116, 451); INSERT INTO actors_films (actor_id, film_id) VALUES (116, 481); INSERT INTO actors_films (actor_id, film_id) VALUES (116, 492); INSERT INTO actors_films (actor_id, film_id) VALUES (116, 584); INSERT INTO actors_films (actor_id, film_id) VALUES (116, 606); INSERT INTO actors_films (actor_id, film_id) VALUES (116, 622); INSERT INTO actors_films (actor_id, film_id) VALUES (116, 647); INSERT INTO actors_films (actor_id, film_id) VALUES (116, 653); INSERT INTO actors_films (actor_id, film_id) VALUES (116, 742); INSERT INTO actors_films (actor_id, film_id) VALUES (116, 784); INSERT INTO actors_films (actor_id, film_id) VALUES (116, 844); INSERT INTO actors_films (actor_id, film_id) VALUES (116, 939); INSERT INTO actors_films (actor_id, film_id) VALUES (116, 956); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 10); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 15); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 42); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 167); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 178); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 190); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 197); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 224); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 246); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 273); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 298); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 316); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 337); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 395); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 423); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 432); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 459); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 468); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 550); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 578); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 707); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 710); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 738); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 739); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 778); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 783); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 785); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 797); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 812); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 831); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 864); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 887); INSERT INTO actors_films (actor_id, film_id) VALUES (117, 926); INSERT INTO actors_films (actor_id, film_id) VALUES (118, 35); INSERT INTO actors_films (actor_id, film_id) VALUES (118, 39); INSERT INTO actors_films (actor_id, film_id) VALUES (118, 41); INSERT INTO actors_films (actor_id, film_id) VALUES (118, 49); INSERT INTO actors_films (actor_id, film_id) VALUES (118, 55); INSERT INTO actors_films (actor_id, film_id) VALUES (118, 136); INSERT INTO actors_films (actor_id, film_id) VALUES (118, 141); INSERT INTO actors_films (actor_id, film_id) VALUES (118, 151); INSERT INTO actors_films (actor_id, film_id) VALUES (118, 311); INSERT INTO actors_films (actor_id, film_id) VALUES (118, 384); INSERT INTO actors_films (actor_id, film_id) VALUES (118, 399); INSERT INTO actors_films (actor_id, film_id) VALUES (118, 499); INSERT INTO actors_films (actor_id, film_id) VALUES (118, 517); INSERT INTO actors_films (actor_id, film_id) VALUES (118, 553); INSERT INTO actors_films (actor_id, film_id) VALUES (118, 558); INSERT INTO actors_films (actor_id, film_id) VALUES (118, 572); INSERT INTO actors_films (actor_id, film_id) VALUES (118, 641); INSERT INTO actors_films (actor_id, film_id) VALUES (118, 656); INSERT INTO actors_films (actor_id, film_id) VALUES (118, 695); INSERT INTO actors_films (actor_id, film_id) VALUES (118, 735); INSERT INTO actors_films (actor_id, film_id) VALUES (118, 788); INSERT INTO actors_films (actor_id, film_id) VALUES (118, 852); INSERT INTO actors_films (actor_id, film_id) VALUES (118, 938); INSERT INTO actors_films (actor_id, film_id) VALUES (118, 957); INSERT INTO actors_films (actor_id, film_id) VALUES (118, 969); INSERT INTO actors_films (actor_id, film_id) VALUES (119, 21); INSERT INTO actors_films (actor_id, film_id) VALUES (119, 49); INSERT INTO actors_films (actor_id, film_id) VALUES (119, 64); INSERT INTO actors_films (actor_id, film_id) VALUES (119, 87); INSERT INTO actors_films (actor_id, film_id) VALUES (119, 143); INSERT INTO actors_films (actor_id, film_id) VALUES (119, 171); INSERT INTO actors_films (actor_id, film_id) VALUES (119, 172); INSERT INTO actors_films (actor_id, film_id) VALUES (119, 173); INSERT INTO actors_films (actor_id, film_id) VALUES (119, 381); INSERT INTO actors_films (actor_id, film_id) VALUES (119, 394); INSERT INTO actors_films (actor_id, film_id) VALUES (119, 412); INSERT INTO actors_films (actor_id, film_id) VALUES (119, 418); INSERT INTO actors_films (actor_id, film_id) VALUES (119, 454); INSERT INTO actors_films (actor_id, film_id) VALUES (119, 509); INSERT INTO actors_films (actor_id, film_id) VALUES (119, 521); INSERT INTO actors_films (actor_id, film_id) VALUES (119, 567); INSERT INTO actors_films (actor_id, film_id) VALUES (119, 570); INSERT INTO actors_films (actor_id, film_id) VALUES (119, 592); INSERT INTO actors_films (actor_id, film_id) VALUES (119, 614); INSERT INTO actors_films (actor_id, film_id) VALUES (119, 636); INSERT INTO actors_films (actor_id, film_id) VALUES (119, 649); INSERT INTO actors_films (actor_id, film_id) VALUES (119, 693); INSERT INTO actors_films (actor_id, film_id) VALUES (119, 738); INSERT INTO actors_films (actor_id, film_id) VALUES (119, 751); INSERT INTO actors_films (actor_id, film_id) VALUES (119, 782); INSERT INTO actors_films (actor_id, film_id) VALUES (119, 786); INSERT INTO actors_films (actor_id, film_id) VALUES (119, 788); INSERT INTO actors_films (actor_id, film_id) VALUES (119, 802); INSERT INTO actors_films (actor_id, film_id) VALUES (119, 858); INSERT INTO actors_films (actor_id, film_id) VALUES (119, 868); INSERT INTO actors_films (actor_id, film_id) VALUES (119, 900); INSERT INTO actors_films (actor_id, film_id) VALUES (119, 939); INSERT INTO actors_films (actor_id, film_id) VALUES (120, 57); INSERT INTO actors_films (actor_id, film_id) VALUES (120, 63); INSERT INTO actors_films (actor_id, film_id) VALUES (120, 144); INSERT INTO actors_films (actor_id, film_id) VALUES (120, 149); INSERT INTO actors_films (actor_id, film_id) VALUES (120, 208); INSERT INTO actors_films (actor_id, film_id) VALUES (120, 231); INSERT INTO actors_films (actor_id, film_id) VALUES (120, 238); INSERT INTO actors_films (actor_id, film_id) VALUES (120, 255); INSERT INTO actors_films (actor_id, film_id) VALUES (120, 414); INSERT INTO actors_films (actor_id, film_id) VALUES (120, 424); INSERT INTO actors_films (actor_id, film_id) VALUES (120, 489); INSERT INTO actors_films (actor_id, film_id) VALUES (120, 513); INSERT INTO actors_films (actor_id, film_id) VALUES (120, 590); INSERT INTO actors_films (actor_id, film_id) VALUES (120, 641); INSERT INTO actors_films (actor_id, film_id) VALUES (120, 642); INSERT INTO actors_films (actor_id, film_id) VALUES (120, 659); INSERT INTO actors_films (actor_id, film_id) VALUES (120, 682); INSERT INTO actors_films (actor_id, film_id) VALUES (120, 691); INSERT INTO actors_films (actor_id, film_id) VALUES (120, 715); INSERT INTO actors_films (actor_id, film_id) VALUES (120, 717); INSERT INTO actors_films (actor_id, film_id) VALUES (120, 722); INSERT INTO actors_films (actor_id, film_id) VALUES (120, 746); INSERT INTO actors_films (actor_id, film_id) VALUES (120, 830); INSERT INTO actors_films (actor_id, film_id) VALUES (120, 894); INSERT INTO actors_films (actor_id, film_id) VALUES (120, 898); INSERT INTO actors_films (actor_id, film_id) VALUES (120, 911); INSERT INTO actors_films (actor_id, film_id) VALUES (120, 994); INSERT INTO actors_films (actor_id, film_id) VALUES (121, 141); INSERT INTO actors_films (actor_id, film_id) VALUES (121, 154); INSERT INTO actors_films (actor_id, film_id) VALUES (121, 161); INSERT INTO actors_films (actor_id, film_id) VALUES (121, 170); INSERT INTO actors_films (actor_id, film_id) VALUES (121, 186); INSERT INTO actors_films (actor_id, film_id) VALUES (121, 198); INSERT INTO actors_films (actor_id, film_id) VALUES (121, 220); INSERT INTO actors_films (actor_id, film_id) VALUES (121, 222); INSERT INTO actors_films (actor_id, film_id) VALUES (121, 284); INSERT INTO actors_films (actor_id, film_id) VALUES (121, 297); INSERT INTO actors_films (actor_id, film_id) VALUES (121, 338); INSERT INTO actors_films (actor_id, film_id) VALUES (121, 353); INSERT INTO actors_films (actor_id, film_id) VALUES (121, 449); INSERT INTO actors_films (actor_id, film_id) VALUES (121, 479); INSERT INTO actors_films (actor_id, film_id) VALUES (121, 517); INSERT INTO actors_films (actor_id, film_id) VALUES (121, 633); INSERT INTO actors_films (actor_id, film_id) VALUES (121, 654); INSERT INTO actors_films (actor_id, film_id) VALUES (121, 658); INSERT INTO actors_films (actor_id, film_id) VALUES (121, 666); INSERT INTO actors_films (actor_id, film_id) VALUES (121, 771); INSERT INTO actors_films (actor_id, film_id) VALUES (121, 780); INSERT INTO actors_films (actor_id, film_id) VALUES (121, 847); INSERT INTO actors_films (actor_id, film_id) VALUES (121, 884); INSERT INTO actors_films (actor_id, film_id) VALUES (121, 885); INSERT INTO actors_films (actor_id, film_id) VALUES (121, 966); INSERT INTO actors_films (actor_id, film_id) VALUES (122, 22); INSERT INTO actors_films (actor_id, film_id) VALUES (122, 29); INSERT INTO actors_films (actor_id, film_id) VALUES (122, 76); INSERT INTO actors_films (actor_id, film_id) VALUES (122, 83); INSERT INTO actors_films (actor_id, film_id) VALUES (122, 157); INSERT INTO actors_films (actor_id, film_id) VALUES (122, 158); INSERT INTO actors_films (actor_id, film_id) VALUES (122, 166); INSERT INTO actors_films (actor_id, film_id) VALUES (122, 227); INSERT INTO actors_films (actor_id, film_id) VALUES (122, 238); INSERT INTO actors_films (actor_id, film_id) VALUES (122, 300); INSERT INTO actors_films (actor_id, film_id) VALUES (122, 307); INSERT INTO actors_films (actor_id, film_id) VALUES (122, 363); INSERT INTO actors_films (actor_id, film_id) VALUES (122, 470); INSERT INTO actors_films (actor_id, film_id) VALUES (122, 489); INSERT INTO actors_films (actor_id, film_id) VALUES (122, 491); INSERT INTO actors_films (actor_id, film_id) VALUES (122, 542); INSERT INTO actors_films (actor_id, film_id) VALUES (122, 620); INSERT INTO actors_films (actor_id, film_id) VALUES (122, 649); INSERT INTO actors_films (actor_id, film_id) VALUES (122, 654); INSERT INTO actors_films (actor_id, film_id) VALUES (122, 673); INSERT INTO actors_films (actor_id, film_id) VALUES (122, 718); INSERT INTO actors_films (actor_id, film_id) VALUES (122, 795); INSERT INTO actors_films (actor_id, film_id) VALUES (122, 957); INSERT INTO actors_films (actor_id, film_id) VALUES (122, 961); INSERT INTO actors_films (actor_id, film_id) VALUES (122, 998); INSERT INTO actors_films (actor_id, film_id) VALUES (123, 3); INSERT INTO actors_films (actor_id, film_id) VALUES (123, 43); INSERT INTO actors_films (actor_id, film_id) VALUES (123, 67); INSERT INTO actors_films (actor_id, film_id) VALUES (123, 105); INSERT INTO actors_films (actor_id, film_id) VALUES (123, 148); INSERT INTO actors_films (actor_id, film_id) VALUES (123, 151); INSERT INTO actors_films (actor_id, film_id) VALUES (123, 185); INSERT INTO actors_films (actor_id, film_id) VALUES (123, 223); INSERT INTO actors_films (actor_id, film_id) VALUES (123, 234); INSERT INTO actors_films (actor_id, film_id) VALUES (123, 245); INSERT INTO actors_films (actor_id, film_id) VALUES (123, 246); INSERT INTO actors_films (actor_id, film_id) VALUES (123, 266); INSERT INTO actors_films (actor_id, film_id) VALUES (123, 286); INSERT INTO actors_films (actor_id, film_id) VALUES (123, 429); INSERT INTO actors_films (actor_id, film_id) VALUES (123, 442); INSERT INTO actors_films (actor_id, film_id) VALUES (123, 446); INSERT INTO actors_films (actor_id, film_id) VALUES (123, 479); INSERT INTO actors_films (actor_id, film_id) VALUES (123, 480); INSERT INTO actors_films (actor_id, film_id) VALUES (123, 494); INSERT INTO actors_films (actor_id, film_id) VALUES (123, 503); INSERT INTO actors_films (actor_id, film_id) VALUES (123, 530); INSERT INTO actors_films (actor_id, film_id) VALUES (123, 576); INSERT INTO actors_films (actor_id, film_id) VALUES (123, 577); INSERT INTO actors_films (actor_id, film_id) VALUES (123, 589); INSERT INTO actors_films (actor_id, film_id) VALUES (123, 593); INSERT INTO actors_films (actor_id, film_id) VALUES (123, 725); INSERT INTO actors_films (actor_id, film_id) VALUES (123, 730); INSERT INTO actors_films (actor_id, film_id) VALUES (123, 786); INSERT INTO actors_films (actor_id, film_id) VALUES (123, 860); INSERT INTO actors_films (actor_id, film_id) VALUES (123, 892); INSERT INTO actors_films (actor_id, film_id) VALUES (123, 926); INSERT INTO actors_films (actor_id, film_id) VALUES (123, 988); INSERT INTO actors_films (actor_id, film_id) VALUES (124, 22); INSERT INTO actors_films (actor_id, film_id) VALUES (124, 64); INSERT INTO actors_films (actor_id, film_id) VALUES (124, 106); INSERT INTO actors_films (actor_id, film_id) VALUES (124, 113); INSERT INTO actors_films (actor_id, film_id) VALUES (124, 190); INSERT INTO actors_films (actor_id, film_id) VALUES (124, 246); INSERT INTO actors_films (actor_id, film_id) VALUES (124, 260); INSERT INTO actors_films (actor_id, film_id) VALUES (124, 263); INSERT INTO actors_films (actor_id, film_id) VALUES (124, 289); INSERT INTO actors_films (actor_id, film_id) VALUES (124, 306); INSERT INTO actors_films (actor_id, film_id) VALUES (124, 312); INSERT INTO actors_films (actor_id, film_id) VALUES (124, 322); INSERT INTO actors_films (actor_id, film_id) VALUES (124, 343); INSERT INTO actors_films (actor_id, film_id) VALUES (124, 449); INSERT INTO actors_films (actor_id, film_id) VALUES (124, 468); INSERT INTO actors_films (actor_id, film_id) VALUES (124, 539); INSERT INTO actors_films (actor_id, film_id) VALUES (124, 601); INSERT INTO actors_films (actor_id, film_id) VALUES (124, 726); INSERT INTO actors_films (actor_id, film_id) VALUES (124, 742); INSERT INTO actors_films (actor_id, film_id) VALUES (124, 775); INSERT INTO actors_films (actor_id, film_id) VALUES (124, 785); INSERT INTO actors_films (actor_id, film_id) VALUES (124, 814); INSERT INTO actors_films (actor_id, film_id) VALUES (124, 858); INSERT INTO actors_films (actor_id, film_id) VALUES (124, 882); INSERT INTO actors_films (actor_id, film_id) VALUES (124, 987); INSERT INTO actors_films (actor_id, film_id) VALUES (124, 997); INSERT INTO actors_films (actor_id, film_id) VALUES (125, 62); INSERT INTO actors_films (actor_id, film_id) VALUES (125, 98); INSERT INTO actors_films (actor_id, film_id) VALUES (125, 100); INSERT INTO actors_films (actor_id, film_id) VALUES (125, 114); INSERT INTO actors_films (actor_id, film_id) VALUES (125, 175); INSERT INTO actors_films (actor_id, film_id) VALUES (125, 188); INSERT INTO actors_films (actor_id, film_id) VALUES (125, 204); INSERT INTO actors_films (actor_id, film_id) VALUES (125, 238); INSERT INTO actors_films (actor_id, film_id) VALUES (125, 250); INSERT INTO actors_films (actor_id, film_id) VALUES (125, 324); INSERT INTO actors_films (actor_id, film_id) VALUES (125, 338); INSERT INTO actors_films (actor_id, film_id) VALUES (125, 361); INSERT INTO actors_films (actor_id, film_id) VALUES (125, 367); INSERT INTO actors_films (actor_id, film_id) VALUES (125, 395); INSERT INTO actors_films (actor_id, film_id) VALUES (125, 414); INSERT INTO actors_films (actor_id, film_id) VALUES (125, 428); INSERT INTO actors_films (actor_id, film_id) VALUES (125, 429); INSERT INTO actors_films (actor_id, film_id) VALUES (125, 450); INSERT INTO actors_films (actor_id, film_id) VALUES (125, 497); INSERT INTO actors_films (actor_id, film_id) VALUES (125, 557); INSERT INTO actors_films (actor_id, film_id) VALUES (125, 568); INSERT INTO actors_films (actor_id, film_id) VALUES (125, 584); INSERT INTO actors_films (actor_id, film_id) VALUES (125, 602); INSERT INTO actors_films (actor_id, film_id) VALUES (125, 623); INSERT INTO actors_films (actor_id, film_id) VALUES (125, 664); INSERT INTO actors_films (actor_id, film_id) VALUES (125, 683); INSERT INTO actors_films (actor_id, film_id) VALUES (125, 710); INSERT INTO actors_films (actor_id, film_id) VALUES (125, 877); INSERT INTO actors_films (actor_id, film_id) VALUES (125, 908); INSERT INTO actors_films (actor_id, film_id) VALUES (125, 949); INSERT INTO actors_films (actor_id, film_id) VALUES (125, 965); INSERT INTO actors_films (actor_id, film_id) VALUES (126, 21); INSERT INTO actors_films (actor_id, film_id) VALUES (126, 34); INSERT INTO actors_films (actor_id, film_id) VALUES (126, 43); INSERT INTO actors_films (actor_id, film_id) VALUES (126, 58); INSERT INTO actors_films (actor_id, film_id) VALUES (126, 85); INSERT INTO actors_films (actor_id, film_id) VALUES (126, 96); INSERT INTO actors_films (actor_id, film_id) VALUES (126, 193); INSERT INTO actors_films (actor_id, film_id) VALUES (126, 194); INSERT INTO actors_films (actor_id, film_id) VALUES (126, 199); INSERT INTO actors_films (actor_id, film_id) VALUES (126, 256); INSERT INTO actors_films (actor_id, film_id) VALUES (126, 263); INSERT INTO actors_films (actor_id, film_id) VALUES (126, 288); INSERT INTO actors_films (actor_id, film_id) VALUES (126, 317); INSERT INTO actors_films (actor_id, film_id) VALUES (126, 347); INSERT INTO actors_films (actor_id, film_id) VALUES (126, 369); INSERT INTO actors_films (actor_id, film_id) VALUES (126, 370); INSERT INTO actors_films (actor_id, film_id) VALUES (126, 419); INSERT INTO actors_films (actor_id, film_id) VALUES (126, 468); INSERT INTO actors_films (actor_id, film_id) VALUES (126, 469); INSERT INTO actors_films (actor_id, film_id) VALUES (126, 545); INSERT INTO actors_films (actor_id, film_id) VALUES (126, 685); INSERT INTO actors_films (actor_id, film_id) VALUES (126, 836); INSERT INTO actors_films (actor_id, film_id) VALUES (126, 860); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 36); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 47); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 48); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 79); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 119); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 141); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 157); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 202); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 286); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 333); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 354); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 366); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 382); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 388); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 411); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 459); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 553); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 573); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 613); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 617); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 641); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 710); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 727); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 749); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 763); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 771); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 791); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 819); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 839); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 846); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 911); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 953); INSERT INTO actors_films (actor_id, film_id) VALUES (127, 970); INSERT INTO actors_films (actor_id, film_id) VALUES (128, 26); INSERT INTO actors_films (actor_id, film_id) VALUES (128, 82); INSERT INTO actors_films (actor_id, film_id) VALUES (128, 119); INSERT INTO actors_films (actor_id, film_id) VALUES (128, 168); INSERT INTO actors_films (actor_id, film_id) VALUES (128, 212); INSERT INTO actors_films (actor_id, film_id) VALUES (128, 238); INSERT INTO actors_films (actor_id, film_id) VALUES (128, 299); INSERT INTO actors_films (actor_id, film_id) VALUES (128, 312); INSERT INTO actors_films (actor_id, film_id) VALUES (128, 326); INSERT INTO actors_films (actor_id, film_id) VALUES (128, 336); INSERT INTO actors_films (actor_id, film_id) VALUES (128, 345); INSERT INTO actors_films (actor_id, film_id) VALUES (128, 407); INSERT INTO actors_films (actor_id, film_id) VALUES (128, 462); INSERT INTO actors_films (actor_id, film_id) VALUES (128, 485); INSERT INTO actors_films (actor_id, film_id) VALUES (128, 516); INSERT INTO actors_films (actor_id, film_id) VALUES (128, 564); INSERT INTO actors_films (actor_id, film_id) VALUES (128, 614); INSERT INTO actors_films (actor_id, film_id) VALUES (128, 650); INSERT INTO actors_films (actor_id, film_id) VALUES (128, 665); INSERT INTO actors_films (actor_id, film_id) VALUES (128, 671); INSERT INTO actors_films (actor_id, film_id) VALUES (128, 693); INSERT INTO actors_films (actor_id, film_id) VALUES (128, 696); INSERT INTO actors_films (actor_id, film_id) VALUES (128, 759); INSERT INTO actors_films (actor_id, film_id) VALUES (128, 774); INSERT INTO actors_films (actor_id, film_id) VALUES (128, 814); INSERT INTO actors_films (actor_id, film_id) VALUES (128, 899); INSERT INTO actors_films (actor_id, film_id) VALUES (128, 912); INSERT INTO actors_films (actor_id, film_id) VALUES (128, 944); INSERT INTO actors_films (actor_id, film_id) VALUES (128, 949); INSERT INTO actors_films (actor_id, film_id) VALUES (128, 965); INSERT INTO actors_films (actor_id, film_id) VALUES (129, 56); INSERT INTO actors_films (actor_id, film_id) VALUES (129, 89); INSERT INTO actors_films (actor_id, film_id) VALUES (129, 101); INSERT INTO actors_films (actor_id, film_id) VALUES (129, 166); INSERT INTO actors_films (actor_id, film_id) VALUES (129, 202); INSERT INTO actors_films (actor_id, film_id) VALUES (129, 230); INSERT INTO actors_films (actor_id, film_id) VALUES (129, 247); INSERT INTO actors_films (actor_id, film_id) VALUES (129, 249); INSERT INTO actors_films (actor_id, film_id) VALUES (129, 348); INSERT INTO actors_films (actor_id, film_id) VALUES (129, 367); INSERT INTO actors_films (actor_id, film_id) VALUES (129, 391); INSERT INTO actors_films (actor_id, film_id) VALUES (129, 418); INSERT INTO actors_films (actor_id, film_id) VALUES (129, 431); INSERT INTO actors_films (actor_id, film_id) VALUES (129, 452); INSERT INTO actors_films (actor_id, film_id) VALUES (129, 471); INSERT INTO actors_films (actor_id, film_id) VALUES (129, 520); INSERT INTO actors_films (actor_id, film_id) VALUES (129, 597); INSERT INTO actors_films (actor_id, film_id) VALUES (129, 602); INSERT INTO actors_films (actor_id, film_id) VALUES (129, 640); INSERT INTO actors_films (actor_id, film_id) VALUES (129, 669); INSERT INTO actors_films (actor_id, film_id) VALUES (129, 684); INSERT INTO actors_films (actor_id, film_id) VALUES (129, 705); INSERT INTO actors_films (actor_id, film_id) VALUES (129, 805); INSERT INTO actors_films (actor_id, film_id) VALUES (129, 826); INSERT INTO actors_films (actor_id, film_id) VALUES (129, 834); INSERT INTO actors_films (actor_id, film_id) VALUES (129, 857); INSERT INTO actors_films (actor_id, film_id) VALUES (129, 910); INSERT INTO actors_films (actor_id, film_id) VALUES (129, 920); INSERT INTO actors_films (actor_id, film_id) VALUES (129, 938); INSERT INTO actors_films (actor_id, film_id) VALUES (129, 962); INSERT INTO actors_films (actor_id, film_id) VALUES (130, 9); INSERT INTO actors_films (actor_id, film_id) VALUES (130, 26); INSERT INTO actors_films (actor_id, film_id) VALUES (130, 37); INSERT INTO actors_films (actor_id, film_id) VALUES (130, 43); INSERT INTO actors_films (actor_id, film_id) VALUES (130, 49); INSERT INTO actors_films (actor_id, film_id) VALUES (130, 57); INSERT INTO actors_films (actor_id, film_id) VALUES (130, 107); INSERT INTO actors_films (actor_id, film_id) VALUES (130, 112); INSERT INTO actors_films (actor_id, film_id) VALUES (130, 208); INSERT INTO actors_films (actor_id, film_id) VALUES (130, 326); INSERT INTO actors_films (actor_id, film_id) VALUES (130, 375); INSERT INTO actors_films (actor_id, film_id) VALUES (130, 416); INSERT INTO actors_films (actor_id, film_id) VALUES (130, 431); INSERT INTO actors_films (actor_id, film_id) VALUES (130, 452); INSERT INTO actors_films (actor_id, film_id) VALUES (130, 453); INSERT INTO actors_films (actor_id, film_id) VALUES (130, 478); INSERT INTO actors_films (actor_id, film_id) VALUES (130, 507); INSERT INTO actors_films (actor_id, film_id) VALUES (130, 525); INSERT INTO actors_films (actor_id, film_id) VALUES (130, 549); INSERT INTO actors_films (actor_id, film_id) VALUES (130, 592); INSERT INTO actors_films (actor_id, film_id) VALUES (130, 702); INSERT INTO actors_films (actor_id, film_id) VALUES (130, 725); INSERT INTO actors_films (actor_id, film_id) VALUES (130, 764); INSERT INTO actors_films (actor_id, film_id) VALUES (130, 809); INSERT INTO actors_films (actor_id, film_id) VALUES (130, 869); INSERT INTO actors_films (actor_id, film_id) VALUES (130, 930); INSERT INTO actors_films (actor_id, film_id) VALUES (130, 981); INSERT INTO actors_films (actor_id, film_id) VALUES (131, 48); INSERT INTO actors_films (actor_id, film_id) VALUES (131, 66); INSERT INTO actors_films (actor_id, film_id) VALUES (131, 94); INSERT INTO actors_films (actor_id, film_id) VALUES (131, 120); INSERT INTO actors_films (actor_id, film_id) VALUES (131, 147); INSERT INTO actors_films (actor_id, film_id) VALUES (131, 206); INSERT INTO actors_films (actor_id, film_id) VALUES (131, 320); INSERT INTO actors_films (actor_id, film_id) VALUES (131, 383); INSERT INTO actors_films (actor_id, film_id) VALUES (131, 432); INSERT INTO actors_films (actor_id, film_id) VALUES (131, 436); INSERT INTO actors_films (actor_id, film_id) VALUES (131, 450); INSERT INTO actors_films (actor_id, film_id) VALUES (131, 479); INSERT INTO actors_films (actor_id, film_id) VALUES (131, 494); INSERT INTO actors_films (actor_id, film_id) VALUES (131, 515); INSERT INTO actors_films (actor_id, film_id) VALUES (131, 539); INSERT INTO actors_films (actor_id, film_id) VALUES (131, 590); INSERT INTO actors_films (actor_id, film_id) VALUES (131, 647); INSERT INTO actors_films (actor_id, film_id) VALUES (131, 693); INSERT INTO actors_films (actor_id, film_id) VALUES (131, 713); INSERT INTO actors_films (actor_id, film_id) VALUES (131, 770); INSERT INTO actors_films (actor_id, film_id) VALUES (131, 798); INSERT INTO actors_films (actor_id, film_id) VALUES (131, 809); INSERT INTO actors_films (actor_id, film_id) VALUES (131, 875); INSERT INTO actors_films (actor_id, film_id) VALUES (131, 881); INSERT INTO actors_films (actor_id, film_id) VALUES (131, 921); INSERT INTO actors_films (actor_id, film_id) VALUES (132, 81); INSERT INTO actors_films (actor_id, film_id) VALUES (132, 82); INSERT INTO actors_films (actor_id, film_id) VALUES (132, 133); INSERT INTO actors_films (actor_id, film_id) VALUES (132, 156); INSERT INTO actors_films (actor_id, film_id) VALUES (132, 162); INSERT INTO actors_films (actor_id, film_id) VALUES (132, 311); INSERT INTO actors_films (actor_id, film_id) VALUES (132, 345); INSERT INTO actors_films (actor_id, film_id) VALUES (132, 377); INSERT INTO actors_films (actor_id, film_id) VALUES (132, 410); INSERT INTO actors_films (actor_id, film_id) VALUES (132, 538); INSERT INTO actors_films (actor_id, film_id) VALUES (132, 562); INSERT INTO actors_films (actor_id, film_id) VALUES (132, 586); INSERT INTO actors_films (actor_id, film_id) VALUES (132, 626); INSERT INTO actors_films (actor_id, film_id) VALUES (132, 637); INSERT INTO actors_films (actor_id, film_id) VALUES (132, 698); INSERT INTO actors_films (actor_id, film_id) VALUES (132, 756); INSERT INTO actors_films (actor_id, film_id) VALUES (132, 806); INSERT INTO actors_films (actor_id, film_id) VALUES (132, 897); INSERT INTO actors_films (actor_id, film_id) VALUES (132, 899); INSERT INTO actors_films (actor_id, film_id) VALUES (132, 904); INSERT INTO actors_films (actor_id, film_id) VALUES (132, 930); INSERT INTO actors_films (actor_id, film_id) VALUES (132, 987); INSERT INTO actors_films (actor_id, film_id) VALUES (133, 7); INSERT INTO actors_films (actor_id, film_id) VALUES (133, 51); INSERT INTO actors_films (actor_id, film_id) VALUES (133, 133); INSERT INTO actors_films (actor_id, film_id) VALUES (133, 172); INSERT INTO actors_films (actor_id, film_id) VALUES (133, 210); INSERT INTO actors_films (actor_id, film_id) VALUES (133, 270); INSERT INTO actors_films (actor_id, film_id) VALUES (133, 280); INSERT INTO actors_films (actor_id, film_id) VALUES (133, 286); INSERT INTO actors_films (actor_id, film_id) VALUES (133, 338); INSERT INTO actors_films (actor_id, film_id) VALUES (133, 342); INSERT INTO actors_films (actor_id, film_id) VALUES (133, 351); INSERT INTO actors_films (actor_id, film_id) VALUES (133, 368); INSERT INTO actors_films (actor_id, film_id) VALUES (133, 385); INSERT INTO actors_films (actor_id, film_id) VALUES (133, 390); INSERT INTO actors_films (actor_id, film_id) VALUES (133, 397); INSERT INTO actors_films (actor_id, film_id) VALUES (133, 410); INSERT INTO actors_films (actor_id, film_id) VALUES (133, 452); INSERT INTO actors_films (actor_id, film_id) VALUES (133, 463); INSERT INTO actors_films (actor_id, film_id) VALUES (133, 514); INSERT INTO actors_films (actor_id, film_id) VALUES (133, 588); INSERT INTO actors_films (actor_id, film_id) VALUES (133, 594); INSERT INTO actors_films (actor_id, film_id) VALUES (133, 635); INSERT INTO actors_films (actor_id, film_id) VALUES (133, 652); INSERT INTO actors_films (actor_id, film_id) VALUES (133, 727); INSERT INTO actors_films (actor_id, film_id) VALUES (133, 806); INSERT INTO actors_films (actor_id, film_id) VALUES (133, 868); INSERT INTO actors_films (actor_id, film_id) VALUES (133, 882); INSERT INTO actors_films (actor_id, film_id) VALUES (133, 894); INSERT INTO actors_films (actor_id, film_id) VALUES (133, 933); INSERT INTO actors_films (actor_id, film_id) VALUES (133, 952); INSERT INTO actors_films (actor_id, film_id) VALUES (134, 132); INSERT INTO actors_films (actor_id, film_id) VALUES (134, 145); INSERT INTO actors_films (actor_id, film_id) VALUES (134, 161); INSERT INTO actors_films (actor_id, film_id) VALUES (134, 219); INSERT INTO actors_films (actor_id, film_id) VALUES (134, 243); INSERT INTO actors_films (actor_id, film_id) VALUES (134, 250); INSERT INTO actors_films (actor_id, film_id) VALUES (134, 278); INSERT INTO actors_films (actor_id, film_id) VALUES (134, 341); INSERT INTO actors_films (actor_id, film_id) VALUES (134, 386); INSERT INTO actors_films (actor_id, film_id) VALUES (134, 413); INSERT INTO actors_films (actor_id, film_id) VALUES (134, 558); INSERT INTO actors_films (actor_id, film_id) VALUES (134, 588); INSERT INTO actors_films (actor_id, film_id) VALUES (134, 624); INSERT INTO actors_films (actor_id, film_id) VALUES (134, 655); INSERT INTO actors_films (actor_id, film_id) VALUES (134, 683); INSERT INTO actors_films (actor_id, film_id) VALUES (134, 690); INSERT INTO actors_films (actor_id, film_id) VALUES (134, 861); INSERT INTO actors_films (actor_id, film_id) VALUES (134, 896); INSERT INTO actors_films (actor_id, film_id) VALUES (134, 897); INSERT INTO actors_films (actor_id, film_id) VALUES (134, 915); INSERT INTO actors_films (actor_id, film_id) VALUES (134, 927); INSERT INTO actors_films (actor_id, film_id) VALUES (134, 936); INSERT INTO actors_films (actor_id, film_id) VALUES (135, 35); INSERT INTO actors_films (actor_id, film_id) VALUES (135, 41); INSERT INTO actors_films (actor_id, film_id) VALUES (135, 65); INSERT INTO actors_films (actor_id, film_id) VALUES (135, 88); INSERT INTO actors_films (actor_id, film_id) VALUES (135, 170); INSERT INTO actors_films (actor_id, film_id) VALUES (135, 269); INSERT INTO actors_films (actor_id, film_id) VALUES (135, 320); INSERT INTO actors_films (actor_id, film_id) VALUES (135, 353); INSERT INTO actors_films (actor_id, film_id) VALUES (135, 357); INSERT INTO actors_films (actor_id, film_id) VALUES (135, 364); INSERT INTO actors_films (actor_id, film_id) VALUES (135, 455); INSERT INTO actors_films (actor_id, film_id) VALUES (135, 458); INSERT INTO actors_films (actor_id, film_id) VALUES (135, 484); INSERT INTO actors_films (actor_id, film_id) VALUES (135, 541); INSERT INTO actors_films (actor_id, film_id) VALUES (135, 553); INSERT INTO actors_films (actor_id, film_id) VALUES (135, 616); INSERT INTO actors_films (actor_id, film_id) VALUES (135, 628); INSERT INTO actors_films (actor_id, film_id) VALUES (135, 719); INSERT INTO actors_films (actor_id, film_id) VALUES (135, 814); INSERT INTO actors_films (actor_id, film_id) VALUES (135, 905); INSERT INTO actors_films (actor_id, film_id) VALUES (136, 20); INSERT INTO actors_films (actor_id, film_id) VALUES (136, 25); INSERT INTO actors_films (actor_id, film_id) VALUES (136, 33); INSERT INTO actors_films (actor_id, film_id) VALUES (136, 56); INSERT INTO actors_films (actor_id, film_id) VALUES (136, 61); INSERT INTO actors_films (actor_id, film_id) VALUES (136, 193); INSERT INTO actors_films (actor_id, film_id) VALUES (136, 214); INSERT INTO actors_films (actor_id, film_id) VALUES (136, 229); INSERT INTO actors_films (actor_id, film_id) VALUES (136, 243); INSERT INTO actors_films (actor_id, film_id) VALUES (136, 256); INSERT INTO actors_films (actor_id, film_id) VALUES (136, 262); INSERT INTO actors_films (actor_id, film_id) VALUES (136, 271); INSERT INTO actors_films (actor_id, film_id) VALUES (136, 288); INSERT INTO actors_films (actor_id, film_id) VALUES (136, 300); INSERT INTO actors_films (actor_id, film_id) VALUES (136, 364); INSERT INTO actors_films (actor_id, film_id) VALUES (136, 401); INSERT INTO actors_films (actor_id, film_id) VALUES (136, 414); INSERT INTO actors_films (actor_id, film_id) VALUES (136, 420); INSERT INTO actors_films (actor_id, film_id) VALUES (136, 474); INSERT INTO actors_films (actor_id, film_id) VALUES (136, 485); INSERT INTO actors_films (actor_id, film_id) VALUES (136, 542); INSERT INTO actors_films (actor_id, film_id) VALUES (136, 552); INSERT INTO actors_films (actor_id, film_id) VALUES (136, 620); INSERT INTO actors_films (actor_id, film_id) VALUES (136, 649); INSERT INTO actors_films (actor_id, film_id) VALUES (136, 686); INSERT INTO actors_films (actor_id, film_id) VALUES (136, 781); INSERT INTO actors_films (actor_id, film_id) VALUES (136, 806); INSERT INTO actors_films (actor_id, film_id) VALUES (136, 808); INSERT INTO actors_films (actor_id, film_id) VALUES (136, 818); INSERT INTO actors_films (actor_id, film_id) VALUES (136, 842); INSERT INTO actors_films (actor_id, film_id) VALUES (136, 933); INSERT INTO actors_films (actor_id, film_id) VALUES (136, 993); INSERT INTO actors_films (actor_id, film_id) VALUES (137, 6); INSERT INTO actors_films (actor_id, film_id) VALUES (137, 14); INSERT INTO actors_films (actor_id, film_id) VALUES (137, 56); INSERT INTO actors_films (actor_id, film_id) VALUES (137, 96); INSERT INTO actors_films (actor_id, film_id) VALUES (137, 160); INSERT INTO actors_films (actor_id, film_id) VALUES (137, 224); INSERT INTO actors_films (actor_id, film_id) VALUES (137, 249); INSERT INTO actors_films (actor_id, film_id) VALUES (137, 254); INSERT INTO actors_films (actor_id, film_id) VALUES (137, 263); INSERT INTO actors_films (actor_id, film_id) VALUES (137, 268); INSERT INTO actors_films (actor_id, film_id) VALUES (137, 304); INSERT INTO actors_films (actor_id, film_id) VALUES (137, 390); INSERT INTO actors_films (actor_id, film_id) VALUES (137, 410); INSERT INTO actors_films (actor_id, film_id) VALUES (137, 433); INSERT INTO actors_films (actor_id, film_id) VALUES (137, 446); INSERT INTO actors_films (actor_id, film_id) VALUES (137, 489); INSERT INTO actors_films (actor_id, film_id) VALUES (137, 530); INSERT INTO actors_films (actor_id, film_id) VALUES (137, 564); INSERT INTO actors_films (actor_id, film_id) VALUES (137, 603); INSERT INTO actors_films (actor_id, film_id) VALUES (137, 610); INSERT INTO actors_films (actor_id, film_id) VALUES (137, 688); INSERT INTO actors_films (actor_id, film_id) VALUES (137, 703); INSERT INTO actors_films (actor_id, film_id) VALUES (137, 745); INSERT INTO actors_films (actor_id, film_id) VALUES (137, 758); INSERT INTO actors_films (actor_id, film_id) VALUES (137, 832); INSERT INTO actors_films (actor_id, film_id) VALUES (137, 841); INSERT INTO actors_films (actor_id, film_id) VALUES (137, 917); INSERT INTO actors_films (actor_id, film_id) VALUES (138, 8); INSERT INTO actors_films (actor_id, film_id) VALUES (138, 52); INSERT INTO actors_films (actor_id, film_id) VALUES (138, 61); INSERT INTO actors_films (actor_id, film_id) VALUES (138, 125); INSERT INTO actors_films (actor_id, film_id) VALUES (138, 157); INSERT INTO actors_films (actor_id, film_id) VALUES (138, 214); INSERT INTO actors_films (actor_id, film_id) VALUES (138, 258); INSERT INTO actors_films (actor_id, film_id) VALUES (138, 376); INSERT INTO actors_films (actor_id, film_id) VALUES (138, 403); INSERT INTO actors_films (actor_id, film_id) VALUES (138, 446); INSERT INTO actors_films (actor_id, film_id) VALUES (138, 453); INSERT INTO actors_films (actor_id, film_id) VALUES (138, 508); INSERT INTO actors_films (actor_id, film_id) VALUES (138, 553); INSERT INTO actors_films (actor_id, film_id) VALUES (138, 561); INSERT INTO actors_films (actor_id, film_id) VALUES (138, 583); INSERT INTO actors_films (actor_id, film_id) VALUES (138, 627); INSERT INTO actors_films (actor_id, film_id) VALUES (138, 639); INSERT INTO actors_films (actor_id, film_id) VALUES (138, 695); INSERT INTO actors_films (actor_id, film_id) VALUES (138, 747); INSERT INTO actors_films (actor_id, film_id) VALUES (138, 879); INSERT INTO actors_films (actor_id, film_id) VALUES (138, 885); INSERT INTO actors_films (actor_id, film_id) VALUES (138, 923); INSERT INTO actors_films (actor_id, film_id) VALUES (138, 970); INSERT INTO actors_films (actor_id, film_id) VALUES (138, 989); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 20); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 35); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 57); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 74); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 90); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 107); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 155); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 170); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 181); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 200); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 229); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 233); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 261); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 262); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 266); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 282); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 284); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 373); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 447); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 489); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 529); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 540); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 570); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 602); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 605); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 636); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 691); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 706); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 719); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 744); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 746); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 862); INSERT INTO actors_films (actor_id, film_id) VALUES (139, 892); INSERT INTO actors_films (actor_id, film_id) VALUES (140, 27); INSERT INTO actors_films (actor_id, film_id) VALUES (140, 77); INSERT INTO actors_films (actor_id, film_id) VALUES (140, 112); INSERT INTO actors_films (actor_id, film_id) VALUES (140, 135); INSERT INTO actors_films (actor_id, film_id) VALUES (140, 185); INSERT INTO actors_films (actor_id, film_id) VALUES (140, 258); INSERT INTO actors_films (actor_id, film_id) VALUES (140, 370); INSERT INTO actors_films (actor_id, film_id) VALUES (140, 373); INSERT INTO actors_films (actor_id, film_id) VALUES (140, 498); INSERT INTO actors_films (actor_id, film_id) VALUES (140, 509); INSERT INTO actors_films (actor_id, film_id) VALUES (140, 576); INSERT INTO actors_films (actor_id, film_id) VALUES (140, 587); INSERT INTO actors_films (actor_id, film_id) VALUES (140, 599); INSERT INTO actors_films (actor_id, film_id) VALUES (140, 608); INSERT INTO actors_films (actor_id, film_id) VALUES (140, 647); INSERT INTO actors_films (actor_id, film_id) VALUES (140, 665); INSERT INTO actors_films (actor_id, film_id) VALUES (140, 670); INSERT INTO actors_films (actor_id, film_id) VALUES (140, 693); INSERT INTO actors_films (actor_id, film_id) VALUES (140, 702); INSERT INTO actors_films (actor_id, film_id) VALUES (140, 729); INSERT INTO actors_films (actor_id, film_id) VALUES (140, 730); INSERT INTO actors_films (actor_id, film_id) VALUES (140, 731); INSERT INTO actors_films (actor_id, film_id) VALUES (140, 736); INSERT INTO actors_films (actor_id, film_id) VALUES (140, 742); INSERT INTO actors_films (actor_id, film_id) VALUES (140, 778); INSERT INTO actors_films (actor_id, film_id) VALUES (140, 820); INSERT INTO actors_films (actor_id, film_id) VALUES (140, 830); INSERT INTO actors_films (actor_id, film_id) VALUES (140, 835); INSERT INTO actors_films (actor_id, film_id) VALUES (140, 857); INSERT INTO actors_films (actor_id, film_id) VALUES (140, 923); INSERT INTO actors_films (actor_id, film_id) VALUES (140, 934); INSERT INTO actors_films (actor_id, film_id) VALUES (140, 999); INSERT INTO actors_films (actor_id, film_id) VALUES (141, 43); INSERT INTO actors_films (actor_id, film_id) VALUES (141, 67); INSERT INTO actors_films (actor_id, film_id) VALUES (141, 188); INSERT INTO actors_films (actor_id, film_id) VALUES (141, 191); INSERT INTO actors_films (actor_id, film_id) VALUES (141, 207); INSERT INTO actors_films (actor_id, film_id) VALUES (141, 223); INSERT INTO actors_films (actor_id, film_id) VALUES (141, 341); INSERT INTO actors_films (actor_id, film_id) VALUES (141, 358); INSERT INTO actors_films (actor_id, film_id) VALUES (141, 380); INSERT INTO actors_films (actor_id, film_id) VALUES (141, 395); INSERT INTO actors_films (actor_id, film_id) VALUES (141, 467); INSERT INTO actors_films (actor_id, film_id) VALUES (141, 491); INSERT INTO actors_films (actor_id, film_id) VALUES (141, 589); INSERT INTO actors_films (actor_id, film_id) VALUES (141, 607); INSERT INTO actors_films (actor_id, film_id) VALUES (141, 673); INSERT INTO actors_films (actor_id, film_id) VALUES (141, 740); INSERT INTO actors_films (actor_id, film_id) VALUES (141, 752); INSERT INTO actors_films (actor_id, film_id) VALUES (141, 768); INSERT INTO actors_films (actor_id, film_id) VALUES (141, 772); INSERT INTO actors_films (actor_id, film_id) VALUES (141, 787); INSERT INTO actors_films (actor_id, film_id) VALUES (141, 821); INSERT INTO actors_films (actor_id, film_id) VALUES (141, 829); INSERT INTO actors_films (actor_id, film_id) VALUES (141, 840); INSERT INTO actors_films (actor_id, film_id) VALUES (141, 849); INSERT INTO actors_films (actor_id, film_id) VALUES (141, 862); INSERT INTO actors_films (actor_id, film_id) VALUES (141, 863); INSERT INTO actors_films (actor_id, film_id) VALUES (141, 909); INSERT INTO actors_films (actor_id, film_id) VALUES (141, 992); INSERT INTO actors_films (actor_id, film_id) VALUES (142, 10); INSERT INTO actors_films (actor_id, film_id) VALUES (142, 18); INSERT INTO actors_films (actor_id, film_id) VALUES (142, 107); INSERT INTO actors_films (actor_id, film_id) VALUES (142, 139); INSERT INTO actors_films (actor_id, film_id) VALUES (142, 186); INSERT INTO actors_films (actor_id, film_id) VALUES (142, 199); INSERT INTO actors_films (actor_id, film_id) VALUES (142, 248); INSERT INTO actors_films (actor_id, film_id) VALUES (142, 328); INSERT INTO actors_films (actor_id, film_id) VALUES (142, 350); INSERT INTO actors_films (actor_id, film_id) VALUES (142, 371); INSERT INTO actors_films (actor_id, film_id) VALUES (142, 470); INSERT INTO actors_films (actor_id, film_id) VALUES (142, 481); INSERT INTO actors_films (actor_id, film_id) VALUES (142, 494); INSERT INTO actors_films (actor_id, film_id) VALUES (142, 501); INSERT INTO actors_films (actor_id, film_id) VALUES (142, 504); INSERT INTO actors_films (actor_id, film_id) VALUES (142, 540); INSERT INTO actors_films (actor_id, film_id) VALUES (142, 554); INSERT INTO actors_films (actor_id, film_id) VALUES (142, 575); INSERT INTO actors_films (actor_id, film_id) VALUES (142, 608); INSERT INTO actors_films (actor_id, film_id) VALUES (142, 710); INSERT INTO actors_films (actor_id, film_id) VALUES (142, 712); INSERT INTO actors_films (actor_id, film_id) VALUES (142, 735); INSERT INTO actors_films (actor_id, film_id) VALUES (142, 759); INSERT INTO actors_films (actor_id, film_id) VALUES (142, 794); INSERT INTO actors_films (actor_id, film_id) VALUES (142, 842); INSERT INTO actors_films (actor_id, film_id) VALUES (142, 859); INSERT INTO actors_films (actor_id, film_id) VALUES (142, 863); INSERT INTO actors_films (actor_id, film_id) VALUES (142, 875); INSERT INTO actors_films (actor_id, film_id) VALUES (142, 906); INSERT INTO actors_films (actor_id, film_id) VALUES (142, 914); INSERT INTO actors_films (actor_id, film_id) VALUES (142, 999); INSERT INTO actors_films (actor_id, film_id) VALUES (143, 47); INSERT INTO actors_films (actor_id, film_id) VALUES (143, 79); INSERT INTO actors_films (actor_id, film_id) VALUES (143, 141); INSERT INTO actors_films (actor_id, film_id) VALUES (143, 175); INSERT INTO actors_films (actor_id, film_id) VALUES (143, 232); INSERT INTO actors_films (actor_id, film_id) VALUES (143, 239); INSERT INTO actors_films (actor_id, film_id) VALUES (143, 316); INSERT INTO actors_films (actor_id, film_id) VALUES (143, 339); INSERT INTO actors_films (actor_id, film_id) VALUES (143, 361); INSERT INTO actors_films (actor_id, film_id) VALUES (143, 386); INSERT INTO actors_films (actor_id, film_id) VALUES (143, 404); INSERT INTO actors_films (actor_id, film_id) VALUES (143, 457); INSERT INTO actors_films (actor_id, film_id) VALUES (143, 485); INSERT INTO actors_films (actor_id, film_id) VALUES (143, 497); INSERT INTO actors_films (actor_id, film_id) VALUES (143, 560); INSERT INTO actors_films (actor_id, film_id) VALUES (143, 576); INSERT INTO actors_films (actor_id, film_id) VALUES (143, 603); INSERT INTO actors_films (actor_id, film_id) VALUES (143, 613); INSERT INTO actors_films (actor_id, film_id) VALUES (143, 659); INSERT INTO actors_films (actor_id, film_id) VALUES (143, 660); INSERT INTO actors_films (actor_id, film_id) VALUES (143, 680); INSERT INTO actors_films (actor_id, film_id) VALUES (143, 687); INSERT INTO actors_films (actor_id, film_id) VALUES (143, 690); INSERT INTO actors_films (actor_id, film_id) VALUES (143, 706); INSERT INTO actors_films (actor_id, film_id) VALUES (143, 792); INSERT INTO actors_films (actor_id, film_id) VALUES (143, 821); INSERT INTO actors_films (actor_id, film_id) VALUES (143, 830); INSERT INTO actors_films (actor_id, film_id) VALUES (143, 872); INSERT INTO actors_films (actor_id, film_id) VALUES (143, 878); INSERT INTO actors_films (actor_id, film_id) VALUES (143, 906); INSERT INTO actors_films (actor_id, film_id) VALUES (143, 958); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 18); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 67); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 79); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 90); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 99); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 105); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 123); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 125); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 127); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 130); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 135); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 164); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 184); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 216); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 228); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 260); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 272); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 291); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 293); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 312); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 393); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 396); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 473); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 504); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 540); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 599); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 668); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 702); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 753); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 762); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 776); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 785); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 845); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 894); INSERT INTO actors_films (actor_id, film_id) VALUES (144, 953); INSERT INTO actors_films (actor_id, film_id) VALUES (145, 39); INSERT INTO actors_films (actor_id, film_id) VALUES (145, 109); INSERT INTO actors_films (actor_id, film_id) VALUES (145, 120); INSERT INTO actors_films (actor_id, film_id) VALUES (145, 154); INSERT INTO actors_films (actor_id, film_id) VALUES (145, 155); INSERT INTO actors_films (actor_id, film_id) VALUES (145, 243); INSERT INTO actors_films (actor_id, film_id) VALUES (145, 293); INSERT INTO actors_films (actor_id, film_id) VALUES (145, 402); INSERT INTO actors_films (actor_id, film_id) VALUES (145, 409); INSERT INTO actors_films (actor_id, film_id) VALUES (145, 457); INSERT INTO actors_films (actor_id, film_id) VALUES (145, 475); INSERT INTO actors_films (actor_id, film_id) VALUES (145, 487); INSERT INTO actors_films (actor_id, film_id) VALUES (145, 494); INSERT INTO actors_films (actor_id, film_id) VALUES (145, 527); INSERT INTO actors_films (actor_id, film_id) VALUES (145, 592); INSERT INTO actors_films (actor_id, film_id) VALUES (145, 625); INSERT INTO actors_films (actor_id, film_id) VALUES (145, 629); INSERT INTO actors_films (actor_id, film_id) VALUES (145, 641); INSERT INTO actors_films (actor_id, film_id) VALUES (145, 661); INSERT INTO actors_films (actor_id, film_id) VALUES (145, 664); INSERT INTO actors_films (actor_id, film_id) VALUES (145, 692); INSERT INTO actors_films (actor_id, film_id) VALUES (145, 713); INSERT INTO actors_films (actor_id, film_id) VALUES (145, 726); INSERT INTO actors_films (actor_id, film_id) VALUES (145, 748); INSERT INTO actors_films (actor_id, film_id) VALUES (145, 822); INSERT INTO actors_films (actor_id, film_id) VALUES (145, 893); INSERT INTO actors_films (actor_id, film_id) VALUES (145, 923); INSERT INTO actors_films (actor_id, film_id) VALUES (145, 953); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 12); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 16); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 33); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 117); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 177); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 191); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 197); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 207); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 218); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 278); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 296); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 314); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 320); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 372); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 384); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 402); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 410); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 427); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 429); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 512); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 514); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 571); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 591); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 720); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 731); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 734); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 871); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 909); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 922); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 945); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 955); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 966); INSERT INTO actors_films (actor_id, film_id) VALUES (146, 969); INSERT INTO actors_films (actor_id, film_id) VALUES (147, 4); INSERT INTO actors_films (actor_id, film_id) VALUES (147, 85); INSERT INTO actors_films (actor_id, film_id) VALUES (147, 131); INSERT INTO actors_films (actor_id, film_id) VALUES (147, 139); INSERT INTO actors_films (actor_id, film_id) VALUES (147, 145); INSERT INTO actors_films (actor_id, film_id) VALUES (147, 178); INSERT INTO actors_films (actor_id, film_id) VALUES (147, 251); INSERT INTO actors_films (actor_id, film_id) VALUES (147, 254); INSERT INTO actors_films (actor_id, film_id) VALUES (147, 295); INSERT INTO actors_films (actor_id, film_id) VALUES (147, 298); INSERT INTO actors_films (actor_id, film_id) VALUES (147, 305); INSERT INTO actors_films (actor_id, film_id) VALUES (147, 310); INSERT INTO actors_films (actor_id, film_id) VALUES (147, 318); INSERT INTO actors_films (actor_id, film_id) VALUES (147, 333); INSERT INTO actors_films (actor_id, film_id) VALUES (147, 341); INSERT INTO actors_films (actor_id, film_id) VALUES (147, 351); INSERT INTO actors_films (actor_id, film_id) VALUES (147, 394); INSERT INTO actors_films (actor_id, film_id) VALUES (147, 402); INSERT INTO actors_films (actor_id, film_id) VALUES (147, 405); INSERT INTO actors_films (actor_id, film_id) VALUES (147, 410); INSERT INTO actors_films (actor_id, film_id) VALUES (147, 431); INSERT INTO actors_films (actor_id, film_id) VALUES (147, 443); INSERT INTO actors_films (actor_id, film_id) VALUES (147, 508); INSERT INTO actors_films (actor_id, film_id) VALUES (147, 554); INSERT INTO actors_films (actor_id, film_id) VALUES (147, 563); INSERT INTO actors_films (actor_id, film_id) VALUES (147, 649); INSERT INTO actors_films (actor_id, film_id) VALUES (147, 688); INSERT INTO actors_films (actor_id, film_id) VALUES (147, 708); INSERT INTO actors_films (actor_id, film_id) VALUES (147, 864); INSERT INTO actors_films (actor_id, film_id) VALUES (147, 957); INSERT INTO actors_films (actor_id, film_id) VALUES (147, 987); INSERT INTO actors_films (actor_id, film_id) VALUES (148, 27); INSERT INTO actors_films (actor_id, film_id) VALUES (148, 57); INSERT INTO actors_films (actor_id, film_id) VALUES (148, 133); INSERT INTO actors_films (actor_id, film_id) VALUES (148, 149); INSERT INTO actors_films (actor_id, film_id) VALUES (148, 226); INSERT INTO actors_films (actor_id, film_id) VALUES (148, 342); INSERT INTO actors_films (actor_id, film_id) VALUES (148, 368); INSERT INTO actors_films (actor_id, film_id) VALUES (148, 422); INSERT INTO actors_films (actor_id, film_id) VALUES (148, 468); INSERT INTO actors_films (actor_id, film_id) VALUES (148, 633); INSERT INTO actors_films (actor_id, film_id) VALUES (148, 718); INSERT INTO actors_films (actor_id, film_id) VALUES (148, 768); INSERT INTO actors_films (actor_id, film_id) VALUES (148, 772); INSERT INTO actors_films (actor_id, film_id) VALUES (148, 792); INSERT INTO actors_films (actor_id, film_id) VALUES (149, 53); INSERT INTO actors_films (actor_id, film_id) VALUES (149, 72); INSERT INTO actors_films (actor_id, film_id) VALUES (149, 95); INSERT INTO actors_films (actor_id, film_id) VALUES (149, 118); INSERT INTO actors_films (actor_id, film_id) VALUES (149, 139); INSERT INTO actors_films (actor_id, film_id) VALUES (149, 146); INSERT INTO actors_films (actor_id, film_id) VALUES (149, 153); INSERT INTO actors_films (actor_id, film_id) VALUES (149, 159); INSERT INTO actors_films (actor_id, film_id) VALUES (149, 169); INSERT INTO actors_films (actor_id, film_id) VALUES (149, 178); INSERT INTO actors_films (actor_id, film_id) VALUES (149, 188); INSERT INTO actors_films (actor_id, film_id) VALUES (149, 193); INSERT INTO actors_films (actor_id, film_id) VALUES (149, 339); INSERT INTO actors_films (actor_id, film_id) VALUES (149, 354); INSERT INTO actors_films (actor_id, film_id) VALUES (149, 362); INSERT INTO actors_films (actor_id, film_id) VALUES (149, 365); INSERT INTO actors_films (actor_id, film_id) VALUES (149, 458); INSERT INTO actors_films (actor_id, film_id) VALUES (149, 631); INSERT INTO actors_films (actor_id, film_id) VALUES (149, 670); INSERT INTO actors_films (actor_id, film_id) VALUES (149, 685); INSERT INTO actors_films (actor_id, film_id) VALUES (149, 761); INSERT INTO actors_films (actor_id, film_id) VALUES (149, 782); INSERT INTO actors_films (actor_id, film_id) VALUES (149, 810); INSERT INTO actors_films (actor_id, film_id) VALUES (149, 811); INSERT INTO actors_films (actor_id, film_id) VALUES (149, 899); INSERT INTO actors_films (actor_id, film_id) VALUES (149, 905); INSERT INTO actors_films (actor_id, film_id) VALUES (149, 913); INSERT INTO actors_films (actor_id, film_id) VALUES (149, 921); INSERT INTO actors_films (actor_id, film_id) VALUES (149, 947); INSERT INTO actors_films (actor_id, film_id) VALUES (149, 949); INSERT INTO actors_films (actor_id, film_id) VALUES (149, 992); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 23); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 63); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 75); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 94); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 105); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 168); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 190); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 206); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 233); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 270); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 285); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 306); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 386); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 433); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 446); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 447); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 468); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 508); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 542); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 551); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 629); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 647); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 672); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 697); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 728); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 777); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 854); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 873); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 880); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 887); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 889); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 892); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 953); INSERT INTO actors_films (actor_id, film_id) VALUES (150, 962); INSERT INTO actors_films (actor_id, film_id) VALUES (151, 131); INSERT INTO actors_films (actor_id, film_id) VALUES (151, 144); INSERT INTO actors_films (actor_id, film_id) VALUES (151, 167); INSERT INTO actors_films (actor_id, film_id) VALUES (151, 170); INSERT INTO actors_films (actor_id, film_id) VALUES (151, 217); INSERT INTO actors_films (actor_id, film_id) VALUES (151, 232); INSERT INTO actors_films (actor_id, film_id) VALUES (151, 342); INSERT INTO actors_films (actor_id, film_id) VALUES (151, 367); INSERT INTO actors_films (actor_id, film_id) VALUES (151, 370); INSERT INTO actors_films (actor_id, film_id) VALUES (151, 382); INSERT INTO actors_films (actor_id, film_id) VALUES (151, 451); INSERT INTO actors_films (actor_id, film_id) VALUES (151, 463); INSERT INTO actors_films (actor_id, film_id) VALUES (151, 482); INSERT INTO actors_films (actor_id, film_id) VALUES (151, 501); INSERT INTO actors_films (actor_id, film_id) VALUES (151, 527); INSERT INTO actors_films (actor_id, film_id) VALUES (151, 539); INSERT INTO actors_films (actor_id, film_id) VALUES (151, 570); INSERT INTO actors_films (actor_id, film_id) VALUES (151, 574); INSERT INTO actors_films (actor_id, film_id) VALUES (151, 634); INSERT INTO actors_films (actor_id, film_id) VALUES (151, 658); INSERT INTO actors_films (actor_id, film_id) VALUES (151, 665); INSERT INTO actors_films (actor_id, film_id) VALUES (151, 703); INSERT INTO actors_films (actor_id, film_id) VALUES (151, 880); INSERT INTO actors_films (actor_id, film_id) VALUES (151, 892); INSERT INTO actors_films (actor_id, film_id) VALUES (151, 895); INSERT INTO actors_films (actor_id, film_id) VALUES (151, 989); INSERT INTO actors_films (actor_id, film_id) VALUES (152, 59); INSERT INTO actors_films (actor_id, film_id) VALUES (152, 153); INSERT INTO actors_films (actor_id, film_id) VALUES (152, 217); INSERT INTO actors_films (actor_id, film_id) VALUES (152, 248); INSERT INTO actors_films (actor_id, film_id) VALUES (152, 318); INSERT INTO actors_films (actor_id, film_id) VALUES (152, 332); INSERT INTO actors_films (actor_id, film_id) VALUES (152, 475); INSERT INTO actors_films (actor_id, film_id) VALUES (152, 476); INSERT INTO actors_films (actor_id, film_id) VALUES (152, 578); INSERT INTO actors_films (actor_id, film_id) VALUES (152, 607); INSERT INTO actors_films (actor_id, film_id) VALUES (152, 611); INSERT INTO actors_films (actor_id, film_id) VALUES (152, 615); INSERT INTO actors_films (actor_id, film_id) VALUES (152, 674); INSERT INTO actors_films (actor_id, film_id) VALUES (152, 680); INSERT INTO actors_films (actor_id, film_id) VALUES (152, 729); INSERT INTO actors_films (actor_id, film_id) VALUES (152, 768); INSERT INTO actors_films (actor_id, film_id) VALUES (152, 821); INSERT INTO actors_films (actor_id, film_id) VALUES (152, 846); INSERT INTO actors_films (actor_id, film_id) VALUES (152, 891); INSERT INTO actors_films (actor_id, film_id) VALUES (152, 898); INSERT INTO actors_films (actor_id, film_id) VALUES (152, 927); INSERT INTO actors_films (actor_id, film_id) VALUES (152, 964); INSERT INTO actors_films (actor_id, film_id) VALUES (152, 968); INSERT INTO actors_films (actor_id, film_id) VALUES (153, 47); INSERT INTO actors_films (actor_id, film_id) VALUES (153, 64); INSERT INTO actors_films (actor_id, film_id) VALUES (153, 136); INSERT INTO actors_films (actor_id, film_id) VALUES (153, 180); INSERT INTO actors_films (actor_id, film_id) VALUES (153, 203); INSERT INTO actors_films (actor_id, film_id) VALUES (153, 231); INSERT INTO actors_films (actor_id, film_id) VALUES (153, 444); INSERT INTO actors_films (actor_id, film_id) VALUES (153, 476); INSERT INTO actors_films (actor_id, film_id) VALUES (153, 480); INSERT INTO actors_films (actor_id, film_id) VALUES (153, 486); INSERT INTO actors_films (actor_id, film_id) VALUES (153, 536); INSERT INTO actors_films (actor_id, film_id) VALUES (153, 627); INSERT INTO actors_films (actor_id, film_id) VALUES (153, 732); INSERT INTO actors_films (actor_id, film_id) VALUES (153, 756); INSERT INTO actors_films (actor_id, film_id) VALUES (153, 766); INSERT INTO actors_films (actor_id, film_id) VALUES (153, 817); INSERT INTO actors_films (actor_id, film_id) VALUES (153, 847); INSERT INTO actors_films (actor_id, film_id) VALUES (153, 919); INSERT INTO actors_films (actor_id, film_id) VALUES (153, 938); INSERT INTO actors_films (actor_id, film_id) VALUES (153, 988); INSERT INTO actors_films (actor_id, film_id) VALUES (154, 27); INSERT INTO actors_films (actor_id, film_id) VALUES (154, 111); INSERT INTO actors_films (actor_id, film_id) VALUES (154, 141); INSERT INTO actors_films (actor_id, film_id) VALUES (154, 158); INSERT INTO actors_films (actor_id, film_id) VALUES (154, 169); INSERT INTO actors_films (actor_id, film_id) VALUES (154, 170); INSERT INTO actors_films (actor_id, film_id) VALUES (154, 193); INSERT INTO actors_films (actor_id, film_id) VALUES (154, 208); INSERT INTO actors_films (actor_id, film_id) VALUES (154, 274); INSERT INTO actors_films (actor_id, film_id) VALUES (154, 276); INSERT INTO actors_films (actor_id, film_id) VALUES (154, 282); INSERT INTO actors_films (actor_id, film_id) VALUES (154, 299); INSERT INTO actors_films (actor_id, film_id) VALUES (154, 314); INSERT INTO actors_films (actor_id, film_id) VALUES (154, 396); INSERT INTO actors_films (actor_id, film_id) VALUES (154, 399); INSERT INTO actors_films (actor_id, film_id) VALUES (154, 421); INSERT INTO actors_films (actor_id, film_id) VALUES (154, 440); INSERT INTO actors_films (actor_id, film_id) VALUES (154, 467); INSERT INTO actors_films (actor_id, film_id) VALUES (154, 474); INSERT INTO actors_films (actor_id, film_id) VALUES (154, 489); INSERT INTO actors_films (actor_id, film_id) VALUES (154, 588); INSERT INTO actors_films (actor_id, film_id) VALUES (154, 602); INSERT INTO actors_films (actor_id, film_id) VALUES (154, 680); INSERT INTO actors_films (actor_id, film_id) VALUES (154, 698); INSERT INTO actors_films (actor_id, film_id) VALUES (154, 802); INSERT INTO actors_films (actor_id, film_id) VALUES (154, 842); INSERT INTO actors_films (actor_id, film_id) VALUES (154, 954); INSERT INTO actors_films (actor_id, film_id) VALUES (154, 988); INSERT INTO actors_films (actor_id, film_id) VALUES (155, 20); INSERT INTO actors_films (actor_id, film_id) VALUES (155, 67); INSERT INTO actors_films (actor_id, film_id) VALUES (155, 128); INSERT INTO actors_films (actor_id, film_id) VALUES (155, 153); INSERT INTO actors_films (actor_id, film_id) VALUES (155, 220); INSERT INTO actors_films (actor_id, film_id) VALUES (155, 249); INSERT INTO actors_films (actor_id, film_id) VALUES (155, 303); INSERT INTO actors_films (actor_id, film_id) VALUES (155, 312); INSERT INTO actors_films (actor_id, film_id) VALUES (155, 359); INSERT INTO actors_films (actor_id, film_id) VALUES (155, 361); INSERT INTO actors_films (actor_id, film_id) VALUES (155, 383); INSERT INTO actors_films (actor_id, film_id) VALUES (155, 387); INSERT INTO actors_films (actor_id, film_id) VALUES (155, 407); INSERT INTO actors_films (actor_id, film_id) VALUES (155, 427); INSERT INTO actors_films (actor_id, film_id) VALUES (155, 459); INSERT INTO actors_films (actor_id, film_id) VALUES (155, 513); INSERT INTO actors_films (actor_id, film_id) VALUES (155, 584); INSERT INTO actors_films (actor_id, film_id) VALUES (155, 590); INSERT INTO actors_films (actor_id, film_id) VALUES (155, 630); INSERT INTO actors_films (actor_id, film_id) VALUES (155, 688); INSERT INTO actors_films (actor_id, film_id) VALUES (155, 757); INSERT INTO actors_films (actor_id, film_id) VALUES (155, 768); INSERT INTO actors_films (actor_id, film_id) VALUES (155, 785); INSERT INTO actors_films (actor_id, film_id) VALUES (155, 849); INSERT INTO actors_films (actor_id, film_id) VALUES (155, 885); INSERT INTO actors_films (actor_id, film_id) VALUES (155, 890); INSERT INTO actors_films (actor_id, film_id) VALUES (155, 941); INSERT INTO actors_films (actor_id, film_id) VALUES (155, 966); INSERT INTO actors_films (actor_id, film_id) VALUES (155, 987); INSERT INTO actors_films (actor_id, film_id) VALUES (155, 997); INSERT INTO actors_films (actor_id, film_id) VALUES (155, 1000); INSERT INTO actors_films (actor_id, film_id) VALUES (156, 53); INSERT INTO actors_films (actor_id, film_id) VALUES (156, 155); INSERT INTO actors_films (actor_id, film_id) VALUES (156, 198); INSERT INTO actors_films (actor_id, film_id) VALUES (156, 244); INSERT INTO actors_films (actor_id, film_id) VALUES (156, 262); INSERT INTO actors_films (actor_id, film_id) VALUES (156, 263); INSERT INTO actors_films (actor_id, film_id) VALUES (156, 285); INSERT INTO actors_films (actor_id, film_id) VALUES (156, 297); INSERT INTO actors_films (actor_id, film_id) VALUES (156, 301); INSERT INTO actors_films (actor_id, film_id) VALUES (156, 349); INSERT INTO actors_films (actor_id, film_id) VALUES (156, 379); INSERT INTO actors_films (actor_id, film_id) VALUES (156, 448); INSERT INTO actors_films (actor_id, film_id) VALUES (156, 462); INSERT INTO actors_films (actor_id, film_id) VALUES (156, 467); INSERT INTO actors_films (actor_id, film_id) VALUES (156, 504); INSERT INTO actors_films (actor_id, film_id) VALUES (156, 518); INSERT INTO actors_films (actor_id, film_id) VALUES (156, 593); INSERT INTO actors_films (actor_id, film_id) VALUES (156, 646); INSERT INTO actors_films (actor_id, film_id) VALUES (156, 705); INSERT INTO actors_films (actor_id, film_id) VALUES (156, 754); INSERT INTO actors_films (actor_id, film_id) VALUES (156, 775); INSERT INTO actors_films (actor_id, film_id) VALUES (156, 844); INSERT INTO actors_films (actor_id, film_id) VALUES (157, 10); INSERT INTO actors_films (actor_id, film_id) VALUES (157, 24); INSERT INTO actors_films (actor_id, film_id) VALUES (157, 34); INSERT INTO actors_films (actor_id, film_id) VALUES (157, 122); INSERT INTO actors_films (actor_id, film_id) VALUES (157, 159); INSERT INTO actors_films (actor_id, film_id) VALUES (157, 183); INSERT INTO actors_films (actor_id, film_id) VALUES (157, 210); INSERT INTO actors_films (actor_id, film_id) VALUES (157, 217); INSERT INTO actors_films (actor_id, film_id) VALUES (157, 291); INSERT INTO actors_films (actor_id, film_id) VALUES (157, 303); INSERT INTO actors_films (actor_id, film_id) VALUES (157, 321); INSERT INTO actors_films (actor_id, film_id) VALUES (157, 326); INSERT INTO actors_films (actor_id, film_id) VALUES (157, 353); INSERT INTO actors_films (actor_id, film_id) VALUES (157, 400); INSERT INTO actors_films (actor_id, film_id) VALUES (157, 406); INSERT INTO actors_films (actor_id, film_id) VALUES (157, 431); INSERT INTO actors_films (actor_id, film_id) VALUES (157, 496); INSERT INTO actors_films (actor_id, film_id) VALUES (157, 535); INSERT INTO actors_films (actor_id, film_id) VALUES (157, 573); INSERT INTO actors_films (actor_id, film_id) VALUES (157, 574); INSERT INTO actors_films (actor_id, film_id) VALUES (157, 604); INSERT INTO actors_films (actor_id, film_id) VALUES (157, 616); INSERT INTO actors_films (actor_id, film_id) VALUES (157, 642); INSERT INTO actors_films (actor_id, film_id) VALUES (157, 661); INSERT INTO actors_films (actor_id, film_id) VALUES (157, 696); INSERT INTO actors_films (actor_id, film_id) VALUES (157, 713); INSERT INTO actors_films (actor_id, film_id) VALUES (157, 802); INSERT INTO actors_films (actor_id, film_id) VALUES (157, 835); INSERT INTO actors_films (actor_id, film_id) VALUES (157, 874); INSERT INTO actors_films (actor_id, film_id) VALUES (157, 913); INSERT INTO actors_films (actor_id, film_id) VALUES (157, 967); INSERT INTO actors_films (actor_id, film_id) VALUES (157, 973); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 32); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 47); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 64); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 66); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 102); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 121); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 177); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 178); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 188); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 215); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 241); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 293); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 437); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 473); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 483); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 532); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 555); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 581); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 601); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 616); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 626); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 637); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 799); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 812); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 824); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 830); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 840); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 869); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 879); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 880); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 894); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 896); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 967); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 968); INSERT INTO actors_films (actor_id, film_id) VALUES (158, 990); INSERT INTO actors_films (actor_id, film_id) VALUES (159, 20); INSERT INTO actors_films (actor_id, film_id) VALUES (159, 82); INSERT INTO actors_films (actor_id, film_id) VALUES (159, 127); INSERT INTO actors_films (actor_id, film_id) VALUES (159, 187); INSERT INTO actors_films (actor_id, film_id) VALUES (159, 206); INSERT INTO actors_films (actor_id, film_id) VALUES (159, 208); INSERT INTO actors_films (actor_id, film_id) VALUES (159, 223); INSERT INTO actors_films (actor_id, film_id) VALUES (159, 248); INSERT INTO actors_films (actor_id, film_id) VALUES (159, 342); INSERT INTO actors_films (actor_id, film_id) VALUES (159, 343); INSERT INTO actors_films (actor_id, film_id) VALUES (159, 344); INSERT INTO actors_films (actor_id, film_id) VALUES (159, 364); INSERT INTO actors_films (actor_id, film_id) VALUES (159, 418); INSERT INTO actors_films (actor_id, film_id) VALUES (159, 549); INSERT INTO actors_films (actor_id, film_id) VALUES (159, 561); INSERT INTO actors_films (actor_id, film_id) VALUES (159, 600); INSERT INTO actors_films (actor_id, film_id) VALUES (159, 674); INSERT INTO actors_films (actor_id, film_id) VALUES (159, 680); INSERT INTO actors_films (actor_id, film_id) VALUES (159, 784); INSERT INTO actors_films (actor_id, film_id) VALUES (159, 789); INSERT INTO actors_films (actor_id, film_id) VALUES (159, 800); INSERT INTO actors_films (actor_id, film_id) VALUES (159, 802); INSERT INTO actors_films (actor_id, film_id) VALUES (159, 818); INSERT INTO actors_films (actor_id, film_id) VALUES (159, 876); INSERT INTO actors_films (actor_id, film_id) VALUES (159, 907); INSERT INTO actors_films (actor_id, film_id) VALUES (159, 978); INSERT INTO actors_films (actor_id, film_id) VALUES (160, 2); INSERT INTO actors_films (actor_id, film_id) VALUES (160, 17); INSERT INTO actors_films (actor_id, film_id) VALUES (160, 43); INSERT INTO actors_films (actor_id, film_id) VALUES (160, 242); INSERT INTO actors_films (actor_id, film_id) VALUES (160, 267); INSERT INTO actors_films (actor_id, film_id) VALUES (160, 275); INSERT INTO actors_films (actor_id, film_id) VALUES (160, 368); INSERT INTO actors_films (actor_id, film_id) VALUES (160, 455); INSERT INTO actors_films (actor_id, film_id) VALUES (160, 469); INSERT INTO actors_films (actor_id, film_id) VALUES (160, 484); INSERT INTO actors_films (actor_id, film_id) VALUES (160, 579); INSERT INTO actors_films (actor_id, film_id) VALUES (160, 660); INSERT INTO actors_films (actor_id, film_id) VALUES (160, 755); INSERT INTO actors_films (actor_id, film_id) VALUES (160, 767); INSERT INTO actors_films (actor_id, film_id) VALUES (160, 769); INSERT INTO actors_films (actor_id, film_id) VALUES (160, 794); INSERT INTO actors_films (actor_id, film_id) VALUES (160, 826); INSERT INTO actors_films (actor_id, film_id) VALUES (160, 883); INSERT INTO actors_films (actor_id, film_id) VALUES (160, 950); INSERT INTO actors_films (actor_id, film_id) VALUES (160, 954); INSERT INTO actors_films (actor_id, film_id) VALUES (161, 43); INSERT INTO actors_films (actor_id, film_id) VALUES (161, 58); INSERT INTO actors_films (actor_id, film_id) VALUES (161, 89); INSERT INTO actors_films (actor_id, film_id) VALUES (161, 90); INSERT INTO actors_films (actor_id, film_id) VALUES (161, 120); INSERT INTO actors_films (actor_id, film_id) VALUES (161, 188); INSERT INTO actors_films (actor_id, film_id) VALUES (161, 247); INSERT INTO actors_films (actor_id, film_id) VALUES (161, 269); INSERT INTO actors_films (actor_id, film_id) VALUES (161, 281); INSERT INTO actors_films (actor_id, film_id) VALUES (161, 340); INSERT INTO actors_films (actor_id, film_id) VALUES (161, 353); INSERT INTO actors_films (actor_id, film_id) VALUES (161, 401); INSERT INTO actors_films (actor_id, film_id) VALUES (161, 414); INSERT INTO actors_films (actor_id, film_id) VALUES (161, 425); INSERT INTO actors_films (actor_id, film_id) VALUES (161, 469); INSERT INTO actors_films (actor_id, film_id) VALUES (161, 526); INSERT INTO actors_films (actor_id, film_id) VALUES (161, 588); INSERT INTO actors_films (actor_id, film_id) VALUES (161, 644); INSERT INTO actors_films (actor_id, film_id) VALUES (161, 653); INSERT INTO actors_films (actor_id, film_id) VALUES (161, 655); INSERT INTO actors_films (actor_id, film_id) VALUES (161, 669); INSERT INTO actors_films (actor_id, film_id) VALUES (161, 684); INSERT INTO actors_films (actor_id, film_id) VALUES (161, 714); INSERT INTO actors_films (actor_id, film_id) VALUES (161, 749); INSERT INTO actors_films (actor_id, film_id) VALUES (161, 807); INSERT INTO actors_films (actor_id, film_id) VALUES (161, 825); INSERT INTO actors_films (actor_id, film_id) VALUES (161, 850); INSERT INTO actors_films (actor_id, film_id) VALUES (161, 880); INSERT INTO actors_films (actor_id, film_id) VALUES (161, 920); INSERT INTO actors_films (actor_id, film_id) VALUES (161, 921); INSERT INTO actors_films (actor_id, film_id) VALUES (161, 924); INSERT INTO actors_films (actor_id, film_id) VALUES (161, 927); INSERT INTO actors_films (actor_id, film_id) VALUES (162, 1); INSERT INTO actors_films (actor_id, film_id) VALUES (162, 4); INSERT INTO actors_films (actor_id, film_id) VALUES (162, 7); INSERT INTO actors_films (actor_id, film_id) VALUES (162, 18); INSERT INTO actors_films (actor_id, film_id) VALUES (162, 28); INSERT INTO actors_films (actor_id, film_id) VALUES (162, 32); INSERT INTO actors_films (actor_id, film_id) VALUES (162, 33); INSERT INTO actors_films (actor_id, film_id) VALUES (162, 41); INSERT INTO actors_films (actor_id, film_id) VALUES (162, 85); INSERT INTO actors_films (actor_id, film_id) VALUES (162, 121); INSERT INTO actors_films (actor_id, film_id) VALUES (162, 164); INSERT INTO actors_films (actor_id, film_id) VALUES (162, 274); INSERT INTO actors_films (actor_id, film_id) VALUES (162, 279); INSERT INTO actors_films (actor_id, film_id) VALUES (162, 409); INSERT INTO actors_films (actor_id, film_id) VALUES (162, 410); INSERT INTO actors_films (actor_id, film_id) VALUES (162, 415); INSERT INTO actors_films (actor_id, film_id) VALUES (162, 500); INSERT INTO actors_films (actor_id, film_id) VALUES (162, 574); INSERT INTO actors_films (actor_id, film_id) VALUES (162, 612); INSERT INTO actors_films (actor_id, film_id) VALUES (162, 636); INSERT INTO actors_films (actor_id, film_id) VALUES (162, 659); INSERT INTO actors_films (actor_id, film_id) VALUES (162, 786); INSERT INTO actors_films (actor_id, film_id) VALUES (162, 844); INSERT INTO actors_films (actor_id, film_id) VALUES (162, 909); INSERT INTO actors_films (actor_id, film_id) VALUES (162, 968); INSERT INTO actors_films (actor_id, film_id) VALUES (163, 30); INSERT INTO actors_films (actor_id, film_id) VALUES (163, 45); INSERT INTO actors_films (actor_id, film_id) VALUES (163, 166); INSERT INTO actors_films (actor_id, film_id) VALUES (163, 180); INSERT INTO actors_films (actor_id, film_id) VALUES (163, 239); INSERT INTO actors_films (actor_id, film_id) VALUES (163, 283); INSERT INTO actors_films (actor_id, film_id) VALUES (163, 303); INSERT INTO actors_films (actor_id, film_id) VALUES (163, 304); INSERT INTO actors_films (actor_id, film_id) VALUES (163, 307); INSERT INTO actors_films (actor_id, film_id) VALUES (163, 394); INSERT INTO actors_films (actor_id, film_id) VALUES (163, 409); INSERT INTO actors_films (actor_id, film_id) VALUES (163, 434); INSERT INTO actors_films (actor_id, film_id) VALUES (163, 444); INSERT INTO actors_films (actor_id, film_id) VALUES (163, 522); INSERT INTO actors_films (actor_id, film_id) VALUES (163, 719); INSERT INTO actors_films (actor_id, film_id) VALUES (163, 785); INSERT INTO actors_films (actor_id, film_id) VALUES (163, 833); INSERT INTO actors_films (actor_id, film_id) VALUES (163, 881); INSERT INTO actors_films (actor_id, film_id) VALUES (163, 891); INSERT INTO actors_films (actor_id, film_id) VALUES (163, 947); INSERT INTO actors_films (actor_id, film_id) VALUES (163, 996); INSERT INTO actors_films (actor_id, film_id) VALUES (164, 15); INSERT INTO actors_films (actor_id, film_id) VALUES (164, 23); INSERT INTO actors_films (actor_id, film_id) VALUES (164, 148); INSERT INTO actors_films (actor_id, film_id) VALUES (164, 169); INSERT INTO actors_films (actor_id, film_id) VALUES (164, 252); INSERT INTO actors_films (actor_id, film_id) VALUES (164, 324); INSERT INTO actors_films (actor_id, film_id) VALUES (164, 347); INSERT INTO actors_films (actor_id, film_id) VALUES (164, 367); INSERT INTO actors_films (actor_id, film_id) VALUES (164, 431); INSERT INTO actors_films (actor_id, film_id) VALUES (164, 448); INSERT INTO actors_films (actor_id, film_id) VALUES (164, 469); INSERT INTO actors_films (actor_id, film_id) VALUES (164, 545); INSERT INTO actors_films (actor_id, film_id) VALUES (164, 610); INSERT INTO actors_films (actor_id, film_id) VALUES (164, 613); INSERT INTO actors_films (actor_id, film_id) VALUES (164, 673); INSERT INTO actors_films (actor_id, film_id) VALUES (164, 681); INSERT INTO actors_films (actor_id, film_id) VALUES (164, 698); INSERT INTO actors_films (actor_id, film_id) VALUES (164, 801); INSERT INTO actors_films (actor_id, film_id) VALUES (164, 820); INSERT INTO actors_films (actor_id, film_id) VALUES (164, 832); INSERT INTO actors_films (actor_id, film_id) VALUES (164, 834); INSERT INTO actors_films (actor_id, film_id) VALUES (164, 851); INSERT INTO actors_films (actor_id, film_id) VALUES (164, 884); INSERT INTO actors_films (actor_id, film_id) VALUES (164, 908); INSERT INTO actors_films (actor_id, film_id) VALUES (164, 957); INSERT INTO actors_films (actor_id, film_id) VALUES (164, 984); INSERT INTO actors_films (actor_id, film_id) VALUES (165, 72); INSERT INTO actors_films (actor_id, film_id) VALUES (165, 95); INSERT INTO actors_films (actor_id, film_id) VALUES (165, 146); INSERT INTO actors_films (actor_id, film_id) VALUES (165, 204); INSERT INTO actors_films (actor_id, film_id) VALUES (165, 253); INSERT INTO actors_films (actor_id, film_id) VALUES (165, 286); INSERT INTO actors_films (actor_id, film_id) VALUES (165, 360); INSERT INTO actors_films (actor_id, film_id) VALUES (165, 375); INSERT INTO actors_films (actor_id, film_id) VALUES (165, 395); INSERT INTO actors_films (actor_id, film_id) VALUES (165, 421); INSERT INTO actors_films (actor_id, film_id) VALUES (165, 437); INSERT INTO actors_films (actor_id, film_id) VALUES (165, 473); INSERT INTO actors_films (actor_id, film_id) VALUES (165, 607); INSERT INTO actors_films (actor_id, film_id) VALUES (165, 644); INSERT INTO actors_films (actor_id, film_id) VALUES (165, 659); INSERT INTO actors_films (actor_id, film_id) VALUES (165, 693); INSERT INTO actors_films (actor_id, film_id) VALUES (165, 737); INSERT INTO actors_films (actor_id, film_id) VALUES (165, 779); INSERT INTO actors_films (actor_id, film_id) VALUES (165, 798); INSERT INTO actors_films (actor_id, film_id) VALUES (165, 807); INSERT INTO actors_films (actor_id, film_id) VALUES (165, 809); INSERT INTO actors_films (actor_id, film_id) VALUES (165, 832); INSERT INTO actors_films (actor_id, film_id) VALUES (165, 833); INSERT INTO actors_films (actor_id, film_id) VALUES (165, 947); INSERT INTO actors_films (actor_id, film_id) VALUES (165, 948); INSERT INTO actors_films (actor_id, film_id) VALUES (165, 962); INSERT INTO actors_films (actor_id, film_id) VALUES (166, 25); INSERT INTO actors_films (actor_id, film_id) VALUES (166, 38); INSERT INTO actors_films (actor_id, film_id) VALUES (166, 55); INSERT INTO actors_films (actor_id, film_id) VALUES (166, 61); INSERT INTO actors_films (actor_id, film_id) VALUES (166, 68); INSERT INTO actors_films (actor_id, film_id) VALUES (166, 86); INSERT INTO actors_films (actor_id, film_id) VALUES (166, 146); INSERT INTO actors_films (actor_id, film_id) VALUES (166, 255); INSERT INTO actors_films (actor_id, film_id) VALUES (166, 297); INSERT INTO actors_films (actor_id, film_id) VALUES (166, 306); INSERT INTO actors_films (actor_id, film_id) VALUES (166, 326); INSERT INTO actors_films (actor_id, film_id) VALUES (166, 361); INSERT INTO actors_films (actor_id, film_id) VALUES (166, 366); INSERT INTO actors_films (actor_id, film_id) VALUES (166, 426); INSERT INTO actors_films (actor_id, film_id) VALUES (166, 580); INSERT INTO actors_films (actor_id, film_id) VALUES (166, 622); INSERT INTO actors_films (actor_id, film_id) VALUES (166, 674); INSERT INTO actors_films (actor_id, film_id) VALUES (166, 714); INSERT INTO actors_films (actor_id, film_id) VALUES (166, 788); INSERT INTO actors_films (actor_id, film_id) VALUES (166, 867); INSERT INTO actors_films (actor_id, film_id) VALUES (166, 944); INSERT INTO actors_films (actor_id, film_id) VALUES (166, 1000); INSERT INTO actors_films (actor_id, film_id) VALUES (167, 17); INSERT INTO actors_films (actor_id, film_id) VALUES (167, 25); INSERT INTO actors_films (actor_id, film_id) VALUES (167, 63); INSERT INTO actors_films (actor_id, film_id) VALUES (167, 72); INSERT INTO actors_films (actor_id, film_id) VALUES (167, 107); INSERT INTO actors_films (actor_id, film_id) VALUES (167, 120); INSERT INTO actors_films (actor_id, film_id) VALUES (167, 191); INSERT INTO actors_films (actor_id, film_id) VALUES (167, 294); INSERT INTO actors_films (actor_id, film_id) VALUES (167, 319); INSERT INTO actors_films (actor_id, film_id) VALUES (167, 339); INSERT INTO actors_films (actor_id, film_id) VALUES (167, 341); INSERT INTO actors_films (actor_id, film_id) VALUES (167, 496); INSERT INTO actors_films (actor_id, film_id) VALUES (167, 554); INSERT INTO actors_films (actor_id, film_id) VALUES (167, 626); INSERT INTO actors_films (actor_id, film_id) VALUES (167, 628); INSERT INTO actors_films (actor_id, film_id) VALUES (167, 672); INSERT INTO actors_films (actor_id, film_id) VALUES (167, 692); INSERT INTO actors_films (actor_id, film_id) VALUES (167, 717); INSERT INTO actors_films (actor_id, film_id) VALUES (167, 734); INSERT INTO actors_films (actor_id, film_id) VALUES (167, 794); INSERT INTO actors_films (actor_id, film_id) VALUES (167, 800); INSERT INTO actors_films (actor_id, film_id) VALUES (167, 802); INSERT INTO actors_films (actor_id, film_id) VALUES (167, 856); INSERT INTO actors_films (actor_id, film_id) VALUES (167, 864); INSERT INTO actors_films (actor_id, film_id) VALUES (167, 882); INSERT INTO actors_films (actor_id, film_id) VALUES (167, 923); INSERT INTO actors_films (actor_id, film_id) VALUES (168, 32); INSERT INTO actors_films (actor_id, film_id) VALUES (168, 56); INSERT INTO actors_films (actor_id, film_id) VALUES (168, 92); INSERT INTO actors_films (actor_id, film_id) VALUES (168, 115); INSERT INTO actors_films (actor_id, film_id) VALUES (168, 188); INSERT INTO actors_films (actor_id, film_id) VALUES (168, 196); INSERT INTO actors_films (actor_id, film_id) VALUES (168, 208); INSERT INTO actors_films (actor_id, film_id) VALUES (168, 237); INSERT INTO actors_films (actor_id, film_id) VALUES (168, 241); INSERT INTO actors_films (actor_id, film_id) VALUES (168, 255); INSERT INTO actors_films (actor_id, film_id) VALUES (168, 305); INSERT INTO actors_films (actor_id, film_id) VALUES (168, 336); INSERT INTO actors_films (actor_id, film_id) VALUES (168, 387); INSERT INTO actors_films (actor_id, film_id) VALUES (168, 433); INSERT INTO actors_films (actor_id, film_id) VALUES (168, 438); INSERT INTO actors_films (actor_id, film_id) VALUES (168, 519); INSERT INTO actors_films (actor_id, film_id) VALUES (168, 602); INSERT INTO actors_films (actor_id, film_id) VALUES (168, 619); INSERT INTO actors_films (actor_id, film_id) VALUES (168, 626); INSERT INTO actors_films (actor_id, film_id) VALUES (168, 652); INSERT INTO actors_films (actor_id, film_id) VALUES (168, 678); INSERT INTO actors_films (actor_id, film_id) VALUES (168, 685); INSERT INTO actors_films (actor_id, film_id) VALUES (168, 804); INSERT INTO actors_films (actor_id, film_id) VALUES (168, 807); INSERT INTO actors_films (actor_id, film_id) VALUES (168, 826); INSERT INTO actors_films (actor_id, film_id) VALUES (168, 841); INSERT INTO actors_films (actor_id, film_id) VALUES (168, 886); INSERT INTO actors_films (actor_id, film_id) VALUES (168, 889); INSERT INTO actors_films (actor_id, film_id) VALUES (168, 892); INSERT INTO actors_films (actor_id, film_id) VALUES (168, 927); INSERT INTO actors_films (actor_id, film_id) VALUES (168, 959); INSERT INTO actors_films (actor_id, film_id) VALUES (169, 6); INSERT INTO actors_films (actor_id, film_id) VALUES (169, 78); INSERT INTO actors_films (actor_id, film_id) VALUES (169, 93); INSERT INTO actors_films (actor_id, film_id) VALUES (169, 246); INSERT INTO actors_films (actor_id, film_id) VALUES (169, 248); INSERT INTO actors_films (actor_id, film_id) VALUES (169, 289); INSERT INTO actors_films (actor_id, film_id) VALUES (169, 301); INSERT INTO actors_films (actor_id, film_id) VALUES (169, 326); INSERT INTO actors_films (actor_id, film_id) VALUES (169, 349); INSERT INTO actors_films (actor_id, film_id) VALUES (169, 372); INSERT INTO actors_films (actor_id, film_id) VALUES (169, 398); INSERT INTO actors_films (actor_id, film_id) VALUES (169, 434); INSERT INTO actors_films (actor_id, film_id) VALUES (169, 505); INSERT INTO actors_films (actor_id, film_id) VALUES (169, 564); INSERT INTO actors_films (actor_id, film_id) VALUES (169, 571); INSERT INTO actors_films (actor_id, film_id) VALUES (169, 634); INSERT INTO actors_films (actor_id, film_id) VALUES (169, 642); INSERT INTO actors_films (actor_id, film_id) VALUES (169, 673); INSERT INTO actors_films (actor_id, film_id) VALUES (169, 694); INSERT INTO actors_films (actor_id, film_id) VALUES (169, 727); INSERT INTO actors_films (actor_id, film_id) VALUES (169, 778); INSERT INTO actors_films (actor_id, film_id) VALUES (169, 815); INSERT INTO actors_films (actor_id, film_id) VALUES (169, 847); INSERT INTO actors_films (actor_id, film_id) VALUES (169, 849); INSERT INTO actors_films (actor_id, film_id) VALUES (169, 894); INSERT INTO actors_films (actor_id, film_id) VALUES (169, 897); INSERT INTO actors_films (actor_id, film_id) VALUES (169, 954); INSERT INTO actors_films (actor_id, film_id) VALUES (169, 992); INSERT INTO actors_films (actor_id, film_id) VALUES (169, 998); INSERT INTO actors_films (actor_id, film_id) VALUES (170, 7); INSERT INTO actors_films (actor_id, film_id) VALUES (170, 15); INSERT INTO actors_films (actor_id, film_id) VALUES (170, 27); INSERT INTO actors_films (actor_id, film_id) VALUES (170, 33); INSERT INTO actors_films (actor_id, film_id) VALUES (170, 102); INSERT INTO actors_films (actor_id, film_id) VALUES (170, 139); INSERT INTO actors_films (actor_id, film_id) VALUES (170, 180); INSERT INTO actors_films (actor_id, film_id) VALUES (170, 184); INSERT INTO actors_films (actor_id, film_id) VALUES (170, 212); INSERT INTO actors_films (actor_id, film_id) VALUES (170, 299); INSERT INTO actors_films (actor_id, film_id) VALUES (170, 322); INSERT INTO actors_films (actor_id, film_id) VALUES (170, 358); INSERT INTO actors_films (actor_id, film_id) VALUES (170, 416); INSERT INTO actors_films (actor_id, film_id) VALUES (170, 508); INSERT INTO actors_films (actor_id, film_id) VALUES (170, 537); INSERT INTO actors_films (actor_id, film_id) VALUES (170, 705); INSERT INTO actors_films (actor_id, film_id) VALUES (170, 758); INSERT INTO actors_films (actor_id, film_id) VALUES (170, 764); INSERT INTO actors_films (actor_id, film_id) VALUES (170, 868); INSERT INTO actors_films (actor_id, film_id) VALUES (170, 877); INSERT INTO actors_films (actor_id, film_id) VALUES (170, 886); INSERT INTO actors_films (actor_id, film_id) VALUES (170, 925); INSERT INTO actors_films (actor_id, film_id) VALUES (170, 993); INSERT INTO actors_films (actor_id, film_id) VALUES (170, 996); INSERT INTO actors_films (actor_id, film_id) VALUES (171, 49); INSERT INTO actors_films (actor_id, film_id) VALUES (171, 146); INSERT INTO actors_films (actor_id, film_id) VALUES (171, 166); INSERT INTO actors_films (actor_id, film_id) VALUES (171, 181); INSERT INTO actors_films (actor_id, film_id) VALUES (171, 219); INSERT INTO actors_films (actor_id, film_id) VALUES (171, 273); INSERT INTO actors_films (actor_id, film_id) VALUES (171, 296); INSERT INTO actors_films (actor_id, film_id) VALUES (171, 318); INSERT INTO actors_films (actor_id, film_id) VALUES (171, 342); INSERT INTO actors_films (actor_id, film_id) VALUES (171, 397); INSERT INTO actors_films (actor_id, film_id) VALUES (171, 447); INSERT INTO actors_films (actor_id, film_id) VALUES (171, 450); INSERT INTO actors_films (actor_id, film_id) VALUES (171, 466); INSERT INTO actors_films (actor_id, film_id) VALUES (171, 549); INSERT INTO actors_films (actor_id, film_id) VALUES (171, 560); INSERT INTO actors_films (actor_id, film_id) VALUES (171, 566); INSERT INTO actors_films (actor_id, film_id) VALUES (171, 608); INSERT INTO actors_films (actor_id, film_id) VALUES (171, 625); INSERT INTO actors_films (actor_id, film_id) VALUES (171, 645); INSERT INTO actors_films (actor_id, film_id) VALUES (171, 701); INSERT INTO actors_films (actor_id, film_id) VALUES (171, 761); INSERT INTO actors_films (actor_id, film_id) VALUES (171, 779); INSERT INTO actors_films (actor_id, film_id) VALUES (171, 849); INSERT INTO actors_films (actor_id, film_id) VALUES (171, 872); INSERT INTO actors_films (actor_id, film_id) VALUES (171, 892); INSERT INTO actors_films (actor_id, film_id) VALUES (171, 898); INSERT INTO actors_films (actor_id, film_id) VALUES (171, 903); INSERT INTO actors_films (actor_id, film_id) VALUES (171, 953); INSERT INTO actors_films (actor_id, film_id) VALUES (172, 57); INSERT INTO actors_films (actor_id, film_id) VALUES (172, 100); INSERT INTO actors_films (actor_id, film_id) VALUES (172, 148); INSERT INTO actors_films (actor_id, film_id) VALUES (172, 215); INSERT INTO actors_films (actor_id, film_id) VALUES (172, 302); INSERT INTO actors_films (actor_id, film_id) VALUES (172, 345); INSERT INTO actors_films (actor_id, film_id) VALUES (172, 368); INSERT INTO actors_films (actor_id, film_id) VALUES (172, 385); INSERT INTO actors_films (actor_id, film_id) VALUES (172, 423); INSERT INTO actors_films (actor_id, film_id) VALUES (172, 487); INSERT INTO actors_films (actor_id, film_id) VALUES (172, 493); INSERT INTO actors_films (actor_id, film_id) VALUES (172, 529); INSERT INTO actors_films (actor_id, film_id) VALUES (172, 538); INSERT INTO actors_films (actor_id, film_id) VALUES (172, 567); INSERT INTO actors_films (actor_id, film_id) VALUES (172, 609); INSERT INTO actors_films (actor_id, film_id) VALUES (172, 639); INSERT INTO actors_films (actor_id, film_id) VALUES (172, 649); INSERT INTO actors_films (actor_id, film_id) VALUES (172, 661); INSERT INTO actors_films (actor_id, film_id) VALUES (172, 667); INSERT INTO actors_films (actor_id, film_id) VALUES (172, 710); INSERT INTO actors_films (actor_id, film_id) VALUES (172, 744); INSERT INTO actors_films (actor_id, film_id) VALUES (172, 758); INSERT INTO actors_films (actor_id, film_id) VALUES (172, 771); INSERT INTO actors_films (actor_id, film_id) VALUES (172, 833); INSERT INTO actors_films (actor_id, film_id) VALUES (172, 959); INSERT INTO actors_films (actor_id, film_id) VALUES (173, 49); INSERT INTO actors_films (actor_id, film_id) VALUES (173, 55); INSERT INTO actors_films (actor_id, film_id) VALUES (173, 74); INSERT INTO actors_films (actor_id, film_id) VALUES (173, 80); INSERT INTO actors_films (actor_id, film_id) VALUES (173, 106); INSERT INTO actors_films (actor_id, film_id) VALUES (173, 154); INSERT INTO actors_films (actor_id, film_id) VALUES (173, 162); INSERT INTO actors_films (actor_id, film_id) VALUES (173, 188); INSERT INTO actors_films (actor_id, film_id) VALUES (173, 235); INSERT INTO actors_films (actor_id, film_id) VALUES (173, 313); INSERT INTO actors_films (actor_id, film_id) VALUES (173, 379); INSERT INTO actors_films (actor_id, film_id) VALUES (173, 405); INSERT INTO actors_films (actor_id, film_id) VALUES (173, 491); INSERT INTO actors_films (actor_id, film_id) VALUES (173, 496); INSERT INTO actors_films (actor_id, film_id) VALUES (173, 529); INSERT INTO actors_films (actor_id, film_id) VALUES (173, 550); INSERT INTO actors_films (actor_id, film_id) VALUES (173, 564); INSERT INTO actors_films (actor_id, film_id) VALUES (173, 571); INSERT INTO actors_films (actor_id, film_id) VALUES (173, 592); INSERT INTO actors_films (actor_id, film_id) VALUES (173, 688); INSERT INTO actors_films (actor_id, film_id) VALUES (173, 753); INSERT INTO actors_films (actor_id, film_id) VALUES (173, 757); INSERT INTO actors_films (actor_id, film_id) VALUES (173, 852); INSERT INTO actors_films (actor_id, film_id) VALUES (173, 857); INSERT INTO actors_films (actor_id, film_id) VALUES (173, 921); INSERT INTO actors_films (actor_id, film_id) VALUES (173, 928); INSERT INTO actors_films (actor_id, film_id) VALUES (173, 933); INSERT INTO actors_films (actor_id, film_id) VALUES (174, 11); INSERT INTO actors_films (actor_id, film_id) VALUES (174, 61); INSERT INTO actors_films (actor_id, film_id) VALUES (174, 168); INSERT INTO actors_films (actor_id, film_id) VALUES (174, 298); INSERT INTO actors_films (actor_id, film_id) VALUES (174, 352); INSERT INTO actors_films (actor_id, film_id) VALUES (174, 442); INSERT INTO actors_films (actor_id, film_id) VALUES (174, 451); INSERT INTO actors_films (actor_id, film_id) VALUES (174, 496); INSERT INTO actors_films (actor_id, film_id) VALUES (174, 610); INSERT INTO actors_films (actor_id, film_id) VALUES (174, 618); INSERT INTO actors_films (actor_id, film_id) VALUES (174, 622); INSERT INTO actors_films (actor_id, film_id) VALUES (174, 659); INSERT INTO actors_films (actor_id, film_id) VALUES (174, 677); INSERT INTO actors_films (actor_id, film_id) VALUES (174, 705); INSERT INTO actors_films (actor_id, film_id) VALUES (174, 722); INSERT INTO actors_films (actor_id, film_id) VALUES (174, 780); INSERT INTO actors_films (actor_id, film_id) VALUES (174, 797); INSERT INTO actors_films (actor_id, film_id) VALUES (174, 809); INSERT INTO actors_films (actor_id, film_id) VALUES (174, 827); INSERT INTO actors_films (actor_id, film_id) VALUES (174, 830); INSERT INTO actors_films (actor_id, film_id) VALUES (174, 852); INSERT INTO actors_films (actor_id, film_id) VALUES (174, 853); INSERT INTO actors_films (actor_id, film_id) VALUES (174, 879); INSERT INTO actors_films (actor_id, film_id) VALUES (174, 982); INSERT INTO actors_films (actor_id, film_id) VALUES (175, 9); INSERT INTO actors_films (actor_id, film_id) VALUES (175, 29); INSERT INTO actors_films (actor_id, film_id) VALUES (175, 67); INSERT INTO actors_films (actor_id, film_id) VALUES (175, 129); INSERT INTO actors_films (actor_id, film_id) VALUES (175, 155); INSERT INTO actors_films (actor_id, film_id) VALUES (175, 190); INSERT INTO actors_films (actor_id, film_id) VALUES (175, 191); INSERT INTO actors_films (actor_id, film_id) VALUES (175, 362); INSERT INTO actors_films (actor_id, film_id) VALUES (175, 405); INSERT INTO actors_films (actor_id, film_id) VALUES (175, 424); INSERT INTO actors_films (actor_id, film_id) VALUES (175, 439); INSERT INTO actors_films (actor_id, film_id) VALUES (175, 442); INSERT INTO actors_films (actor_id, film_id) VALUES (175, 483); INSERT INTO actors_films (actor_id, film_id) VALUES (175, 591); INSERT INTO actors_films (actor_id, film_id) VALUES (175, 596); INSERT INTO actors_films (actor_id, film_id) VALUES (175, 616); INSERT INTO actors_films (actor_id, film_id) VALUES (175, 719); INSERT INTO actors_films (actor_id, film_id) VALUES (175, 729); INSERT INTO actors_films (actor_id, film_id) VALUES (175, 772); INSERT INTO actors_films (actor_id, film_id) VALUES (175, 778); INSERT INTO actors_films (actor_id, film_id) VALUES (175, 828); INSERT INTO actors_films (actor_id, film_id) VALUES (175, 842); INSERT INTO actors_films (actor_id, film_id) VALUES (175, 890); INSERT INTO actors_films (actor_id, film_id) VALUES (175, 908); INSERT INTO actors_films (actor_id, film_id) VALUES (175, 977); INSERT INTO actors_films (actor_id, film_id) VALUES (175, 978); INSERT INTO actors_films (actor_id, film_id) VALUES (175, 998); INSERT INTO actors_films (actor_id, film_id) VALUES (176, 13); INSERT INTO actors_films (actor_id, film_id) VALUES (176, 73); INSERT INTO actors_films (actor_id, film_id) VALUES (176, 89); INSERT INTO actors_films (actor_id, film_id) VALUES (176, 150); INSERT INTO actors_films (actor_id, film_id) VALUES (176, 162); INSERT INTO actors_films (actor_id, film_id) VALUES (176, 238); INSERT INTO actors_films (actor_id, film_id) VALUES (176, 252); INSERT INTO actors_films (actor_id, film_id) VALUES (176, 303); INSERT INTO actors_films (actor_id, film_id) VALUES (176, 320); INSERT INTO actors_films (actor_id, film_id) VALUES (176, 401); INSERT INTO actors_films (actor_id, film_id) VALUES (176, 417); INSERT INTO actors_films (actor_id, film_id) VALUES (176, 441); INSERT INTO actors_films (actor_id, film_id) VALUES (176, 458); INSERT INTO actors_films (actor_id, film_id) VALUES (176, 461); INSERT INTO actors_films (actor_id, film_id) VALUES (176, 517); INSERT INTO actors_films (actor_id, film_id) VALUES (176, 521); INSERT INTO actors_films (actor_id, film_id) VALUES (176, 543); INSERT INTO actors_films (actor_id, film_id) VALUES (176, 573); INSERT INTO actors_films (actor_id, film_id) VALUES (176, 699); INSERT INTO actors_films (actor_id, film_id) VALUES (176, 726); INSERT INTO actors_films (actor_id, film_id) VALUES (176, 740); INSERT INTO actors_films (actor_id, film_id) VALUES (176, 746); INSERT INTO actors_films (actor_id, film_id) VALUES (176, 758); INSERT INTO actors_films (actor_id, film_id) VALUES (176, 802); INSERT INTO actors_films (actor_id, film_id) VALUES (176, 827); INSERT INTO actors_films (actor_id, film_id) VALUES (176, 839); INSERT INTO actors_films (actor_id, film_id) VALUES (176, 859); INSERT INTO actors_films (actor_id, film_id) VALUES (176, 872); INSERT INTO actors_films (actor_id, film_id) VALUES (176, 946); INSERT INTO actors_films (actor_id, film_id) VALUES (177, 12); INSERT INTO actors_films (actor_id, film_id) VALUES (177, 39); INSERT INTO actors_films (actor_id, film_id) VALUES (177, 52); INSERT INTO actors_films (actor_id, film_id) VALUES (177, 55); INSERT INTO actors_films (actor_id, film_id) VALUES (177, 86); INSERT INTO actors_films (actor_id, film_id) VALUES (177, 175); INSERT INTO actors_films (actor_id, film_id) VALUES (177, 188); INSERT INTO actors_films (actor_id, film_id) VALUES (177, 235); INSERT INTO actors_films (actor_id, film_id) VALUES (177, 237); INSERT INTO actors_films (actor_id, film_id) VALUES (177, 289); INSERT INTO actors_films (actor_id, film_id) VALUES (177, 363); INSERT INTO actors_films (actor_id, film_id) VALUES (177, 401); INSERT INTO actors_films (actor_id, film_id) VALUES (177, 433); INSERT INTO actors_films (actor_id, film_id) VALUES (177, 458); INSERT INTO actors_films (actor_id, film_id) VALUES (177, 522); INSERT INTO actors_films (actor_id, film_id) VALUES (177, 543); INSERT INTO actors_films (actor_id, film_id) VALUES (177, 563); INSERT INTO actors_films (actor_id, film_id) VALUES (177, 649); INSERT INTO actors_films (actor_id, film_id) VALUES (177, 683); INSERT INTO actors_films (actor_id, film_id) VALUES (177, 684); INSERT INTO actors_films (actor_id, film_id) VALUES (177, 726); INSERT INTO actors_films (actor_id, film_id) VALUES (177, 751); INSERT INTO actors_films (actor_id, film_id) VALUES (177, 763); INSERT INTO actors_films (actor_id, film_id) VALUES (177, 764); INSERT INTO actors_films (actor_id, film_id) VALUES (177, 827); INSERT INTO actors_films (actor_id, film_id) VALUES (177, 910); INSERT INTO actors_films (actor_id, film_id) VALUES (177, 956); INSERT INTO actors_films (actor_id, film_id) VALUES (178, 30); INSERT INTO actors_films (actor_id, film_id) VALUES (178, 34); INSERT INTO actors_films (actor_id, film_id) VALUES (178, 109); INSERT INTO actors_films (actor_id, film_id) VALUES (178, 146); INSERT INTO actors_films (actor_id, film_id) VALUES (178, 160); INSERT INTO actors_films (actor_id, film_id) VALUES (178, 164); INSERT INTO actors_films (actor_id, film_id) VALUES (178, 194); INSERT INTO actors_films (actor_id, film_id) VALUES (178, 197); INSERT INTO actors_films (actor_id, film_id) VALUES (178, 273); INSERT INTO actors_films (actor_id, film_id) VALUES (178, 311); INSERT INTO actors_films (actor_id, film_id) VALUES (178, 397); INSERT INTO actors_films (actor_id, film_id) VALUES (178, 483); INSERT INTO actors_films (actor_id, film_id) VALUES (178, 517); INSERT INTO actors_films (actor_id, film_id) VALUES (178, 537); INSERT INTO actors_films (actor_id, film_id) VALUES (178, 587); INSERT INTO actors_films (actor_id, film_id) VALUES (178, 708); INSERT INTO actors_films (actor_id, film_id) VALUES (178, 733); INSERT INTO actors_films (actor_id, film_id) VALUES (178, 744); INSERT INTO actors_films (actor_id, film_id) VALUES (178, 762); INSERT INTO actors_films (actor_id, film_id) VALUES (178, 930); INSERT INTO actors_films (actor_id, film_id) VALUES (178, 974); INSERT INTO actors_films (actor_id, film_id) VALUES (178, 983); INSERT INTO actors_films (actor_id, film_id) VALUES (178, 1000); INSERT INTO actors_films (actor_id, film_id) VALUES (179, 24); INSERT INTO actors_films (actor_id, film_id) VALUES (179, 27); INSERT INTO actors_films (actor_id, film_id) VALUES (179, 65); INSERT INTO actors_films (actor_id, film_id) VALUES (179, 85); INSERT INTO actors_films (actor_id, film_id) VALUES (179, 109); INSERT INTO actors_films (actor_id, film_id) VALUES (179, 131); INSERT INTO actors_films (actor_id, film_id) VALUES (179, 159); INSERT INTO actors_films (actor_id, film_id) VALUES (179, 193); INSERT INTO actors_films (actor_id, film_id) VALUES (179, 250); INSERT INTO actors_films (actor_id, film_id) VALUES (179, 291); INSERT INTO actors_films (actor_id, film_id) VALUES (179, 353); INSERT INTO actors_films (actor_id, film_id) VALUES (179, 415); INSERT INTO actors_films (actor_id, film_id) VALUES (179, 463); INSERT INTO actors_films (actor_id, film_id) VALUES (179, 468); INSERT INTO actors_films (actor_id, film_id) VALUES (179, 489); INSERT INTO actors_films (actor_id, film_id) VALUES (179, 566); INSERT INTO actors_films (actor_id, film_id) VALUES (179, 588); INSERT INTO actors_films (actor_id, film_id) VALUES (179, 650); INSERT INTO actors_films (actor_id, film_id) VALUES (179, 698); INSERT INTO actors_films (actor_id, film_id) VALUES (179, 732); INSERT INTO actors_films (actor_id, film_id) VALUES (179, 737); INSERT INTO actors_films (actor_id, film_id) VALUES (179, 769); INSERT INTO actors_films (actor_id, film_id) VALUES (179, 811); INSERT INTO actors_films (actor_id, film_id) VALUES (179, 817); INSERT INTO actors_films (actor_id, film_id) VALUES (179, 852); INSERT INTO actors_films (actor_id, film_id) VALUES (179, 924); INSERT INTO actors_films (actor_id, film_id) VALUES (179, 931); INSERT INTO actors_films (actor_id, film_id) VALUES (179, 960); INSERT INTO actors_films (actor_id, film_id) VALUES (179, 976); INSERT INTO actors_films (actor_id, film_id) VALUES (180, 12); INSERT INTO actors_films (actor_id, film_id) VALUES (180, 33); INSERT INTO actors_films (actor_id, film_id) VALUES (180, 144); INSERT INTO actors_films (actor_id, film_id) VALUES (180, 195); INSERT INTO actors_films (actor_id, film_id) VALUES (180, 258); INSERT INTO actors_films (actor_id, film_id) VALUES (180, 441); INSERT INTO actors_films (actor_id, film_id) VALUES (180, 506); INSERT INTO actors_films (actor_id, film_id) VALUES (180, 561); INSERT INTO actors_films (actor_id, film_id) VALUES (180, 609); INSERT INTO actors_films (actor_id, film_id) VALUES (180, 622); INSERT INTO actors_films (actor_id, film_id) VALUES (180, 628); INSERT INTO actors_films (actor_id, film_id) VALUES (180, 657); INSERT INTO actors_films (actor_id, film_id) VALUES (180, 724); INSERT INTO actors_films (actor_id, film_id) VALUES (180, 729); INSERT INTO actors_films (actor_id, film_id) VALUES (180, 732); INSERT INTO actors_films (actor_id, film_id) VALUES (180, 777); INSERT INTO actors_films (actor_id, film_id) VALUES (180, 809); INSERT INTO actors_films (actor_id, film_id) VALUES (180, 811); INSERT INTO actors_films (actor_id, film_id) VALUES (180, 820); INSERT INTO actors_films (actor_id, film_id) VALUES (180, 824); INSERT INTO actors_films (actor_id, film_id) VALUES (180, 847); INSERT INTO actors_films (actor_id, film_id) VALUES (180, 869); INSERT INTO actors_films (actor_id, film_id) VALUES (180, 874); INSERT INTO actors_films (actor_id, film_id) VALUES (180, 955); INSERT INTO actors_films (actor_id, film_id) VALUES (180, 963); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 5); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 40); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 74); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 78); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 83); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 152); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 195); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 233); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 286); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 301); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 311); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 381); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 387); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 403); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 409); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 420); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 437); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 456); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 507); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 522); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 539); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 542); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 546); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 579); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 596); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 604); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 609); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 625); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 744); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 816); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 836); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 868); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 870); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 874); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 892); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 907); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 911); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 921); INSERT INTO actors_films (actor_id, film_id) VALUES (181, 991); INSERT INTO actors_films (actor_id, film_id) VALUES (182, 33); INSERT INTO actors_films (actor_id, film_id) VALUES (182, 160); INSERT INTO actors_films (actor_id, film_id) VALUES (182, 301); INSERT INTO actors_films (actor_id, film_id) VALUES (182, 324); INSERT INTO actors_films (actor_id, film_id) VALUES (182, 346); INSERT INTO actors_films (actor_id, film_id) VALUES (182, 362); INSERT INTO actors_films (actor_id, film_id) VALUES (182, 391); INSERT INTO actors_films (actor_id, film_id) VALUES (182, 413); INSERT INTO actors_films (actor_id, film_id) VALUES (182, 421); INSERT INTO actors_films (actor_id, film_id) VALUES (182, 437); INSERT INTO actors_films (actor_id, film_id) VALUES (182, 590); INSERT INTO actors_films (actor_id, film_id) VALUES (182, 639); INSERT INTO actors_films (actor_id, film_id) VALUES (182, 668); INSERT INTO actors_films (actor_id, film_id) VALUES (182, 677); INSERT INTO actors_films (actor_id, film_id) VALUES (182, 679); INSERT INTO actors_films (actor_id, film_id) VALUES (182, 695); INSERT INTO actors_films (actor_id, film_id) VALUES (182, 714); INSERT INTO actors_films (actor_id, film_id) VALUES (182, 720); INSERT INTO actors_films (actor_id, film_id) VALUES (182, 819); INSERT INTO actors_films (actor_id, film_id) VALUES (182, 828); INSERT INTO actors_films (actor_id, film_id) VALUES (182, 845); INSERT INTO actors_films (actor_id, film_id) VALUES (182, 864); INSERT INTO actors_films (actor_id, film_id) VALUES (182, 940); INSERT INTO actors_films (actor_id, film_id) VALUES (182, 990); INSERT INTO actors_films (actor_id, film_id) VALUES (183, 32); INSERT INTO actors_films (actor_id, film_id) VALUES (183, 40); INSERT INTO actors_films (actor_id, film_id) VALUES (183, 71); INSERT INTO actors_films (actor_id, film_id) VALUES (183, 113); INSERT INTO actors_films (actor_id, film_id) VALUES (183, 313); INSERT INTO actors_films (actor_id, film_id) VALUES (183, 388); INSERT INTO actors_films (actor_id, film_id) VALUES (183, 389); INSERT INTO actors_films (actor_id, film_id) VALUES (183, 390); INSERT INTO actors_films (actor_id, film_id) VALUES (183, 495); INSERT INTO actors_films (actor_id, film_id) VALUES (183, 520); INSERT INTO actors_films (actor_id, film_id) VALUES (183, 576); INSERT INTO actors_films (actor_id, film_id) VALUES (183, 636); INSERT INTO actors_films (actor_id, film_id) VALUES (183, 715); INSERT INTO actors_films (actor_id, film_id) VALUES (183, 850); INSERT INTO actors_films (actor_id, film_id) VALUES (183, 862); INSERT INTO actors_films (actor_id, film_id) VALUES (183, 914); INSERT INTO actors_films (actor_id, film_id) VALUES (183, 941); INSERT INTO actors_films (actor_id, film_id) VALUES (183, 949); INSERT INTO actors_films (actor_id, film_id) VALUES (183, 983); INSERT INTO actors_films (actor_id, film_id) VALUES (184, 35); INSERT INTO actors_films (actor_id, film_id) VALUES (184, 87); INSERT INTO actors_films (actor_id, film_id) VALUES (184, 146); INSERT INTO actors_films (actor_id, film_id) VALUES (184, 169); INSERT INTO actors_films (actor_id, film_id) VALUES (184, 221); INSERT INTO actors_films (actor_id, film_id) VALUES (184, 336); INSERT INTO actors_films (actor_id, film_id) VALUES (184, 371); INSERT INTO actors_films (actor_id, film_id) VALUES (184, 452); INSERT INTO actors_films (actor_id, film_id) VALUES (184, 486); INSERT INTO actors_films (actor_id, film_id) VALUES (184, 492); INSERT INTO actors_films (actor_id, film_id) VALUES (184, 500); INSERT INTO actors_films (actor_id, film_id) VALUES (184, 574); INSERT INTO actors_films (actor_id, film_id) VALUES (184, 580); INSERT INTO actors_films (actor_id, film_id) VALUES (184, 597); INSERT INTO actors_films (actor_id, film_id) VALUES (184, 615); INSERT INTO actors_films (actor_id, film_id) VALUES (184, 640); INSERT INTO actors_films (actor_id, film_id) VALUES (184, 642); INSERT INTO actors_films (actor_id, film_id) VALUES (184, 650); INSERT INTO actors_films (actor_id, film_id) VALUES (184, 661); INSERT INTO actors_films (actor_id, film_id) VALUES (184, 684); INSERT INTO actors_films (actor_id, film_id) VALUES (184, 745); INSERT INTO actors_films (actor_id, film_id) VALUES (184, 772); INSERT INTO actors_films (actor_id, film_id) VALUES (184, 787); INSERT INTO actors_films (actor_id, film_id) VALUES (184, 867); INSERT INTO actors_films (actor_id, film_id) VALUES (184, 959); INSERT INTO actors_films (actor_id, film_id) VALUES (184, 966); INSERT INTO actors_films (actor_id, film_id) VALUES (184, 967); INSERT INTO actors_films (actor_id, film_id) VALUES (184, 969); INSERT INTO actors_films (actor_id, film_id) VALUES (184, 985); INSERT INTO actors_films (actor_id, film_id) VALUES (185, 7); INSERT INTO actors_films (actor_id, film_id) VALUES (185, 95); INSERT INTO actors_films (actor_id, film_id) VALUES (185, 138); INSERT INTO actors_films (actor_id, film_id) VALUES (185, 265); INSERT INTO actors_films (actor_id, film_id) VALUES (185, 286); INSERT INTO actors_films (actor_id, film_id) VALUES (185, 360); INSERT INTO actors_films (actor_id, film_id) VALUES (185, 411); INSERT INTO actors_films (actor_id, film_id) VALUES (185, 427); INSERT INTO actors_films (actor_id, film_id) VALUES (185, 437); INSERT INTO actors_films (actor_id, film_id) VALUES (185, 448); INSERT INTO actors_films (actor_id, film_id) VALUES (185, 494); INSERT INTO actors_films (actor_id, film_id) VALUES (185, 510); INSERT INTO actors_films (actor_id, film_id) VALUES (185, 518); INSERT INTO actors_films (actor_id, film_id) VALUES (185, 554); INSERT INTO actors_films (actor_id, film_id) VALUES (185, 560); INSERT INTO actors_films (actor_id, film_id) VALUES (185, 571); INSERT INTO actors_films (actor_id, film_id) VALUES (185, 584); INSERT INTO actors_films (actor_id, film_id) VALUES (185, 631); INSERT INTO actors_films (actor_id, film_id) VALUES (185, 665); INSERT INTO actors_films (actor_id, film_id) VALUES (185, 694); INSERT INTO actors_films (actor_id, film_id) VALUES (185, 730); INSERT INTO actors_films (actor_id, film_id) VALUES (185, 761); INSERT INTO actors_films (actor_id, film_id) VALUES (185, 818); INSERT INTO actors_films (actor_id, film_id) VALUES (185, 845); INSERT INTO actors_films (actor_id, film_id) VALUES (185, 880); INSERT INTO actors_films (actor_id, film_id) VALUES (185, 882); INSERT INTO actors_films (actor_id, film_id) VALUES (185, 919); INSERT INTO actors_films (actor_id, film_id) VALUES (185, 920); INSERT INTO actors_films (actor_id, film_id) VALUES (185, 965); INSERT INTO actors_films (actor_id, film_id) VALUES (185, 973); INSERT INTO actors_films (actor_id, film_id) VALUES (186, 95); INSERT INTO actors_films (actor_id, film_id) VALUES (186, 187); INSERT INTO actors_films (actor_id, film_id) VALUES (186, 208); INSERT INTO actors_films (actor_id, film_id) VALUES (186, 228); INSERT INTO actors_films (actor_id, film_id) VALUES (186, 237); INSERT INTO actors_films (actor_id, film_id) VALUES (186, 422); INSERT INTO actors_films (actor_id, film_id) VALUES (186, 482); INSERT INTO actors_films (actor_id, film_id) VALUES (186, 508); INSERT INTO actors_films (actor_id, film_id) VALUES (186, 552); INSERT INTO actors_films (actor_id, film_id) VALUES (186, 579); INSERT INTO actors_films (actor_id, film_id) VALUES (186, 637); INSERT INTO actors_films (actor_id, film_id) VALUES (186, 648); INSERT INTO actors_films (actor_id, film_id) VALUES (186, 654); INSERT INTO actors_films (actor_id, film_id) VALUES (186, 729); INSERT INTO actors_films (actor_id, film_id) VALUES (186, 983); INSERT INTO actors_films (actor_id, film_id) VALUES (186, 994); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 17); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 25); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 29); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 51); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 73); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 76); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 98); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 110); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 127); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 168); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 222); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 224); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 297); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 354); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 379); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 417); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 435); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 441); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 474); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 499); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 538); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 548); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 561); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 617); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 625); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 664); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 671); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 768); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 779); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 906); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 914); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 923); INSERT INTO actors_films (actor_id, film_id) VALUES (187, 976); INSERT INTO actors_films (actor_id, film_id) VALUES (188, 1); INSERT INTO actors_films (actor_id, film_id) VALUES (188, 10); INSERT INTO actors_films (actor_id, film_id) VALUES (188, 14); INSERT INTO actors_films (actor_id, film_id) VALUES (188, 51); INSERT INTO actors_films (actor_id, film_id) VALUES (188, 102); INSERT INTO actors_films (actor_id, film_id) VALUES (188, 111); INSERT INTO actors_films (actor_id, film_id) VALUES (188, 146); INSERT INTO actors_films (actor_id, film_id) VALUES (188, 206); INSERT INTO actors_films (actor_id, film_id) VALUES (188, 223); INSERT INTO actors_films (actor_id, film_id) VALUES (188, 289); INSERT INTO actors_films (actor_id, film_id) VALUES (188, 311); INSERT INTO actors_films (actor_id, film_id) VALUES (188, 322); INSERT INTO actors_films (actor_id, film_id) VALUES (188, 338); INSERT INTO actors_films (actor_id, film_id) VALUES (188, 396); INSERT INTO actors_films (actor_id, film_id) VALUES (188, 412); INSERT INTO actors_films (actor_id, film_id) VALUES (188, 506); INSERT INTO actors_films (actor_id, film_id) VALUES (188, 517); INSERT INTO actors_films (actor_id, film_id) VALUES (188, 529); INSERT INTO actors_films (actor_id, film_id) VALUES (188, 566); INSERT INTO actors_films (actor_id, film_id) VALUES (188, 593); INSERT INTO actors_films (actor_id, film_id) VALUES (188, 606); INSERT INTO actors_films (actor_id, film_id) VALUES (188, 662); INSERT INTO actors_films (actor_id, film_id) VALUES (188, 770); INSERT INTO actors_films (actor_id, film_id) VALUES (188, 773); INSERT INTO actors_films (actor_id, film_id) VALUES (188, 774); INSERT INTO actors_films (actor_id, film_id) VALUES (188, 815); INSERT INTO actors_films (actor_id, film_id) VALUES (188, 849); INSERT INTO actors_films (actor_id, film_id) VALUES (188, 925); INSERT INTO actors_films (actor_id, film_id) VALUES (188, 988); INSERT INTO actors_films (actor_id, film_id) VALUES (188, 989); INSERT INTO actors_films (actor_id, film_id) VALUES (189, 43); INSERT INTO actors_films (actor_id, film_id) VALUES (189, 82); INSERT INTO actors_films (actor_id, film_id) VALUES (189, 171); INSERT INTO actors_films (actor_id, film_id) VALUES (189, 266); INSERT INTO actors_films (actor_id, film_id) VALUES (189, 272); INSERT INTO actors_films (actor_id, film_id) VALUES (189, 315); INSERT INTO actors_films (actor_id, film_id) VALUES (189, 378); INSERT INTO actors_films (actor_id, film_id) VALUES (189, 492); INSERT INTO actors_films (actor_id, film_id) VALUES (189, 509); INSERT INTO actors_films (actor_id, film_id) VALUES (189, 512); INSERT INTO actors_films (actor_id, film_id) VALUES (189, 519); INSERT INTO actors_films (actor_id, film_id) VALUES (189, 533); INSERT INTO actors_films (actor_id, film_id) VALUES (189, 548); INSERT INTO actors_films (actor_id, film_id) VALUES (189, 560); INSERT INTO actors_films (actor_id, film_id) VALUES (189, 628); INSERT INTO actors_films (actor_id, film_id) VALUES (189, 734); INSERT INTO actors_films (actor_id, film_id) VALUES (189, 748); INSERT INTO actors_films (actor_id, film_id) VALUES (189, 788); INSERT INTO actors_films (actor_id, film_id) VALUES (189, 820); INSERT INTO actors_films (actor_id, film_id) VALUES (189, 853); INSERT INTO actors_films (actor_id, film_id) VALUES (189, 882); INSERT INTO actors_films (actor_id, film_id) VALUES (189, 896); INSERT INTO actors_films (actor_id, film_id) VALUES (189, 899); INSERT INTO actors_films (actor_id, film_id) VALUES (189, 940); INSERT INTO actors_films (actor_id, film_id) VALUES (190, 38); INSERT INTO actors_films (actor_id, film_id) VALUES (190, 54); INSERT INTO actors_films (actor_id, film_id) VALUES (190, 62); INSERT INTO actors_films (actor_id, film_id) VALUES (190, 87); INSERT INTO actors_films (actor_id, film_id) VALUES (190, 173); INSERT INTO actors_films (actor_id, film_id) VALUES (190, 234); INSERT INTO actors_films (actor_id, film_id) VALUES (190, 253); INSERT INTO actors_films (actor_id, film_id) VALUES (190, 278); INSERT INTO actors_films (actor_id, film_id) VALUES (190, 310); INSERT INTO actors_films (actor_id, film_id) VALUES (190, 374); INSERT INTO actors_films (actor_id, film_id) VALUES (190, 411); INSERT INTO actors_films (actor_id, film_id) VALUES (190, 426); INSERT INTO actors_films (actor_id, film_id) VALUES (190, 472); INSERT INTO actors_films (actor_id, film_id) VALUES (190, 549); INSERT INTO actors_films (actor_id, film_id) VALUES (190, 562); INSERT INTO actors_films (actor_id, film_id) VALUES (190, 606); INSERT INTO actors_films (actor_id, film_id) VALUES (190, 623); INSERT INTO actors_films (actor_id, film_id) VALUES (190, 679); INSERT INTO actors_films (actor_id, film_id) VALUES (190, 682); INSERT INTO actors_films (actor_id, film_id) VALUES (190, 693); INSERT INTO actors_films (actor_id, film_id) VALUES (190, 695); INSERT INTO actors_films (actor_id, film_id) VALUES (190, 705); INSERT INTO actors_films (actor_id, film_id) VALUES (190, 708); INSERT INTO actors_films (actor_id, film_id) VALUES (190, 802); INSERT INTO actors_films (actor_id, film_id) VALUES (190, 806); INSERT INTO actors_films (actor_id, film_id) VALUES (190, 874); INSERT INTO actors_films (actor_id, film_id) VALUES (190, 959); INSERT INTO actors_films (actor_id, film_id) VALUES (191, 16); INSERT INTO actors_films (actor_id, film_id) VALUES (191, 39); INSERT INTO actors_films (actor_id, film_id) VALUES (191, 84); INSERT INTO actors_films (actor_id, film_id) VALUES (191, 185); INSERT INTO actors_films (actor_id, film_id) VALUES (191, 219); INSERT INTO actors_films (actor_id, film_id) VALUES (191, 293); INSERT INTO actors_films (actor_id, film_id) VALUES (191, 296); INSERT INTO actors_films (actor_id, film_id) VALUES (191, 378); INSERT INTO actors_films (actor_id, film_id) VALUES (191, 410); INSERT INTO actors_films (actor_id, film_id) VALUES (191, 420); INSERT INTO actors_films (actor_id, film_id) VALUES (191, 461); INSERT INTO actors_films (actor_id, film_id) VALUES (191, 544); INSERT INTO actors_films (actor_id, film_id) VALUES (191, 551); INSERT INTO actors_films (actor_id, film_id) VALUES (191, 596); INSERT INTO actors_films (actor_id, film_id) VALUES (191, 638); INSERT INTO actors_films (actor_id, film_id) VALUES (191, 668); INSERT INTO actors_films (actor_id, film_id) VALUES (191, 692); INSERT INTO actors_films (actor_id, film_id) VALUES (191, 775); INSERT INTO actors_films (actor_id, film_id) VALUES (191, 801); INSERT INTO actors_films (actor_id, film_id) VALUES (191, 819); INSERT INTO actors_films (actor_id, film_id) VALUES (191, 827); INSERT INTO actors_films (actor_id, film_id) VALUES (191, 830); INSERT INTO actors_films (actor_id, film_id) VALUES (191, 834); INSERT INTO actors_films (actor_id, film_id) VALUES (191, 849); INSERT INTO actors_films (actor_id, film_id) VALUES (191, 858); INSERT INTO actors_films (actor_id, film_id) VALUES (191, 914); INSERT INTO actors_films (actor_id, film_id) VALUES (191, 958); INSERT INTO actors_films (actor_id, film_id) VALUES (191, 969); INSERT INTO actors_films (actor_id, film_id) VALUES (191, 971); INSERT INTO actors_films (actor_id, film_id) VALUES (191, 993); INSERT INTO actors_films (actor_id, film_id) VALUES (192, 16); INSERT INTO actors_films (actor_id, film_id) VALUES (192, 69); INSERT INTO actors_films (actor_id, film_id) VALUES (192, 117); INSERT INTO actors_films (actor_id, film_id) VALUES (192, 155); INSERT INTO actors_films (actor_id, film_id) VALUES (192, 166); INSERT INTO actors_films (actor_id, film_id) VALUES (192, 179); INSERT INTO actors_films (actor_id, film_id) VALUES (192, 214); INSERT INTO actors_films (actor_id, film_id) VALUES (192, 361); INSERT INTO actors_films (actor_id, film_id) VALUES (192, 367); INSERT INTO actors_films (actor_id, film_id) VALUES (192, 426); INSERT INTO actors_films (actor_id, film_id) VALUES (192, 465); INSERT INTO actors_films (actor_id, film_id) VALUES (192, 470); INSERT INTO actors_films (actor_id, film_id) VALUES (192, 475); INSERT INTO actors_films (actor_id, film_id) VALUES (192, 485); INSERT INTO actors_films (actor_id, film_id) VALUES (192, 541); INSERT INTO actors_films (actor_id, film_id) VALUES (192, 578); INSERT INTO actors_films (actor_id, film_id) VALUES (192, 592); INSERT INTO actors_films (actor_id, film_id) VALUES (192, 614); INSERT INTO actors_films (actor_id, film_id) VALUES (192, 618); INSERT INTO actors_films (actor_id, film_id) VALUES (192, 622); INSERT INTO actors_films (actor_id, film_id) VALUES (192, 674); INSERT INTO actors_films (actor_id, film_id) VALUES (192, 677); INSERT INTO actors_films (actor_id, film_id) VALUES (192, 680); INSERT INTO actors_films (actor_id, film_id) VALUES (192, 682); INSERT INTO actors_films (actor_id, film_id) VALUES (192, 708); INSERT INTO actors_films (actor_id, film_id) VALUES (192, 711); INSERT INTO actors_films (actor_id, film_id) VALUES (192, 747); INSERT INTO actors_films (actor_id, film_id) VALUES (192, 763); INSERT INTO actors_films (actor_id, film_id) VALUES (192, 819); INSERT INTO actors_films (actor_id, film_id) VALUES (193, 44); INSERT INTO actors_films (actor_id, film_id) VALUES (193, 80); INSERT INTO actors_films (actor_id, film_id) VALUES (193, 103); INSERT INTO actors_films (actor_id, film_id) VALUES (193, 109); INSERT INTO actors_films (actor_id, film_id) VALUES (193, 119); INSERT INTO actors_films (actor_id, film_id) VALUES (193, 141); INSERT INTO actors_films (actor_id, film_id) VALUES (193, 164); INSERT INTO actors_films (actor_id, film_id) VALUES (193, 291); INSERT INTO actors_films (actor_id, film_id) VALUES (193, 352); INSERT INTO actors_films (actor_id, film_id) VALUES (193, 358); INSERT INTO actors_films (actor_id, film_id) VALUES (193, 376); INSERT INTO actors_films (actor_id, film_id) VALUES (193, 412); INSERT INTO actors_films (actor_id, film_id) VALUES (193, 462); INSERT INTO actors_films (actor_id, film_id) VALUES (193, 689); INSERT INTO actors_films (actor_id, film_id) VALUES (193, 709); INSERT INTO actors_films (actor_id, film_id) VALUES (193, 745); INSERT INTO actors_films (actor_id, film_id) VALUES (193, 807); INSERT INTO actors_films (actor_id, film_id) VALUES (193, 828); INSERT INTO actors_films (actor_id, film_id) VALUES (193, 834); INSERT INTO actors_films (actor_id, film_id) VALUES (193, 851); INSERT INTO actors_films (actor_id, film_id) VALUES (193, 937); INSERT INTO actors_films (actor_id, film_id) VALUES (193, 953); INSERT INTO actors_films (actor_id, film_id) VALUES (193, 960); INSERT INTO actors_films (actor_id, film_id) VALUES (194, 9); INSERT INTO actors_films (actor_id, film_id) VALUES (194, 42); INSERT INTO actors_films (actor_id, film_id) VALUES (194, 67); INSERT INTO actors_films (actor_id, film_id) VALUES (194, 86); INSERT INTO actors_films (actor_id, film_id) VALUES (194, 88); INSERT INTO actors_films (actor_id, film_id) VALUES (194, 98); INSERT INTO actors_films (actor_id, film_id) VALUES (194, 135); INSERT INTO actors_films (actor_id, film_id) VALUES (194, 161); INSERT INTO actors_films (actor_id, film_id) VALUES (194, 163); INSERT INTO actors_films (actor_id, film_id) VALUES (194, 215); INSERT INTO actors_films (actor_id, film_id) VALUES (194, 232); INSERT INTO actors_films (actor_id, film_id) VALUES (194, 352); INSERT INTO actors_films (actor_id, film_id) VALUES (194, 415); INSERT INTO actors_films (actor_id, film_id) VALUES (194, 486); INSERT INTO actors_films (actor_id, film_id) VALUES (194, 498); INSERT INTO actors_films (actor_id, film_id) VALUES (194, 531); INSERT INTO actors_films (actor_id, film_id) VALUES (194, 719); INSERT INTO actors_films (actor_id, film_id) VALUES (194, 738); INSERT INTO actors_films (actor_id, film_id) VALUES (194, 786); INSERT INTO actors_films (actor_id, film_id) VALUES (194, 872); INSERT INTO actors_films (actor_id, film_id) VALUES (194, 938); INSERT INTO actors_films (actor_id, film_id) VALUES (194, 940); INSERT INTO actors_films (actor_id, film_id) VALUES (195, 129); INSERT INTO actors_films (actor_id, film_id) VALUES (195, 130); INSERT INTO actors_films (actor_id, film_id) VALUES (195, 141); INSERT INTO actors_films (actor_id, film_id) VALUES (195, 144); INSERT INTO actors_films (actor_id, film_id) VALUES (195, 298); INSERT INTO actors_films (actor_id, film_id) VALUES (195, 359); INSERT INTO actors_films (actor_id, film_id) VALUES (195, 361); INSERT INTO actors_films (actor_id, film_id) VALUES (195, 392); INSERT INTO actors_films (actor_id, film_id) VALUES (195, 403); INSERT INTO actors_films (actor_id, film_id) VALUES (195, 494); INSERT INTO actors_films (actor_id, film_id) VALUES (195, 520); INSERT INTO actors_films (actor_id, film_id) VALUES (195, 534); INSERT INTO actors_films (actor_id, film_id) VALUES (195, 560); INSERT INTO actors_films (actor_id, film_id) VALUES (195, 592); INSERT INTO actors_films (actor_id, film_id) VALUES (195, 649); INSERT INTO actors_films (actor_id, film_id) VALUES (195, 658); INSERT INTO actors_films (actor_id, film_id) VALUES (195, 673); INSERT INTO actors_films (actor_id, film_id) VALUES (195, 677); INSERT INTO actors_films (actor_id, film_id) VALUES (195, 706); INSERT INTO actors_films (actor_id, film_id) VALUES (195, 738); INSERT INTO actors_films (actor_id, film_id) VALUES (195, 769); INSERT INTO actors_films (actor_id, film_id) VALUES (195, 781); INSERT INTO actors_films (actor_id, film_id) VALUES (195, 794); INSERT INTO actors_films (actor_id, film_id) VALUES (195, 813); INSERT INTO actors_films (actor_id, film_id) VALUES (195, 869); INSERT INTO actors_films (actor_id, film_id) VALUES (195, 885); INSERT INTO actors_films (actor_id, film_id) VALUES (195, 962); INSERT INTO actors_films (actor_id, film_id) VALUES (196, 64); INSERT INTO actors_films (actor_id, film_id) VALUES (196, 122); INSERT INTO actors_films (actor_id, film_id) VALUES (196, 156); INSERT INTO actors_films (actor_id, film_id) VALUES (196, 169); INSERT INTO actors_films (actor_id, film_id) VALUES (196, 276); INSERT INTO actors_films (actor_id, film_id) VALUES (196, 284); INSERT INTO actors_films (actor_id, film_id) VALUES (196, 303); INSERT INTO actors_films (actor_id, film_id) VALUES (196, 324); INSERT INTO actors_films (actor_id, film_id) VALUES (196, 423); INSERT INTO actors_films (actor_id, film_id) VALUES (196, 473); INSERT INTO actors_films (actor_id, film_id) VALUES (196, 484); INSERT INTO actors_films (actor_id, film_id) VALUES (196, 515); INSERT INTO actors_films (actor_id, film_id) VALUES (196, 524); INSERT INTO actors_films (actor_id, film_id) VALUES (196, 541); INSERT INTO actors_films (actor_id, film_id) VALUES (196, 560); INSERT INTO actors_films (actor_id, film_id) VALUES (196, 575); INSERT INTO actors_films (actor_id, film_id) VALUES (196, 576); INSERT INTO actors_films (actor_id, film_id) VALUES (196, 587); INSERT INTO actors_films (actor_id, film_id) VALUES (196, 615); INSERT INTO actors_films (actor_id, film_id) VALUES (196, 635); INSERT INTO actors_films (actor_id, film_id) VALUES (196, 684); INSERT INTO actors_films (actor_id, film_id) VALUES (196, 795); INSERT INTO actors_films (actor_id, film_id) VALUES (196, 815); INSERT INTO actors_films (actor_id, film_id) VALUES (196, 833); INSERT INTO actors_films (actor_id, film_id) VALUES (196, 837); INSERT INTO actors_films (actor_id, film_id) VALUES (196, 906); INSERT INTO actors_films (actor_id, film_id) VALUES (196, 908); INSERT INTO actors_films (actor_id, film_id) VALUES (196, 919); INSERT INTO actors_films (actor_id, film_id) VALUES (196, 939); INSERT INTO actors_films (actor_id, film_id) VALUES (196, 972); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 6); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 29); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 63); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 123); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 129); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 147); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 164); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 189); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 243); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 249); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 258); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 364); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 369); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 370); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 418); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 522); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 531); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 554); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 598); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 628); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 691); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 724); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 746); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 752); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 758); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 769); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 815); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 916); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 950); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 967); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 974); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 979); INSERT INTO actors_films (actor_id, film_id) VALUES (197, 995); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 1); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 109); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 125); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 186); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 262); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 264); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 303); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 309); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 311); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 329); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 347); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 379); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 395); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 406); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 450); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 464); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 482); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 499); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 536); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 541); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 545); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 555); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 568); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 570); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 588); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 597); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 628); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 745); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 758); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 796); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 806); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 817); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 843); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 858); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 871); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 886); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 892); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 924); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 952); INSERT INTO actors_films (actor_id, film_id) VALUES (198, 997); INSERT INTO actors_films (actor_id, film_id) VALUES (199, 67); INSERT INTO actors_films (actor_id, film_id) VALUES (199, 84); INSERT INTO actors_films (actor_id, film_id) VALUES (199, 145); INSERT INTO actors_films (actor_id, film_id) VALUES (199, 159); INSERT INTO actors_films (actor_id, film_id) VALUES (199, 216); INSERT INTO actors_films (actor_id, film_id) VALUES (199, 432); INSERT INTO actors_films (actor_id, film_id) VALUES (199, 541); INSERT INTO actors_films (actor_id, film_id) VALUES (199, 604); INSERT INTO actors_films (actor_id, film_id) VALUES (199, 640); INSERT INTO actors_films (actor_id, film_id) VALUES (199, 689); INSERT INTO actors_films (actor_id, film_id) VALUES (199, 730); INSERT INTO actors_films (actor_id, film_id) VALUES (199, 784); INSERT INTO actors_films (actor_id, film_id) VALUES (199, 785); INSERT INTO actors_films (actor_id, film_id) VALUES (199, 886); INSERT INTO actors_films (actor_id, film_id) VALUES (199, 953); INSERT INTO actors_films (actor_id, film_id) VALUES (200, 5); INSERT INTO actors_films (actor_id, film_id) VALUES (200, 49); INSERT INTO actors_films (actor_id, film_id) VALUES (200, 80); INSERT INTO actors_films (actor_id, film_id) VALUES (200, 116); INSERT INTO actors_films (actor_id, film_id) VALUES (200, 121); INSERT INTO actors_films (actor_id, film_id) VALUES (200, 149); INSERT INTO actors_films (actor_id, film_id) VALUES (200, 346); INSERT INTO actors_films (actor_id, film_id) VALUES (200, 419); INSERT INTO actors_films (actor_id, film_id) VALUES (200, 462); INSERT INTO actors_films (actor_id, film_id) VALUES (200, 465); INSERT INTO actors_films (actor_id, film_id) VALUES (200, 474); INSERT INTO actors_films (actor_id, film_id) VALUES (200, 537); INSERT INTO actors_films (actor_id, film_id) VALUES (200, 538); INSERT INTO actors_films (actor_id, film_id) VALUES (200, 544); INSERT INTO actors_films (actor_id, film_id) VALUES (200, 714); INSERT INTO actors_films (actor_id, film_id) VALUES (200, 879); INSERT INTO actors_films (actor_id, film_id) VALUES (200, 912); INSERT INTO actors_films (actor_id, film_id) VALUES (200, 945); INSERT INTO actors_films (actor_id, film_id) VALUES (200, 958); INSERT INTO actors_films (actor_id, film_id) VALUES (200, 993); -- -- TOC entry 1660 (class 0 OID 60342) -- Dependencies: 1213 -- Data for Name: addresses; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (1, '47 MySakila Drive', NULL, 'Alberta', 300, '', ''); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (2, '28 MySQL Boulevard', NULL, 'QLD', 576, '', ''); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (3, '23 Workhaven Lane', NULL, 'Alberta', 300, '', '14033335568'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (4, '1411 Lillydale Drive', NULL, 'QLD', 576, '', '6172235589'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (5, '1913 Hanoi Way', '', 'Nagasaki', 463, '35200', '28303384290'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (6, '1121 Loja Avenue', '', 'California', 449, '17886', '838635286649'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (7, '692 Joliet Street', '', 'Attika', 38, '83579', '448477190408'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (8, '1566 Inegl Manor', '', 'Mandalay', 349, '53561', '705814003527'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (9, '53 Idfu Parkway', '', 'Nantou', 361, '42399', '10655648674'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (10, '1795 Santiago de Compostela Way', '', 'Texas', 295, '18743', '860452626434'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (11, '900 Santiago de Compostela Parkway', '', 'Central Serbia', 280, '93896', '716571220373'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (12, '478 Joliet Way', '', 'Hamilton', 200, '77948', '657282285970'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (13, '613 Korolev Drive', '', 'Masqat', 329, '45844', '380657522649'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (14, '1531 Sal Drive', '', 'Esfahan', 162, '53628', '648856936185'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (15, '1542 Tarlac Parkway', '', 'Kanagawa', 440, '1027', '635297277345'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (16, '808 Bhopal Manor', '', 'Haryana', 582, '10672', '465887807014'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (17, '270 Amroha Parkway', '', 'Osmaniye', 384, '29610', '695479687538'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (18, '770 Bydgoszcz Avenue', '', 'California', 120, '16266', '517338314235'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (19, '419 Iligan Lane', '', 'Madhya Pradesh', 76, '72878', '990911107354'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (20, '360 Toulouse Parkway', '', 'England', 495, '54308', '949312333307'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (21, '270 Toulon Boulevard', '', 'Kalmykia', 156, '81766', '407752414682'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (22, '320 Brest Avenue', '', 'Kaduna', 252, '43331', '747791594069'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (23, '1417 Lancaster Avenue', '', 'Northern Cape', 267, '72192', '272572357893'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (24, '1688 Okara Way', '', 'Nothwest Border Prov', 327, '21954', '144453869132'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (25, '262 A Corua (La Corua) Parkway', '', 'Dhaka', 525, '34418', '892775750063'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (26, '28 Charlotte Amalie Street', '', 'Rabat-Sal-Zammour-Z', 443, '37551', '161968374323'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (27, '1780 Hino Boulevard', '', 'Liepaja', 303, '7716', '902731229323'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (28, '96 Tafuna Way', '', 'Crdoba', 128, '99865', '934730187245'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (29, '934 San Felipe de Puerto Plata Street', '', 'Sind', 472, '99780', '196495945706'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (30, '18 Duisburg Boulevard', '', '', 121, '58327', '998009777982'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (31, '217 Botshabelo Place', '', 'Southern Mindanao', 138, '49521', '665356572025'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (32, '1425 Shikarpur Manor', '', 'Bihar', 346, '65599', '678220867005'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (33, '786 Aurora Avenue', '', 'Yamaguchi', 474, '65750', '18461860151'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (34, '1668 Anpolis Street', '', 'Taipei', 316, '50199', '525255540978'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (35, '33 Gorontalo Way', '', 'West Bengali', 257, '30348', '745994947458'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (36, '176 Mandaluyong Place', '', 'Uttar Pradesh', 239, '65213', '627705991774'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (37, '127 Purnea (Purnia) Manor', '', 'Piemonte', 17, '79388', '911872220378'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (38, '61 Tama Street', '', 'Okayama', 284, '94065', '708403338270'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (39, '391 Callao Drive', '', 'Midi-Pyrnes', 544, '34021', '440512153169'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (40, '334 Munger (Monghyr) Lane', '', 'Markazi', 31, '38145', '481183273622'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (41, '1440 Fukuyama Loop', '', 'Henan', 362, '47929', '912257250465'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (42, '269 Cam Ranh Parkway', '', 'Chisinau', 115, '34689', '489783829737'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (43, '306 Antofagasta Place', '', 'Esprito Santo', 569, '3989', '378318851631'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (44, '671 Graz Street', '', 'Oriental', 353, '94399', '680768868518'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (45, '42 Brindisi Place', '', 'Yerevan', 586, '16744', '42384721397'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (46, '1632 Bislig Avenue', '', 'Nonthaburi', 394, '61117', '471675840679'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (47, '1447 Imus Way', '', 'Tahiti', 167, '48942', '539758313890'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (48, '1998 Halifax Drive', '', 'Lipetsk', 308, '76022', '177727722820'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (49, '1718 Valencia Street', '', 'Antofagasta', 27, '37359', '675292816413'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (50, '46 Pjatigorsk Lane', '', 'Moscow (City)', 343, '23616', '262076994845'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (51, '686 Garland Manor', '', 'Cear', 247, '52535', '69493378813'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (52, '909 Garland Manor', '', 'Tatarstan', 367, '69367', '705800322606'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (53, '725 Isesaki Place', '', 'Mekka', 237, '74428', '876295323994'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (54, '115 Hidalgo Parkway', '', 'Khartum', 379, '80168', '307703950263'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (55, '1135 Izumisano Parkway', '', 'California', 171, '48150', '171822533480'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (56, '939 Probolinggo Loop', '', 'Galicia', 1, '4166', '680428310138'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (57, '17 Kabul Boulevard', '', 'Chiba', 355, '38594', '697760867968'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (58, '1964 Allappuzha (Alleppey) Street', '', 'Yamaguchi', 227, '48980', '920811325222'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (59, '1697 Kowloon and New Kowloon Loop', '', 'Moskova', 49, '57807', '499352017190'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (60, '1668 Saint Louis Place', '', 'Tahiti', 397, '39072', '347487831378'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (61, '943 Tokat Street', '', 'Vaduz', 560, '45428', '889318963672'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (62, '1114 Liepaja Street', '', 'Sarawak', 282, '69226', '212869228936'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (63, '1213 Ranchi Parkway', '', 'Karnataka', 350, '94352', '800024380485'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (64, '81 Hodeida Way', '', 'Rajasthan', 231, '55561', '250767749542'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (65, '915 Ponce Place', '', 'Basel-Stadt', 56, '83980', '1395251317'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (66, '1717 Guadalajara Lane', '', 'Missouri', 441, '85505', '914090181665'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (67, '1214 Hanoi Way', '', 'Nebraska', 306, '67055', '491001136577'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (68, '1966 Amroha Avenue', '', 'Sichuan', 139, '70385', '333489324603'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (69, '698 Otsu Street', '', 'Cayenne', 105, '71110', '409983924481'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (70, '1150 Kimchon Manor', '', 'Skne ln', 321, '96109', '663449333709'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (71, '1586 Guaruj Place', '', 'Hunan', 579, '5135', '947233365992'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (72, '57 Arlington Manor', '', 'Madhya Pradesh', 475, '48960', '990214419142'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (73, '1031 Daugavpils Parkway', '', 'Bchar', 63, '59025', '107137400143'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (74, '1124 Buenaventura Drive', '', 'Mekka', 13, '6856', '407733804223'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (75, '492 Cam Ranh Street', '', 'Eastern Visayas', 61, '50805', '565018274456'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (76, '89 Allappuzha (Alleppey) Manor', '', 'National Capital Reg', 517, '75444', '255800440636'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (77, '1947 Poos de Caldas Boulevard', '', 'Chiayi', 114, '60951', '427454485876'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (78, '1206 Dos Quebradas Place', '', 'So Paulo', 431, '20207', '241832790687'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (79, '1551 Rampur Lane', '', 'Changhwa', 108, '72394', '251164340471'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (80, '602 Paarl Street', '', 'Pavlodar', 402, '98889', '896314772871'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (81, '1692 Ede Loop', '', 'So Paulo', 30, '9223', '918711376618'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (82, '936 Salzburg Lane', '', 'Uttar Pradesh', 425, '96709', '875756771675'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (83, '586 Tete Way', '', 'Kanagawa', 256, '1079', '18581624103'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (84, '1888 Kabul Drive', '', 'Oyo & Osun', 217, '20936', '701457319790'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (85, '320 Baiyin Parkway', '', 'Mahajanga', 319, '37307', '223664661973'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (86, '927 Baha Blanca Parkway', '', 'Krim', 479, '9495', '821972242086'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (87, '929 Tallahassee Loop', '', 'Gauteng', 497, '74671', '800716535041'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (88, '125 Citt del Vaticano Boulevard', '', 'Puebla', 40, '67912', '48417642933'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (89, '1557 Ktahya Boulevard', '', 'England', 88, '88002', '720998247660'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (90, '870 Ashqelon Loop', '', 'Songkhla', 489, '84931', '135117278909'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (91, '1740 Portoviejo Avenue', '', 'Sucre', 480, '29932', '198123170793'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (92, '1942 Ciparay Parkway', '', 'Cheju', 113, '82624', '978987363654'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (93, '1926 El Alto Avenue', '', 'Buenos Aires', 289, '75543', '846225459260'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (94, '1952 Chatsworth Drive', '', 'Guangdong', 332, '25958', '991562402283'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (95, '1370 Le Mans Avenue', '', 'Brunei and Muara', 53, '52163', '345679835036'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (96, '984 Effon-Alaiye Avenue', '', 'Gois', 183, '17119', '132986892228'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (97, '832 Nakhon Sawan Manor', '', 'Inner Mongolia', 592, '49021', '275595571388'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (98, '152 Kitwe Parkway', '', 'Caraga', 82, '53182', '835433605312'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (99, '1697 Tanauan Lane', '', 'Punjab', 399, '22870', '4764773857'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (100, '1308 Arecibo Way', '', 'Georgia', 41, '30695', '6171054059'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (101, '1599 Plock Drive', '', 'Tete', 534, '71986', '817248913162'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (102, '669 Firozabad Loop', '', 'Abu Dhabi', 12, '92265', '412903167998'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (103, '588 Vila Velha Manor', '', 'Kyongsangbuk', 268, '51540', '333339908719'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (104, '1913 Kamakura Place', '', 'Lipetsk', 238, '97287', '942570536750'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (105, '733 Mandaluyong Place', '', 'Asir', 2, '77459', '196568435814'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (106, '659 Vaduz Drive', '', 'Ha Darom', 34, '49708', '709935135487'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (107, '1177 Jelets Way', '', 'Kwara & Kogi', 220, '3305', '484292626944'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (108, '1386 Yangor Avenue', '', 'Provence-Alpes-Cte', 543, '80720', '449216226468'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (109, '454 Nakhon Sawan Boulevard', '', 'Funafuti', 173, '76383', '963887147572'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (110, '1867 San Juan Bautista Tuxtepec Avenue', '', 'Ivanovo', 225, '78311', '547003310357'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (111, '1532 Dzerzinsk Way', '', 'Buenos Aires', 334, '9599', '330838016880'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (112, '1002 Ahmadnagar Manor', '', 'Mxico', 213, '93026', '371490777743'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (113, '682 Junan Way', '', 'North West', 273, '30418', '622255216127'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (114, '804 Elista Drive', '', 'Hubei', 159, '61069', '379804592943'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (115, '1378 Alvorada Avenue', '', 'Distrito Federal', 102, '75834', '272234298332'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (116, '793 Cam Ranh Avenue', '', 'California', 292, '87057', '824370924746'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (117, '1079 Tel Aviv-Jaffa Boulevard', '', 'Sucre', 132, '10885', '358178933857'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (118, '442 Rae Bareli Place', '', 'Nordrhein-Westfalen', 148, '24321', '886636413768'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (119, '1107 Nakhon Sawan Avenue', '', 'Mxico', 365, '75149', '867546627903'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (120, '544 Malm Parkway', '', 'Central Java', 403, '63502', '386759646229'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (121, '1967 Sincelejo Place', '', 'Gujarat', 176, '73644', '577812616052'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (122, '333 Goinia Way', '', 'Texas', 185, '78625', '909029256431'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (123, '1987 Coacalco de Berriozbal Loop', '', 'al-Qalyubiya', 476, '96065', '787654415858'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (124, '241 Mosul Lane', '', 'Risaralda', 147, '76157', '765345144779'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (125, '211 Chiayi Drive', '', 'Uttar Pradesh', 164, '58186', '665993880048'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (126, '1175 Tanauan Way', '', 'Lima', 305, '64615', '937222955822'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (127, '117 Boa Vista Way', '', 'Uttar Pradesh', 566, '6804', '677976133614'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (128, '848 Tafuna Manor', '', 'Ktahya', 281, '45142', '614935229095'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (129, '569 Baicheng Lane', '', 'Gauteng', 85, '60304', '490211944645'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (130, '1666 Qomsheh Drive', '', 'So Paulo', 410, '66255', '582835362905'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (131, '801 Hagonoy Drive', '', 'Smolensk', 484, '8439', '237426099212'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (132, '1050 Garden Grove Avenue', '', 'Slaskie', 236, '4999', '973047364353'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (133, '1854 Tieli Street', '', 'Shandong', 302, '15819', '509492324775'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (134, '758 Junan Lane', '', 'Gois', 190, '82639', '935448624185'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (135, '1752 So Leopoldo Parkway', '', 'Taka-Karpatia', 345, '14014', '252265130067'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (136, '898 Belm Manor', '', 'Free State', 87, '49757', '707169393853'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (137, '261 Saint Louis Way', '', 'Coahuila de Zaragoza', 541, '83401', '321944036800'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (138, '765 Southampton Drive', '', 'al-Qalyubiya', 421, '4285', '23712411567'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (139, '943 Johannesburg Avenue', '', 'Maharashtra', 417, '5892', '90921003005'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (140, '788 Atinsk Street', '', 'Karnataka', 211, '81691', '146497509724'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (141, '1749 Daxian Place', '', 'Gelderland', 29, '11044', '963369996279'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (142, '1587 Sullana Lane', '', 'Inner Mongolia', 207, '85769', '468060467018'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (143, '1029 Dzerzinsk Manor', '', 'Ynlin', 542, '57519', '33173584456'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (144, '1666 Beni-Mellal Place', '', 'Tennessee', 123, '13377', '9099941466'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (145, '928 Jaffna Loop', '', 'Hiroshima', 172, '93762', '581852137991'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (146, '483 Ljubertsy Parkway', '', 'Scotland', 149, '60562', '581174211853'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (147, '374 Bat Yam Boulevard', '', 'Kilis', 266, '97700', '923261616249'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (148, '1027 Songkhla Manor', '', 'Minsk', 340, '30861', '563660187896'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (149, '999 Sanaa Loop', '', 'Gauteng', 491, '3439', '918032330119'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (150, '879 Newcastle Way', '', 'Michigan', 499, '90732', '206841104594'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (151, '1337 Lincoln Parkway', '', 'Saitama', 555, '99457', '597815221267'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (152, '1952 Pune Lane', '', 'Saint-Denis', 442, '92150', '354615066969'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (153, '782 Mosul Street', '', 'Massachusetts', 94, '25545', '885899703621'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (154, '781 Shimonoseki Drive', '', 'Michoacn de Ocampo', 202, '95444', '632316273199'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (155, '1560 Jelets Boulevard', '', 'Shandong', 291, '77777', '189446090264'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (156, '1963 Moscow Place', '', 'Assam', 354, '64863', '761379480249'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (157, '456 Escobar Way', '', 'Jakarta Raya', 232, '36061', '719202533520'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (158, '798 Cianjur Avenue', '', 'Shanxi', 590, '76990', '499408708580'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (159, '185 Novi Sad Place', '', 'Bern', 72, '41778', '904253967161'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (160, '1367 Yantai Manor', '', 'Ondo & Ekiti', 381, '21294', '889538496300'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (161, '1386 Nakhon Sawan Boulevard', '', 'Pyongyang-si', 420, '53502', '368899174225'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (162, '369 Papeete Way', '', 'North Carolina', 187, '66639', '170117068815'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (163, '1440 Compton Place', '', 'North Austria', 307, '81037', '931059836497'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (164, '1623 Baha Blanca Manor', '', 'Moskova', 310, '81511', '149981248346'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (165, '97 Shimoga Avenue', '', 'Tel Aviv', 533, '44660', '177167004331'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (166, '1740 Le Mans Loop', '', 'Pays de la Loire', 297, '22853', '168476538960'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (167, '1287 Xiangfan Boulevard', '', 'Gifu', 253, '57844', '819416131190'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (168, '842 Salzburg Lane', '', 'Adana', 529, '3313', '697151428760'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (169, '154 Tallahassee Loop', '', 'Xinxiang', 199, '62250', '935508855935'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (170, '710 San Felipe del Progreso Avenue', '', 'Lilongwe', 304, '76901', '843801144113'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (171, '1540 Wroclaw Drive', '', 'Maharashtra', 107, '62686', '182363341674'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (172, '475 Atinsk Way', '', 'Gansu', 240, '59571', '201705577290'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (173, '1294 Firozabad Drive', '', 'Jiangxi', 407, '70618', '161801569569'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (174, '1877 Ezhou Lane', '', 'Rajasthan', 550, '63337', '264541743403'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (175, '316 Uruapan Street', '', 'Perak', 223, '58194', '275788967899'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (176, '29 Pyongyang Loop', '', 'Batman', 58, '47753', '734780743462'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (177, '1010 Klerksdorp Way', '', 'Steiermark', 186, '6802', '493008546874'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (178, '1848 Salala Boulevard', '', 'Miranda', 373, '25220', '48265851133'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (179, '431 Xiangtan Avenue', '', 'Kerala', 18, '4854', '230250973122'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (180, '757 Rustenburg Avenue', '', 'Skikda', 483, '89668', '506134035434'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (181, '146 Johannesburg Way', '', 'Tamaulipas', 330, '54132', '953689007081'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (182, '1891 Rizhao Boulevard', '', 'So Paulo', 456, '47288', '391065549876'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (183, '1089 Iwatsuki Avenue', '', 'Kirov', 270, '35109', '866092335135'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (184, '1410 Benin City Parkway', '', 'Risaralda', 405, '29747', '104150372603'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (185, '682 Garden Grove Place', '', 'Tennessee', 333, '67497', '72136330362'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (186, '533 al-Ayn Boulevard', '', 'California', 126, '8862', '662227486184'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (187, '1839 Szkesfehrvr Parkway', '', 'Gois', 317, '55709', '947468818183'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (188, '741 Ambattur Manor', '', 'Noord-Brabant', 438, '43310', '302590383819'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (189, '927 Barcelona Street', '', 'Chaharmahal va Bakht', 467, '65121', '951486492670'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (190, '435 0 Way', '', 'West Bengali', 195, '74750', '760171523969'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (191, '140 Chiayi Parkway', '', 'Sumy', 506, '38982', '855863906434'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (192, '1166 Changhwa Street', '', 'Caraga', 62, '58852', '650752094490'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (193, '891 Novi Sad Manor', '', 'Ontario', 383, '5379', '247646995453'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (194, '605 Rio Claro Parkway', '', 'Tabora', 513, '49348', '352469351088'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (195, '1077 San Felipe de Puerto Plata Place', '', 'Rostov-na-Donu', 369, '65387', '812824036424'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (196, '9 San Miguel de Tucumn Manor', '', 'Uttar Pradesh', 169, '90845', '956188728558'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (197, '447 Surakarta Loop', '', 'Nyanza', 271, '10428', '940830176580'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (198, '345 Oshawa Boulevard', '', 'Tokyo-to', 204, '32114', '104491201771'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (199, '1792 Valle de la Pascua Place', '', 'Nordrhein-Westfalen', 477, '15540', '419419591240'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (200, '1074 Binzhou Manor', '', 'Baden-Wrttemberg', 325, '36490', '331132568928'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (201, '817 Bradford Loop', '', 'Jiangsu', 109, '89459', '264286442804'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (202, '955 Bamenda Way', '', 'Ondo & Ekiti', 218, '1545', '768481779568'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (203, '1149 A Corua (La Corua) Boulevard', '', 'Haiphong', 194, '95824', '470884141195'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (204, '387 Mwene-Ditu Drive', '', 'Ahal', 35, '8073', '764477681869'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (205, '68 Molodetno Manor', '', 'Nordrhein-Westfalen', 575, '4662', '146640639760'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (206, '642 Nador Drive', '', 'Maharashtra', 77, '3924', '369050085652'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (207, '1688 Nador Lane', '', 'Sulawesi Utara', 184, '61613', '652218196731'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (208, '1215 Pyongyang Parkway', '', 'Usak', 557, '25238', '646237101779'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (209, '1679 Antofagasta Street', '', 'Alto Paran', 122, '86599', '905903574913'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (210, '1304 s-Hertogenbosch Way', '', 'Santa Catarina', 83, '10925', '90336226227'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (211, '850 Salala Loop', '', 'Kitaa', 371, '10800', '403404780639'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (212, '624 Oshawa Boulevard', '', 'West Bengali', 51, '89959', '49677664184'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (213, '43 Dadu Avenue', '', 'Rajasthan', 74, '4855', '95666951770'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (214, '751 Lima Loop', '', 'Aden', 7, '99405', '756460337785'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (215, '1333 Haldia Street', '', 'Jilin', 174, '82161', '408304391718'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (216, '660 Jedda Boulevard', '', 'Washington', 65, '25053', '168758068397'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (217, '1001 Miyakonojo Lane', '', 'Taizz', 518, '67924', '584316724815'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (218, '226 Brest Manor', '', 'California', 508, '2299', '785881412500'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (219, '1229 Valencia Parkway', '', 'Haskovo', 498, '99124', '352679173732'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (220, '1201 Qomsheh Manor', '', 'Gois', 28, '21464', '873492228462'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (221, '866 Shivapuri Manor', '', 'Uttar Pradesh', 448, '22474', '778502731092'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (222, '1168 Najafabad Parkway', '', 'Kabol', 251, '40301', '886649065861'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (223, '1244 Allappuzha (Alleppey) Place', '', 'Buenos Aires', 567, '20657', '991802825778'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (224, '1842 Luzinia Boulevard', '', 'Zanzibar West', 593, '94420', '706878974831'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (225, '1926 Gingoog Street', '', 'Sisilia', 511, '22824', '469738825391'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (226, '810 Palghat (Palakkad) Boulevard', '', 'Jaroslavl', 235, '73431', '516331171356'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (227, '1820 Maring Parkway', '', 'Punjab', 324, '88307', '99760893676'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (228, '60 Poos de Caldas Street', '', 'Rajasthan', 243, '82338', '963063788669'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (229, '1014 Loja Manor', '', 'Tamil Nadu', 22, '66851', '460795526514'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (230, '201 Effon-Alaiye Way', '', 'Asuncin', 37, '64344', '684192903087'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (231, '430 Alessandria Loop', '', 'Saarland', 439, '47446', '669828224459'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (232, '754 Valencia Place', '', 'Phnom Penh', 406, '87911', '594319417514'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (233, '356 Olomouc Manor', '', 'Gois', 26, '93323', '22326410776'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (234, '1256 Bislig Boulevard', '', 'Botosani', 86, '50598', '479007229460'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (235, '954 Kimchon Place', '', 'West Bengali', 559, '42420', '541327526474'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (236, '885 Yingkou Manor', '', 'Kaduna', 596, '31390', '588964509072'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (237, '1736 Cavite Place', '', 'Qina', 216, '98775', '431770603551'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (238, '346 Skikda Parkway', '', 'Hawalli', 233, '90628', '630424482919'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (239, '98 Stara Zagora Boulevard', '', 'Valle', 96, '76448', '610173756082'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (240, '1479 Rustenburg Boulevard', '', 'Southern Tagalog', 527, '18727', '727785483194'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (241, '647 A Corua (La Corua) Street', '', 'Chollanam', 357, '36971', '792557457753'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (242, '1964 Gijn Manor', '', 'Karnataka', 473, '14408', '918119601885'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (243, '47 Syktyvkar Lane', '', 'West Java', 118, '22236', '63937119031'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (244, '1148 Saarbrcken Parkway', '', 'Fukushima', 226, '1921', '137773001988'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (245, '1103 Bilbays Parkway', '', 'Hubei', 578, '87660', '279979529227'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (246, '1246 Boksburg Parkway', '', 'Hebei', 422, '28349', '890283544295'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (247, '1483 Pathankot Street', '', 'Tucumn', 454, '37288', '686015532180'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (248, '582 Papeete Loop', '', 'Central Visayas', 294, '27722', '569868543137'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (249, '300 Junan Street', '', 'Kyonggi', 553, '81314', '890289150158'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (250, '829 Grand Prairie Way', '', 'Paran', 328, '6461', '741070712873'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (251, '1473 Changhwa Parkway', '', 'Mxico', 124, '75933', '266798132374'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (252, '1309 Weifang Street', '', 'Florida', 520, '57338', '435785045362'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (253, '1760 Oshawa Manor', '', 'Tianjin', 535, '38140', '56257502250'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (254, '786 Stara Zagora Way', '', 'Oyo & Osun', 390, '98332', '716256596301'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (255, '1966 Tonghae Street', '', 'Anhalt Sachsen', 198, '36481', '567359279425'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (256, '1497 Yuzhou Drive', '', 'England', 312, '3433', '246810237916'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (258, '752 Ondo Loop', '', 'Miyazaki', 338, '32474', '134673576619'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (259, '1338 Zalantun Lane', '', 'Minas Gerais', 413, '45403', '840522972766'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (260, '127 Iwakuni Boulevard', '', 'Central Luzon', 192, '20777', '987442542471'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (261, '51 Laredo Avenue', '', 'Sagaing', 342, '68146', '884536620568'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (262, '771 Yaound Manor', '', 'Sofala', 64, '86768', '245477603573'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (263, '532 Toulon Street', '', 'Santiago', 460, '69517', '46871694740'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (264, '1027 Banjul Place', '', 'West Bengali', 197, '50390', '538241037443'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (265, '1158 Mandi Bahauddin Parkway', '', 'Shanxi', 136, '98484', '276555730211'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (266, '862 Xintai Lane', '', 'Cagayan Valley', 548, '30065', '265153400632'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (267, '816 Cayenne Parkway', '', 'Manab', 414, '93629', '282874611748'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (268, '1831 Nam Dinh Loop', '', 'National Capital Reg', 323, '51990', '322888976727'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (269, '446 Kirovo-Tepetsk Lane', '', 'Osaka', 203, '19428', '303967439816'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (270, '682 Halisahar Place', '', 'Severn Morava', 378, '20536', '475553436330'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (271, '1587 Loja Manor', '', 'Salzburg', 447, '5410', '621625204422'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (272, '1762 Paarl Parkway', '', 'Hunan', 298, '53928', '192459639410'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (273, '1519 Ilorin Place', '', 'Kerala', 395, '49298', '357445645426'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (274, '920 Kumbakonam Loop', '', 'California', 446, '75090', '685010736240'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (275, '906 Goinia Way', '', 'Wielkopolskie', 255, '83565', '701767622697'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (276, '1675 Xiangfan Manor', '', 'Tamil Nadu', 283, '11763', '271149517630'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (277, '85 San Felipe de Puerto Plata Drive', '', 'Shandong', 584, '46063', '170739645687'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (278, '144 South Hill Loop', '', 'Guanajuato', 445, '2012', '45387294817'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (279, '1884 Shikarpur Avenue', '', 'Haryana', 263, '85548', '959949395183'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (280, '1980 Kamjanets-Podilskyi Street', '', 'Illinois', 404, '89502', '874337098891'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (281, '1944 Bamenda Way', '', 'Michigan', 573, '24645', '75975221996'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (282, '556 Baybay Manor', '', 'Oyo & Osun', 374, '55802', '363982224739'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (283, '457 Tongliao Loop', '', 'Bursa', 222, '56254', '880756161823'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (284, '600 Bradford Street', '', 'East Azerbaidzan', 514, '96204', '117592274996'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (285, '1006 Santa Brbara dOeste Manor', '', 'Ondo & Ekiti', 389, '36229', '85059738746'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (286, '1308 Sumy Loop', '', 'Fujian', 175, '30657', '583021225407'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (287, '1405 Chisinau Place', '', 'Ponce', 411, '8160', '62781725285'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (288, '226 Halifax Street', '', 'Xinxiang', 277, '58492', '790651020929'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (289, '1279 Udine Parkway', '', 'Edo & Delta', 69, '75860', '195003555232'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (290, '1336 Benin City Drive', '', 'Shiga', 386, '46044', '341242939532'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (291, '1155 Liaocheng Place', '', 'Oyo & Osun', 152, '22650', '558236142492'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (292, '1993 Tabuk Lane', '', 'Tamil Nadu', 522, '64221', '648482415405'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (293, '86 Higashiosaka Lane', '', 'Guanajuato', 563, '33768', '957128697225'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (294, '1912 Allende Manor', '', 'Kowloon and New Kowl', 279, '58124', '172262454487'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (295, '544 Tarsus Boulevard', '', 'Gurico', 562, '53145', '892523334'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (296, '1936 Cuman Avenue', '', 'Virginia', 433, '61195', '976798660411'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (297, '1192 Tongliao Street', '', 'Sharja', 470, '19065', '350970907017'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (298, '44 Najafabad Way', '', 'Baskimaa', 146, '61391', '96604821070'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (299, '32 Pudukkottai Lane', '', 'Ohio', 140, '38834', '967274728547'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (300, '661 Chisinau Lane', '', 'Pietari', 274, '8856', '816436065431'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (301, '951 Stara Zagora Manor', '', 'Punjab', 400, '98573', '429925609431'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (302, '922 Vila Velha Loop', '', 'Maharashtra', 9, '4085', '510737228015'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (303, '898 Jining Lane', '', 'Pohjois-Pohjanmaa', 387, '40070', '161643343536'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (304, '1635 Kuwana Boulevard', '', 'Hiroshima', 205, '52137', '710603868323'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (305, '41 El Alto Parkway', '', 'Maharashtra', 398, '56883', '51917807050'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (306, '1883 Maikop Lane', '', 'Kaliningrad', 254, '68469', '96110042435'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (307, '1908 Gaziantep Place', '', 'Liaoning', 536, '58979', '108053751300'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (308, '687 Alessandria Parkway', '', 'Sanaa', 455, '57587', '407218522294'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (309, '827 Yuncheng Drive', '', 'Callao', 99, '79047', '504434452842'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (310, '913 Coacalco de Berriozbal Loop', '', 'Texas', 33, '42141', '262088367001'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (311, '715 So Bernardo do Campo Lane', '', 'Kedah', 507, '84804', '181179321332'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (312, '1354 Siegen Street', '', 'Rio de Janeiro', 25, '80184', '573441801529'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (313, '1191 Sungai Petani Boulevard', '', 'Missouri', 262, '9668', '983259819766'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (314, '1224 Huejutla de Reyes Boulevard', '', 'Lombardia', 91, '70923', '806016930576'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (315, '543 Bergamo Avenue', '', 'Minas Gerais', 215, '59686', '103602195112'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (316, '746 Joliet Lane', '', 'Kursk', 286, '94878', '688485191923'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (317, '780 Kimberley Way', '', 'Tabuk', 515, '17032', '824396883951'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (318, '1774 Yaound Place', '', 'Hubei', 166, '91400', '613124286867'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (319, '1957 Yantai Lane', '', 'So Paulo', 490, '59255', '704948322302'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (320, '1542 Lubumbashi Boulevard', '', 'Tel Aviv', 57, '62472', '508800331065'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (321, '651 Pathankot Loop', '', 'Maharashtra', 336, '59811', '139378397418'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (322, '1359 Zhoushan Parkway', '', 'Streymoyar', 545, '29763', '46568045367'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (323, '1769 Iwaki Lane', '', 'Kujawsko-Pomorskie', 97, '25787', '556100547674'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (324, '1145 Vilnius Manor', '', 'Mxico', 451, '73170', '674805712553'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (325, '1892 Nabereznyje Telny Lane', '', 'Tutuila', 516, '28396', '478229987054'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (326, '470 Boksburg Street', '', 'Central', 81, '97960', '908029859266'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (327, '1427 A Corua (La Corua) Place', '', 'Buenos Aires', 45, '85799', '972574862516'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (328, '479 San Felipe del Progreso Avenue', '', 'Morelos', 130, '54949', '869051782691'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (329, '867 Benin City Avenue', '', 'Henan', 591, '78543', '168884817145'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (330, '981 Kumbakonam Place', '', 'Distrito Federal', 89, '87611', '829116184079'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (331, '1016 Iwakuni Street', '', 'St George', 269, '49833', '961370847344'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (332, '663 Baha Blanca Parkway', '', 'Adana', 5, '33463', '834418779292'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (333, '1860 Taguig Loop', '', 'West Java', 119, '59550', '38158430589'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (334, '1816 Bydgoszcz Loop', '', 'Dhaka', 234, '64308', '965273813662'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (335, '587 Benguela Manor', '', 'Illinois', 42, '91590', '165450987037'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (336, '430 Kumbakonam Drive', '', 'Santa F', 457, '28814', '105470691550'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (337, '1838 Tabriz Lane', '', 'Dhaka', 143, '1195', '38988715447'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (338, '431 Szkesfehrvr Avenue', '', 'Baki', 48, '57828', '119501405123'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (339, '503 Sogamoso Loop', '', 'Sumqayit', 505, '49812', '834626715837'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (340, '507 Smolensk Loop', '', 'Sousse', 492, '22971', '80303246192'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (341, '1920 Weifang Avenue', '', 'Uttar Pradesh', 427, '15643', '869507847714'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (342, '124 al-Manama Way', '', 'Hiroshima', 382, '52368', '647899404952'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (343, '1443 Mardan Street', '', 'Western Cape', 392, '31483', '231383037471'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (344, '1909 Benguela Lane', '', 'Henan', 581, '19913', '624138001031'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (345, '68 Ponce Parkway', '', 'Hanoi', 201, '85926', '870635127812'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (346, '1217 Konotop Avenue', '', 'Gelderland', 151, '504', '718917251754'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (347, '1293 Nam Dinh Way', '', 'Roraima', 84, '71583', '697656479977'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (348, '785 Vaduz Street', '', 'Baja California', 335, '36170', '895616862749'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (349, '1516 Escobar Drive', '', 'Tongatapu', 370, '46069', '64536069371'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (350, '1628 Nagareyama Lane', '', 'Central', 453, '60079', '20064292617'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (351, '1157 Nyeri Loop', '', 'Adygea', 320, '56380', '262744791493'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (352, '1673 Tangail Drive', '', 'Daugavpils', 137, '26857', '627924259271'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (353, '381 Kabul Way', '', 'Taipei', 209, '87272', '55477302294'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (354, '953 Hodeida Street', '', 'Southern Tagalog', 221, '18841', '53912826864'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (355, '469 Nakhon Sawan Street', '', 'Tuvassia', 531, '58866', '689199636560'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (356, '1378 Beira Loop', '', 'Krasnojarsk', 597, '40792', '840957664136'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (357, '1641 Changhwa Place', '', 'Nord-Ouest', 52, '37636', '256546485220'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (358, '1698 Southport Loop', '', 'Hidalgo', 393, '49009', '754358349853'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (359, '519 Nyeri Manor', '', 'So Paulo', 461, '37650', '764680915323'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (360, '619 Hunuco Avenue', '', 'Shimane', 331, '81508', '142596392389'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (361, '45 Aparecida de Goinia Place', '', 'Madhya Pradesh', 464, '7431', '650496654258'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (362, '482 Kowloon and New Kowloon Manor', '', 'Bratislava', 90, '97056', '738968474939'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (363, '604 Bern Place', '', 'Jharkhand', 429, '5373', '620719383725'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (364, '1623 Kingstown Drive', '', 'Buenos Aires', 20, '91299', '296394569728'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (365, '1009 Zanzibar Lane', '', 'Arecibo', 32, '64875', '102396298916'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (366, '114 Jalib al-Shuyukh Manor', '', 'Centre', 585, '60440', '845378657301'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (367, '1163 London Parkway', '', 'Par', 66, '6066', '675120358494'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (368, '1658 Jastrzebie-Zdrj Loop', '', 'Central', 372, '96584', '568367775448'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (369, '817 Laredo Avenue', '', 'Jalisco', 188, '77449', '151249681135'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (370, '1565 Tangail Manor', '', 'Okinawa', 377, '45750', '634445428822'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (371, '1912 Emeishan Drive', '', 'Balikesir', 50, '33050', '99883471275'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (372, '230 Urawa Drive', '', 'Andhra Pradesh', 8, '2738', '166898395731'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (373, '1922 Miraj Way', '', 'Esfahan', 356, '13203', '320471479776'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (374, '433 Florencia Street', '', 'Chihuahua', 250, '91330', '561729882725'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (375, '1049 Matamoros Parkway', '', 'Karnataka', 191, '69640', '960505250340'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (376, '1061 Ede Avenue', '', 'Southern Tagalog', 98, '57810', '333390595558'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (377, '154 Oshawa Manor', '', 'East Java', 415, '72771', '440365973660'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (378, '1191 Tandil Drive', '', 'Southern Tagalog', 523, '6362', '45554316010'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (379, '1133 Rizhao Avenue', '', 'Pernambuco', 572, '2800', '600264533987'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (380, '1519 Santiago de los Caballeros Loop', '', 'East Kasai', 348, '22025', '409315295763'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (381, '1618 Olomouc Manor', '', 'Kurgan', 285, '26385', '96846695220'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (382, '220 Hidalgo Drive', '', 'Kermanshah', 265, '45298', '342720754566'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (383, '686 Donostia-San Sebastin Lane', '', 'Guangdong', 471, '97390', '71857599858'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (384, '97 Mogiljov Lane', '', 'Gujarat', 73, '89294', '924815207181'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (385, '1642 Charlotte Amalie Drive', '', 'Slaskie', 549, '75442', '821476736117'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (386, '1368 Maracabo Boulevard', '', '', 493, '32716', '934352415130'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (387, '401 Sucre Boulevard', '', 'New Hampshire', 322, '25007', '486395999608'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (388, '368 Hunuco Boulevard', '', 'Namibe', 360, '17165', '106439158941'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (389, '500 Lincoln Parkway', '', 'Jiangsu', 210, '95509', '550306965159'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (390, '102 Chapra Drive', '', 'Ibaragi', 521, '14073', '776031833752'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (391, '1793 Meixian Place', '', 'Hmelnytskyi', 258, '33535', '619966287415'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (392, '514 Ife Way', '', 'Shaba', 315, '69973', '900235712074'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (393, '717 Changzhou Lane', '', 'Southern Tagalog', 104, '21615', '426255288071'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (394, '753 Ilorin Avenue', '', 'Sichuan', 157, '3656', '464511145118'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (395, '1337 Mit Ghamr Avenue', '', 'Nakhon Sawan', 358, '29810', '175283210378'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (396, '767 Pyongyang Drive', '', 'Osaka', 229, '83536', '667736124769'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (397, '614 Pak Kret Street', '', 'Addis Abeba', 6, '27796', '47808359842'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (398, '954 Lapu-Lapu Way', '', 'Moskova', 278, '8816', '737229003916'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (399, '331 Bydgoszcz Parkway', '', 'Asturia', 181, '966', '537374465982'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (400, '1152 Citrus Heights Manor', '', 'al-Qadarif', 15, '5239', '765957414528'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (401, '168 Cianjur Manor', '', 'Saitama', 228, '73824', '679095087143'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (402, '616 Hagonoy Avenue', '', 'Krasnojarsk', 39, '46043', '604177838256'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (403, '1190 0 Place', '', 'Rio Grande do Sul', 44, '10417', '841876514789'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (404, '734 Bchar Place', '', 'Punjab', 375, '30586', '280578750435'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (405, '530 Lausanne Lane', '', 'Texas', 135, '11067', '775235029633'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (406, '454 Patiala Lane', '', 'Fukushima', 276, '13496', '794553031307'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (407, '1346 Mysore Drive', '', 'Bretagne', 92, '61507', '516647474029'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (408, '990 Etawah Loop', '', 'Tamil Nadu', 564, '79940', '206169448769'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (409, '1266 Laredo Parkway', '', 'Saitama', 380, '7664', '1483365694'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (410, '88 Nagaon Manor', '', 'Buenos Aires', 524, '86868', '779461480495'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (411, '264 Bhimavaram Manor', '', 'St Thomas', 111, '54749', '302526949177'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (412, '1639 Saarbrcken Drive', '', 'North West', 437, '9827', '328494873422'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (413, '692 Amroha Drive', '', 'Northern', 230, '35575', '359478883004'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (414, '1936 Lapu-Lapu Parkway', '', 'Bauchi & Gombe', 141, '7122', '653436985797'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (415, '432 Garden Grove Street', '', 'Ontario', 430, '65630', '615964523510'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (416, '1445 Carmen Parkway', '', 'West Java', 117, '70809', '598912394463'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (417, '791 Salinas Street', '', 'Punjab', 208, '40509', '129953030512'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (418, '126 Acua Parkway', '', 'West Bengali', 71, '58888', '480039662421'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (419, '397 Sunnyvale Avenue', '', 'Guanajuato', 19, '55566', '680851640676'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (420, '992 Klerksdorp Loop', '', 'Utrecht', 23, '33711', '855290087237'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (421, '966 Arecibo Loop', '', 'Sind', 134, '94018', '15273765306'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (422, '289 Santo Andr Manor', '', 'al-Sharqiya', 16, '72410', '214976066017'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (423, '437 Chungho Drive', '', 'Puerto Plata', 450, '59489', '491271355190'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (424, '1948 Bayugan Parkway', '', 'Bihar', 264, '60622', '987306329957'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (425, '1866 al-Qatif Avenue', '', 'California', 155, '89420', '546793516940'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (426, '1661 Abha Drive', '', 'Tamil Nadu', 416, '14400', '270456873752'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (427, '1557 Cape Coral Parkway', '', 'Hubei', 293, '46875', '368284120423'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (428, '1727 Matamoros Place', '', 'Sawhaj', 465, '78813', '129673677866'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (429, '1269 Botosani Manor', '', 'Guangdong', 468, '47394', '736517327853'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (430, '355 Vitria de Santo Anto Way', '', 'Oaxaca', 452, '81758', '548003849552'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (431, '1596 Acua Parkway', '', 'Jharkhand', 418, '70425', '157133457169'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (432, '259 Ipoh Drive', '', 'So Paulo', 189, '64964', '419009857119'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (433, '1823 Hoshiarpur Lane', '', 'Komi', 510, '33191', '307133768620'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (434, '1404 Taguig Drive', '', 'Okayama', 547, '87212', '572068624538'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (435, '740 Udaipur Lane', '', 'Nizni Novgorod', 150, '33505', '497288595103'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (436, '287 Cuautla Boulevard', '', 'Chuquisaca', 501, '72736', '82619513349'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (437, '1766 Almirante Brown Street', '', 'KwaZulu-Natal', 364, '63104', '617567598243'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (438, '596 Huixquilucan Place', '', 'Nampula', 351, '65892', '342709348083'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (439, '1351 Aparecida de Goinia Parkway', '', 'Northern Mindanao', 391, '41775', '959834530529'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (440, '722 Bradford Lane', '', 'Shandong', 249, '90920', '746251338300'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (441, '983 Santa F Way', '', 'British Colombia', 565, '47472', '145720452260'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (442, '1245 Ibirit Way', '', 'La Romana', 290, '40926', '331888642162'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (443, '1836 Korla Parkway', '', 'Copperbelt', 272, '55405', '689681677428'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (444, '231 Kaliningrad Place', '', 'Lombardia', 70, '57833', '575081026569'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (445, '495 Bhimavaram Lane', '', 'Maharashtra', 144, '3', '82088937724'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (446, '1924 Shimonoseki Drive', '', 'Batna', 59, '52625', '406784385440'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (447, '105 Dzerzinsk Manor', '', 'Inner Mongolia', 540, '48570', '240776414296'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (448, '614 Denizli Parkway', '', 'Rio Grande do Sul', 486, '29444', '876491807547'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (449, '1289 Belm Boulevard', '', 'Tartumaa', 530, '88306', '237368926031'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (450, '203 Tambaram Street', '', 'Buenos Aires', 161, '73942', '411549550611'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (451, '1704 Tambaram Manor', '', 'West Bengali', 554, '2834', '39463554936'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (452, '207 Cuernavaca Loop', '', 'Tatarstan', 352, '52671', '782900030287'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (453, '319 Springs Loop', '', 'Baijeri', 160, '99552', '72524459905'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (454, '956 Nam Dinh Manor', '', 'Kerman', 481, '21872', '474047727727'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (455, '1947 Paarl Way', '', 'Central Java', 509, '23636', '834061016202'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (456, '814 Simferopol Loop', '', 'Sinaloa', 154, '48745', '524567129902'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (457, '535 Ahmadnagar Manor', '', 'Abu Dhabi', 3, '41136', '985109775584'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (458, '138 Caracas Boulevard', '', 'Zulia', 326, '16790', '974433019532'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (459, '251 Florencia Drive', '', 'Michoacn de Ocampo', 556, '16119', '118011831565'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (460, '659 Gatineau Boulevard', '', 'La Paz', 153, '28587', '205524798287'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (461, '1889 Valparai Way', '', 'Ziguinchor', 600, '75559', '670370974122'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (462, '1485 Bratislava Place', '', 'Illinois', 435, '83183', '924663855568'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (463, '935 Aden Boulevard', '', 'Central Java', 532, '64709', '335052544020'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (464, '76 Kermanshah Manor', '', 'Esfahan', 423, '23343', '762361821578'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (465, '734 Tanshui Avenue', '', 'Caquet', 170, '70664', '366776723320'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (466, '118 Jaffna Loop', '', 'Northern Mindanao', 182, '10447', '325526730021'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (467, '1621 Tongliao Avenue', '', 'Irkutsk', 558, '22173', '209342540247'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (468, '1844 Usak Avenue', '', 'Nova Scotia', 196, '84461', '164414772677'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (469, '1872 Toulon Loop', '', 'OHiggins', 428, '7939', '928809465153'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (470, '1088 Ibirit Place', '', 'Jalisco', 595, '88502', '49084281333'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (471, '1322 Mosul Parkway', '', 'Shandong', 145, '95400', '268053970382'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (472, '1447 Chatsworth Place', '', 'Chihuahua', 129, '41545', '769370126331'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (473, '1257 Guadalajara Street', '', 'Karnataka', 78, '33599', '195337700615'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (474, '1469 Plock Lane', '', 'Galicia', 388, '95835', '622884741180'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (475, '434 Ourense (Orense) Manor', '', 'Hodeida', 206, '14122', '562370137426'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (476, '270 Tambaram Parkway', '', 'Gauteng', 244, '9668', '248446668735'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (477, '1786 Salinas Place', '', 'Nam Ha', 359, '66546', '206060652238'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (478, '1078 Stara Zagora Drive', '', 'Aceh', 301, '69221', '932992626595'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (479, '1854 Okara Boulevard', '', 'Drenthe', 158, '42123', '131912793873'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (480, '421 Yaound Street', '', 'Sumy', 385, '11363', '726875628268'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (481, '1153 Allende Way', '', 'Qubec', 179, '20336', '856872225376'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (482, '808 Naala-Porto Parkway', '', 'England', 500, '41060', '553452430707'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (483, '632 Usolje-Sibirskoje Parkway', '', 'Ha Darom', 36, '73085', '667648979883'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (484, '98 Pyongyang Boulevard', '', 'Ohio', 11, '88749', '191958435142'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (485, '984 Novoterkassk Loop', '', 'Gaziantep', 180, '28165', '435118527255'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (486, '64 Korla Street', '', 'Mwanza', 347, '25145', '510383179153'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (487, '1785 So Bernardo do Campo Street', '', 'Veracruz', 125, '71182', '684529463244'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (488, '698 Jelets Boulevard', '', 'Denizli', 142, '2596', '975185523021'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (489, '1297 Alvorada Parkway', '', 'Ningxia', 587, '11839', '508348602835'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (490, '1909 Dayton Avenue', '', 'Guangdong', 469, '88513', '702955450528'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (491, '1789 Saint-Denis Parkway', '', 'Coahuila de Zaragoza', 4, '8268', '936806643983'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (492, '185 Mannheim Lane', '', 'Stavropol', 408, '23661', '589377568313'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (493, '184 Mandaluyong Street', '', 'Baja California Sur', 288, '94239', '488425406814'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (494, '591 Sungai Petani Drive', '', 'Okayama', 376, '46400', '37247325001'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (495, '656 Matamoros Drive', '', 'Boyac', 487, '19489', '17305839123'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (496, '775 ostka Drive', '', 'al-Daqahliya', 337, '22358', '171973024401'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (497, '1013 Tabuk Boulevard', '', 'West Bengali', 261, '96203', '158399646978'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (498, '319 Plock Parkway', '', 'Istanbul', 504, '26101', '854259976812'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (499, '1954 Kowloon and New Kowloon Way', '', 'Chimborazo', 434, '63667', '898559280434'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (500, '362 Rajkot Lane', '', 'Gansu', 47, '98030', '962020153680'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (501, '1060 Tandil Lane', '', 'Shandong', 432, '72349', '211256301880'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (502, '1515 Korla Way', '', 'England', 589, '57197', '959467760895'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (503, '1416 San Juan Bautista Tuxtepec Avenue', '', 'Zufar', 444, '50592', '144206758053'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (504, '1 Valle de Santiago Avenue', '', 'Apulia', 93, '86208', '465897838272'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (505, '519 Brescia Parkway', '', 'East Java', 318, '69504', '793996678771'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (506, '414 Mandaluyong Street', '', 'Lubelskie', 314, '16370', '52709222667'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (507, '1197 Sokoto Boulevard', '', 'West Bengali', 478, '87687', '868602816371'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (508, '496 Celaya Drive', '', 'Nagano', 552, '90797', '759586584889'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (509, '786 Matsue Way', '', 'Illinois', 245, '37469', '111177206479'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (510, '48 Maracabo Place', '', 'Central Luzon', 519, '1570', '82671830126'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (511, '1152 al-Qatif Lane', '', 'Kalimantan Barat', 412, '44816', '131370665218'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (512, '1269 Ipoh Avenue', '', 'Eskisehir', 163, '54674', '402630109080'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (513, '758 Korolev Parkway', '', 'Andhra Pradesh', 568, '75474', '441628280920'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (514, '1747 Rustenburg Place', '', 'Bihar', 110, '51369', '442673923363'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (515, '886 Tonghae Place', '', 'Volgograd', 259, '19450', '711928348157'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (516, '1574 Goinia Boulevard', '', 'Heilongjiang', 502, '39529', '59634255214'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (517, '548 Uruapan Street', '', 'Ontario', 312, '35653', '879347453467'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (519, '962 Tama Loop', '', '', 583, '65952', '282667506728'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (520, '1778 Gijn Manor', '', 'Hubei', 594, '35156', '288910576761'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (521, '568 Dhule (Dhulia) Loop', '', 'Coquimbo', 127, '92568', '602101369463'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (522, '1768 Udine Loop', '', 'Battambang', 60, '32347', '448876499197'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (523, '608 Birgunj Parkway', '', 'Taipei', 116, '400', '627425618482'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (524, '680 A Corua (La Corua) Manor', '', 'Sivas', 482, '49806', '158326114853'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (525, '1949 Sanya Street', '', 'Gumma', 224, '61244', '132100972047'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (526, '617 Klerksdorp Place', '', 'Khanh Hoa', 366, '94707', '574973479129'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (527, '1993 0 Loop', '', 'Liaoning', 588, '41214', '25865528181'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (528, '1176 Southend-on-Sea Manor', '', 'Southern Tagalog', 458, '81651', '236679267178'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (529, '600 Purnea (Purnia) Avenue', '', 'Nghe An', 571, '18043', '638409958875'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (530, '1003 Qinhuangdao Street', '', 'West Java', 419, '25972', '35533115997'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (531, '1986 Sivas Place', '', 'Friuli-Venezia Giuli', 551, '95775', '182059202712'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (532, '1427 Tabuk Place', '', 'Florida', 101, '31342', '214756839122'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (533, '556 Asuncin Way', '', 'Mogiljov', 339, '35364', '338244023543'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (534, '486 Ondo Parkway', '', 'Benguela', 67, '35202', '105882218332'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (535, '635 Brest Manor', '', 'Andhra Pradesh', 75, '40899', '80593242951'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (536, '166 Jinchang Street', '', 'Buenos Aires', 165, '86760', '717566026669'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (537, '958 Sagamihara Lane', '', 'Mie', 287, '88408', '427274926505'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (538, '1817 Livorno Way', '', 'Khanh Hoa', 100, '79401', '478380208348'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (539, '1332 Gaziantep Lane', '', 'Shandong', 80, '22813', '383353187467'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (540, '949 Allende Lane', '', 'Uttar Pradesh', 24, '67521', '122981120653'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (541, '195 Ilorin Street', '', 'Chari-Baguirmi', 363, '49250', '8912935608'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (542, '193 Bhusawal Place', '', 'Kang-won', 539, '9750', '745267607502'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (543, '43 Vilnius Manor', '', 'Colorado', 42, '79814', '484500282381'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (544, '183 Haiphong Street', '', 'Jilin', 46, '69953', '488600270038'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (545, '163 Augusta-Richmond County Loop', '', 'Carabobo', 561, '33030', '754579047924'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (546, '191 Jos Azueta Parkway', '', 'Ruse', 436, '13629', '932156667696'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (547, '379 Lublin Parkway', '', 'Toscana', 309, '74568', '921960450089'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (548, '1658 Cuman Loop', '', 'Sumatera Selatan', 396, '51309', '784907335610'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (549, '454 Qinhuangdao Drive', '', 'Tadla-Azilal', 68, '25866', '786270036240'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (550, '1715 Okayama Street', '', 'So Paulo', 485, '55676', '169352919175'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (551, '182 Nukualofa Drive', '', 'Sumy', 275, '15414', '426346224043'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (552, '390 Wroclaw Way', '', 'Hainan', 462, '5753', '357593328658'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (553, '1421 Quilmes Lane', '', 'Ishikawa', 260, '19151', '135407755975'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (554, '947 Trshavn Place', '', 'Central Luzon', 528, '841', '50898428626'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (555, '1764 Jalib al-Shuyukh Parkway', '', 'Galicia', 459, '77642', '84794532510'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (556, '346 Cam Ranh Avenue', '', 'Zhejiang', 599, '39976', '978430786151'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (557, '1407 Pachuca de Soto Place', '', 'Rio Grande do Sul', 21, '26284', '380077794770'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (558, '904 Clarksville Drive', '', 'Zhejiang', 193, '52234', '955349440539'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (559, '1917 Kumbakonam Parkway', '', 'Vojvodina', 368, '11892', '698182547686'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (560, '1447 Imus Place', '', 'Gujarat', 426, '12905', '62127829280'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (561, '1497 Fengshan Drive', '', 'KwaZulu-Natal', 112, '63022', '368738360376'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (562, '869 Shikarpur Way', '', 'England', 496, '57380', '590764256785'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (563, '1059 Yuncheng Avenue', '', 'Vilna', 570, '47498', '107092893983'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (564, '505 Madiun Boulevard', '', 'Dolnoslaskie', 577, '97271', '970638808606'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (565, '1741 Hoshiarpur Boulevard', '', 'al-Sharqiya', 79, '22372', '855066328617'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (566, '1229 Varanasi (Benares) Manor', '', 'Buenos Aires', 43, '40195', '817740355461'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (567, '1894 Boa Vista Way', '', 'Texas', 178, '77464', '239357986667'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (568, '1342 Sharja Way', '', 'Sokoto & Kebbi & Zam', 488, '93655', '946114054231'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (569, '1342 Abha Boulevard', '', 'Bukarest', 95, '10714', '997453607116'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (570, '415 Pune Avenue', '', 'Shandong', 580, '44274', '203202500108'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (571, '1746 Faaa Way', '', 'Huanuco', 214, '32515', '863080561151'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (572, '539 Hami Way', '', 'Tokat', 538, '52196', '525518075499'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (573, '1407 Surakarta Manor', '', 'Moskova', 466, '33224', '324346485054'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (574, '502 Mandi Bahauddin Parkway', '', 'Anzotegui', 55, '15992', '618156722572'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (575, '1052 Pathankot Avenue', '', 'Sichuan', 299, '77397', '128499386727'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (576, '1351 Sousse Lane', '', 'Coahuila de Zaragoza', 341, '37815', '203804046132'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (577, '1501 Pangkal Pinang Avenue', '', 'Mazowieckie', 409, '943', '770864062795'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (578, '1405 Hagonoy Avenue', '', 'Slaskie', 133, '86587', '867287719310'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (579, '521 San Juan Bautista Tuxtepec Place', '', 'Qaraghandy', 598, '95093', '844018348565'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (580, '923 Tangail Boulevard', '', 'Tokyo-to', 10, '33384', '315528269898'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (581, '186 Skikda Lane', '', 'Morelos', 131, '89422', '14465669789'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (582, '1568 Celaya Parkway', '', 'Kaohsiung', 168, '34750', '278669994384'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (583, '1489 Kakamigahara Lane', '', 'Taipei', 526, '98883', '29341849811'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (584, '1819 Alessandria Loop', '', 'Campeche', 103, '53829', '377633994405'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (585, '1208 Tama Loop', '', 'Ninawa', 344, '73605', '954786054144'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (586, '951 Springs Lane', '', 'Central Mindanao', 219, '96115', '165164761435'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (587, '760 Miyakonojo Drive', '', 'Guerrero', 246, '64682', '294449058179'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (588, '966 Asuncin Way', '', 'Hidalgo', 212, '62703', '995527378381'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (589, '1584 Ljubertsy Lane', '', 'England', 494, '22954', '285710089439'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (590, '247 Jining Parkway', '', 'Banjul', 54, '53446', '170115379190'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (591, '773 Dallas Manor', '', 'Buenos Aires', 424, '12664', '914466027044'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (592, '1923 Stara Zagora Lane', '', 'Nantou', 546, '95179', '182178609211'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (593, '1402 Zanzibar Boulevard', '', 'Guanajuato', 106, '71102', '387448063440'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (594, '1464 Kursk Parkway', '', 'Shandong', 574, '17381', '338758048786'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (595, '1074 Sanaa Parkway', '', 'Loja', 311, '22474', '154124128457'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (596, '1759 Niznekamsk Avenue', '', 'al-Manama', 14, '39414', '864392582257'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (597, '32 Liaocheng Way', '', 'Minas Gerais', 248, '1944', '410877354933'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (598, '42 Fontana Avenue', '', 'Fejr', 512, '14684', '437829801725'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (599, '1895 Zhezqazghan Drive', '', 'California', 177, '36693', '137809746111'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (600, '1837 Kaduna Parkway', '', 'Inner Mongolia', 241, '82580', '640843562301'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (601, '844 Bucuresti Place', '', 'Liaoning', 242, '36603', '935952366111'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (602, '1101 Bucuresti Boulevard', '', 'West Greece', 401, '97661', '199514580428'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (603, '1103 Quilmes Boulevard', '', 'Piura', 503, '52137', '644021380889'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (604, '1331 Usak Boulevard', '', 'Vaud', 296, '61960', '145308717464'); INSERT INTO addresses (id, address, address2, district, city_id, postal_code, phone) VALUES (605, '1325 Fukuyama Street', '', 'Heilongjiang', 537, '27107', '288241215394'); -- -- TOC entry 1661 (class 0 OID 60351) -- Dependencies: 1215 -- Data for Name: categories; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO categories (id, name) VALUES (1, 'Action'); INSERT INTO categories (id, name) VALUES (2, 'Animation'); INSERT INTO categories (id, name) VALUES (3, 'Children'); INSERT INTO categories (id, name) VALUES (4, 'Classics'); INSERT INTO categories (id, name) VALUES (5, 'Comedy'); INSERT INTO categories (id, name) VALUES (6, 'Documentary'); INSERT INTO categories (id, name) VALUES (7, 'Drama'); INSERT INTO categories (id, name) VALUES (8, 'Family'); INSERT INTO categories (id, name) VALUES (9, 'Foreign'); INSERT INTO categories (id, name) VALUES (10, 'Games'); INSERT INTO categories (id, name) VALUES (11, 'Horror'); INSERT INTO categories (id, name) VALUES (12, 'Music'); INSERT INTO categories (id, name) VALUES (13, 'New'); INSERT INTO categories (id, name) VALUES (14, 'Sci-Fi'); INSERT INTO categories (id, name) VALUES (15, 'Sports'); INSERT INTO categories (id, name) VALUES (16, 'Travel'); INSERT INTO categories (id, name) VALUES (17, 'test1'); -- -- TOC entry 1662 (class 0 OID 60356) -- Dependencies: 1217 -- Data for Name: cities; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO cities (id, city, country_id) VALUES (1, 'A Corua (La Corua)', 87); INSERT INTO cities (id, city, country_id) VALUES (2, 'Abha', 82); INSERT INTO cities (id, city, country_id) VALUES (3, 'Abu Dhabi', 101); INSERT INTO cities (id, city, country_id) VALUES (4, 'Acua', 60); INSERT INTO cities (id, city, country_id) VALUES (5, 'Adana', 97); INSERT INTO cities (id, city, country_id) VALUES (6, 'Addis Abeba', 31); INSERT INTO cities (id, city, country_id) VALUES (7, 'Aden', 107); INSERT INTO cities (id, city, country_id) VALUES (8, 'Adoni', 44); INSERT INTO cities (id, city, country_id) VALUES (9, 'Ahmadnagar', 44); INSERT INTO cities (id, city, country_id) VALUES (10, 'Akishima', 50); INSERT INTO cities (id, city, country_id) VALUES (11, 'Akron', 103); INSERT INTO cities (id, city, country_id) VALUES (12, 'al-Ayn', 101); INSERT INTO cities (id, city, country_id) VALUES (13, 'al-Hawiya', 82); INSERT INTO cities (id, city, country_id) VALUES (14, 'al-Manama', 11); INSERT INTO cities (id, city, country_id) VALUES (15, 'al-Qadarif', 89); INSERT INTO cities (id, city, country_id) VALUES (16, 'al-Qatif', 82); INSERT INTO cities (id, city, country_id) VALUES (17, 'Alessandria', 49); INSERT INTO cities (id, city, country_id) VALUES (18, 'Allappuzha (Alleppey)', 44); INSERT INTO cities (id, city, country_id) VALUES (19, 'Allende', 60); INSERT INTO cities (id, city, country_id) VALUES (20, 'Almirante Brown', 6); INSERT INTO cities (id, city, country_id) VALUES (21, 'Alvorada', 15); INSERT INTO cities (id, city, country_id) VALUES (22, 'Ambattur', 44); INSERT INTO cities (id, city, country_id) VALUES (23, 'Amersfoort', 67); INSERT INTO cities (id, city, country_id) VALUES (24, 'Amroha', 44); INSERT INTO cities (id, city, country_id) VALUES (25, 'Angra dos Reis', 15); INSERT INTO cities (id, city, country_id) VALUES (26, 'Anpolis', 15); INSERT INTO cities (id, city, country_id) VALUES (27, 'Antofagasta', 22); INSERT INTO cities (id, city, country_id) VALUES (28, 'Aparecida de Goinia', 15); INSERT INTO cities (id, city, country_id) VALUES (29, 'Apeldoorn', 67); INSERT INTO cities (id, city, country_id) VALUES (30, 'Araatuba', 15); INSERT INTO cities (id, city, country_id) VALUES (31, 'Arak', 46); INSERT INTO cities (id, city, country_id) VALUES (32, 'Arecibo', 77); INSERT INTO cities (id, city, country_id) VALUES (33, 'Arlington', 103); INSERT INTO cities (id, city, country_id) VALUES (34, 'Ashdod', 48); INSERT INTO cities (id, city, country_id) VALUES (35, 'Ashgabat', 98); INSERT INTO cities (id, city, country_id) VALUES (36, 'Ashqelon', 48); INSERT INTO cities (id, city, country_id) VALUES (37, 'Asuncin', 73); INSERT INTO cities (id, city, country_id) VALUES (38, 'Athenai', 39); INSERT INTO cities (id, city, country_id) VALUES (39, 'Atinsk', 80); INSERT INTO cities (id, city, country_id) VALUES (40, 'Atlixco', 60); INSERT INTO cities (id, city, country_id) VALUES (41, 'Augusta-Richmond County', 103); INSERT INTO cities (id, city, country_id) VALUES (42, 'Aurora', 103); INSERT INTO cities (id, city, country_id) VALUES (43, 'Avellaneda', 6); INSERT INTO cities (id, city, country_id) VALUES (44, 'Bag', 15); INSERT INTO cities (id, city, country_id) VALUES (45, 'Baha Blanca', 6); INSERT INTO cities (id, city, country_id) VALUES (46, 'Baicheng', 23); INSERT INTO cities (id, city, country_id) VALUES (47, 'Baiyin', 23); INSERT INTO cities (id, city, country_id) VALUES (48, 'Baku', 10); INSERT INTO cities (id, city, country_id) VALUES (49, 'Balaiha', 80); INSERT INTO cities (id, city, country_id) VALUES (50, 'Balikesir', 97); INSERT INTO cities (id, city, country_id) VALUES (51, 'Balurghat', 44); INSERT INTO cities (id, city, country_id) VALUES (52, 'Bamenda', 19); INSERT INTO cities (id, city, country_id) VALUES (53, 'Bandar Seri Begawan', 16); INSERT INTO cities (id, city, country_id) VALUES (54, 'Banjul', 37); INSERT INTO cities (id, city, country_id) VALUES (55, 'Barcelona', 104); INSERT INTO cities (id, city, country_id) VALUES (56, 'Basel', 91); INSERT INTO cities (id, city, country_id) VALUES (57, 'Bat Yam', 48); INSERT INTO cities (id, city, country_id) VALUES (58, 'Batman', 97); INSERT INTO cities (id, city, country_id) VALUES (59, 'Batna', 2); INSERT INTO cities (id, city, country_id) VALUES (60, 'Battambang', 18); INSERT INTO cities (id, city, country_id) VALUES (61, 'Baybay', 75); INSERT INTO cities (id, city, country_id) VALUES (62, 'Bayugan', 75); INSERT INTO cities (id, city, country_id) VALUES (63, 'Bchar', 2); INSERT INTO cities (id, city, country_id) VALUES (64, 'Beira', 63); INSERT INTO cities (id, city, country_id) VALUES (65, 'Bellevue', 103); INSERT INTO cities (id, city, country_id) VALUES (66, 'Belm', 15); INSERT INTO cities (id, city, country_id) VALUES (67, 'Benguela', 4); INSERT INTO cities (id, city, country_id) VALUES (68, 'Beni-Mellal', 62); INSERT INTO cities (id, city, country_id) VALUES (69, 'Benin City', 69); INSERT INTO cities (id, city, country_id) VALUES (70, 'Bergamo', 49); INSERT INTO cities (id, city, country_id) VALUES (71, 'Berhampore (Baharampur)', 44); INSERT INTO cities (id, city, country_id) VALUES (72, 'Bern', 91); INSERT INTO cities (id, city, country_id) VALUES (73, 'Bhavnagar', 44); INSERT INTO cities (id, city, country_id) VALUES (74, 'Bhilwara', 44); INSERT INTO cities (id, city, country_id) VALUES (75, 'Bhimavaram', 44); INSERT INTO cities (id, city, country_id) VALUES (76, 'Bhopal', 44); INSERT INTO cities (id, city, country_id) VALUES (77, 'Bhusawal', 44); INSERT INTO cities (id, city, country_id) VALUES (78, 'Bijapur', 44); INSERT INTO cities (id, city, country_id) VALUES (79, 'Bilbays', 29); INSERT INTO cities (id, city, country_id) VALUES (80, 'Binzhou', 23); INSERT INTO cities (id, city, country_id) VALUES (81, 'Birgunj', 66); INSERT INTO cities (id, city, country_id) VALUES (82, 'Bislig', 75); INSERT INTO cities (id, city, country_id) VALUES (83, 'Blumenau', 15); INSERT INTO cities (id, city, country_id) VALUES (84, 'Boa Vista', 15); INSERT INTO cities (id, city, country_id) VALUES (85, 'Boksburg', 85); INSERT INTO cities (id, city, country_id) VALUES (86, 'Botosani', 78); INSERT INTO cities (id, city, country_id) VALUES (87, 'Botshabelo', 85); INSERT INTO cities (id, city, country_id) VALUES (88, 'Bradford', 102); INSERT INTO cities (id, city, country_id) VALUES (89, 'Braslia', 15); INSERT INTO cities (id, city, country_id) VALUES (90, 'Bratislava', 84); INSERT INTO cities (id, city, country_id) VALUES (91, 'Brescia', 49); INSERT INTO cities (id, city, country_id) VALUES (92, 'Brest', 34); INSERT INTO cities (id, city, country_id) VALUES (93, 'Brindisi', 49); INSERT INTO cities (id, city, country_id) VALUES (94, 'Brockton', 103); INSERT INTO cities (id, city, country_id) VALUES (95, 'Bucuresti', 78); INSERT INTO cities (id, city, country_id) VALUES (96, 'Buenaventura', 24); INSERT INTO cities (id, city, country_id) VALUES (97, 'Bydgoszcz', 76); INSERT INTO cities (id, city, country_id) VALUES (98, 'Cabuyao', 75); INSERT INTO cities (id, city, country_id) VALUES (99, 'Callao', 74); INSERT INTO cities (id, city, country_id) VALUES (100, 'Cam Ranh', 105); INSERT INTO cities (id, city, country_id) VALUES (101, 'Cape Coral', 103); INSERT INTO cities (id, city, country_id) VALUES (102, 'Caracas', 104); INSERT INTO cities (id, city, country_id) VALUES (103, 'Carmen', 60); INSERT INTO cities (id, city, country_id) VALUES (104, 'Cavite', 75); INSERT INTO cities (id, city, country_id) VALUES (105, 'Cayenne', 35); INSERT INTO cities (id, city, country_id) VALUES (106, 'Celaya', 60); INSERT INTO cities (id, city, country_id) VALUES (107, 'Chandrapur', 44); INSERT INTO cities (id, city, country_id) VALUES (108, 'Changhwa', 92); INSERT INTO cities (id, city, country_id) VALUES (109, 'Changzhou', 23); INSERT INTO cities (id, city, country_id) VALUES (110, 'Chapra', 44); INSERT INTO cities (id, city, country_id) VALUES (111, 'Charlotte Amalie', 106); INSERT INTO cities (id, city, country_id) VALUES (112, 'Chatsworth', 85); INSERT INTO cities (id, city, country_id) VALUES (113, 'Cheju', 86); INSERT INTO cities (id, city, country_id) VALUES (114, 'Chiayi', 92); INSERT INTO cities (id, city, country_id) VALUES (115, 'Chisinau', 61); INSERT INTO cities (id, city, country_id) VALUES (116, 'Chungho', 92); INSERT INTO cities (id, city, country_id) VALUES (117, 'Cianjur', 45); INSERT INTO cities (id, city, country_id) VALUES (118, 'Ciomas', 45); INSERT INTO cities (id, city, country_id) VALUES (119, 'Ciparay', 45); INSERT INTO cities (id, city, country_id) VALUES (120, 'Citrus Heights', 103); INSERT INTO cities (id, city, country_id) VALUES (121, 'Citt del Vaticano', 41); INSERT INTO cities (id, city, country_id) VALUES (122, 'Ciudad del Este', 73); INSERT INTO cities (id, city, country_id) VALUES (123, 'Clarksville', 103); INSERT INTO cities (id, city, country_id) VALUES (124, 'Coacalco de Berriozbal', 60); INSERT INTO cities (id, city, country_id) VALUES (125, 'Coatzacoalcos', 60); INSERT INTO cities (id, city, country_id) VALUES (126, 'Compton', 103); INSERT INTO cities (id, city, country_id) VALUES (127, 'Coquimbo', 22); INSERT INTO cities (id, city, country_id) VALUES (128, 'Crdoba', 6); INSERT INTO cities (id, city, country_id) VALUES (129, 'Cuauhtmoc', 60); INSERT INTO cities (id, city, country_id) VALUES (130, 'Cuautla', 60); INSERT INTO cities (id, city, country_id) VALUES (131, 'Cuernavaca', 60); INSERT INTO cities (id, city, country_id) VALUES (132, 'Cuman', 104); INSERT INTO cities (id, city, country_id) VALUES (133, 'Czestochowa', 76); INSERT INTO cities (id, city, country_id) VALUES (134, 'Dadu', 72); INSERT INTO cities (id, city, country_id) VALUES (135, 'Dallas', 103); INSERT INTO cities (id, city, country_id) VALUES (136, 'Datong', 23); INSERT INTO cities (id, city, country_id) VALUES (137, 'Daugavpils', 54); INSERT INTO cities (id, city, country_id) VALUES (138, 'Davao', 75); INSERT INTO cities (id, city, country_id) VALUES (139, 'Daxian', 23); INSERT INTO cities (id, city, country_id) VALUES (140, 'Dayton', 103); INSERT INTO cities (id, city, country_id) VALUES (141, 'Deba Habe', 69); INSERT INTO cities (id, city, country_id) VALUES (142, 'Denizli', 97); INSERT INTO cities (id, city, country_id) VALUES (143, 'Dhaka', 12); INSERT INTO cities (id, city, country_id) VALUES (144, 'Dhule (Dhulia)', 44); INSERT INTO cities (id, city, country_id) VALUES (145, 'Dongying', 23); INSERT INTO cities (id, city, country_id) VALUES (146, 'Donostia-San Sebastin', 87); INSERT INTO cities (id, city, country_id) VALUES (147, 'Dos Quebradas', 24); INSERT INTO cities (id, city, country_id) VALUES (148, 'Duisburg', 38); INSERT INTO cities (id, city, country_id) VALUES (149, 'Dundee', 102); INSERT INTO cities (id, city, country_id) VALUES (150, 'Dzerzinsk', 80); INSERT INTO cities (id, city, country_id) VALUES (151, 'Ede', 67); INSERT INTO cities (id, city, country_id) VALUES (152, 'Effon-Alaiye', 69); INSERT INTO cities (id, city, country_id) VALUES (153, 'El Alto', 14); INSERT INTO cities (id, city, country_id) VALUES (154, 'El Fuerte', 60); INSERT INTO cities (id, city, country_id) VALUES (155, 'El Monte', 103); INSERT INTO cities (id, city, country_id) VALUES (156, 'Elista', 80); INSERT INTO cities (id, city, country_id) VALUES (157, 'Emeishan', 23); INSERT INTO cities (id, city, country_id) VALUES (158, 'Emmen', 67); INSERT INTO cities (id, city, country_id) VALUES (159, 'Enshi', 23); INSERT INTO cities (id, city, country_id) VALUES (160, 'Erlangen', 38); INSERT INTO cities (id, city, country_id) VALUES (161, 'Escobar', 6); INSERT INTO cities (id, city, country_id) VALUES (162, 'Esfahan', 46); INSERT INTO cities (id, city, country_id) VALUES (163, 'Eskisehir', 97); INSERT INTO cities (id, city, country_id) VALUES (164, 'Etawah', 44); INSERT INTO cities (id, city, country_id) VALUES (165, 'Ezeiza', 6); INSERT INTO cities (id, city, country_id) VALUES (166, 'Ezhou', 23); INSERT INTO cities (id, city, country_id) VALUES (167, 'Faaa', 36); INSERT INTO cities (id, city, country_id) VALUES (168, 'Fengshan', 92); INSERT INTO cities (id, city, country_id) VALUES (169, 'Firozabad', 44); INSERT INTO cities (id, city, country_id) VALUES (170, 'Florencia', 24); INSERT INTO cities (id, city, country_id) VALUES (171, 'Fontana', 103); INSERT INTO cities (id, city, country_id) VALUES (172, 'Fukuyama', 50); INSERT INTO cities (id, city, country_id) VALUES (173, 'Funafuti', 99); INSERT INTO cities (id, city, country_id) VALUES (174, 'Fuyu', 23); INSERT INTO cities (id, city, country_id) VALUES (175, 'Fuzhou', 23); INSERT INTO cities (id, city, country_id) VALUES (176, 'Gandhinagar', 44); INSERT INTO cities (id, city, country_id) VALUES (177, 'Garden Grove', 103); INSERT INTO cities (id, city, country_id) VALUES (178, 'Garland', 103); INSERT INTO cities (id, city, country_id) VALUES (179, 'Gatineau', 20); INSERT INTO cities (id, city, country_id) VALUES (180, 'Gaziantep', 97); INSERT INTO cities (id, city, country_id) VALUES (181, 'Gijn', 87); INSERT INTO cities (id, city, country_id) VALUES (182, 'Gingoog', 75); INSERT INTO cities (id, city, country_id) VALUES (183, 'Goinia', 15); INSERT INTO cities (id, city, country_id) VALUES (184, 'Gorontalo', 45); INSERT INTO cities (id, city, country_id) VALUES (185, 'Grand Prairie', 103); INSERT INTO cities (id, city, country_id) VALUES (186, 'Graz', 9); INSERT INTO cities (id, city, country_id) VALUES (187, 'Greensboro', 103); INSERT INTO cities (id, city, country_id) VALUES (188, 'Guadalajara', 60); INSERT INTO cities (id, city, country_id) VALUES (189, 'Guaruj', 15); INSERT INTO cities (id, city, country_id) VALUES (190, 'guas Lindas de Gois', 15); INSERT INTO cities (id, city, country_id) VALUES (191, 'Gulbarga', 44); INSERT INTO cities (id, city, country_id) VALUES (192, 'Hagonoy', 75); INSERT INTO cities (id, city, country_id) VALUES (193, 'Haining', 23); INSERT INTO cities (id, city, country_id) VALUES (194, 'Haiphong', 105); INSERT INTO cities (id, city, country_id) VALUES (195, 'Haldia', 44); INSERT INTO cities (id, city, country_id) VALUES (196, 'Halifax', 20); INSERT INTO cities (id, city, country_id) VALUES (197, 'Halisahar', 44); INSERT INTO cities (id, city, country_id) VALUES (198, 'Halle/Saale', 38); INSERT INTO cities (id, city, country_id) VALUES (199, 'Hami', 23); INSERT INTO cities (id, city, country_id) VALUES (200, 'Hamilton', 68); INSERT INTO cities (id, city, country_id) VALUES (201, 'Hanoi', 105); INSERT INTO cities (id, city, country_id) VALUES (202, 'Hidalgo', 60); INSERT INTO cities (id, city, country_id) VALUES (203, 'Higashiosaka', 50); INSERT INTO cities (id, city, country_id) VALUES (204, 'Hino', 50); INSERT INTO cities (id, city, country_id) VALUES (205, 'Hiroshima', 50); INSERT INTO cities (id, city, country_id) VALUES (206, 'Hodeida', 107); INSERT INTO cities (id, city, country_id) VALUES (207, 'Hohhot', 23); INSERT INTO cities (id, city, country_id) VALUES (208, 'Hoshiarpur', 44); INSERT INTO cities (id, city, country_id) VALUES (209, 'Hsichuh', 92); INSERT INTO cities (id, city, country_id) VALUES (210, 'Huaian', 23); INSERT INTO cities (id, city, country_id) VALUES (211, 'Hubli-Dharwad', 44); INSERT INTO cities (id, city, country_id) VALUES (212, 'Huejutla de Reyes', 60); INSERT INTO cities (id, city, country_id) VALUES (213, 'Huixquilucan', 60); INSERT INTO cities (id, city, country_id) VALUES (214, 'Hunuco', 74); INSERT INTO cities (id, city, country_id) VALUES (215, 'Ibirit', 15); INSERT INTO cities (id, city, country_id) VALUES (216, 'Idfu', 29); INSERT INTO cities (id, city, country_id) VALUES (217, 'Ife', 69); INSERT INTO cities (id, city, country_id) VALUES (218, 'Ikerre', 69); INSERT INTO cities (id, city, country_id) VALUES (219, 'Iligan', 75); INSERT INTO cities (id, city, country_id) VALUES (220, 'Ilorin', 69); INSERT INTO cities (id, city, country_id) VALUES (221, 'Imus', 75); INSERT INTO cities (id, city, country_id) VALUES (222, 'Inegl', 97); INSERT INTO cities (id, city, country_id) VALUES (223, 'Ipoh', 59); INSERT INTO cities (id, city, country_id) VALUES (224, 'Isesaki', 50); INSERT INTO cities (id, city, country_id) VALUES (225, 'Ivanovo', 80); INSERT INTO cities (id, city, country_id) VALUES (226, 'Iwaki', 50); INSERT INTO cities (id, city, country_id) VALUES (227, 'Iwakuni', 50); INSERT INTO cities (id, city, country_id) VALUES (228, 'Iwatsuki', 50); INSERT INTO cities (id, city, country_id) VALUES (229, 'Izumisano', 50); INSERT INTO cities (id, city, country_id) VALUES (230, 'Jaffna', 88); INSERT INTO cities (id, city, country_id) VALUES (231, 'Jaipur', 44); INSERT INTO cities (id, city, country_id) VALUES (232, 'Jakarta', 45); INSERT INTO cities (id, city, country_id) VALUES (233, 'Jalib al-Shuyukh', 53); INSERT INTO cities (id, city, country_id) VALUES (234, 'Jamalpur', 12); INSERT INTO cities (id, city, country_id) VALUES (235, 'Jaroslavl', 80); INSERT INTO cities (id, city, country_id) VALUES (236, 'Jastrzebie-Zdrj', 76); INSERT INTO cities (id, city, country_id) VALUES (237, 'Jedda', 82); INSERT INTO cities (id, city, country_id) VALUES (238, 'Jelets', 80); INSERT INTO cities (id, city, country_id) VALUES (239, 'Jhansi', 44); INSERT INTO cities (id, city, country_id) VALUES (240, 'Jinchang', 23); INSERT INTO cities (id, city, country_id) VALUES (241, 'Jining', 23); INSERT INTO cities (id, city, country_id) VALUES (242, 'Jinzhou', 23); INSERT INTO cities (id, city, country_id) VALUES (243, 'Jodhpur', 44); INSERT INTO cities (id, city, country_id) VALUES (244, 'Johannesburg', 85); INSERT INTO cities (id, city, country_id) VALUES (245, 'Joliet', 103); INSERT INTO cities (id, city, country_id) VALUES (246, 'Jos Azueta', 60); INSERT INTO cities (id, city, country_id) VALUES (247, 'Juazeiro do Norte', 15); INSERT INTO cities (id, city, country_id) VALUES (248, 'Juiz de Fora', 15); INSERT INTO cities (id, city, country_id) VALUES (249, 'Junan', 23); INSERT INTO cities (id, city, country_id) VALUES (250, 'Jurez', 60); INSERT INTO cities (id, city, country_id) VALUES (251, 'Kabul', 1); INSERT INTO cities (id, city, country_id) VALUES (252, 'Kaduna', 69); INSERT INTO cities (id, city, country_id) VALUES (253, 'Kakamigahara', 50); INSERT INTO cities (id, city, country_id) VALUES (254, 'Kaliningrad', 80); INSERT INTO cities (id, city, country_id) VALUES (255, 'Kalisz', 76); INSERT INTO cities (id, city, country_id) VALUES (256, 'Kamakura', 50); INSERT INTO cities (id, city, country_id) VALUES (257, 'Kamarhati', 44); INSERT INTO cities (id, city, country_id) VALUES (258, 'Kamjanets-Podilskyi', 100); INSERT INTO cities (id, city, country_id) VALUES (259, 'Kamyin', 80); INSERT INTO cities (id, city, country_id) VALUES (260, 'Kanazawa', 50); INSERT INTO cities (id, city, country_id) VALUES (261, 'Kanchrapara', 44); INSERT INTO cities (id, city, country_id) VALUES (262, 'Kansas City', 103); INSERT INTO cities (id, city, country_id) VALUES (263, 'Karnal', 44); INSERT INTO cities (id, city, country_id) VALUES (264, 'Katihar', 44); INSERT INTO cities (id, city, country_id) VALUES (265, 'Kermanshah', 46); INSERT INTO cities (id, city, country_id) VALUES (266, 'Kilis', 97); INSERT INTO cities (id, city, country_id) VALUES (267, 'Kimberley', 85); INSERT INTO cities (id, city, country_id) VALUES (268, 'Kimchon', 86); INSERT INTO cities (id, city, country_id) VALUES (269, 'Kingstown', 81); INSERT INTO cities (id, city, country_id) VALUES (270, 'Kirovo-Tepetsk', 80); INSERT INTO cities (id, city, country_id) VALUES (271, 'Kisumu', 52); INSERT INTO cities (id, city, country_id) VALUES (272, 'Kitwe', 109); INSERT INTO cities (id, city, country_id) VALUES (273, 'Klerksdorp', 85); INSERT INTO cities (id, city, country_id) VALUES (274, 'Kolpino', 80); INSERT INTO cities (id, city, country_id) VALUES (275, 'Konotop', 100); INSERT INTO cities (id, city, country_id) VALUES (276, 'Koriyama', 50); INSERT INTO cities (id, city, country_id) VALUES (277, 'Korla', 23); INSERT INTO cities (id, city, country_id) VALUES (278, 'Korolev', 80); INSERT INTO cities (id, city, country_id) VALUES (279, 'Kowloon and New Kowloon', 42); INSERT INTO cities (id, city, country_id) VALUES (280, 'Kragujevac', 108); INSERT INTO cities (id, city, country_id) VALUES (281, 'Ktahya', 97); INSERT INTO cities (id, city, country_id) VALUES (282, 'Kuching', 59); INSERT INTO cities (id, city, country_id) VALUES (283, 'Kumbakonam', 44); INSERT INTO cities (id, city, country_id) VALUES (284, 'Kurashiki', 50); INSERT INTO cities (id, city, country_id) VALUES (285, 'Kurgan', 80); INSERT INTO cities (id, city, country_id) VALUES (286, 'Kursk', 80); INSERT INTO cities (id, city, country_id) VALUES (287, 'Kuwana', 50); INSERT INTO cities (id, city, country_id) VALUES (288, 'La Paz', 60); INSERT INTO cities (id, city, country_id) VALUES (289, 'La Plata', 6); INSERT INTO cities (id, city, country_id) VALUES (290, 'La Romana', 27); INSERT INTO cities (id, city, country_id) VALUES (291, 'Laiwu', 23); INSERT INTO cities (id, city, country_id) VALUES (292, 'Lancaster', 103); INSERT INTO cities (id, city, country_id) VALUES (293, 'Laohekou', 23); INSERT INTO cities (id, city, country_id) VALUES (294, 'Lapu-Lapu', 75); INSERT INTO cities (id, city, country_id) VALUES (295, 'Laredo', 103); INSERT INTO cities (id, city, country_id) VALUES (296, 'Lausanne', 91); INSERT INTO cities (id, city, country_id) VALUES (297, 'Le Mans', 34); INSERT INTO cities (id, city, country_id) VALUES (298, 'Lengshuijiang', 23); INSERT INTO cities (id, city, country_id) VALUES (299, 'Leshan', 23); INSERT INTO cities (id, city, country_id) VALUES (300, 'Lethbridge', 20); INSERT INTO cities (id, city, country_id) VALUES (301, 'Lhokseumawe', 45); INSERT INTO cities (id, city, country_id) VALUES (302, 'Liaocheng', 23); INSERT INTO cities (id, city, country_id) VALUES (303, 'Liepaja', 54); INSERT INTO cities (id, city, country_id) VALUES (304, 'Lilongwe', 58); INSERT INTO cities (id, city, country_id) VALUES (305, 'Lima', 74); INSERT INTO cities (id, city, country_id) VALUES (306, 'Lincoln', 103); INSERT INTO cities (id, city, country_id) VALUES (307, 'Linz', 9); INSERT INTO cities (id, city, country_id) VALUES (308, 'Lipetsk', 80); INSERT INTO cities (id, city, country_id) VALUES (309, 'Livorno', 49); INSERT INTO cities (id, city, country_id) VALUES (310, 'Ljubertsy', 80); INSERT INTO cities (id, city, country_id) VALUES (311, 'Loja', 28); INSERT INTO cities (id, city, country_id) VALUES (312, 'London', 102); INSERT INTO cities (id, city, country_id) VALUES (313, 'London', 20); INSERT INTO cities (id, city, country_id) VALUES (314, 'Lublin', 76); INSERT INTO cities (id, city, country_id) VALUES (315, 'Lubumbashi', 25); INSERT INTO cities (id, city, country_id) VALUES (316, 'Lungtan', 92); INSERT INTO cities (id, city, country_id) VALUES (317, 'Luzinia', 15); INSERT INTO cities (id, city, country_id) VALUES (318, 'Madiun', 45); INSERT INTO cities (id, city, country_id) VALUES (319, 'Mahajanga', 57); INSERT INTO cities (id, city, country_id) VALUES (320, 'Maikop', 80); INSERT INTO cities (id, city, country_id) VALUES (321, 'Malm', 90); INSERT INTO cities (id, city, country_id) VALUES (322, 'Manchester', 103); INSERT INTO cities (id, city, country_id) VALUES (323, 'Mandaluyong', 75); INSERT INTO cities (id, city, country_id) VALUES (324, 'Mandi Bahauddin', 72); INSERT INTO cities (id, city, country_id) VALUES (325, 'Mannheim', 38); INSERT INTO cities (id, city, country_id) VALUES (326, 'Maracabo', 104); INSERT INTO cities (id, city, country_id) VALUES (327, 'Mardan', 72); INSERT INTO cities (id, city, country_id) VALUES (328, 'Maring', 15); INSERT INTO cities (id, city, country_id) VALUES (329, 'Masqat', 71); INSERT INTO cities (id, city, country_id) VALUES (330, 'Matamoros', 60); INSERT INTO cities (id, city, country_id) VALUES (331, 'Matsue', 50); INSERT INTO cities (id, city, country_id) VALUES (332, 'Meixian', 23); INSERT INTO cities (id, city, country_id) VALUES (333, 'Memphis', 103); INSERT INTO cities (id, city, country_id) VALUES (334, 'Merlo', 6); INSERT INTO cities (id, city, country_id) VALUES (335, 'Mexicali', 60); INSERT INTO cities (id, city, country_id) VALUES (336, 'Miraj', 44); INSERT INTO cities (id, city, country_id) VALUES (337, 'Mit Ghamr', 29); INSERT INTO cities (id, city, country_id) VALUES (338, 'Miyakonojo', 50); INSERT INTO cities (id, city, country_id) VALUES (339, 'Mogiljov', 13); INSERT INTO cities (id, city, country_id) VALUES (340, 'Molodetno', 13); INSERT INTO cities (id, city, country_id) VALUES (341, 'Monclova', 60); INSERT INTO cities (id, city, country_id) VALUES (342, 'Monywa', 64); INSERT INTO cities (id, city, country_id) VALUES (343, 'Moscow', 80); INSERT INTO cities (id, city, country_id) VALUES (344, 'Mosul', 47); INSERT INTO cities (id, city, country_id) VALUES (345, 'Mukateve', 100); INSERT INTO cities (id, city, country_id) VALUES (346, 'Munger (Monghyr)', 44); INSERT INTO cities (id, city, country_id) VALUES (347, 'Mwanza', 93); INSERT INTO cities (id, city, country_id) VALUES (348, 'Mwene-Ditu', 25); INSERT INTO cities (id, city, country_id) VALUES (349, 'Myingyan', 64); INSERT INTO cities (id, city, country_id) VALUES (350, 'Mysore', 44); INSERT INTO cities (id, city, country_id) VALUES (351, 'Naala-Porto', 63); INSERT INTO cities (id, city, country_id) VALUES (352, 'Nabereznyje Telny', 80); INSERT INTO cities (id, city, country_id) VALUES (353, 'Nador', 62); INSERT INTO cities (id, city, country_id) VALUES (354, 'Nagaon', 44); INSERT INTO cities (id, city, country_id) VALUES (355, 'Nagareyama', 50); INSERT INTO cities (id, city, country_id) VALUES (356, 'Najafabad', 46); INSERT INTO cities (id, city, country_id) VALUES (357, 'Naju', 86); INSERT INTO cities (id, city, country_id) VALUES (358, 'Nakhon Sawan', 94); INSERT INTO cities (id, city, country_id) VALUES (359, 'Nam Dinh', 105); INSERT INTO cities (id, city, country_id) VALUES (360, 'Namibe', 4); INSERT INTO cities (id, city, country_id) VALUES (361, 'Nantou', 92); INSERT INTO cities (id, city, country_id) VALUES (362, 'Nanyang', 23); INSERT INTO cities (id, city, country_id) VALUES (363, 'NDjamna', 21); INSERT INTO cities (id, city, country_id) VALUES (364, 'Newcastle', 85); INSERT INTO cities (id, city, country_id) VALUES (365, 'Nezahualcyotl', 60); INSERT INTO cities (id, city, country_id) VALUES (366, 'Nha Trang', 105); INSERT INTO cities (id, city, country_id) VALUES (367, 'Niznekamsk', 80); INSERT INTO cities (id, city, country_id) VALUES (368, 'Novi Sad', 108); INSERT INTO cities (id, city, country_id) VALUES (369, 'Novoterkassk', 80); INSERT INTO cities (id, city, country_id) VALUES (370, 'Nukualofa', 95); INSERT INTO cities (id, city, country_id) VALUES (371, 'Nuuk', 40); INSERT INTO cities (id, city, country_id) VALUES (372, 'Nyeri', 52); INSERT INTO cities (id, city, country_id) VALUES (373, 'Ocumare del Tuy', 104); INSERT INTO cities (id, city, country_id) VALUES (374, 'Ogbomosho', 69); INSERT INTO cities (id, city, country_id) VALUES (375, 'Okara', 72); INSERT INTO cities (id, city, country_id) VALUES (376, 'Okayama', 50); INSERT INTO cities (id, city, country_id) VALUES (377, 'Okinawa', 50); INSERT INTO cities (id, city, country_id) VALUES (378, 'Olomouc', 26); INSERT INTO cities (id, city, country_id) VALUES (379, 'Omdurman', 89); INSERT INTO cities (id, city, country_id) VALUES (380, 'Omiya', 50); INSERT INTO cities (id, city, country_id) VALUES (381, 'Ondo', 69); INSERT INTO cities (id, city, country_id) VALUES (382, 'Onomichi', 50); INSERT INTO cities (id, city, country_id) VALUES (383, 'Oshawa', 20); INSERT INTO cities (id, city, country_id) VALUES (384, 'Osmaniye', 97); INSERT INTO cities (id, city, country_id) VALUES (385, 'ostka', 100); INSERT INTO cities (id, city, country_id) VALUES (386, 'Otsu', 50); INSERT INTO cities (id, city, country_id) VALUES (387, 'Oulu', 33); INSERT INTO cities (id, city, country_id) VALUES (388, 'Ourense (Orense)', 87); INSERT INTO cities (id, city, country_id) VALUES (389, 'Owo', 69); INSERT INTO cities (id, city, country_id) VALUES (390, 'Oyo', 69); INSERT INTO cities (id, city, country_id) VALUES (391, 'Ozamis', 75); INSERT INTO cities (id, city, country_id) VALUES (392, 'Paarl', 85); INSERT INTO cities (id, city, country_id) VALUES (393, 'Pachuca de Soto', 60); INSERT INTO cities (id, city, country_id) VALUES (394, 'Pak Kret', 94); INSERT INTO cities (id, city, country_id) VALUES (395, 'Palghat (Palakkad)', 44); INSERT INTO cities (id, city, country_id) VALUES (396, 'Pangkal Pinang', 45); INSERT INTO cities (id, city, country_id) VALUES (397, 'Papeete', 36); INSERT INTO cities (id, city, country_id) VALUES (398, 'Parbhani', 44); INSERT INTO cities (id, city, country_id) VALUES (399, 'Pathankot', 44); INSERT INTO cities (id, city, country_id) VALUES (400, 'Patiala', 44); INSERT INTO cities (id, city, country_id) VALUES (401, 'Patras', 39); INSERT INTO cities (id, city, country_id) VALUES (402, 'Pavlodar', 51); INSERT INTO cities (id, city, country_id) VALUES (403, 'Pemalang', 45); INSERT INTO cities (id, city, country_id) VALUES (404, 'Peoria', 103); INSERT INTO cities (id, city, country_id) VALUES (405, 'Pereira', 24); INSERT INTO cities (id, city, country_id) VALUES (406, 'Phnom Penh', 18); INSERT INTO cities (id, city, country_id) VALUES (407, 'Pingxiang', 23); INSERT INTO cities (id, city, country_id) VALUES (408, 'Pjatigorsk', 80); INSERT INTO cities (id, city, country_id) VALUES (409, 'Plock', 76); INSERT INTO cities (id, city, country_id) VALUES (410, 'Po', 15); INSERT INTO cities (id, city, country_id) VALUES (411, 'Ponce', 77); INSERT INTO cities (id, city, country_id) VALUES (412, 'Pontianak', 45); INSERT INTO cities (id, city, country_id) VALUES (413, 'Poos de Caldas', 15); INSERT INTO cities (id, city, country_id) VALUES (414, 'Portoviejo', 28); INSERT INTO cities (id, city, country_id) VALUES (415, 'Probolinggo', 45); INSERT INTO cities (id, city, country_id) VALUES (416, 'Pudukkottai', 44); INSERT INTO cities (id, city, country_id) VALUES (417, 'Pune', 44); INSERT INTO cities (id, city, country_id) VALUES (418, 'Purnea (Purnia)', 44); INSERT INTO cities (id, city, country_id) VALUES (419, 'Purwakarta', 45); INSERT INTO cities (id, city, country_id) VALUES (420, 'Pyongyang', 70); INSERT INTO cities (id, city, country_id) VALUES (421, 'Qalyub', 29); INSERT INTO cities (id, city, country_id) VALUES (422, 'Qinhuangdao', 23); INSERT INTO cities (id, city, country_id) VALUES (423, 'Qomsheh', 46); INSERT INTO cities (id, city, country_id) VALUES (424, 'Quilmes', 6); INSERT INTO cities (id, city, country_id) VALUES (425, 'Rae Bareli', 44); INSERT INTO cities (id, city, country_id) VALUES (426, 'Rajkot', 44); INSERT INTO cities (id, city, country_id) VALUES (427, 'Rampur', 44); INSERT INTO cities (id, city, country_id) VALUES (428, 'Rancagua', 22); INSERT INTO cities (id, city, country_id) VALUES (429, 'Ranchi', 44); INSERT INTO cities (id, city, country_id) VALUES (430, 'Richmond Hill', 20); INSERT INTO cities (id, city, country_id) VALUES (431, 'Rio Claro', 15); INSERT INTO cities (id, city, country_id) VALUES (432, 'Rizhao', 23); INSERT INTO cities (id, city, country_id) VALUES (433, 'Roanoke', 103); INSERT INTO cities (id, city, country_id) VALUES (434, 'Robamba', 28); INSERT INTO cities (id, city, country_id) VALUES (435, 'Rockford', 103); INSERT INTO cities (id, city, country_id) VALUES (436, 'Ruse', 17); INSERT INTO cities (id, city, country_id) VALUES (437, 'Rustenburg', 85); INSERT INTO cities (id, city, country_id) VALUES (438, 's-Hertogenbosch', 67); INSERT INTO cities (id, city, country_id) VALUES (439, 'Saarbrcken', 38); INSERT INTO cities (id, city, country_id) VALUES (440, 'Sagamihara', 50); INSERT INTO cities (id, city, country_id) VALUES (441, 'Saint Louis', 103); INSERT INTO cities (id, city, country_id) VALUES (442, 'Saint-Denis', 79); INSERT INTO cities (id, city, country_id) VALUES (443, 'Sal', 62); INSERT INTO cities (id, city, country_id) VALUES (444, 'Salala', 71); INSERT INTO cities (id, city, country_id) VALUES (445, 'Salamanca', 60); INSERT INTO cities (id, city, country_id) VALUES (446, 'Salinas', 103); INSERT INTO cities (id, city, country_id) VALUES (447, 'Salzburg', 9); INSERT INTO cities (id, city, country_id) VALUES (448, 'Sambhal', 44); INSERT INTO cities (id, city, country_id) VALUES (449, 'San Bernardino', 103); INSERT INTO cities (id, city, country_id) VALUES (450, 'San Felipe de Puerto Plata', 27); INSERT INTO cities (id, city, country_id) VALUES (451, 'San Felipe del Progreso', 60); INSERT INTO cities (id, city, country_id) VALUES (452, 'San Juan Bautista Tuxtepec', 60); INSERT INTO cities (id, city, country_id) VALUES (453, 'San Lorenzo', 73); INSERT INTO cities (id, city, country_id) VALUES (454, 'San Miguel de Tucumn', 6); INSERT INTO cities (id, city, country_id) VALUES (455, 'Sanaa', 107); INSERT INTO cities (id, city, country_id) VALUES (456, 'Santa Brbara dOeste', 15); INSERT INTO cities (id, city, country_id) VALUES (457, 'Santa F', 6); INSERT INTO cities (id, city, country_id) VALUES (458, 'Santa Rosa', 75); INSERT INTO cities (id, city, country_id) VALUES (459, 'Santiago de Compostela', 87); INSERT INTO cities (id, city, country_id) VALUES (460, 'Santiago de los Caballeros', 27); INSERT INTO cities (id, city, country_id) VALUES (461, 'Santo Andr', 15); INSERT INTO cities (id, city, country_id) VALUES (462, 'Sanya', 23); INSERT INTO cities (id, city, country_id) VALUES (463, 'Sasebo', 50); INSERT INTO cities (id, city, country_id) VALUES (464, 'Satna', 44); INSERT INTO cities (id, city, country_id) VALUES (465, 'Sawhaj', 29); INSERT INTO cities (id, city, country_id) VALUES (466, 'Serpuhov', 80); INSERT INTO cities (id, city, country_id) VALUES (467, 'Shahr-e Kord', 46); INSERT INTO cities (id, city, country_id) VALUES (468, 'Shanwei', 23); INSERT INTO cities (id, city, country_id) VALUES (469, 'Shaoguan', 23); INSERT INTO cities (id, city, country_id) VALUES (470, 'Sharja', 101); INSERT INTO cities (id, city, country_id) VALUES (471, 'Shenzhen', 23); INSERT INTO cities (id, city, country_id) VALUES (472, 'Shikarpur', 72); INSERT INTO cities (id, city, country_id) VALUES (473, 'Shimoga', 44); INSERT INTO cities (id, city, country_id) VALUES (474, 'Shimonoseki', 50); INSERT INTO cities (id, city, country_id) VALUES (475, 'Shivapuri', 44); INSERT INTO cities (id, city, country_id) VALUES (476, 'Shubra al-Khayma', 29); INSERT INTO cities (id, city, country_id) VALUES (477, 'Siegen', 38); INSERT INTO cities (id, city, country_id) VALUES (478, 'Siliguri (Shiliguri)', 44); INSERT INTO cities (id, city, country_id) VALUES (479, 'Simferopol', 100); INSERT INTO cities (id, city, country_id) VALUES (480, 'Sincelejo', 24); INSERT INTO cities (id, city, country_id) VALUES (481, 'Sirjan', 46); INSERT INTO cities (id, city, country_id) VALUES (482, 'Sivas', 97); INSERT INTO cities (id, city, country_id) VALUES (483, 'Skikda', 2); INSERT INTO cities (id, city, country_id) VALUES (484, 'Smolensk', 80); INSERT INTO cities (id, city, country_id) VALUES (485, 'So Bernardo do Campo', 15); INSERT INTO cities (id, city, country_id) VALUES (486, 'So Leopoldo', 15); INSERT INTO cities (id, city, country_id) VALUES (487, 'Sogamoso', 24); INSERT INTO cities (id, city, country_id) VALUES (488, 'Sokoto', 69); INSERT INTO cities (id, city, country_id) VALUES (489, 'Songkhla', 94); INSERT INTO cities (id, city, country_id) VALUES (490, 'Sorocaba', 15); INSERT INTO cities (id, city, country_id) VALUES (491, 'Soshanguve', 85); INSERT INTO cities (id, city, country_id) VALUES (492, 'Sousse', 96); INSERT INTO cities (id, city, country_id) VALUES (493, 'South Hill', 5); INSERT INTO cities (id, city, country_id) VALUES (494, 'Southampton', 102); INSERT INTO cities (id, city, country_id) VALUES (495, 'Southend-on-Sea', 102); INSERT INTO cities (id, city, country_id) VALUES (496, 'Southport', 102); INSERT INTO cities (id, city, country_id) VALUES (497, 'Springs', 85); INSERT INTO cities (id, city, country_id) VALUES (498, 'Stara Zagora', 17); INSERT INTO cities (id, city, country_id) VALUES (499, 'Sterling Heights', 103); INSERT INTO cities (id, city, country_id) VALUES (500, 'Stockport', 102); INSERT INTO cities (id, city, country_id) VALUES (501, 'Sucre', 14); INSERT INTO cities (id, city, country_id) VALUES (502, 'Suihua', 23); INSERT INTO cities (id, city, country_id) VALUES (503, 'Sullana', 74); INSERT INTO cities (id, city, country_id) VALUES (504, 'Sultanbeyli', 97); INSERT INTO cities (id, city, country_id) VALUES (505, 'Sumqayit', 10); INSERT INTO cities (id, city, country_id) VALUES (506, 'Sumy', 100); INSERT INTO cities (id, city, country_id) VALUES (507, 'Sungai Petani', 59); INSERT INTO cities (id, city, country_id) VALUES (508, 'Sunnyvale', 103); INSERT INTO cities (id, city, country_id) VALUES (509, 'Surakarta', 45); INSERT INTO cities (id, city, country_id) VALUES (510, 'Syktyvkar', 80); INSERT INTO cities (id, city, country_id) VALUES (511, 'Syrakusa', 49); INSERT INTO cities (id, city, country_id) VALUES (512, 'Szkesfehrvr', 43); INSERT INTO cities (id, city, country_id) VALUES (513, 'Tabora', 93); INSERT INTO cities (id, city, country_id) VALUES (514, 'Tabriz', 46); INSERT INTO cities (id, city, country_id) VALUES (515, 'Tabuk', 82); INSERT INTO cities (id, city, country_id) VALUES (516, 'Tafuna', 3); INSERT INTO cities (id, city, country_id) VALUES (517, 'Taguig', 75); INSERT INTO cities (id, city, country_id) VALUES (518, 'Taizz', 107); INSERT INTO cities (id, city, country_id) VALUES (519, 'Talavera', 75); INSERT INTO cities (id, city, country_id) VALUES (520, 'Tallahassee', 103); INSERT INTO cities (id, city, country_id) VALUES (521, 'Tama', 50); INSERT INTO cities (id, city, country_id) VALUES (522, 'Tambaram', 44); INSERT INTO cities (id, city, country_id) VALUES (523, 'Tanauan', 75); INSERT INTO cities (id, city, country_id) VALUES (524, 'Tandil', 6); INSERT INTO cities (id, city, country_id) VALUES (525, 'Tangail', 12); INSERT INTO cities (id, city, country_id) VALUES (526, 'Tanshui', 92); INSERT INTO cities (id, city, country_id) VALUES (527, 'Tanza', 75); INSERT INTO cities (id, city, country_id) VALUES (528, 'Tarlac', 75); INSERT INTO cities (id, city, country_id) VALUES (529, 'Tarsus', 97); INSERT INTO cities (id, city, country_id) VALUES (530, 'Tartu', 30); INSERT INTO cities (id, city, country_id) VALUES (531, 'Teboksary', 80); INSERT INTO cities (id, city, country_id) VALUES (532, 'Tegal', 45); INSERT INTO cities (id, city, country_id) VALUES (533, 'Tel Aviv-Jaffa', 48); INSERT INTO cities (id, city, country_id) VALUES (534, 'Tete', 63); INSERT INTO cities (id, city, country_id) VALUES (535, 'Tianjin', 23); INSERT INTO cities (id, city, country_id) VALUES (536, 'Tiefa', 23); INSERT INTO cities (id, city, country_id) VALUES (537, 'Tieli', 23); INSERT INTO cities (id, city, country_id) VALUES (538, 'Tokat', 97); INSERT INTO cities (id, city, country_id) VALUES (539, 'Tonghae', 86); INSERT INTO cities (id, city, country_id) VALUES (540, 'Tongliao', 23); INSERT INTO cities (id, city, country_id) VALUES (541, 'Torren', 60); INSERT INTO cities (id, city, country_id) VALUES (542, 'Touliu', 92); INSERT INTO cities (id, city, country_id) VALUES (543, 'Toulon', 34); INSERT INTO cities (id, city, country_id) VALUES (544, 'Toulouse', 34); INSERT INTO cities (id, city, country_id) VALUES (545, 'Trshavn', 32); INSERT INTO cities (id, city, country_id) VALUES (546, 'Tsaotun', 92); INSERT INTO cities (id, city, country_id) VALUES (547, 'Tsuyama', 50); INSERT INTO cities (id, city, country_id) VALUES (548, 'Tuguegarao', 75); INSERT INTO cities (id, city, country_id) VALUES (549, 'Tychy', 76); INSERT INTO cities (id, city, country_id) VALUES (550, 'Udaipur', 44); INSERT INTO cities (id, city, country_id) VALUES (551, 'Udine', 49); INSERT INTO cities (id, city, country_id) VALUES (552, 'Ueda', 50); INSERT INTO cities (id, city, country_id) VALUES (553, 'Uijongbu', 86); INSERT INTO cities (id, city, country_id) VALUES (554, 'Uluberia', 44); INSERT INTO cities (id, city, country_id) VALUES (555, 'Urawa', 50); INSERT INTO cities (id, city, country_id) VALUES (556, 'Uruapan', 60); INSERT INTO cities (id, city, country_id) VALUES (557, 'Usak', 97); INSERT INTO cities (id, city, country_id) VALUES (558, 'Usolje-Sibirskoje', 80); INSERT INTO cities (id, city, country_id) VALUES (559, 'Uttarpara-Kotrung', 44); INSERT INTO cities (id, city, country_id) VALUES (560, 'Vaduz', 55); INSERT INTO cities (id, city, country_id) VALUES (561, 'Valencia', 104); INSERT INTO cities (id, city, country_id) VALUES (562, 'Valle de la Pascua', 104); INSERT INTO cities (id, city, country_id) VALUES (563, 'Valle de Santiago', 60); INSERT INTO cities (id, city, country_id) VALUES (564, 'Valparai', 44); INSERT INTO cities (id, city, country_id) VALUES (565, 'Vancouver', 20); INSERT INTO cities (id, city, country_id) VALUES (566, 'Varanasi (Benares)', 44); INSERT INTO cities (id, city, country_id) VALUES (567, 'Vicente Lpez', 6); INSERT INTO cities (id, city, country_id) VALUES (568, 'Vijayawada', 44); INSERT INTO cities (id, city, country_id) VALUES (569, 'Vila Velha', 15); INSERT INTO cities (id, city, country_id) VALUES (570, 'Vilnius', 56); INSERT INTO cities (id, city, country_id) VALUES (571, 'Vinh', 105); INSERT INTO cities (id, city, country_id) VALUES (572, 'Vitria de Santo Anto', 15); INSERT INTO cities (id, city, country_id) VALUES (573, 'Warren', 103); INSERT INTO cities (id, city, country_id) VALUES (574, 'Weifang', 23); INSERT INTO cities (id, city, country_id) VALUES (575, 'Witten', 38); INSERT INTO cities (id, city, country_id) VALUES (576, 'Woodridge', 8); INSERT INTO cities (id, city, country_id) VALUES (577, 'Wroclaw', 76); INSERT INTO cities (id, city, country_id) VALUES (578, 'Xiangfan', 23); INSERT INTO cities (id, city, country_id) VALUES (579, 'Xiangtan', 23); INSERT INTO cities (id, city, country_id) VALUES (580, 'Xintai', 23); INSERT INTO cities (id, city, country_id) VALUES (581, 'Xinxiang', 23); INSERT INTO cities (id, city, country_id) VALUES (582, 'Yamuna Nagar', 44); INSERT INTO cities (id, city, country_id) VALUES (583, 'Yangor', 65); INSERT INTO cities (id, city, country_id) VALUES (584, 'Yantai', 23); INSERT INTO cities (id, city, country_id) VALUES (585, 'Yaound', 19); INSERT INTO cities (id, city, country_id) VALUES (586, 'Yerevan', 7); INSERT INTO cities (id, city, country_id) VALUES (587, 'Yinchuan', 23); INSERT INTO cities (id, city, country_id) VALUES (588, 'Yingkou', 23); INSERT INTO cities (id, city, country_id) VALUES (589, 'York', 102); INSERT INTO cities (id, city, country_id) VALUES (590, 'Yuncheng', 23); INSERT INTO cities (id, city, country_id) VALUES (591, 'Yuzhou', 23); INSERT INTO cities (id, city, country_id) VALUES (592, 'Zalantun', 23); INSERT INTO cities (id, city, country_id) VALUES (593, 'Zanzibar', 93); INSERT INTO cities (id, city, country_id) VALUES (594, 'Zaoyang', 23); INSERT INTO cities (id, city, country_id) VALUES (595, 'Zapopan', 60); INSERT INTO cities (id, city, country_id) VALUES (596, 'Zaria', 69); INSERT INTO cities (id, city, country_id) VALUES (597, 'Zeleznogorsk', 80); INSERT INTO cities (id, city, country_id) VALUES (598, 'Zhezqazghan', 51); INSERT INTO cities (id, city, country_id) VALUES (599, 'Zhoushan', 23); INSERT INTO cities (id, city, country_id) VALUES (600, 'Ziguinchor', 83); -- -- TOC entry 1663 (class 0 OID 60362) -- Dependencies: 1219 -- Data for Name: countries; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO countries (id, country) VALUES (1, 'Afghanistan'); INSERT INTO countries (id, country) VALUES (2, 'Algeria'); INSERT INTO countries (id, country) VALUES (3, 'American Samoa'); INSERT INTO countries (id, country) VALUES (4, 'Angola'); INSERT INTO countries (id, country) VALUES (5, 'Anguilla'); INSERT INTO countries (id, country) VALUES (6, 'Argentina'); INSERT INTO countries (id, country) VALUES (7, 'Armenia'); INSERT INTO countries (id, country) VALUES (8, 'Australia'); INSERT INTO countries (id, country) VALUES (9, 'Austria'); INSERT INTO countries (id, country) VALUES (10, 'Azerbaijan'); INSERT INTO countries (id, country) VALUES (11, 'Bahrain'); INSERT INTO countries (id, country) VALUES (12, 'Bangladesh'); INSERT INTO countries (id, country) VALUES (13, 'Belarus'); INSERT INTO countries (id, country) VALUES (14, 'Bolivia'); INSERT INTO countries (id, country) VALUES (15, 'Brazil'); INSERT INTO countries (id, country) VALUES (16, 'Brunei'); INSERT INTO countries (id, country) VALUES (17, 'Bulgaria'); INSERT INTO countries (id, country) VALUES (18, 'Cambodia'); INSERT INTO countries (id, country) VALUES (19, 'Cameroon'); INSERT INTO countries (id, country) VALUES (20, 'Canada'); INSERT INTO countries (id, country) VALUES (21, 'Chad'); INSERT INTO countries (id, country) VALUES (22, 'Chile'); INSERT INTO countries (id, country) VALUES (23, 'China'); INSERT INTO countries (id, country) VALUES (24, 'Colombia'); INSERT INTO countries (id, country) VALUES (25, 'Congo, The Democratic Republic of the'); INSERT INTO countries (id, country) VALUES (26, 'Czech Republic'); INSERT INTO countries (id, country) VALUES (27, 'Dominican Republic'); INSERT INTO countries (id, country) VALUES (28, 'Ecuador'); INSERT INTO countries (id, country) VALUES (29, 'Egypt'); INSERT INTO countries (id, country) VALUES (30, 'Estonia'); INSERT INTO countries (id, country) VALUES (31, 'Ethiopia'); INSERT INTO countries (id, country) VALUES (32, 'Faroe Islands'); INSERT INTO countries (id, country) VALUES (33, 'Finland'); INSERT INTO countries (id, country) VALUES (34, 'France'); INSERT INTO countries (id, country) VALUES (35, 'French Guiana'); INSERT INTO countries (id, country) VALUES (36, 'French Polynesia'); INSERT INTO countries (id, country) VALUES (37, 'Gambia'); INSERT INTO countries (id, country) VALUES (38, 'Germany'); INSERT INTO countries (id, country) VALUES (39, 'Greece'); INSERT INTO countries (id, country) VALUES (40, 'Greenland'); INSERT INTO countries (id, country) VALUES (41, 'Holy See (Vatican City State)'); INSERT INTO countries (id, country) VALUES (42, 'Hong Kong'); INSERT INTO countries (id, country) VALUES (43, 'Hungary'); INSERT INTO countries (id, country) VALUES (44, 'India'); INSERT INTO countries (id, country) VALUES (45, 'Indonesia'); INSERT INTO countries (id, country) VALUES (46, 'Iran'); INSERT INTO countries (id, country) VALUES (47, 'Iraq'); INSERT INTO countries (id, country) VALUES (48, 'Israel'); INSERT INTO countries (id, country) VALUES (49, 'Italy'); INSERT INTO countries (id, country) VALUES (50, 'Japan'); INSERT INTO countries (id, country) VALUES (51, 'Kazakstan'); INSERT INTO countries (id, country) VALUES (52, 'Kenya'); INSERT INTO countries (id, country) VALUES (53, 'Kuwait'); INSERT INTO countries (id, country) VALUES (54, 'Latvia'); INSERT INTO countries (id, country) VALUES (55, 'Liechtenstein'); INSERT INTO countries (id, country) VALUES (56, 'Lithuania'); INSERT INTO countries (id, country) VALUES (57, 'Madagascar'); INSERT INTO countries (id, country) VALUES (58, 'Malawi'); INSERT INTO countries (id, country) VALUES (59, 'Malaysia'); INSERT INTO countries (id, country) VALUES (60, 'Mexico'); INSERT INTO countries (id, country) VALUES (61, 'Moldova'); INSERT INTO countries (id, country) VALUES (62, 'Morocco'); INSERT INTO countries (id, country) VALUES (63, 'Mozambique'); INSERT INTO countries (id, country) VALUES (64, 'Myanmar'); INSERT INTO countries (id, country) VALUES (65, 'Nauru'); INSERT INTO countries (id, country) VALUES (66, 'Nepal'); INSERT INTO countries (id, country) VALUES (67, 'Netherlands'); INSERT INTO countries (id, country) VALUES (68, 'New Zealand'); INSERT INTO countries (id, country) VALUES (69, 'Nigeria'); INSERT INTO countries (id, country) VALUES (70, 'North Korea'); INSERT INTO countries (id, country) VALUES (71, 'Oman'); INSERT INTO countries (id, country) VALUES (72, 'Pakistan'); INSERT INTO countries (id, country) VALUES (73, 'Paraguay'); INSERT INTO countries (id, country) VALUES (74, 'Peru'); INSERT INTO countries (id, country) VALUES (75, 'Philippines'); INSERT INTO countries (id, country) VALUES (76, 'Poland'); INSERT INTO countries (id, country) VALUES (77, 'Puerto Rico'); INSERT INTO countries (id, country) VALUES (78, 'Romania'); INSERT INTO countries (id, country) VALUES (79, 'Runion'); INSERT INTO countries (id, country) VALUES (80, 'Russian Federation'); INSERT INTO countries (id, country) VALUES (81, 'Saint Vincent and the Grenadines'); INSERT INTO countries (id, country) VALUES (82, 'Saudi Arabia'); INSERT INTO countries (id, country) VALUES (83, 'Senegal'); INSERT INTO countries (id, country) VALUES (84, 'Slovakia'); INSERT INTO countries (id, country) VALUES (85, 'South Africa'); INSERT INTO countries (id, country) VALUES (86, 'South Korea'); INSERT INTO countries (id, country) VALUES (87, 'Spain'); INSERT INTO countries (id, country) VALUES (88, 'Sri Lanka'); INSERT INTO countries (id, country) VALUES (89, 'Sudan'); INSERT INTO countries (id, country) VALUES (90, 'Sweden'); INSERT INTO countries (id, country) VALUES (91, 'Switzerland'); INSERT INTO countries (id, country) VALUES (92, 'Taiwan'); INSERT INTO countries (id, country) VALUES (93, 'Tanzania'); INSERT INTO countries (id, country) VALUES (94, 'Thailand'); INSERT INTO countries (id, country) VALUES (95, 'Tonga'); INSERT INTO countries (id, country) VALUES (96, 'Tunisia'); INSERT INTO countries (id, country) VALUES (97, 'Turkey'); INSERT INTO countries (id, country) VALUES (98, 'Turkmenistan'); INSERT INTO countries (id, country) VALUES (99, 'Tuvalu'); INSERT INTO countries (id, country) VALUES (100, 'Ukraine'); INSERT INTO countries (id, country) VALUES (101, 'United Arab Emirates'); INSERT INTO countries (id, country) VALUES (102, 'United Kingdom'); INSERT INTO countries (id, country) VALUES (103, 'United States'); INSERT INTO countries (id, country) VALUES (104, 'Venezuela'); INSERT INTO countries (id, country) VALUES (105, 'Vietnam'); INSERT INTO countries (id, country) VALUES (106, 'Virgin Islands, U.S.'); INSERT INTO countries (id, country) VALUES (107, 'Yemen'); INSERT INTO countries (id, country) VALUES (108, 'Yugoslavia'); INSERT INTO countries (id, country) VALUES (109, 'Zambia'); -- -- TOC entry 1664 (class 0 OID 60368) -- Dependencies: 1221 -- Data for Name: customers; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (1, 1, 'SMITH', 'MARY', 5, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (2, 1, 'JOHNSON', 'PATRICIA', 6, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (3, 1, 'WILLIAMS', 'LINDA', 7, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (4, 2, 'JONES', 'BARBARA', 8, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (5, 1, 'BROWN', 'ELIZABETH', 9, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (6, 2, 'DAVIS', 'JENNIFER', 10, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (7, 1, 'MILLER', 'MARIA', 11, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (8, 2, 'WILSON', 'SUSAN', 12, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (9, 2, 'MOORE', 'MARGARET', 13, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (10, 1, 'TAYLOR', 'DOROTHY', 14, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (11, 2, 'ANDERSON', 'LISA', 15, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (12, 1, 'THOMAS', 'NANCY', 16, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (13, 2, 'JACKSON', 'KAREN', 17, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (14, 2, 'WHITE', 'BETTY', 18, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (15, 1, 'HARRIS', 'HELEN', 19, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (16, 2, 'MARTIN', 'SANDRA', 20, false); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (17, 1, 'THOMPSON', 'DONNA', 21, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (18, 2, 'GARCIA', 'CAROL', 22, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (19, 1, 'MARTINEZ', 'RUTH', 23, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (20, 2, 'ROBINSON', 'SHARON', 24, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (21, 1, 'CLARK', 'MICHELLE', 25, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (22, 1, 'RODRIGUEZ', 'LAURA', 26, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (23, 2, 'LEWIS', 'SARAH', 27, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (24, 2, 'LEE', 'KIMBERLY', 28, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (25, 1, 'WALKER', 'DEBORAH', 29, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (26, 2, 'HALL', 'JESSICA', 30, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (27, 2, 'ALLEN', 'SHIRLEY', 31, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (28, 1, 'YOUNG', 'CYNTHIA', 32, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (29, 2, 'HERNANDEZ', 'ANGELA', 33, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (30, 1, 'KING', 'MELISSA', 34, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (31, 2, 'WRIGHT', 'BRENDA', 35, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (32, 1, 'LOPEZ', 'AMY', 36, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (33, 2, 'HILL', 'ANNA', 37, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (34, 2, 'SCOTT', 'REBECCA', 38, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (35, 2, 'GREEN', 'VIRGINIA', 39, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (36, 2, 'ADAMS', 'KATHLEEN', 40, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (37, 1, 'BAKER', 'PAMELA', 41, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (38, 1, 'GONZALEZ', 'MARTHA', 42, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (39, 1, 'NELSON', 'DEBRA', 43, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (40, 2, 'CARTER', 'AMANDA', 44, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (41, 1, 'MITCHELL', 'STEPHANIE', 45, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (42, 2, 'PEREZ', 'CAROLYN', 46, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (43, 2, 'ROBERTS', 'CHRISTINE', 47, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (44, 1, 'TURNER', 'MARIE', 48, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (45, 1, 'PHILLIPS', 'JANET', 49, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (46, 2, 'CAMPBELL', 'CATHERINE', 50, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (47, 1, 'PARKER', 'FRANCES', 51, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (48, 1, 'EVANS', 'ANN', 52, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (49, 2, 'EDWARDS', 'JOYCE', 53, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (50, 1, 'COLLINS', 'DIANE', 54, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (51, 1, 'STEWART', 'ALICE', 55, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (52, 1, 'SANCHEZ', 'JULIE', 56, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (53, 1, 'MORRIS', 'HEATHER', 57, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (54, 1, 'ROGERS', 'TERESA', 58, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (55, 2, 'REED', 'DORIS', 59, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (56, 1, 'COOK', 'GLORIA', 60, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (57, 2, 'MORGAN', 'EVELYN', 61, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (58, 1, 'BELL', 'JEAN', 62, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (59, 1, 'MURPHY', 'CHERYL', 63, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (60, 1, 'BAILEY', 'MILDRED', 64, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (61, 2, 'RIVERA', 'KATHERINE', 65, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (62, 1, 'COOPER', 'JOAN', 66, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (63, 1, 'RICHARDSON', 'ASHLEY', 67, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (64, 2, 'COX', 'JUDITH', 68, false); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (65, 2, 'HOWARD', 'ROSE', 69, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (66, 2, 'WARD', 'JANICE', 70, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (67, 1, 'TORRES', 'KELLY', 71, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (68, 1, 'PETERSON', 'NICOLE', 72, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (69, 2, 'GRAY', 'JUDY', 73, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (70, 2, 'RAMIREZ', 'CHRISTINA', 74, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (71, 1, 'JAMES', 'KATHY', 75, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (72, 2, 'WATSON', 'THERESA', 76, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (73, 2, 'BROOKS', 'BEVERLY', 77, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (74, 1, 'KELLY', 'DENISE', 78, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (75, 2, 'SANDERS', 'TAMMY', 79, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (76, 2, 'PRICE', 'IRENE', 80, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (77, 2, 'BENNETT', 'JANE', 81, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (78, 1, 'WOOD', 'LORI', 82, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (79, 1, 'BARNES', 'RACHEL', 83, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (80, 1, 'ROSS', 'MARILYN', 84, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (81, 1, 'HENDERSON', 'ANDREA', 85, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (82, 1, 'COLEMAN', 'KATHRYN', 86, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (83, 1, 'JENKINS', 'LOUISE', 87, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (84, 2, 'PERRY', 'SARA', 88, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (85, 2, 'POWELL', 'ANNE', 89, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (86, 2, 'LONG', 'JACQUELINE', 90, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (87, 1, 'PATTERSON', 'WANDA', 91, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (88, 2, 'HUGHES', 'BONNIE', 92, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (89, 1, 'FLORES', 'JULIA', 93, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (90, 2, 'WASHINGTON', 'RUBY', 94, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (91, 2, 'BUTLER', 'LOIS', 95, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (92, 2, 'SIMMONS', 'TINA', 96, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (93, 1, 'FOSTER', 'PHYLLIS', 97, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (94, 1, 'GONZALES', 'NORMA', 98, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (95, 2, 'BRYANT', 'PAULA', 99, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (96, 1, 'ALEXANDER', 'DIANA', 100, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (97, 2, 'RUSSELL', 'ANNIE', 101, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (98, 1, 'GRIFFIN', 'LILLIAN', 102, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (99, 2, 'DIAZ', 'EMILY', 103, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (100, 1, 'HAYES', 'ROBIN', 104, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (101, 1, 'MYERS', 'PEGGY', 105, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (102, 1, 'FORD', 'CRYSTAL', 106, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (103, 1, 'HAMILTON', 'GLADYS', 107, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (104, 1, 'GRAHAM', 'RITA', 108, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (105, 1, 'SULLIVAN', 'DAWN', 109, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (106, 1, 'WALLACE', 'CONNIE', 110, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (107, 1, 'WOODS', 'FLORENCE', 111, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (108, 1, 'COLE', 'TRACY', 112, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (109, 2, 'WEST', 'EDNA', 113, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (110, 2, 'JORDAN', 'TIFFANY', 114, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (111, 1, 'OWENS', 'CARMEN', 115, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (112, 2, 'REYNOLDS', 'ROSA', 116, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (113, 2, 'FISHER', 'CINDY', 117, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (114, 2, 'ELLIS', 'GRACE', 118, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (115, 1, 'HARRISON', 'WENDY', 119, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (116, 1, 'GIBSON', 'VICTORIA', 120, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (117, 1, 'MCDONALD', 'EDITH', 121, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (118, 1, 'CRUZ', 'KIM', 122, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (119, 1, 'MARSHALL', 'SHERRY', 123, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (120, 2, 'ORTIZ', 'SYLVIA', 124, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (121, 1, 'GOMEZ', 'JOSEPHINE', 125, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (122, 1, 'MURRAY', 'THELMA', 126, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (123, 2, 'FREEMAN', 'SHANNON', 127, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (124, 1, 'WELLS', 'SHEILA', 128, false); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (125, 1, 'WEBB', 'ETHEL', 129, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (126, 1, 'SIMPSON', 'ELLEN', 130, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (127, 2, 'STEVENS', 'ELAINE', 131, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (128, 1, 'TUCKER', 'MARJORIE', 132, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (129, 1, 'PORTER', 'CARRIE', 133, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (130, 1, 'HUNTER', 'CHARLOTTE', 134, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (131, 2, 'HICKS', 'MONICA', 135, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (132, 2, 'CRAWFORD', 'ESTHER', 136, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (133, 1, 'HENRY', 'PAULINE', 137, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (134, 1, 'BOYD', 'EMMA', 138, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (135, 2, 'MASON', 'JUANITA', 139, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (136, 2, 'MORALES', 'ANITA', 140, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (137, 2, 'KENNEDY', 'RHONDA', 141, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (138, 1, 'WARREN', 'HAZEL', 142, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (139, 1, 'DIXON', 'AMBER', 143, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (140, 1, 'RAMOS', 'EVA', 144, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (141, 1, 'REYES', 'DEBBIE', 145, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (142, 1, 'BURNS', 'APRIL', 146, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (143, 1, 'GORDON', 'LESLIE', 147, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (144, 1, 'SHAW', 'CLARA', 148, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (145, 1, 'HOLMES', 'LUCILLE', 149, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (146, 1, 'RICE', 'JAMIE', 150, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (147, 2, 'ROBERTSON', 'JOANNE', 151, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (148, 1, 'HUNT', 'ELEANOR', 152, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (149, 1, 'BLACK', 'VALERIE', 153, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (150, 2, 'DANIELS', 'DANIELLE', 154, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (151, 2, 'PALMER', 'MEGAN', 155, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (152, 1, 'MILLS', 'ALICIA', 156, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (153, 2, 'NICHOLS', 'SUZANNE', 157, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (154, 2, 'GRANT', 'MICHELE', 158, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (155, 1, 'KNIGHT', 'GAIL', 159, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (156, 1, 'FERGUSON', 'BERTHA', 160, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (157, 2, 'ROSE', 'DARLENE', 161, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (158, 1, 'STONE', 'VERONICA', 162, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (159, 1, 'HAWKINS', 'JILL', 163, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (160, 2, 'DUNN', 'ERIN', 164, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (161, 1, 'PERKINS', 'GERALDINE', 165, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (162, 2, 'HUDSON', 'LAUREN', 166, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (163, 1, 'SPENCER', 'CATHY', 167, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (164, 2, 'GARDNER', 'JOANN', 168, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (165, 2, 'STEPHENS', 'LORRAINE', 169, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (166, 1, 'PAYNE', 'LYNN', 170, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (167, 2, 'PIERCE', 'SALLY', 171, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (168, 1, 'BERRY', 'REGINA', 172, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (169, 2, 'MATTHEWS', 'ERICA', 173, false); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (170, 1, 'ARNOLD', 'BEATRICE', 174, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (171, 2, 'WAGNER', 'DOLORES', 175, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (172, 1, 'WILLIS', 'BERNICE', 176, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (173, 1, 'RAY', 'AUDREY', 177, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (174, 2, 'WATKINS', 'YVONNE', 178, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (175, 1, 'OLSON', 'ANNETTE', 179, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (176, 1, 'CARROLL', 'JUNE', 180, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (177, 2, 'DUNCAN', 'SAMANTHA', 181, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (178, 2, 'SNYDER', 'MARION', 182, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (179, 1, 'HART', 'DANA', 183, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (180, 2, 'CUNNINGHAM', 'STACY', 184, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (181, 2, 'BRADLEY', 'ANA', 185, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (182, 1, 'LANE', 'RENEE', 186, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (183, 2, 'ANDREWS', 'IDA', 187, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (184, 1, 'RUIZ', 'VIVIAN', 188, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (185, 1, 'HARPER', 'ROBERTA', 189, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (186, 2, 'FOX', 'HOLLY', 190, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (187, 2, 'RILEY', 'BRITTANY', 191, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (188, 1, 'ARMSTRONG', 'MELANIE', 192, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (189, 1, 'CARPENTER', 'LORETTA', 193, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (190, 2, 'WEAVER', 'YOLANDA', 194, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (191, 1, 'GREENE', 'JEANETTE', 195, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (192, 1, 'LAWRENCE', 'LAURIE', 196, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (193, 2, 'ELLIOTT', 'KATIE', 197, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (194, 2, 'CHAVEZ', 'KRISTEN', 198, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (195, 1, 'SIMS', 'VANESSA', 199, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (196, 1, 'AUSTIN', 'ALMA', 200, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (197, 2, 'PETERS', 'SUE', 201, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (198, 2, 'KELLEY', 'ELSIE', 202, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (199, 2, 'FRANKLIN', 'BETH', 203, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (200, 2, 'LAWSON', 'JEANNE', 204, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (201, 1, 'FIELDS', 'VICKI', 205, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (202, 2, 'GUTIERREZ', 'CARLA', 206, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (203, 1, 'RYAN', 'TARA', 207, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (204, 1, 'SCHMIDT', 'ROSEMARY', 208, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (205, 2, 'CARR', 'EILEEN', 209, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (206, 1, 'VASQUEZ', 'TERRI', 210, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (207, 1, 'CASTILLO', 'GERTRUDE', 211, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (208, 1, 'WHEELER', 'LUCY', 212, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (209, 2, 'CHAPMAN', 'TONYA', 213, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (210, 2, 'OLIVER', 'ELLA', 214, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (211, 1, 'MONTGOMERY', 'STACEY', 215, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (212, 2, 'RICHARDS', 'WILMA', 216, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (213, 1, 'WILLIAMSON', 'GINA', 217, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (214, 1, 'JOHNSTON', 'KRISTIN', 218, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (215, 2, 'BANKS', 'JESSIE', 219, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (216, 1, 'MEYER', 'NATALIE', 220, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (217, 2, 'BISHOP', 'AGNES', 221, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (218, 1, 'MCCOY', 'VERA', 222, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (219, 2, 'HOWELL', 'WILLIE', 223, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (220, 2, 'ALVAREZ', 'CHARLENE', 224, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (221, 1, 'MORRISON', 'BESSIE', 225, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (222, 2, 'HANSEN', 'DELORES', 226, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (223, 1, 'FERNANDEZ', 'MELINDA', 227, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (224, 2, 'GARZA', 'PEARL', 228, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (225, 1, 'HARVEY', 'ARLENE', 229, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (226, 2, 'LITTLE', 'MAUREEN', 230, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (227, 1, 'BURTON', 'COLLEEN', 231, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (228, 2, 'STANLEY', 'ALLISON', 232, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (229, 1, 'NGUYEN', 'TAMARA', 233, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (230, 2, 'GEORGE', 'JOY', 234, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (231, 1, 'JACOBS', 'GEORGIA', 235, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (232, 2, 'REID', 'CONSTANCE', 236, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (233, 2, 'KIM', 'LILLIE', 237, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (234, 1, 'FULLER', 'CLAUDIA', 238, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (235, 1, 'LYNCH', 'JACKIE', 239, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (236, 1, 'DEAN', 'MARCIA', 240, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (237, 1, 'GILBERT', 'TANYA', 241, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (238, 1, 'GARRETT', 'NELLIE', 242, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (239, 2, 'ROMERO', 'MINNIE', 243, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (240, 1, 'WELCH', 'MARLENE', 244, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (241, 2, 'LARSON', 'HEIDI', 245, false); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (242, 1, 'FRAZIER', 'GLENDA', 246, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (243, 1, 'BURKE', 'LYDIA', 247, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (244, 2, 'HANSON', 'VIOLA', 248, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (245, 1, 'DAY', 'COURTNEY', 249, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (246, 1, 'MENDOZA', 'MARIAN', 250, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (247, 1, 'MORENO', 'STELLA', 251, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (248, 1, 'BOWMAN', 'CAROLINE', 252, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (249, 2, 'MEDINA', 'DORA', 253, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (250, 2, 'FOWLER', 'JO', 254, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (251, 2, 'BREWER', 'VICKIE', 255, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (252, 2, 'HOFFMAN', 'MATTIE', 256, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (253, 1, 'CARLSON', 'TERRY', 258, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (254, 2, 'SILVA', 'MAXINE', 259, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (255, 2, 'PEARSON', 'IRMA', 260, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (256, 2, 'HOLLAND', 'MABEL', 261, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (257, 2, 'DOUGLAS', 'MARSHA', 262, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (258, 1, 'FLEMING', 'MYRTLE', 263, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (259, 2, 'JENSEN', 'LENA', 264, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (260, 1, 'VARGAS', 'CHRISTY', 265, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (261, 1, 'BYRD', 'DEANNA', 266, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (262, 2, 'DAVIDSON', 'PATSY', 267, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (263, 1, 'HOPKINS', 'HILDA', 268, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (264, 1, 'MAY', 'GWENDOLYN', 269, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (265, 2, 'TERRY', 'JENNIE', 270, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (266, 2, 'HERRERA', 'NORA', 271, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (267, 1, 'WADE', 'MARGIE', 272, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (268, 1, 'SOTO', 'NINA', 273, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (269, 1, 'WALTERS', 'CASSANDRA', 274, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (270, 1, 'CURTIS', 'LEAH', 275, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (271, 1, 'NEAL', 'PENNY', 276, false); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (272, 1, 'CALDWELL', 'KAY', 277, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (273, 2, 'LOWE', 'PRISCILLA', 278, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (274, 1, 'JENNINGS', 'NAOMI', 279, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (275, 2, 'BARNETT', 'CAROLE', 280, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (276, 1, 'GRAVES', 'BRANDY', 281, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (277, 2, 'JIMENEZ', 'OLGA', 282, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (278, 2, 'HORTON', 'BILLIE', 283, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (279, 2, 'SHELTON', 'DIANNE', 284, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (280, 2, 'BARRETT', 'TRACEY', 285, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (281, 2, 'OBRIEN', 'LEONA', 286, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (282, 2, 'CASTRO', 'JENNY', 287, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (283, 1, 'SUTTON', 'FELICIA', 288, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (284, 1, 'GREGORY', 'SONIA', 289, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (285, 1, 'MCKINNEY', 'MIRIAM', 290, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (286, 1, 'LUCAS', 'VELMA', 291, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (287, 2, 'MILES', 'BECKY', 292, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (288, 1, 'CRAIG', 'BOBBIE', 293, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (289, 1, 'RODRIQUEZ', 'VIOLET', 294, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (290, 1, 'CHAMBERS', 'KRISTINA', 295, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (291, 1, 'HOLT', 'TONI', 296, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (292, 2, 'LAMBERT', 'MISTY', 297, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (293, 2, 'FLETCHER', 'MAE', 298, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (294, 2, 'WATTS', 'SHELLY', 299, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (295, 1, 'BATES', 'DAISY', 300, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (296, 2, 'HALE', 'RAMONA', 301, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (297, 1, 'RHODES', 'SHERRI', 302, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (298, 1, 'PENA', 'ERIKA', 303, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (299, 2, 'GANNON', 'JAMES', 304, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (300, 1, 'FARNSWORTH', 'JOHN', 305, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (301, 2, 'BAUGHMAN', 'ROBERT', 306, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (302, 1, 'SILVERMAN', 'MICHAEL', 307, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (303, 2, 'SATTERFIELD', 'WILLIAM', 308, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (304, 2, 'ROYAL', 'DAVID', 309, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (305, 1, 'MCCRARY', 'RICHARD', 310, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (306, 1, 'KOWALSKI', 'CHARLES', 311, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (307, 2, 'JOY', 'JOSEPH', 312, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (308, 1, 'GRIGSBY', 'THOMAS', 313, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (309, 1, 'GRECO', 'CHRISTOPHER', 314, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (310, 2, 'CABRAL', 'DANIEL', 315, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (311, 2, 'TROUT', 'PAUL', 316, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (312, 2, 'RINEHART', 'MARK', 317, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (313, 2, 'MAHON', 'DONALD', 318, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (314, 1, 'LINTON', 'GEORGE', 319, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (315, 2, 'GOODEN', 'KENNETH', 320, false); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (316, 1, 'CURLEY', 'STEVEN', 321, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (317, 2, 'BAUGH', 'EDWARD', 322, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (318, 1, 'WYMAN', 'BRIAN', 323, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (319, 2, 'WEINER', 'RONALD', 324, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (320, 2, 'SCHWAB', 'ANTHONY', 325, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (321, 1, 'SCHULER', 'KEVIN', 326, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (322, 1, 'MORRISSEY', 'JASON', 327, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (323, 2, 'MAHAN', 'MATTHEW', 328, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (324, 2, 'COY', 'GARY', 329, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (325, 1, 'BUNN', 'TIMOTHY', 330, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (326, 1, 'ANDREW', 'JOSE', 331, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (327, 2, 'THRASHER', 'LARRY', 332, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (328, 2, 'SPEAR', 'JEFFREY', 333, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (329, 2, 'WAGGONER', 'FRANK', 334, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (330, 1, 'SHELLEY', 'SCOTT', 335, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (331, 1, 'ROBERT', 'ERIC', 336, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (332, 1, 'QUALLS', 'STEPHEN', 337, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (333, 2, 'PURDY', 'ANDREW', 338, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (334, 2, 'MCWHORTER', 'RAYMOND', 339, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (335, 1, 'MAULDIN', 'GREGORY', 340, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (336, 1, 'MARK', 'JOSHUA', 341, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (337, 1, 'JORDON', 'JERRY', 342, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (338, 1, 'GILMAN', 'DENNIS', 343, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (339, 2, 'PERRYMAN', 'WALTER', 344, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (340, 1, 'NEWSOM', 'PATRICK', 345, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (341, 1, 'MENARD', 'PETER', 346, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (342, 1, 'MARTINO', 'HAROLD', 347, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (343, 1, 'GRAF', 'DOUGLAS', 348, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (344, 1, 'BILLINGSLEY', 'HENRY', 349, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (345, 1, 'ARTIS', 'CARL', 350, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (346, 1, 'SIMPKINS', 'ARTHUR', 351, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (347, 2, 'SALISBURY', 'RYAN', 352, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (348, 2, 'QUINTANILLA', 'ROGER', 353, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (349, 2, 'GILLILAND', 'JOE', 354, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (350, 1, 'FRALEY', 'JUAN', 355, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (351, 1, 'FOUST', 'JACK', 356, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (352, 1, 'CROUSE', 'ALBERT', 357, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (353, 1, 'SCARBOROUGH', 'JONATHAN', 358, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (354, 2, 'NGO', 'JUSTIN', 359, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (355, 2, 'GRISSOM', 'TERRY', 360, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (356, 2, 'FULTZ', 'GERALD', 361, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (357, 1, 'RICO', 'KEITH', 362, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (358, 2, 'MARLOW', 'SAMUEL', 363, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (359, 2, 'MARKHAM', 'WILLIE', 364, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (360, 2, 'MADRIGAL', 'RALPH', 365, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (361, 2, 'LAWTON', 'LAWRENCE', 366, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (362, 1, 'BARFIELD', 'NICHOLAS', 367, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (363, 2, 'WHITING', 'ROY', 368, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (364, 1, 'VARNEY', 'BENJAMIN', 369, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (365, 2, 'SCHWARZ', 'BRUCE', 370, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (366, 1, 'HUEY', 'BRANDON', 371, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (367, 1, 'GOOCH', 'ADAM', 372, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (368, 1, 'ARCE', 'HARRY', 373, false); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (369, 2, 'WHEAT', 'FRED', 374, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (370, 2, 'TRUONG', 'WAYNE', 375, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (371, 1, 'POULIN', 'BILLY', 376, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (372, 2, 'MACKENZIE', 'STEVE', 377, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (373, 1, 'LEONE', 'LOUIS', 378, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (374, 2, 'HURTADO', 'JEREMY', 379, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (375, 2, 'SELBY', 'AARON', 380, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (376, 1, 'GAITHER', 'RANDY', 381, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (377, 1, 'FORTNER', 'HOWARD', 382, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (378, 1, 'CULPEPPER', 'EUGENE', 383, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (379, 1, 'COUGHLIN', 'CARLOS', 384, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (380, 1, 'BRINSON', 'RUSSELL', 385, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (381, 2, 'BOUDREAU', 'BOBBY', 386, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (382, 2, 'BARKLEY', 'VICTOR', 387, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (383, 1, 'BALES', 'MARTIN', 388, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (384, 2, 'STEPP', 'ERNEST', 389, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (385, 1, 'HOLM', 'PHILLIP', 390, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (386, 1, 'TAN', 'TODD', 391, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (387, 2, 'SCHILLING', 'JESSE', 392, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (388, 2, 'MORRELL', 'CRAIG', 393, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (389, 1, 'KAHN', 'ALAN', 394, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (390, 1, 'HEATON', 'SHAWN', 395, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (391, 1, 'GAMEZ', 'CLARENCE', 396, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (392, 2, 'DOUGLASS', 'SEAN', 397, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (393, 1, 'CAUSEY', 'PHILIP', 398, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (394, 2, 'BROTHERS', 'CHRIS', 399, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (395, 2, 'TURPIN', 'JOHNNY', 400, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (396, 1, 'SHANKS', 'EARL', 401, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (397, 1, 'SCHRADER', 'JIMMY', 402, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (398, 1, 'MEEK', 'ANTONIO', 403, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (399, 1, 'ISOM', 'DANNY', 404, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (400, 2, 'HARDISON', 'BRYAN', 405, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (401, 2, 'CARRANZA', 'TONY', 406, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (402, 1, 'YANEZ', 'LUIS', 407, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (403, 1, 'WAY', 'MIKE', 408, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (404, 2, 'SCROGGINS', 'STANLEY', 409, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (405, 1, 'SCHOFIELD', 'LEONARD', 410, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (406, 1, 'RUNYON', 'NATHAN', 411, false); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (407, 1, 'RATCLIFF', 'DALE', 412, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (408, 1, 'MURRELL', 'MANUEL', 413, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (409, 2, 'MOELLER', 'RODNEY', 414, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (410, 2, 'IRBY', 'CURTIS', 415, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (411, 1, 'CURRIER', 'NORMAN', 416, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (412, 2, 'BUTTERFIELD', 'ALLEN', 417, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (413, 2, 'YEE', 'MARVIN', 418, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (414, 1, 'RALSTON', 'VINCENT', 419, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (415, 1, 'PULLEN', 'GLENN', 420, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (416, 2, 'PINSON', 'JEFFERY', 421, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (417, 1, 'ESTEP', 'TRAVIS', 422, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (418, 2, 'EAST', 'JEFF', 423, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (419, 1, 'CARBONE', 'CHAD', 424, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (420, 1, 'LANCE', 'JACOB', 425, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (421, 1, 'HAWKS', 'LEE', 426, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (422, 1, 'ELLINGTON', 'MELVIN', 427, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (423, 2, 'CASILLAS', 'ALFRED', 428, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (424, 2, 'SPURLOCK', 'KYLE', 429, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (425, 2, 'SIKES', 'FRANCIS', 430, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (426, 1, 'MOTLEY', 'BRADLEY', 431, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (427, 2, 'MCCARTNEY', 'JESUS', 432, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (428, 2, 'KRUGER', 'HERBERT', 433, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (429, 2, 'ISBELL', 'FREDERICK', 434, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (430, 1, 'HOULE', 'RAY', 435, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (431, 2, 'FRANCISCO', 'JOEL', 436, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (432, 1, 'BURK', 'EDWIN', 437, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (433, 1, 'BONE', 'DON', 438, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (434, 1, 'TOMLIN', 'EDDIE', 439, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (435, 2, 'SHELBY', 'RICKY', 440, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (436, 1, 'QUIGLEY', 'TROY', 441, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (437, 2, 'NEUMANN', 'RANDALL', 442, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (438, 1, 'LOVELACE', 'BARRY', 443, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (439, 2, 'FENNELL', 'ALEXANDER', 444, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (440, 1, 'COLBY', 'BERNARD', 445, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (441, 1, 'CHEATHAM', 'MARIO', 446, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (442, 1, 'BUSTAMANTE', 'LEROY', 447, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (443, 2, 'SKIDMORE', 'FRANCISCO', 448, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (444, 2, 'HIDALGO', 'MARCUS', 449, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (445, 1, 'FORMAN', 'MICHEAL', 450, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (446, 2, 'CULP', 'THEODORE', 451, false); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (447, 1, 'BOWENS', 'CLIFFORD', 452, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (448, 1, 'BETANCOURT', 'MIGUEL', 453, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (449, 2, 'AQUINO', 'OSCAR', 454, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (450, 1, 'ROBB', 'JAY', 455, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (451, 1, 'REA', 'JIM', 456, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (452, 1, 'MILNER', 'TOM', 457, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (453, 1, 'MARTEL', 'CALVIN', 458, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (454, 2, 'GRESHAM', 'ALEX', 459, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (455, 2, 'WILES', 'JON', 460, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (456, 2, 'RICKETTS', 'RONNIE', 461, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (457, 2, 'GAVIN', 'BILL', 462, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (458, 1, 'DOWD', 'LLOYD', 463, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (459, 1, 'COLLAZO', 'TOMMY', 464, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (460, 1, 'BOSTIC', 'LEON', 465, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (461, 1, 'BLAKELY', 'DEREK', 466, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (462, 2, 'SHERROD', 'WARREN', 467, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (463, 2, 'POWER', 'DARRELL', 468, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (464, 1, 'KENYON', 'JEROME', 469, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (465, 1, 'GANDY', 'FLOYD', 470, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (466, 1, 'EBERT', 'LEO', 471, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (467, 2, 'DELOACH', 'ALVIN', 472, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (468, 1, 'CARY', 'TIM', 473, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (469, 2, 'BULL', 'WESLEY', 474, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (470, 1, 'ALLARD', 'GORDON', 475, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (471, 1, 'SAUER', 'DEAN', 476, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (472, 1, 'ROBINS', 'GREG', 477, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (473, 2, 'OLIVARES', 'JORGE', 478, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (474, 2, 'GILLETTE', 'DUSTIN', 479, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (475, 2, 'CHESTNUT', 'PEDRO', 480, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (476, 1, 'BOURQUE', 'DERRICK', 481, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (477, 1, 'PAINE', 'DAN', 482, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (478, 1, 'LYMAN', 'LEWIS', 483, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (479, 1, 'HITE', 'ZACHARY', 484, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (480, 1, 'HAUSER', 'COREY', 485, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (481, 1, 'DEVORE', 'HERMAN', 486, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (482, 1, 'CRAWLEY', 'MAURICE', 487, false); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (483, 2, 'CHAPA', 'VERNON', 488, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (484, 1, 'VU', 'ROBERTO', 489, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (485, 1, 'TOBIAS', 'CLYDE', 490, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (486, 1, 'TALBERT', 'GLEN', 491, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (487, 2, 'POINDEXTER', 'HECTOR', 492, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (488, 2, 'MILLARD', 'SHANE', 493, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (489, 1, 'MEADOR', 'RICARDO', 494, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (490, 1, 'MCDUFFIE', 'SAM', 495, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (491, 2, 'MATTOX', 'RICK', 496, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (492, 2, 'KRAUS', 'LESTER', 497, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (493, 1, 'HARKINS', 'BRENT', 498, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (494, 2, 'CHOATE', 'RAMON', 499, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (495, 2, 'BESS', 'CHARLIE', 500, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (496, 2, 'WREN', 'TYLER', 501, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (497, 2, 'SLEDGE', 'GILBERT', 502, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (498, 1, 'SANBORN', 'GENE', 503, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (499, 2, 'OUTLAW', 'MARC', 504, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (500, 1, 'KINDER', 'REGINALD', 505, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (501, 1, 'GEARY', 'RUBEN', 506, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (502, 1, 'CORNWELL', 'BRETT', 507, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (503, 1, 'BARCLAY', 'ANGEL', 508, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (504, 1, 'ADAM', 'NATHANIEL', 509, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (505, 1, 'ABNEY', 'RAFAEL', 510, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (506, 2, 'SEWARD', 'LESLIE', 511, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (507, 2, 'RHOADS', 'EDGAR', 512, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (508, 2, 'HOWLAND', 'MILTON', 513, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (509, 1, 'FORTIER', 'RAUL', 514, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (510, 2, 'EASTER', 'BEN', 515, false); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (511, 1, 'BENNER', 'CHESTER', 516, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (512, 1, 'VINES', 'CECIL', 517, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (513, 2, 'TUBBS', 'DUANE', 519, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (514, 2, 'TROUTMAN', 'FRANKLIN', 520, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (515, 1, 'RAPP', 'ANDRE', 521, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (516, 2, 'NOE', 'ELMER', 522, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (517, 2, 'MCCURDY', 'BRAD', 523, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (518, 1, 'HARDER', 'GABRIEL', 524, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (519, 2, 'DELUCA', 'RON', 525, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (520, 2, 'WESTMORELAND', 'MITCHELL', 526, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (521, 2, 'SOUTH', 'ROLAND', 527, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (522, 2, 'HAVENS', 'ARNOLD', 528, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (523, 1, 'GUAJARDO', 'HARVEY', 529, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (524, 1, 'ELY', 'JARED', 530, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (525, 2, 'CLARY', 'ADRIAN', 531, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (526, 2, 'SEAL', 'KARL', 532, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (527, 1, 'MEEHAN', 'CORY', 533, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (528, 1, 'HERZOG', 'CLAUDE', 534, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (529, 2, 'GUILLEN', 'ERIK', 535, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (530, 2, 'ASHCRAFT', 'DARRYL', 536, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (531, 2, 'WAUGH', 'JAMIE', 537, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (532, 2, 'RENNER', 'NEIL', 538, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (533, 1, 'MILAM', 'JESSIE', 539, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (534, 1, 'JUNG', 'CHRISTIAN', 540, false); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (535, 1, 'ELROD', 'JAVIER', 541, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (536, 2, 'CHURCHILL', 'FERNANDO', 542, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (537, 2, 'BUFORD', 'CLINTON', 543, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (538, 2, 'BREAUX', 'TED', 544, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (539, 1, 'BOLIN', 'MATHEW', 545, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (540, 1, 'ASHER', 'TYRONE', 546, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (541, 2, 'WINDHAM', 'DARREN', 547, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (542, 2, 'TIRADO', 'LONNIE', 548, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (543, 1, 'PEMBERTON', 'LANCE', 549, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (544, 2, 'NOLEN', 'CODY', 550, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (545, 2, 'NOLAND', 'JULIO', 551, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (546, 1, 'KNOTT', 'KELLY', 552, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (547, 1, 'EMMONS', 'KURT', 553, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (548, 1, 'CORNISH', 'ALLAN', 554, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (549, 1, 'CHRISTENSON', 'NELSON', 555, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (550, 2, 'BROWNLEE', 'GUY', 556, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (551, 2, 'BARBEE', 'CLAYTON', 557, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (552, 2, 'WALDROP', 'HUGH', 558, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (553, 1, 'PITT', 'MAX', 559, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (554, 1, 'OLVERA', 'DWAYNE', 560, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (555, 1, 'LOMBARDI', 'DWIGHT', 561, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (556, 2, 'GRUBER', 'ARMANDO', 562, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (557, 1, 'GAFFNEY', 'FELIX', 563, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (558, 1, 'EGGLESTON', 'JIMMIE', 564, false); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (559, 2, 'BANDA', 'EVERETT', 565, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (560, 1, 'ARCHULETA', 'JORDAN', 566, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (561, 2, 'STILL', 'IAN', 567, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (562, 1, 'SLONE', 'WALLACE', 568, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (563, 2, 'PREWITT', 'KEN', 569, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (564, 2, 'PFEIFFER', 'BOB', 570, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (565, 2, 'NETTLES', 'JAIME', 571, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (566, 1, 'MENA', 'CASEY', 572, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (567, 2, 'MCADAMS', 'ALFREDO', 573, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (568, 2, 'HENNING', 'ALBERTO', 574, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (569, 2, 'GARDINER', 'DAVE', 575, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (570, 2, 'CROMWELL', 'IVAN', 576, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (571, 2, 'CHISHOLM', 'JOHNNIE', 577, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (572, 1, 'BURLESON', 'SIDNEY', 578, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (573, 1, 'BOX', 'BYRON', 579, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (574, 2, 'VEST', 'JULIAN', 580, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (575, 2, 'OGLESBY', 'ISAAC', 581, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (576, 2, 'MCCARTER', 'MORRIS', 582, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (577, 2, 'MALCOLM', 'CLIFTON', 583, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (578, 2, 'LUMPKIN', 'WILLARD', 584, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (579, 2, 'LARUE', 'DARYL', 585, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (580, 1, 'GREY', 'ROSS', 586, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (581, 1, 'WOFFORD', 'VIRGIL', 587, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (582, 2, 'VANHORN', 'ANDY', 588, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (583, 1, 'THORN', 'MARSHALL', 589, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (584, 2, 'TEEL', 'SALVADOR', 590, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (585, 1, 'SWAFFORD', 'PERRY', 591, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (586, 1, 'STCLAIR', 'KIRK', 592, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (587, 1, 'STANFIELD', 'SERGIO', 593, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (588, 1, 'OCAMPO', 'MARION', 594, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (589, 1, 'HERRMANN', 'TRACY', 595, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (590, 2, 'HANNON', 'SETH', 596, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (591, 1, 'ARSENAULT', 'KENT', 597, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (592, 1, 'ROUSH', 'TERRANCE', 598, false); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (593, 2, 'MCALISTER', 'RENE', 599, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (594, 1, 'HIATT', 'EDUARDO', 600, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (595, 1, 'GUNDERSON', 'TERRENCE', 601, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (596, 1, 'FORSYTHE', 'ENRIQUE', 602, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (597, 1, 'DUGGAN', 'FREDDIE', 603, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (598, 1, 'DELVALLE', 'WADE', 604, true); INSERT INTO customers (id, store_id, last_name, first_name, address_id, active) VALUES (599, 2, 'CINTRON', 'AUSTIN', 605, true); -- -- TOC entry 1666 (class 0 OID 60390) -- Dependencies: 1225 -- Data for Name: features; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO features (id, name) VALUES (1, 'Deleted Scenes'); INSERT INTO features (id, name) VALUES (2, 'Behind the Scenes'); INSERT INTO features (id, name) VALUES (3, 'Trailers'); INSERT INTO features (id, name) VALUES (4, 'Commentaries'); -- -- TOC entry 1668 (class 0 OID 60395) -- Dependencies: 1227 -- Data for Name: features_films; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO features_films (feature_id, film_id) VALUES (1, 1); INSERT INTO features_films (feature_id, film_id) VALUES (2, 1); INSERT INTO features_films (feature_id, film_id) VALUES (3, 2); INSERT INTO features_films (feature_id, film_id) VALUES (1, 2); INSERT INTO features_films (feature_id, film_id) VALUES (3, 3); INSERT INTO features_films (feature_id, film_id) VALUES (1, 3); INSERT INTO features_films (feature_id, film_id) VALUES (4, 4); INSERT INTO features_films (feature_id, film_id) VALUES (2, 4); INSERT INTO features_films (feature_id, film_id) VALUES (1, 5); INSERT INTO features_films (feature_id, film_id) VALUES (1, 6); INSERT INTO features_films (feature_id, film_id) VALUES (3, 7); INSERT INTO features_films (feature_id, film_id) VALUES (1, 7); INSERT INTO features_films (feature_id, film_id) VALUES (3, 8); INSERT INTO features_films (feature_id, film_id) VALUES (3, 9); INSERT INTO features_films (feature_id, film_id) VALUES (1, 9); INSERT INTO features_films (feature_id, film_id) VALUES (3, 10); INSERT INTO features_films (feature_id, film_id) VALUES (1, 10); INSERT INTO features_films (feature_id, film_id) VALUES (4, 11); INSERT INTO features_films (feature_id, film_id) VALUES (2, 11); INSERT INTO features_films (feature_id, film_id) VALUES (4, 12); INSERT INTO features_films (feature_id, film_id) VALUES (1, 12); INSERT INTO features_films (feature_id, film_id) VALUES (1, 13); INSERT INTO features_films (feature_id, film_id) VALUES (2, 13); INSERT INTO features_films (feature_id, film_id) VALUES (3, 14); INSERT INTO features_films (feature_id, film_id) VALUES (1, 14); INSERT INTO features_films (feature_id, film_id) VALUES (2, 14); INSERT INTO features_films (feature_id, film_id) VALUES (3, 15); INSERT INTO features_films (feature_id, film_id) VALUES (4, 15); INSERT INTO features_films (feature_id, film_id) VALUES (2, 15); INSERT INTO features_films (feature_id, film_id) VALUES (3, 16); INSERT INTO features_films (feature_id, film_id) VALUES (4, 16); INSERT INTO features_films (feature_id, film_id) VALUES (3, 17); INSERT INTO features_films (feature_id, film_id) VALUES (2, 17); INSERT INTO features_films (feature_id, film_id) VALUES (3, 18); INSERT INTO features_films (feature_id, film_id) VALUES (2, 18); INSERT INTO features_films (feature_id, film_id) VALUES (4, 19); INSERT INTO features_films (feature_id, film_id) VALUES (1, 19); INSERT INTO features_films (feature_id, film_id) VALUES (2, 19); INSERT INTO features_films (feature_id, film_id) VALUES (4, 20); INSERT INTO features_films (feature_id, film_id) VALUES (1, 20); INSERT INTO features_films (feature_id, film_id) VALUES (2, 20); INSERT INTO features_films (feature_id, film_id) VALUES (4, 21); INSERT INTO features_films (feature_id, film_id) VALUES (2, 21); INSERT INTO features_films (feature_id, film_id) VALUES (4, 22); INSERT INTO features_films (feature_id, film_id) VALUES (2, 22); INSERT INTO features_films (feature_id, film_id) VALUES (3, 23); INSERT INTO features_films (feature_id, film_id) VALUES (1, 23); INSERT INTO features_films (feature_id, film_id) VALUES (3, 24); INSERT INTO features_films (feature_id, film_id) VALUES (2, 24); INSERT INTO features_films (feature_id, film_id) VALUES (3, 25); INSERT INTO features_films (feature_id, film_id) VALUES (4, 26); INSERT INTO features_films (feature_id, film_id) VALUES (1, 26); INSERT INTO features_films (feature_id, film_id) VALUES (1, 27); INSERT INTO features_films (feature_id, film_id) VALUES (2, 27); INSERT INTO features_films (feature_id, film_id) VALUES (1, 28); INSERT INTO features_films (feature_id, film_id) VALUES (2, 28); INSERT INTO features_films (feature_id, film_id) VALUES (3, 29); INSERT INTO features_films (feature_id, film_id) VALUES (4, 29); INSERT INTO features_films (feature_id, film_id) VALUES (1, 29); INSERT INTO features_films (feature_id, film_id) VALUES (3, 30); INSERT INTO features_films (feature_id, film_id) VALUES (1, 30); INSERT INTO features_films (feature_id, film_id) VALUES (2, 30); INSERT INTO features_films (feature_id, film_id) VALUES (4, 31); INSERT INTO features_films (feature_id, film_id) VALUES (1, 31); INSERT INTO features_films (feature_id, film_id) VALUES (2, 31); INSERT INTO features_films (feature_id, film_id) VALUES (3, 32); INSERT INTO features_films (feature_id, film_id) VALUES (4, 32); INSERT INTO features_films (feature_id, film_id) VALUES (3, 33); INSERT INTO features_films (feature_id, film_id) VALUES (4, 33); INSERT INTO features_films (feature_id, film_id) VALUES (1, 33); INSERT INTO features_films (feature_id, film_id) VALUES (2, 33); INSERT INTO features_films (feature_id, film_id) VALUES (4, 34); INSERT INTO features_films (feature_id, film_id) VALUES (1, 34); INSERT INTO features_films (feature_id, film_id) VALUES (3, 35); INSERT INTO features_films (feature_id, film_id) VALUES (1, 35); INSERT INTO features_films (feature_id, film_id) VALUES (2, 35); INSERT INTO features_films (feature_id, film_id) VALUES (3, 36); INSERT INTO features_films (feature_id, film_id) VALUES (4, 36); INSERT INTO features_films (feature_id, film_id) VALUES (3, 37); INSERT INTO features_films (feature_id, film_id) VALUES (1, 37); INSERT INTO features_films (feature_id, film_id) VALUES (3, 38); INSERT INTO features_films (feature_id, film_id) VALUES (4, 38); INSERT INTO features_films (feature_id, film_id) VALUES (1, 38); INSERT INTO features_films (feature_id, film_id) VALUES (2, 38); INSERT INTO features_films (feature_id, film_id) VALUES (3, 39); INSERT INTO features_films (feature_id, film_id) VALUES (3, 40); INSERT INTO features_films (feature_id, film_id) VALUES (4, 40); INSERT INTO features_films (feature_id, film_id) VALUES (3, 41); INSERT INTO features_films (feature_id, film_id) VALUES (1, 41); INSERT INTO features_films (feature_id, film_id) VALUES (2, 41); INSERT INTO features_films (feature_id, film_id) VALUES (3, 42); INSERT INTO features_films (feature_id, film_id) VALUES (2, 42); INSERT INTO features_films (feature_id, film_id) VALUES (2, 43); INSERT INTO features_films (feature_id, film_id) VALUES (3, 44); INSERT INTO features_films (feature_id, film_id) VALUES (2, 44); INSERT INTO features_films (feature_id, film_id) VALUES (3, 45); INSERT INTO features_films (feature_id, film_id) VALUES (2, 45); INSERT INTO features_films (feature_id, film_id) VALUES (3, 46); INSERT INTO features_films (feature_id, film_id) VALUES (4, 46); INSERT INTO features_films (feature_id, film_id) VALUES (1, 46); INSERT INTO features_films (feature_id, film_id) VALUES (2, 46); INSERT INTO features_films (feature_id, film_id) VALUES (4, 47); INSERT INTO features_films (feature_id, film_id) VALUES (3, 48); INSERT INTO features_films (feature_id, film_id) VALUES (2, 48); INSERT INTO features_films (feature_id, film_id) VALUES (3, 49); INSERT INTO features_films (feature_id, film_id) VALUES (4, 49); INSERT INTO features_films (feature_id, film_id) VALUES (2, 49); INSERT INTO features_films (feature_id, film_id) VALUES (4, 50); INSERT INTO features_films (feature_id, film_id) VALUES (2, 50); INSERT INTO features_films (feature_id, film_id) VALUES (1, 51); INSERT INTO features_films (feature_id, film_id) VALUES (4, 52); INSERT INTO features_films (feature_id, film_id) VALUES (1, 52); INSERT INTO features_films (feature_id, film_id) VALUES (4, 53); INSERT INTO features_films (feature_id, film_id) VALUES (1, 53); INSERT INTO features_films (feature_id, film_id) VALUES (2, 53); INSERT INTO features_films (feature_id, film_id) VALUES (3, 54); INSERT INTO features_films (feature_id, film_id) VALUES (4, 54); INSERT INTO features_films (feature_id, film_id) VALUES (1, 54); INSERT INTO features_films (feature_id, film_id) VALUES (2, 55); INSERT INTO features_films (feature_id, film_id) VALUES (3, 56); INSERT INTO features_films (feature_id, film_id) VALUES (4, 56); INSERT INTO features_films (feature_id, film_id) VALUES (1, 57); INSERT INTO features_films (feature_id, film_id) VALUES (1, 58); INSERT INTO features_films (feature_id, film_id) VALUES (2, 58); INSERT INTO features_films (feature_id, film_id) VALUES (1, 59); INSERT INTO features_films (feature_id, film_id) VALUES (1, 60); INSERT INTO features_films (feature_id, film_id) VALUES (2, 60); INSERT INTO features_films (feature_id, film_id) VALUES (3, 61); INSERT INTO features_films (feature_id, film_id) VALUES (4, 61); INSERT INTO features_films (feature_id, film_id) VALUES (3, 62); INSERT INTO features_films (feature_id, film_id) VALUES (4, 62); INSERT INTO features_films (feature_id, film_id) VALUES (1, 62); INSERT INTO features_films (feature_id, film_id) VALUES (3, 63); INSERT INTO features_films (feature_id, film_id) VALUES (1, 63); INSERT INTO features_films (feature_id, film_id) VALUES (2, 63); INSERT INTO features_films (feature_id, film_id) VALUES (4, 64); INSERT INTO features_films (feature_id, film_id) VALUES (2, 64); INSERT INTO features_films (feature_id, film_id) VALUES (3, 65); INSERT INTO features_films (feature_id, film_id) VALUES (1, 65); INSERT INTO features_films (feature_id, film_id) VALUES (2, 65); INSERT INTO features_films (feature_id, film_id) VALUES (4, 66); INSERT INTO features_films (feature_id, film_id) VALUES (1, 66); INSERT INTO features_films (feature_id, film_id) VALUES (1, 67); INSERT INTO features_films (feature_id, film_id) VALUES (4, 68); INSERT INTO features_films (feature_id, film_id) VALUES (1, 68); INSERT INTO features_films (feature_id, film_id) VALUES (2, 68); INSERT INTO features_films (feature_id, film_id) VALUES (3, 69); INSERT INTO features_films (feature_id, film_id) VALUES (4, 70); INSERT INTO features_films (feature_id, film_id) VALUES (1, 70); INSERT INTO features_films (feature_id, film_id) VALUES (4, 71); INSERT INTO features_films (feature_id, film_id) VALUES (1, 71); INSERT INTO features_films (feature_id, film_id) VALUES (2, 71); INSERT INTO features_films (feature_id, film_id) VALUES (3, 72); INSERT INTO features_films (feature_id, film_id) VALUES (4, 72); INSERT INTO features_films (feature_id, film_id) VALUES (3, 73); INSERT INTO features_films (feature_id, film_id) VALUES (4, 73); INSERT INTO features_films (feature_id, film_id) VALUES (3, 74); INSERT INTO features_films (feature_id, film_id) VALUES (4, 74); INSERT INTO features_films (feature_id, film_id) VALUES (1, 74); INSERT INTO features_films (feature_id, film_id) VALUES (4, 75); INSERT INTO features_films (feature_id, film_id) VALUES (2, 75); INSERT INTO features_films (feature_id, film_id) VALUES (4, 76); INSERT INTO features_films (feature_id, film_id) VALUES (1, 76); INSERT INTO features_films (feature_id, film_id) VALUES (2, 76); INSERT INTO features_films (feature_id, film_id) VALUES (3, 77); INSERT INTO features_films (feature_id, film_id) VALUES (2, 77); INSERT INTO features_films (feature_id, film_id) VALUES (3, 78); INSERT INTO features_films (feature_id, film_id) VALUES (1, 78); INSERT INTO features_films (feature_id, film_id) VALUES (3, 79); INSERT INTO features_films (feature_id, film_id) VALUES (2, 79); INSERT INTO features_films (feature_id, film_id) VALUES (3, 80); INSERT INTO features_films (feature_id, film_id) VALUES (3, 81); INSERT INTO features_films (feature_id, film_id) VALUES (2, 81); INSERT INTO features_films (feature_id, film_id) VALUES (3, 82); INSERT INTO features_films (feature_id, film_id) VALUES (4, 82); INSERT INTO features_films (feature_id, film_id) VALUES (2, 82); INSERT INTO features_films (feature_id, film_id) VALUES (3, 83); INSERT INTO features_films (feature_id, film_id) VALUES (1, 83); INSERT INTO features_films (feature_id, film_id) VALUES (2, 83); INSERT INTO features_films (feature_id, film_id) VALUES (3, 84); INSERT INTO features_films (feature_id, film_id) VALUES (4, 84); INSERT INTO features_films (feature_id, film_id) VALUES (1, 85); INSERT INTO features_films (feature_id, film_id) VALUES (4, 86); INSERT INTO features_films (feature_id, film_id) VALUES (2, 86); INSERT INTO features_films (feature_id, film_id) VALUES (2, 87); INSERT INTO features_films (feature_id, film_id) VALUES (3, 88); INSERT INTO features_films (feature_id, film_id) VALUES (4, 88); INSERT INTO features_films (feature_id, film_id) VALUES (1, 88); INSERT INTO features_films (feature_id, film_id) VALUES (4, 89); INSERT INTO features_films (feature_id, film_id) VALUES (1, 89); INSERT INTO features_films (feature_id, film_id) VALUES (2, 89); INSERT INTO features_films (feature_id, film_id) VALUES (3, 90); INSERT INTO features_films (feature_id, film_id) VALUES (2, 91); INSERT INTO features_films (feature_id, film_id) VALUES (3, 92); INSERT INTO features_films (feature_id, film_id) VALUES (1, 92); INSERT INTO features_films (feature_id, film_id) VALUES (3, 93); INSERT INTO features_films (feature_id, film_id) VALUES (3, 94); INSERT INTO features_films (feature_id, film_id) VALUES (1, 94); INSERT INTO features_films (feature_id, film_id) VALUES (3, 95); INSERT INTO features_films (feature_id, film_id) VALUES (4, 95); INSERT INTO features_films (feature_id, film_id) VALUES (1, 95); INSERT INTO features_films (feature_id, film_id) VALUES (3, 96); INSERT INTO features_films (feature_id, film_id) VALUES (4, 96); INSERT INTO features_films (feature_id, film_id) VALUES (3, 97); INSERT INTO features_films (feature_id, film_id) VALUES (4, 97); INSERT INTO features_films (feature_id, film_id) VALUES (2, 97); INSERT INTO features_films (feature_id, film_id) VALUES (3, 98); INSERT INTO features_films (feature_id, film_id) VALUES (3, 99); INSERT INTO features_films (feature_id, film_id) VALUES (4, 100); INSERT INTO features_films (feature_id, film_id) VALUES (2, 101); INSERT INTO features_films (feature_id, film_id) VALUES (3, 102); INSERT INTO features_films (feature_id, film_id) VALUES (4, 102); INSERT INTO features_films (feature_id, film_id) VALUES (1, 102); INSERT INTO features_films (feature_id, film_id) VALUES (2, 102); INSERT INTO features_films (feature_id, film_id) VALUES (4, 103); INSERT INTO features_films (feature_id, film_id) VALUES (1, 103); INSERT INTO features_films (feature_id, film_id) VALUES (4, 104); INSERT INTO features_films (feature_id, film_id) VALUES (1, 105); INSERT INTO features_films (feature_id, film_id) VALUES (3, 106); INSERT INTO features_films (feature_id, film_id) VALUES (2, 107); INSERT INTO features_films (feature_id, film_id) VALUES (3, 108); INSERT INTO features_films (feature_id, film_id) VALUES (4, 108); INSERT INTO features_films (feature_id, film_id) VALUES (1, 108); INSERT INTO features_films (feature_id, film_id) VALUES (2, 109); INSERT INTO features_films (feature_id, film_id) VALUES (4, 110); INSERT INTO features_films (feature_id, film_id) VALUES (1, 110); INSERT INTO features_films (feature_id, film_id) VALUES (4, 111); INSERT INTO features_films (feature_id, film_id) VALUES (1, 111); INSERT INTO features_films (feature_id, film_id) VALUES (3, 112); INSERT INTO features_films (feature_id, film_id) VALUES (4, 112); INSERT INTO features_films (feature_id, film_id) VALUES (2, 112); INSERT INTO features_films (feature_id, film_id) VALUES (3, 113); INSERT INTO features_films (feature_id, film_id) VALUES (4, 113); INSERT INTO features_films (feature_id, film_id) VALUES (1, 113); INSERT INTO features_films (feature_id, film_id) VALUES (3, 114); INSERT INTO features_films (feature_id, film_id) VALUES (4, 114); INSERT INTO features_films (feature_id, film_id) VALUES (1, 114); INSERT INTO features_films (feature_id, film_id) VALUES (2, 114); INSERT INTO features_films (feature_id, film_id) VALUES (2, 115); INSERT INTO features_films (feature_id, film_id) VALUES (1, 116); INSERT INTO features_films (feature_id, film_id) VALUES (2, 116); INSERT INTO features_films (feature_id, film_id) VALUES (3, 117); INSERT INTO features_films (feature_id, film_id) VALUES (1, 117); INSERT INTO features_films (feature_id, film_id) VALUES (3, 118); INSERT INTO features_films (feature_id, film_id) VALUES (1, 118); INSERT INTO features_films (feature_id, film_id) VALUES (3, 119); INSERT INTO features_films (feature_id, film_id) VALUES (4, 119); INSERT INTO features_films (feature_id, film_id) VALUES (1, 119); INSERT INTO features_films (feature_id, film_id) VALUES (4, 120); INSERT INTO features_films (feature_id, film_id) VALUES (1, 120); INSERT INTO features_films (feature_id, film_id) VALUES (3, 121); INSERT INTO features_films (feature_id, film_id) VALUES (2, 121); INSERT INTO features_films (feature_id, film_id) VALUES (3, 122); INSERT INTO features_films (feature_id, film_id) VALUES (4, 122); INSERT INTO features_films (feature_id, film_id) VALUES (2, 122); INSERT INTO features_films (feature_id, film_id) VALUES (3, 123); INSERT INTO features_films (feature_id, film_id) VALUES (1, 123); INSERT INTO features_films (feature_id, film_id) VALUES (2, 123); INSERT INTO features_films (feature_id, film_id) VALUES (3, 124); INSERT INTO features_films (feature_id, film_id) VALUES (4, 125); INSERT INTO features_films (feature_id, film_id) VALUES (2, 125); INSERT INTO features_films (feature_id, film_id) VALUES (3, 126); INSERT INTO features_films (feature_id, film_id) VALUES (4, 127); INSERT INTO features_films (feature_id, film_id) VALUES (1, 127); INSERT INTO features_films (feature_id, film_id) VALUES (3, 128); INSERT INTO features_films (feature_id, film_id) VALUES (2, 128); INSERT INTO features_films (feature_id, film_id) VALUES (4, 129); INSERT INTO features_films (feature_id, film_id) VALUES (1, 129); INSERT INTO features_films (feature_id, film_id) VALUES (2, 129); INSERT INTO features_films (feature_id, film_id) VALUES (1, 130); INSERT INTO features_films (feature_id, film_id) VALUES (2, 130); INSERT INTO features_films (feature_id, film_id) VALUES (1, 131); INSERT INTO features_films (feature_id, film_id) VALUES (1, 132); INSERT INTO features_films (feature_id, film_id) VALUES (2, 132); INSERT INTO features_films (feature_id, film_id) VALUES (3, 133); INSERT INTO features_films (feature_id, film_id) VALUES (3, 134); INSERT INTO features_films (feature_id, film_id) VALUES (4, 135); INSERT INTO features_films (feature_id, film_id) VALUES (1, 135); INSERT INTO features_films (feature_id, film_id) VALUES (2, 135); INSERT INTO features_films (feature_id, film_id) VALUES (2, 136); INSERT INTO features_films (feature_id, film_id) VALUES (3, 137); INSERT INTO features_films (feature_id, film_id) VALUES (1, 137); INSERT INTO features_films (feature_id, film_id) VALUES (2, 137); INSERT INTO features_films (feature_id, film_id) VALUES (1, 138); INSERT INTO features_films (feature_id, film_id) VALUES (2, 138); INSERT INTO features_films (feature_id, film_id) VALUES (3, 139); INSERT INTO features_films (feature_id, film_id) VALUES (4, 139); INSERT INTO features_films (feature_id, film_id) VALUES (3, 140); INSERT INTO features_films (feature_id, film_id) VALUES (4, 140); INSERT INTO features_films (feature_id, film_id) VALUES (2, 140); INSERT INTO features_films (feature_id, film_id) VALUES (1, 141); INSERT INTO features_films (feature_id, film_id) VALUES (2, 141); INSERT INTO features_films (feature_id, film_id) VALUES (3, 142); INSERT INTO features_films (feature_id, film_id) VALUES (4, 142); INSERT INTO features_films (feature_id, film_id) VALUES (1, 142); INSERT INTO features_films (feature_id, film_id) VALUES (2, 142); INSERT INTO features_films (feature_id, film_id) VALUES (3, 143); INSERT INTO features_films (feature_id, film_id) VALUES (4, 143); INSERT INTO features_films (feature_id, film_id) VALUES (1, 143); INSERT INTO features_films (feature_id, film_id) VALUES (3, 144); INSERT INTO features_films (feature_id, film_id) VALUES (4, 144); INSERT INTO features_films (feature_id, film_id) VALUES (1, 144); INSERT INTO features_films (feature_id, film_id) VALUES (3, 145); INSERT INTO features_films (feature_id, film_id) VALUES (4, 145); INSERT INTO features_films (feature_id, film_id) VALUES (2, 145); INSERT INTO features_films (feature_id, film_id) VALUES (4, 146); INSERT INTO features_films (feature_id, film_id) VALUES (4, 147); INSERT INTO features_films (feature_id, film_id) VALUES (2, 147); INSERT INTO features_films (feature_id, film_id) VALUES (3, 148); INSERT INTO features_films (feature_id, film_id) VALUES (4, 148); INSERT INTO features_films (feature_id, film_id) VALUES (2, 148); INSERT INTO features_films (feature_id, film_id) VALUES (3, 149); INSERT INTO features_films (feature_id, film_id) VALUES (4, 149); INSERT INTO features_films (feature_id, film_id) VALUES (2, 149); INSERT INTO features_films (feature_id, film_id) VALUES (2, 150); INSERT INTO features_films (feature_id, film_id) VALUES (1, 151); INSERT INTO features_films (feature_id, film_id) VALUES (3, 152); INSERT INTO features_films (feature_id, film_id) VALUES (1, 152); INSERT INTO features_films (feature_id, film_id) VALUES (2, 152); INSERT INTO features_films (feature_id, film_id) VALUES (4, 153); INSERT INTO features_films (feature_id, film_id) VALUES (1, 153); INSERT INTO features_films (feature_id, film_id) VALUES (4, 154); INSERT INTO features_films (feature_id, film_id) VALUES (1, 154); INSERT INTO features_films (feature_id, film_id) VALUES (3, 155); INSERT INTO features_films (feature_id, film_id) VALUES (1, 155); INSERT INTO features_films (feature_id, film_id) VALUES (2, 155); INSERT INTO features_films (feature_id, film_id) VALUES (4, 156); INSERT INTO features_films (feature_id, film_id) VALUES (3, 157); INSERT INTO features_films (feature_id, film_id) VALUES (4, 157); INSERT INTO features_films (feature_id, film_id) VALUES (1, 157); INSERT INTO features_films (feature_id, film_id) VALUES (2, 157); INSERT INTO features_films (feature_id, film_id) VALUES (2, 158); INSERT INTO features_films (feature_id, film_id) VALUES (3, 159); INSERT INTO features_films (feature_id, film_id) VALUES (2, 159); INSERT INTO features_films (feature_id, film_id) VALUES (3, 160); INSERT INTO features_films (feature_id, film_id) VALUES (1, 160); INSERT INTO features_films (feature_id, film_id) VALUES (3, 161); INSERT INTO features_films (feature_id, film_id) VALUES (4, 161); INSERT INTO features_films (feature_id, film_id) VALUES (2, 161); INSERT INTO features_films (feature_id, film_id) VALUES (3, 162); INSERT INTO features_films (feature_id, film_id) VALUES (1, 162); INSERT INTO features_films (feature_id, film_id) VALUES (2, 162); INSERT INTO features_films (feature_id, film_id) VALUES (4, 163); INSERT INTO features_films (feature_id, film_id) VALUES (1, 163); INSERT INTO features_films (feature_id, film_id) VALUES (2, 163); INSERT INTO features_films (feature_id, film_id) VALUES (3, 164); INSERT INTO features_films (feature_id, film_id) VALUES (4, 164); INSERT INTO features_films (feature_id, film_id) VALUES (1, 164); INSERT INTO features_films (feature_id, film_id) VALUES (2, 164); INSERT INTO features_films (feature_id, film_id) VALUES (3, 165); INSERT INTO features_films (feature_id, film_id) VALUES (1, 165); INSERT INTO features_films (feature_id, film_id) VALUES (4, 166); INSERT INTO features_films (feature_id, film_id) VALUES (2, 166); INSERT INTO features_films (feature_id, film_id) VALUES (4, 167); INSERT INTO features_films (feature_id, film_id) VALUES (3, 168); INSERT INTO features_films (feature_id, film_id) VALUES (2, 168); INSERT INTO features_films (feature_id, film_id) VALUES (4, 169); INSERT INTO features_films (feature_id, film_id) VALUES (2, 169); INSERT INTO features_films (feature_id, film_id) VALUES (2, 170); INSERT INTO features_films (feature_id, film_id) VALUES (3, 171); INSERT INTO features_films (feature_id, film_id) VALUES (4, 171); INSERT INTO features_films (feature_id, film_id) VALUES (1, 171); INSERT INTO features_films (feature_id, film_id) VALUES (1, 172); INSERT INTO features_films (feature_id, film_id) VALUES (2, 172); INSERT INTO features_films (feature_id, film_id) VALUES (2, 173); INSERT INTO features_films (feature_id, film_id) VALUES (4, 174); INSERT INTO features_films (feature_id, film_id) VALUES (3, 175); INSERT INTO features_films (feature_id, film_id) VALUES (4, 175); INSERT INTO features_films (feature_id, film_id) VALUES (1, 175); INSERT INTO features_films (feature_id, film_id) VALUES (2, 175); INSERT INTO features_films (feature_id, film_id) VALUES (4, 176); INSERT INTO features_films (feature_id, film_id) VALUES (2, 176); INSERT INTO features_films (feature_id, film_id) VALUES (4, 177); INSERT INTO features_films (feature_id, film_id) VALUES (1, 177); INSERT INTO features_films (feature_id, film_id) VALUES (1, 178); INSERT INTO features_films (feature_id, film_id) VALUES (2, 178); INSERT INTO features_films (feature_id, film_id) VALUES (4, 179); INSERT INTO features_films (feature_id, film_id) VALUES (1, 179); INSERT INTO features_films (feature_id, film_id) VALUES (2, 179); INSERT INTO features_films (feature_id, film_id) VALUES (3, 180); INSERT INTO features_films (feature_id, film_id) VALUES (4, 180); INSERT INTO features_films (feature_id, film_id) VALUES (4, 181); INSERT INTO features_films (feature_id, film_id) VALUES (4, 182); INSERT INTO features_films (feature_id, film_id) VALUES (4, 183); INSERT INTO features_films (feature_id, film_id) VALUES (1, 184); INSERT INTO features_films (feature_id, film_id) VALUES (4, 185); INSERT INTO features_films (feature_id, film_id) VALUES (1, 185); INSERT INTO features_films (feature_id, film_id) VALUES (2, 185); INSERT INTO features_films (feature_id, film_id) VALUES (1, 186); INSERT INTO features_films (feature_id, film_id) VALUES (2, 186); INSERT INTO features_films (feature_id, film_id) VALUES (4, 187); INSERT INTO features_films (feature_id, film_id) VALUES (4, 188); INSERT INTO features_films (feature_id, film_id) VALUES (1, 188); INSERT INTO features_films (feature_id, film_id) VALUES (3, 189); INSERT INTO features_films (feature_id, film_id) VALUES (1, 189); INSERT INTO features_films (feature_id, film_id) VALUES (3, 190); INSERT INTO features_films (feature_id, film_id) VALUES (2, 190); INSERT INTO features_films (feature_id, film_id) VALUES (4, 191); INSERT INTO features_films (feature_id, film_id) VALUES (1, 191); INSERT INTO features_films (feature_id, film_id) VALUES (2, 191); INSERT INTO features_films (feature_id, film_id) VALUES (4, 192); INSERT INTO features_films (feature_id, film_id) VALUES (1, 192); INSERT INTO features_films (feature_id, film_id) VALUES (2, 192); INSERT INTO features_films (feature_id, film_id) VALUES (3, 193); INSERT INTO features_films (feature_id, film_id) VALUES (4, 193); INSERT INTO features_films (feature_id, film_id) VALUES (2, 193); INSERT INTO features_films (feature_id, film_id) VALUES (3, 194); INSERT INTO features_films (feature_id, film_id) VALUES (4, 194); INSERT INTO features_films (feature_id, film_id) VALUES (2, 194); INSERT INTO features_films (feature_id, film_id) VALUES (3, 195); INSERT INTO features_films (feature_id, film_id) VALUES (2, 195); INSERT INTO features_films (feature_id, film_id) VALUES (1, 196); INSERT INTO features_films (feature_id, film_id) VALUES (2, 196); INSERT INTO features_films (feature_id, film_id) VALUES (4, 197); INSERT INTO features_films (feature_id, film_id) VALUES (3, 198); INSERT INTO features_films (feature_id, film_id) VALUES (4, 198); INSERT INTO features_films (feature_id, film_id) VALUES (2, 199); INSERT INTO features_films (feature_id, film_id) VALUES (3, 200); INSERT INTO features_films (feature_id, film_id) VALUES (4, 200); INSERT INTO features_films (feature_id, film_id) VALUES (1, 200); INSERT INTO features_films (feature_id, film_id) VALUES (2, 200); INSERT INTO features_films (feature_id, film_id) VALUES (3, 201); INSERT INTO features_films (feature_id, film_id) VALUES (1, 201); INSERT INTO features_films (feature_id, film_id) VALUES (1, 202); INSERT INTO features_films (feature_id, film_id) VALUES (2, 202); INSERT INTO features_films (feature_id, film_id) VALUES (3, 203); INSERT INTO features_films (feature_id, film_id) VALUES (4, 203); INSERT INTO features_films (feature_id, film_id) VALUES (2, 203); INSERT INTO features_films (feature_id, film_id) VALUES (3, 204); INSERT INTO features_films (feature_id, film_id) VALUES (4, 204); INSERT INTO features_films (feature_id, film_id) VALUES (1, 204); INSERT INTO features_films (feature_id, film_id) VALUES (3, 205); INSERT INTO features_films (feature_id, film_id) VALUES (4, 205); INSERT INTO features_films (feature_id, film_id) VALUES (1, 205); INSERT INTO features_films (feature_id, film_id) VALUES (2, 205); INSERT INTO features_films (feature_id, film_id) VALUES (4, 206); INSERT INTO features_films (feature_id, film_id) VALUES (2, 206); INSERT INTO features_films (feature_id, film_id) VALUES (4, 207); INSERT INTO features_films (feature_id, film_id) VALUES (4, 208); INSERT INTO features_films (feature_id, film_id) VALUES (2, 208); INSERT INTO features_films (feature_id, film_id) VALUES (1, 209); INSERT INTO features_films (feature_id, film_id) VALUES (2, 209); INSERT INTO features_films (feature_id, film_id) VALUES (3, 210); INSERT INTO features_films (feature_id, film_id) VALUES (4, 210); INSERT INTO features_films (feature_id, film_id) VALUES (1, 210); INSERT INTO features_films (feature_id, film_id) VALUES (2, 210); INSERT INTO features_films (feature_id, film_id) VALUES (4, 211); INSERT INTO features_films (feature_id, film_id) VALUES (2, 211); INSERT INTO features_films (feature_id, film_id) VALUES (1, 212); INSERT INTO features_films (feature_id, film_id) VALUES (4, 213); INSERT INTO features_films (feature_id, film_id) VALUES (3, 214); INSERT INTO features_films (feature_id, film_id) VALUES (3, 215); INSERT INTO features_films (feature_id, film_id) VALUES (1, 215); INSERT INTO features_films (feature_id, film_id) VALUES (2, 215); INSERT INTO features_films (feature_id, film_id) VALUES (3, 216); INSERT INTO features_films (feature_id, film_id) VALUES (4, 216); INSERT INTO features_films (feature_id, film_id) VALUES (1, 216); INSERT INTO features_films (feature_id, film_id) VALUES (2, 216); INSERT INTO features_films (feature_id, film_id) VALUES (4, 217); INSERT INTO features_films (feature_id, film_id) VALUES (1, 217); INSERT INTO features_films (feature_id, film_id) VALUES (3, 218); INSERT INTO features_films (feature_id, film_id) VALUES (4, 218); INSERT INTO features_films (feature_id, film_id) VALUES (1, 218); INSERT INTO features_films (feature_id, film_id) VALUES (2, 218); INSERT INTO features_films (feature_id, film_id) VALUES (4, 219); INSERT INTO features_films (feature_id, film_id) VALUES (2, 219); INSERT INTO features_films (feature_id, film_id) VALUES (1, 220); INSERT INTO features_films (feature_id, film_id) VALUES (1, 221); INSERT INTO features_films (feature_id, film_id) VALUES (3, 222); INSERT INTO features_films (feature_id, film_id) VALUES (2, 222); INSERT INTO features_films (feature_id, film_id) VALUES (1, 223); INSERT INTO features_films (feature_id, film_id) VALUES (1, 224); INSERT INTO features_films (feature_id, film_id) VALUES (3, 225); INSERT INTO features_films (feature_id, film_id) VALUES (4, 225); INSERT INTO features_films (feature_id, film_id) VALUES (2, 225); INSERT INTO features_films (feature_id, film_id) VALUES (3, 226); INSERT INTO features_films (feature_id, film_id) VALUES (4, 226); INSERT INTO features_films (feature_id, film_id) VALUES (2, 226); INSERT INTO features_films (feature_id, film_id) VALUES (4, 227); INSERT INTO features_films (feature_id, film_id) VALUES (1, 227); INSERT INTO features_films (feature_id, film_id) VALUES (3, 228); INSERT INTO features_films (feature_id, film_id) VALUES (4, 228); INSERT INTO features_films (feature_id, film_id) VALUES (2, 228); INSERT INTO features_films (feature_id, film_id) VALUES (3, 229); INSERT INTO features_films (feature_id, film_id) VALUES (2, 229); INSERT INTO features_films (feature_id, film_id) VALUES (4, 230); INSERT INTO features_films (feature_id, film_id) VALUES (2, 230); INSERT INTO features_films (feature_id, film_id) VALUES (3, 231); INSERT INTO features_films (feature_id, film_id) VALUES (2, 231); INSERT INTO features_films (feature_id, film_id) VALUES (4, 232); INSERT INTO features_films (feature_id, film_id) VALUES (1, 232); INSERT INTO features_films (feature_id, film_id) VALUES (2, 232); INSERT INTO features_films (feature_id, film_id) VALUES (3, 233); INSERT INTO features_films (feature_id, film_id) VALUES (1, 233); INSERT INTO features_films (feature_id, film_id) VALUES (2, 233); INSERT INTO features_films (feature_id, film_id) VALUES (3, 234); INSERT INTO features_films (feature_id, film_id) VALUES (2, 234); INSERT INTO features_films (feature_id, film_id) VALUES (3, 235); INSERT INTO features_films (feature_id, film_id) VALUES (4, 235); INSERT INTO features_films (feature_id, film_id) VALUES (3, 236); INSERT INTO features_films (feature_id, film_id) VALUES (4, 236); INSERT INTO features_films (feature_id, film_id) VALUES (3, 237); INSERT INTO features_films (feature_id, film_id) VALUES (4, 237); INSERT INTO features_films (feature_id, film_id) VALUES (1, 237); INSERT INTO features_films (feature_id, film_id) VALUES (3, 238); INSERT INTO features_films (feature_id, film_id) VALUES (4, 238); INSERT INTO features_films (feature_id, film_id) VALUES (2, 238); INSERT INTO features_films (feature_id, film_id) VALUES (4, 239); INSERT INTO features_films (feature_id, film_id) VALUES (4, 240); INSERT INTO features_films (feature_id, film_id) VALUES (1, 240); INSERT INTO features_films (feature_id, film_id) VALUES (3, 241); INSERT INTO features_films (feature_id, film_id) VALUES (4, 241); INSERT INTO features_films (feature_id, film_id) VALUES (2, 241); INSERT INTO features_films (feature_id, film_id) VALUES (3, 242); INSERT INTO features_films (feature_id, film_id) VALUES (4, 242); INSERT INTO features_films (feature_id, film_id) VALUES (3, 243); INSERT INTO features_films (feature_id, film_id) VALUES (4, 243); INSERT INTO features_films (feature_id, film_id) VALUES (1, 243); INSERT INTO features_films (feature_id, film_id) VALUES (2, 243); INSERT INTO features_films (feature_id, film_id) VALUES (4, 244); INSERT INTO features_films (feature_id, film_id) VALUES (3, 245); INSERT INTO features_films (feature_id, film_id) VALUES (1, 245); INSERT INTO features_films (feature_id, film_id) VALUES (2, 245); INSERT INTO features_films (feature_id, film_id) VALUES (1, 246); INSERT INTO features_films (feature_id, film_id) VALUES (2, 246); INSERT INTO features_films (feature_id, film_id) VALUES (3, 247); INSERT INTO features_films (feature_id, film_id) VALUES (4, 247); INSERT INTO features_films (feature_id, film_id) VALUES (1, 247); INSERT INTO features_films (feature_id, film_id) VALUES (4, 248); INSERT INTO features_films (feature_id, film_id) VALUES (1, 248); INSERT INTO features_films (feature_id, film_id) VALUES (2, 248); INSERT INTO features_films (feature_id, film_id) VALUES (4, 249); INSERT INTO features_films (feature_id, film_id) VALUES (1, 250); INSERT INTO features_films (feature_id, film_id) VALUES (2, 250); INSERT INTO features_films (feature_id, film_id) VALUES (3, 251); INSERT INTO features_films (feature_id, film_id) VALUES (2, 251); INSERT INTO features_films (feature_id, film_id) VALUES (3, 252); INSERT INTO features_films (feature_id, film_id) VALUES (4, 252); INSERT INTO features_films (feature_id, film_id) VALUES (2, 252); INSERT INTO features_films (feature_id, film_id) VALUES (3, 253); INSERT INTO features_films (feature_id, film_id) VALUES (2, 253); INSERT INTO features_films (feature_id, film_id) VALUES (3, 254); INSERT INTO features_films (feature_id, film_id) VALUES (1, 254); INSERT INTO features_films (feature_id, film_id) VALUES (2, 254); INSERT INTO features_films (feature_id, film_id) VALUES (3, 255); INSERT INTO features_films (feature_id, film_id) VALUES (1, 255); INSERT INTO features_films (feature_id, film_id) VALUES (3, 256); INSERT INTO features_films (feature_id, film_id) VALUES (4, 256); INSERT INTO features_films (feature_id, film_id) VALUES (4, 257); INSERT INTO features_films (feature_id, film_id) VALUES (1, 257); INSERT INTO features_films (feature_id, film_id) VALUES (2, 257); INSERT INTO features_films (feature_id, film_id) VALUES (3, 258); INSERT INTO features_films (feature_id, film_id) VALUES (2, 259); INSERT INTO features_films (feature_id, film_id) VALUES (3, 260); INSERT INTO features_films (feature_id, film_id) VALUES (1, 260); INSERT INTO features_films (feature_id, film_id) VALUES (4, 261); INSERT INTO features_films (feature_id, film_id) VALUES (2, 262); INSERT INTO features_films (feature_id, film_id) VALUES (3, 263); INSERT INTO features_films (feature_id, film_id) VALUES (4, 263); INSERT INTO features_films (feature_id, film_id) VALUES (4, 264); INSERT INTO features_films (feature_id, film_id) VALUES (1, 264); INSERT INTO features_films (feature_id, film_id) VALUES (2, 265); INSERT INTO features_films (feature_id, film_id) VALUES (1, 266); INSERT INTO features_films (feature_id, film_id) VALUES (3, 267); INSERT INTO features_films (feature_id, film_id) VALUES (4, 267); INSERT INTO features_films (feature_id, film_id) VALUES (2, 267); INSERT INTO features_films (feature_id, film_id) VALUES (3, 268); INSERT INTO features_films (feature_id, film_id) VALUES (4, 268); INSERT INTO features_films (feature_id, film_id) VALUES (2, 268); INSERT INTO features_films (feature_id, film_id) VALUES (2, 269); INSERT INTO features_films (feature_id, film_id) VALUES (3, 270); INSERT INTO features_films (feature_id, film_id) VALUES (4, 270); INSERT INTO features_films (feature_id, film_id) VALUES (1, 270); INSERT INTO features_films (feature_id, film_id) VALUES (3, 271); INSERT INTO features_films (feature_id, film_id) VALUES (4, 271); INSERT INTO features_films (feature_id, film_id) VALUES (2, 271); INSERT INTO features_films (feature_id, film_id) VALUES (1, 272); INSERT INTO features_films (feature_id, film_id) VALUES (4, 273); INSERT INTO features_films (feature_id, film_id) VALUES (4, 274); INSERT INTO features_films (feature_id, film_id) VALUES (2, 274); INSERT INTO features_films (feature_id, film_id) VALUES (4, 275); INSERT INTO features_films (feature_id, film_id) VALUES (1, 275); INSERT INTO features_films (feature_id, film_id) VALUES (2, 275); INSERT INTO features_films (feature_id, film_id) VALUES (4, 276); INSERT INTO features_films (feature_id, film_id) VALUES (2, 276); INSERT INTO features_films (feature_id, film_id) VALUES (2, 277); INSERT INTO features_films (feature_id, film_id) VALUES (3, 278); INSERT INTO features_films (feature_id, film_id) VALUES (4, 278); INSERT INTO features_films (feature_id, film_id) VALUES (2, 278); INSERT INTO features_films (feature_id, film_id) VALUES (3, 279); INSERT INTO features_films (feature_id, film_id) VALUES (1, 279); INSERT INTO features_films (feature_id, film_id) VALUES (2, 279); INSERT INTO features_films (feature_id, film_id) VALUES (1, 280); INSERT INTO features_films (feature_id, film_id) VALUES (3, 281); INSERT INTO features_films (feature_id, film_id) VALUES (2, 281); INSERT INTO features_films (feature_id, film_id) VALUES (3, 282); INSERT INTO features_films (feature_id, film_id) VALUES (4, 283); INSERT INTO features_films (feature_id, film_id) VALUES (2, 283); INSERT INTO features_films (feature_id, film_id) VALUES (3, 284); INSERT INTO features_films (feature_id, film_id) VALUES (1, 285); INSERT INTO features_films (feature_id, film_id) VALUES (4, 286); INSERT INTO features_films (feature_id, film_id) VALUES (4, 287); INSERT INTO features_films (feature_id, film_id) VALUES (1, 287); INSERT INTO features_films (feature_id, film_id) VALUES (2, 287); INSERT INTO features_films (feature_id, film_id) VALUES (3, 288); INSERT INTO features_films (feature_id, film_id) VALUES (3, 289); INSERT INTO features_films (feature_id, film_id) VALUES (4, 289); INSERT INTO features_films (feature_id, film_id) VALUES (1, 289); INSERT INTO features_films (feature_id, film_id) VALUES (3, 290); INSERT INTO features_films (feature_id, film_id) VALUES (4, 290); INSERT INTO features_films (feature_id, film_id) VALUES (2, 291); INSERT INTO features_films (feature_id, film_id) VALUES (4, 292); INSERT INTO features_films (feature_id, film_id) VALUES (4, 293); INSERT INTO features_films (feature_id, film_id) VALUES (1, 293); INSERT INTO features_films (feature_id, film_id) VALUES (2, 293); INSERT INTO features_films (feature_id, film_id) VALUES (1, 294); INSERT INTO features_films (feature_id, film_id) VALUES (3, 295); INSERT INTO features_films (feature_id, film_id) VALUES (2, 295); INSERT INTO features_films (feature_id, film_id) VALUES (3, 296); INSERT INTO features_films (feature_id, film_id) VALUES (3, 297); INSERT INTO features_films (feature_id, film_id) VALUES (4, 297); INSERT INTO features_films (feature_id, film_id) VALUES (1, 297); INSERT INTO features_films (feature_id, film_id) VALUES (3, 298); INSERT INTO features_films (feature_id, film_id) VALUES (4, 298); INSERT INTO features_films (feature_id, film_id) VALUES (3, 299); INSERT INTO features_films (feature_id, film_id) VALUES (4, 299); INSERT INTO features_films (feature_id, film_id) VALUES (1, 299); INSERT INTO features_films (feature_id, film_id) VALUES (4, 300); INSERT INTO features_films (feature_id, film_id) VALUES (2, 300); INSERT INTO features_films (feature_id, film_id) VALUES (3, 301); INSERT INTO features_films (feature_id, film_id) VALUES (4, 302); INSERT INTO features_films (feature_id, film_id) VALUES (2, 303); INSERT INTO features_films (feature_id, film_id) VALUES (1, 304); INSERT INTO features_films (feature_id, film_id) VALUES (3, 305); INSERT INTO features_films (feature_id, film_id) VALUES (2, 305); INSERT INTO features_films (feature_id, film_id) VALUES (3, 306); INSERT INTO features_films (feature_id, film_id) VALUES (1, 306); INSERT INTO features_films (feature_id, film_id) VALUES (1, 307); INSERT INTO features_films (feature_id, film_id) VALUES (2, 307); INSERT INTO features_films (feature_id, film_id) VALUES (3, 308); INSERT INTO features_films (feature_id, film_id) VALUES (1, 308); INSERT INTO features_films (feature_id, film_id) VALUES (2, 308); INSERT INTO features_films (feature_id, film_id) VALUES (3, 309); INSERT INTO features_films (feature_id, film_id) VALUES (4, 309); INSERT INTO features_films (feature_id, film_id) VALUES (1, 309); INSERT INTO features_films (feature_id, film_id) VALUES (2, 309); INSERT INTO features_films (feature_id, film_id) VALUES (4, 310); INSERT INTO features_films (feature_id, film_id) VALUES (1, 310); INSERT INTO features_films (feature_id, film_id) VALUES (3, 311); INSERT INTO features_films (feature_id, film_id) VALUES (4, 311); INSERT INTO features_films (feature_id, film_id) VALUES (1, 311); INSERT INTO features_films (feature_id, film_id) VALUES (2, 311); INSERT INTO features_films (feature_id, film_id) VALUES (1, 312); INSERT INTO features_films (feature_id, film_id) VALUES (2, 312); INSERT INTO features_films (feature_id, film_id) VALUES (3, 313); INSERT INTO features_films (feature_id, film_id) VALUES (1, 313); INSERT INTO features_films (feature_id, film_id) VALUES (2, 313); INSERT INTO features_films (feature_id, film_id) VALUES (3, 314); INSERT INTO features_films (feature_id, film_id) VALUES (4, 314); INSERT INTO features_films (feature_id, film_id) VALUES (1, 314); INSERT INTO features_films (feature_id, film_id) VALUES (2, 314); INSERT INTO features_films (feature_id, film_id) VALUES (3, 315); INSERT INTO features_films (feature_id, film_id) VALUES (4, 315); INSERT INTO features_films (feature_id, film_id) VALUES (3, 316); INSERT INTO features_films (feature_id, film_id) VALUES (3, 317); INSERT INTO features_films (feature_id, film_id) VALUES (4, 317); INSERT INTO features_films (feature_id, film_id) VALUES (2, 317); INSERT INTO features_films (feature_id, film_id) VALUES (4, 318); INSERT INTO features_films (feature_id, film_id) VALUES (1, 318); INSERT INTO features_films (feature_id, film_id) VALUES (3, 319); INSERT INTO features_films (feature_id, film_id) VALUES (1, 319); INSERT INTO features_films (feature_id, film_id) VALUES (2, 319); INSERT INTO features_films (feature_id, film_id) VALUES (3, 320); INSERT INTO features_films (feature_id, film_id) VALUES (3, 321); INSERT INTO features_films (feature_id, film_id) VALUES (4, 321); INSERT INTO features_films (feature_id, film_id) VALUES (2, 321); INSERT INTO features_films (feature_id, film_id) VALUES (3, 322); INSERT INTO features_films (feature_id, film_id) VALUES (4, 322); INSERT INTO features_films (feature_id, film_id) VALUES (1, 322); INSERT INTO features_films (feature_id, film_id) VALUES (3, 323); INSERT INTO features_films (feature_id, film_id) VALUES (3, 324); INSERT INTO features_films (feature_id, film_id) VALUES (4, 324); INSERT INTO features_films (feature_id, film_id) VALUES (1, 324); INSERT INTO features_films (feature_id, film_id) VALUES (2, 324); INSERT INTO features_films (feature_id, film_id) VALUES (3, 325); INSERT INTO features_films (feature_id, film_id) VALUES (4, 325); INSERT INTO features_films (feature_id, film_id) VALUES (2, 325); INSERT INTO features_films (feature_id, film_id) VALUES (3, 326); INSERT INTO features_films (feature_id, film_id) VALUES (4, 326); INSERT INTO features_films (feature_id, film_id) VALUES (2, 326); INSERT INTO features_films (feature_id, film_id) VALUES (3, 327); INSERT INTO features_films (feature_id, film_id) VALUES (4, 327); INSERT INTO features_films (feature_id, film_id) VALUES (4, 328); INSERT INTO features_films (feature_id, film_id) VALUES (1, 328); INSERT INTO features_films (feature_id, film_id) VALUES (2, 328); INSERT INTO features_films (feature_id, film_id) VALUES (4, 329); INSERT INTO features_films (feature_id, film_id) VALUES (3, 330); INSERT INTO features_films (feature_id, film_id) VALUES (2, 330); INSERT INTO features_films (feature_id, film_id) VALUES (3, 331); INSERT INTO features_films (feature_id, film_id) VALUES (4, 331); INSERT INTO features_films (feature_id, film_id) VALUES (2, 331); INSERT INTO features_films (feature_id, film_id) VALUES (1, 332); INSERT INTO features_films (feature_id, film_id) VALUES (2, 332); INSERT INTO features_films (feature_id, film_id) VALUES (3, 333); INSERT INTO features_films (feature_id, film_id) VALUES (2, 333); INSERT INTO features_films (feature_id, film_id) VALUES (3, 334); INSERT INTO features_films (feature_id, film_id) VALUES (4, 334); INSERT INTO features_films (feature_id, film_id) VALUES (2, 334); INSERT INTO features_films (feature_id, film_id) VALUES (3, 335); INSERT INTO features_films (feature_id, film_id) VALUES (4, 335); INSERT INTO features_films (feature_id, film_id) VALUES (2, 335); INSERT INTO features_films (feature_id, film_id) VALUES (2, 336); INSERT INTO features_films (feature_id, film_id) VALUES (3, 337); INSERT INTO features_films (feature_id, film_id) VALUES (1, 337); INSERT INTO features_films (feature_id, film_id) VALUES (4, 338); INSERT INTO features_films (feature_id, film_id) VALUES (1, 338); INSERT INTO features_films (feature_id, film_id) VALUES (2, 338); INSERT INTO features_films (feature_id, film_id) VALUES (3, 339); INSERT INTO features_films (feature_id, film_id) VALUES (1, 339); INSERT INTO features_films (feature_id, film_id) VALUES (2, 339); INSERT INTO features_films (feature_id, film_id) VALUES (4, 340); INSERT INTO features_films (feature_id, film_id) VALUES (1, 340); INSERT INTO features_films (feature_id, film_id) VALUES (3, 341); INSERT INTO features_films (feature_id, film_id) VALUES (1, 341); INSERT INTO features_films (feature_id, film_id) VALUES (3, 342); INSERT INTO features_films (feature_id, film_id) VALUES (4, 342); INSERT INTO features_films (feature_id, film_id) VALUES (1, 342); INSERT INTO features_films (feature_id, film_id) VALUES (3, 343); INSERT INTO features_films (feature_id, film_id) VALUES (1, 343); INSERT INTO features_films (feature_id, film_id) VALUES (1, 344); INSERT INTO features_films (feature_id, film_id) VALUES (3, 345); INSERT INTO features_films (feature_id, film_id) VALUES (4, 345); INSERT INTO features_films (feature_id, film_id) VALUES (1, 346); INSERT INTO features_films (feature_id, film_id) VALUES (2, 347); INSERT INTO features_films (feature_id, film_id) VALUES (3, 348); INSERT INTO features_films (feature_id, film_id) VALUES (2, 349); INSERT INTO features_films (feature_id, film_id) VALUES (3, 350); INSERT INTO features_films (feature_id, film_id) VALUES (2, 350); INSERT INTO features_films (feature_id, film_id) VALUES (3, 351); INSERT INTO features_films (feature_id, film_id) VALUES (1, 351); INSERT INTO features_films (feature_id, film_id) VALUES (4, 352); INSERT INTO features_films (feature_id, film_id) VALUES (2, 352); INSERT INTO features_films (feature_id, film_id) VALUES (4, 353); INSERT INTO features_films (feature_id, film_id) VALUES (1, 353); INSERT INTO features_films (feature_id, film_id) VALUES (3, 354); INSERT INTO features_films (feature_id, film_id) VALUES (4, 354); INSERT INTO features_films (feature_id, film_id) VALUES (1, 354); INSERT INTO features_films (feature_id, film_id) VALUES (2, 354); INSERT INTO features_films (feature_id, film_id) VALUES (3, 355); INSERT INTO features_films (feature_id, film_id) VALUES (1, 355); INSERT INTO features_films (feature_id, film_id) VALUES (2, 355); INSERT INTO features_films (feature_id, film_id) VALUES (3, 356); INSERT INTO features_films (feature_id, film_id) VALUES (4, 356); INSERT INTO features_films (feature_id, film_id) VALUES (3, 357); INSERT INTO features_films (feature_id, film_id) VALUES (4, 357); INSERT INTO features_films (feature_id, film_id) VALUES (3, 358); INSERT INTO features_films (feature_id, film_id) VALUES (2, 358); INSERT INTO features_films (feature_id, film_id) VALUES (4, 359); INSERT INTO features_films (feature_id, film_id) VALUES (1, 359); INSERT INTO features_films (feature_id, film_id) VALUES (3, 360); INSERT INTO features_films (feature_id, film_id) VALUES (3, 361); INSERT INTO features_films (feature_id, film_id) VALUES (4, 361); INSERT INTO features_films (feature_id, film_id) VALUES (3, 362); INSERT INTO features_films (feature_id, film_id) VALUES (4, 362); INSERT INTO features_films (feature_id, film_id) VALUES (2, 362); INSERT INTO features_films (feature_id, film_id) VALUES (3, 363); INSERT INTO features_films (feature_id, film_id) VALUES (3, 364); INSERT INTO features_films (feature_id, film_id) VALUES (3, 365); INSERT INTO features_films (feature_id, film_id) VALUES (4, 365); INSERT INTO features_films (feature_id, film_id) VALUES (1, 365); INSERT INTO features_films (feature_id, film_id) VALUES (2, 365); INSERT INTO features_films (feature_id, film_id) VALUES (3, 366); INSERT INTO features_films (feature_id, film_id) VALUES (4, 366); INSERT INTO features_films (feature_id, film_id) VALUES (2, 366); INSERT INTO features_films (feature_id, film_id) VALUES (3, 367); INSERT INTO features_films (feature_id, film_id) VALUES (2, 367); INSERT INTO features_films (feature_id, film_id) VALUES (1, 368); INSERT INTO features_films (feature_id, film_id) VALUES (2, 368); INSERT INTO features_films (feature_id, film_id) VALUES (1, 369); INSERT INTO features_films (feature_id, film_id) VALUES (1, 370); INSERT INTO features_films (feature_id, film_id) VALUES (2, 370); INSERT INTO features_films (feature_id, film_id) VALUES (4, 371); INSERT INTO features_films (feature_id, film_id) VALUES (3, 372); INSERT INTO features_films (feature_id, film_id) VALUES (4, 372); INSERT INTO features_films (feature_id, film_id) VALUES (3, 373); INSERT INTO features_films (feature_id, film_id) VALUES (2, 373); INSERT INTO features_films (feature_id, film_id) VALUES (3, 374); INSERT INTO features_films (feature_id, film_id) VALUES (1, 374); INSERT INTO features_films (feature_id, film_id) VALUES (4, 375); INSERT INTO features_films (feature_id, film_id) VALUES (1, 375); INSERT INTO features_films (feature_id, film_id) VALUES (2, 375); INSERT INTO features_films (feature_id, film_id) VALUES (4, 376); INSERT INTO features_films (feature_id, film_id) VALUES (2, 376); INSERT INTO features_films (feature_id, film_id) VALUES (3, 377); INSERT INTO features_films (feature_id, film_id) VALUES (1, 377); INSERT INTO features_films (feature_id, film_id) VALUES (3, 378); INSERT INTO features_films (feature_id, film_id) VALUES (4, 378); INSERT INTO features_films (feature_id, film_id) VALUES (2, 378); INSERT INTO features_films (feature_id, film_id) VALUES (3, 379); INSERT INTO features_films (feature_id, film_id) VALUES (4, 379); INSERT INTO features_films (feature_id, film_id) VALUES (1, 379); INSERT INTO features_films (feature_id, film_id) VALUES (3, 380); INSERT INTO features_films (feature_id, film_id) VALUES (1, 380); INSERT INTO features_films (feature_id, film_id) VALUES (3, 381); INSERT INTO features_films (feature_id, film_id) VALUES (3, 382); INSERT INTO features_films (feature_id, film_id) VALUES (1, 382); INSERT INTO features_films (feature_id, film_id) VALUES (2, 383); INSERT INTO features_films (feature_id, film_id) VALUES (2, 384); INSERT INTO features_films (feature_id, film_id) VALUES (3, 385); INSERT INTO features_films (feature_id, film_id) VALUES (4, 385); INSERT INTO features_films (feature_id, film_id) VALUES (1, 385); INSERT INTO features_films (feature_id, film_id) VALUES (2, 385); INSERT INTO features_films (feature_id, film_id) VALUES (1, 386); INSERT INTO features_films (feature_id, film_id) VALUES (2, 387); INSERT INTO features_films (feature_id, film_id) VALUES (1, 388); INSERT INTO features_films (feature_id, film_id) VALUES (2, 388); INSERT INTO features_films (feature_id, film_id) VALUES (3, 389); INSERT INTO features_films (feature_id, film_id) VALUES (4, 389); INSERT INTO features_films (feature_id, film_id) VALUES (3, 390); INSERT INTO features_films (feature_id, film_id) VALUES (4, 390); INSERT INTO features_films (feature_id, film_id) VALUES (2, 390); INSERT INTO features_films (feature_id, film_id) VALUES (3, 391); INSERT INTO features_films (feature_id, film_id) VALUES (4, 391); INSERT INTO features_films (feature_id, film_id) VALUES (1, 391); INSERT INTO features_films (feature_id, film_id) VALUES (2, 391); INSERT INTO features_films (feature_id, film_id) VALUES (4, 392); INSERT INTO features_films (feature_id, film_id) VALUES (2, 392); INSERT INTO features_films (feature_id, film_id) VALUES (1, 393); INSERT INTO features_films (feature_id, film_id) VALUES (3, 394); INSERT INTO features_films (feature_id, film_id) VALUES (1, 394); INSERT INTO features_films (feature_id, film_id) VALUES (4, 395); INSERT INTO features_films (feature_id, film_id) VALUES (1, 395); INSERT INTO features_films (feature_id, film_id) VALUES (2, 395); INSERT INTO features_films (feature_id, film_id) VALUES (3, 396); INSERT INTO features_films (feature_id, film_id) VALUES (4, 396); INSERT INTO features_films (feature_id, film_id) VALUES (1, 396); INSERT INTO features_films (feature_id, film_id) VALUES (3, 397); INSERT INTO features_films (feature_id, film_id) VALUES (4, 397); INSERT INTO features_films (feature_id, film_id) VALUES (1, 397); INSERT INTO features_films (feature_id, film_id) VALUES (4, 398); INSERT INTO features_films (feature_id, film_id) VALUES (1, 398); INSERT INTO features_films (feature_id, film_id) VALUES (2, 398); INSERT INTO features_films (feature_id, film_id) VALUES (1, 399); INSERT INTO features_films (feature_id, film_id) VALUES (3, 400); INSERT INTO features_films (feature_id, film_id) VALUES (2, 400); INSERT INTO features_films (feature_id, film_id) VALUES (4, 401); INSERT INTO features_films (feature_id, film_id) VALUES (1, 401); INSERT INTO features_films (feature_id, film_id) VALUES (2, 401); INSERT INTO features_films (feature_id, film_id) VALUES (3, 402); INSERT INTO features_films (feature_id, film_id) VALUES (4, 403); INSERT INTO features_films (feature_id, film_id) VALUES (1, 403); INSERT INTO features_films (feature_id, film_id) VALUES (3, 404); INSERT INTO features_films (feature_id, film_id) VALUES (4, 404); INSERT INTO features_films (feature_id, film_id) VALUES (2, 404); INSERT INTO features_films (feature_id, film_id) VALUES (3, 405); INSERT INTO features_films (feature_id, film_id) VALUES (1, 405); INSERT INTO features_films (feature_id, film_id) VALUES (2, 406); INSERT INTO features_films (feature_id, film_id) VALUES (2, 407); INSERT INTO features_films (feature_id, film_id) VALUES (3, 408); INSERT INTO features_films (feature_id, film_id) VALUES (4, 408); INSERT INTO features_films (feature_id, film_id) VALUES (3, 409); INSERT INTO features_films (feature_id, film_id) VALUES (1, 409); INSERT INTO features_films (feature_id, film_id) VALUES (4, 410); INSERT INTO features_films (feature_id, film_id) VALUES (2, 411); INSERT INTO features_films (feature_id, film_id) VALUES (1, 412); INSERT INTO features_films (feature_id, film_id) VALUES (3, 413); INSERT INTO features_films (feature_id, film_id) VALUES (4, 413); INSERT INTO features_films (feature_id, film_id) VALUES (2, 413); INSERT INTO features_films (feature_id, film_id) VALUES (1, 414); INSERT INTO features_films (feature_id, film_id) VALUES (2, 414); INSERT INTO features_films (feature_id, film_id) VALUES (3, 415); INSERT INTO features_films (feature_id, film_id) VALUES (4, 415); INSERT INTO features_films (feature_id, film_id) VALUES (2, 415); INSERT INTO features_films (feature_id, film_id) VALUES (1, 416); INSERT INTO features_films (feature_id, film_id) VALUES (3, 417); INSERT INTO features_films (feature_id, film_id) VALUES (4, 417); INSERT INTO features_films (feature_id, film_id) VALUES (1, 417); INSERT INTO features_films (feature_id, film_id) VALUES (2, 417); INSERT INTO features_films (feature_id, film_id) VALUES (4, 418); INSERT INTO features_films (feature_id, film_id) VALUES (3, 419); INSERT INTO features_films (feature_id, film_id) VALUES (1, 419); INSERT INTO features_films (feature_id, film_id) VALUES (2, 419); INSERT INTO features_films (feature_id, film_id) VALUES (4, 420); INSERT INTO features_films (feature_id, film_id) VALUES (2, 420); INSERT INTO features_films (feature_id, film_id) VALUES (3, 421); INSERT INTO features_films (feature_id, film_id) VALUES (4, 421); INSERT INTO features_films (feature_id, film_id) VALUES (2, 421); INSERT INTO features_films (feature_id, film_id) VALUES (2, 422); INSERT INTO features_films (feature_id, film_id) VALUES (3, 423); INSERT INTO features_films (feature_id, film_id) VALUES (2, 423); INSERT INTO features_films (feature_id, film_id) VALUES (1, 424); INSERT INTO features_films (feature_id, film_id) VALUES (2, 425); INSERT INTO features_films (feature_id, film_id) VALUES (3, 426); INSERT INTO features_films (feature_id, film_id) VALUES (4, 426); INSERT INTO features_films (feature_id, film_id) VALUES (2, 426); INSERT INTO features_films (feature_id, film_id) VALUES (3, 427); INSERT INTO features_films (feature_id, film_id) VALUES (4, 428); INSERT INTO features_films (feature_id, film_id) VALUES (3, 429); INSERT INTO features_films (feature_id, film_id) VALUES (4, 429); INSERT INTO features_films (feature_id, film_id) VALUES (1, 429); INSERT INTO features_films (feature_id, film_id) VALUES (3, 430); INSERT INTO features_films (feature_id, film_id) VALUES (4, 430); INSERT INTO features_films (feature_id, film_id) VALUES (2, 430); INSERT INTO features_films (feature_id, film_id) VALUES (3, 431); INSERT INTO features_films (feature_id, film_id) VALUES (4, 431); INSERT INTO features_films (feature_id, film_id) VALUES (1, 431); INSERT INTO features_films (feature_id, film_id) VALUES (3, 432); INSERT INTO features_films (feature_id, film_id) VALUES (1, 432); INSERT INTO features_films (feature_id, film_id) VALUES (2, 432); INSERT INTO features_films (feature_id, film_id) VALUES (3, 433); INSERT INTO features_films (feature_id, film_id) VALUES (1, 434); INSERT INTO features_films (feature_id, film_id) VALUES (2, 434); INSERT INTO features_films (feature_id, film_id) VALUES (2, 435); INSERT INTO features_films (feature_id, film_id) VALUES (3, 436); INSERT INTO features_films (feature_id, film_id) VALUES (1, 436); INSERT INTO features_films (feature_id, film_id) VALUES (4, 437); INSERT INTO features_films (feature_id, film_id) VALUES (1, 437); INSERT INTO features_films (feature_id, film_id) VALUES (2, 437); INSERT INTO features_films (feature_id, film_id) VALUES (3, 438); INSERT INTO features_films (feature_id, film_id) VALUES (2, 438); INSERT INTO features_films (feature_id, film_id) VALUES (3, 439); INSERT INTO features_films (feature_id, film_id) VALUES (1, 439); INSERT INTO features_films (feature_id, film_id) VALUES (1, 440); INSERT INTO features_films (feature_id, film_id) VALUES (2, 440); INSERT INTO features_films (feature_id, film_id) VALUES (4, 441); INSERT INTO features_films (feature_id, film_id) VALUES (1, 441); INSERT INTO features_films (feature_id, film_id) VALUES (2, 441); INSERT INTO features_films (feature_id, film_id) VALUES (3, 442); INSERT INTO features_films (feature_id, film_id) VALUES (1, 442); INSERT INTO features_films (feature_id, film_id) VALUES (3, 443); INSERT INTO features_films (feature_id, film_id) VALUES (4, 443); INSERT INTO features_films (feature_id, film_id) VALUES (2, 443); INSERT INTO features_films (feature_id, film_id) VALUES (3, 444); INSERT INTO features_films (feature_id, film_id) VALUES (4, 444); INSERT INTO features_films (feature_id, film_id) VALUES (2, 444); INSERT INTO features_films (feature_id, film_id) VALUES (3, 445); INSERT INTO features_films (feature_id, film_id) VALUES (1, 445); INSERT INTO features_films (feature_id, film_id) VALUES (3, 446); INSERT INTO features_films (feature_id, film_id) VALUES (4, 446); INSERT INTO features_films (feature_id, film_id) VALUES (1, 446); INSERT INTO features_films (feature_id, film_id) VALUES (1, 447); INSERT INTO features_films (feature_id, film_id) VALUES (3, 448); INSERT INTO features_films (feature_id, film_id) VALUES (4, 448); INSERT INTO features_films (feature_id, film_id) VALUES (1, 448); INSERT INTO features_films (feature_id, film_id) VALUES (2, 448); INSERT INTO features_films (feature_id, film_id) VALUES (1, 449); INSERT INTO features_films (feature_id, film_id) VALUES (3, 450); INSERT INTO features_films (feature_id, film_id) VALUES (3, 451); INSERT INTO features_films (feature_id, film_id) VALUES (2, 451); INSERT INTO features_films (feature_id, film_id) VALUES (4, 452); INSERT INTO features_films (feature_id, film_id) VALUES (2, 452); INSERT INTO features_films (feature_id, film_id) VALUES (3, 453); INSERT INTO features_films (feature_id, film_id) VALUES (4, 453); INSERT INTO features_films (feature_id, film_id) VALUES (1, 453); INSERT INTO features_films (feature_id, film_id) VALUES (3, 454); INSERT INTO features_films (feature_id, film_id) VALUES (1, 454); INSERT INTO features_films (feature_id, film_id) VALUES (1, 455); INSERT INTO features_films (feature_id, film_id) VALUES (1, 456); INSERT INTO features_films (feature_id, film_id) VALUES (3, 457); INSERT INTO features_films (feature_id, film_id) VALUES (2, 457); INSERT INTO features_films (feature_id, film_id) VALUES (3, 458); INSERT INTO features_films (feature_id, film_id) VALUES (4, 458); INSERT INTO features_films (feature_id, film_id) VALUES (1, 458); INSERT INTO features_films (feature_id, film_id) VALUES (2, 458); INSERT INTO features_films (feature_id, film_id) VALUES (3, 459); INSERT INTO features_films (feature_id, film_id) VALUES (4, 459); INSERT INTO features_films (feature_id, film_id) VALUES (3, 460); INSERT INTO features_films (feature_id, film_id) VALUES (1, 460); INSERT INTO features_films (feature_id, film_id) VALUES (2, 460); INSERT INTO features_films (feature_id, film_id) VALUES (3, 461); INSERT INTO features_films (feature_id, film_id) VALUES (4, 461); INSERT INTO features_films (feature_id, film_id) VALUES (2, 461); INSERT INTO features_films (feature_id, film_id) VALUES (4, 462); INSERT INTO features_films (feature_id, film_id) VALUES (4, 463); INSERT INTO features_films (feature_id, film_id) VALUES (1, 463); INSERT INTO features_films (feature_id, film_id) VALUES (3, 464); INSERT INTO features_films (feature_id, film_id) VALUES (2, 464); INSERT INTO features_films (feature_id, film_id) VALUES (4, 465); INSERT INTO features_films (feature_id, film_id) VALUES (2, 465); INSERT INTO features_films (feature_id, film_id) VALUES (4, 466); INSERT INTO features_films (feature_id, film_id) VALUES (2, 466); INSERT INTO features_films (feature_id, film_id) VALUES (1, 467); INSERT INTO features_films (feature_id, film_id) VALUES (3, 468); INSERT INTO features_films (feature_id, film_id) VALUES (1, 468); INSERT INTO features_films (feature_id, film_id) VALUES (4, 469); INSERT INTO features_films (feature_id, film_id) VALUES (2, 469); INSERT INTO features_films (feature_id, film_id) VALUES (3, 470); INSERT INTO features_films (feature_id, film_id) VALUES (4, 470); INSERT INTO features_films (feature_id, film_id) VALUES (1, 470); INSERT INTO features_films (feature_id, film_id) VALUES (3, 471); INSERT INTO features_films (feature_id, film_id) VALUES (4, 471); INSERT INTO features_films (feature_id, film_id) VALUES (3, 472); INSERT INTO features_films (feature_id, film_id) VALUES (4, 472); INSERT INTO features_films (feature_id, film_id) VALUES (1, 472); INSERT INTO features_films (feature_id, film_id) VALUES (3, 473); INSERT INTO features_films (feature_id, film_id) VALUES (1, 473); INSERT INTO features_films (feature_id, film_id) VALUES (2, 473); INSERT INTO features_films (feature_id, film_id) VALUES (3, 474); INSERT INTO features_films (feature_id, film_id) VALUES (4, 474); INSERT INTO features_films (feature_id, film_id) VALUES (2, 474); INSERT INTO features_films (feature_id, film_id) VALUES (1, 475); INSERT INTO features_films (feature_id, film_id) VALUES (3, 476); INSERT INTO features_films (feature_id, film_id) VALUES (1, 476); INSERT INTO features_films (feature_id, film_id) VALUES (2, 476); INSERT INTO features_films (feature_id, film_id) VALUES (3, 477); INSERT INTO features_films (feature_id, film_id) VALUES (2, 477); INSERT INTO features_films (feature_id, film_id) VALUES (1, 478); INSERT INTO features_films (feature_id, film_id) VALUES (3, 479); INSERT INTO features_films (feature_id, film_id) VALUES (4, 479); INSERT INTO features_films (feature_id, film_id) VALUES (1, 479); INSERT INTO features_films (feature_id, film_id) VALUES (3, 480); INSERT INTO features_films (feature_id, film_id) VALUES (4, 480); INSERT INTO features_films (feature_id, film_id) VALUES (1, 480); INSERT INTO features_films (feature_id, film_id) VALUES (4, 481); INSERT INTO features_films (feature_id, film_id) VALUES (1, 481); INSERT INTO features_films (feature_id, film_id) VALUES (2, 481); INSERT INTO features_films (feature_id, film_id) VALUES (3, 482); INSERT INTO features_films (feature_id, film_id) VALUES (4, 482); INSERT INTO features_films (feature_id, film_id) VALUES (4, 483); INSERT INTO features_films (feature_id, film_id) VALUES (3, 484); INSERT INTO features_films (feature_id, film_id) VALUES (4, 484); INSERT INTO features_films (feature_id, film_id) VALUES (1, 484); INSERT INTO features_films (feature_id, film_id) VALUES (2, 484); INSERT INTO features_films (feature_id, film_id) VALUES (1, 485); INSERT INTO features_films (feature_id, film_id) VALUES (2, 485); INSERT INTO features_films (feature_id, film_id) VALUES (3, 486); INSERT INTO features_films (feature_id, film_id) VALUES (4, 486); INSERT INTO features_films (feature_id, film_id) VALUES (2, 486); INSERT INTO features_films (feature_id, film_id) VALUES (3, 487); INSERT INTO features_films (feature_id, film_id) VALUES (4, 487); INSERT INTO features_films (feature_id, film_id) VALUES (3, 488); INSERT INTO features_films (feature_id, film_id) VALUES (4, 488); INSERT INTO features_films (feature_id, film_id) VALUES (2, 488); INSERT INTO features_films (feature_id, film_id) VALUES (3, 489); INSERT INTO features_films (feature_id, film_id) VALUES (4, 489); INSERT INTO features_films (feature_id, film_id) VALUES (4, 490); INSERT INTO features_films (feature_id, film_id) VALUES (2, 490); INSERT INTO features_films (feature_id, film_id) VALUES (4, 491); INSERT INTO features_films (feature_id, film_id) VALUES (2, 491); INSERT INTO features_films (feature_id, film_id) VALUES (3, 492); INSERT INTO features_films (feature_id, film_id) VALUES (4, 492); INSERT INTO features_films (feature_id, film_id) VALUES (1, 492); INSERT INTO features_films (feature_id, film_id) VALUES (3, 493); INSERT INTO features_films (feature_id, film_id) VALUES (4, 493); INSERT INTO features_films (feature_id, film_id) VALUES (2, 494); INSERT INTO features_films (feature_id, film_id) VALUES (3, 495); INSERT INTO features_films (feature_id, film_id) VALUES (4, 495); INSERT INTO features_films (feature_id, film_id) VALUES (1, 495); INSERT INTO features_films (feature_id, film_id) VALUES (2, 495); INSERT INTO features_films (feature_id, film_id) VALUES (3, 496); INSERT INTO features_films (feature_id, film_id) VALUES (4, 496); INSERT INTO features_films (feature_id, film_id) VALUES (1, 496); INSERT INTO features_films (feature_id, film_id) VALUES (3, 497); INSERT INTO features_films (feature_id, film_id) VALUES (4, 497); INSERT INTO features_films (feature_id, film_id) VALUES (3, 498); INSERT INTO features_films (feature_id, film_id) VALUES (4, 498); INSERT INTO features_films (feature_id, film_id) VALUES (1, 498); INSERT INTO features_films (feature_id, film_id) VALUES (3, 499); INSERT INTO features_films (feature_id, film_id) VALUES (1, 499); INSERT INTO features_films (feature_id, film_id) VALUES (2, 499); INSERT INTO features_films (feature_id, film_id) VALUES (3, 500); INSERT INTO features_films (feature_id, film_id) VALUES (4, 500); INSERT INTO features_films (feature_id, film_id) VALUES (2, 500); INSERT INTO features_films (feature_id, film_id) VALUES (3, 501); INSERT INTO features_films (feature_id, film_id) VALUES (3, 502); INSERT INTO features_films (feature_id, film_id) VALUES (3, 503); INSERT INTO features_films (feature_id, film_id) VALUES (3, 504); INSERT INTO features_films (feature_id, film_id) VALUES (4, 504); INSERT INTO features_films (feature_id, film_id) VALUES (4, 505); INSERT INTO features_films (feature_id, film_id) VALUES (2, 505); INSERT INTO features_films (feature_id, film_id) VALUES (3, 506); INSERT INTO features_films (feature_id, film_id) VALUES (1, 506); INSERT INTO features_films (feature_id, film_id) VALUES (2, 506); INSERT INTO features_films (feature_id, film_id) VALUES (1, 507); INSERT INTO features_films (feature_id, film_id) VALUES (3, 508); INSERT INTO features_films (feature_id, film_id) VALUES (2, 508); INSERT INTO features_films (feature_id, film_id) VALUES (3, 509); INSERT INTO features_films (feature_id, film_id) VALUES (1, 509); INSERT INTO features_films (feature_id, film_id) VALUES (1, 510); INSERT INTO features_films (feature_id, film_id) VALUES (2, 510); INSERT INTO features_films (feature_id, film_id) VALUES (4, 511); INSERT INTO features_films (feature_id, film_id) VALUES (1, 511); INSERT INTO features_films (feature_id, film_id) VALUES (2, 511); INSERT INTO features_films (feature_id, film_id) VALUES (3, 512); INSERT INTO features_films (feature_id, film_id) VALUES (3, 513); INSERT INTO features_films (feature_id, film_id) VALUES (4, 513); INSERT INTO features_films (feature_id, film_id) VALUES (2, 513); INSERT INTO features_films (feature_id, film_id) VALUES (4, 514); INSERT INTO features_films (feature_id, film_id) VALUES (1, 514); INSERT INTO features_films (feature_id, film_id) VALUES (3, 515); INSERT INTO features_films (feature_id, film_id) VALUES (4, 515); INSERT INTO features_films (feature_id, film_id) VALUES (2, 515); INSERT INTO features_films (feature_id, film_id) VALUES (4, 516); INSERT INTO features_films (feature_id, film_id) VALUES (1, 516); INSERT INTO features_films (feature_id, film_id) VALUES (1, 517); INSERT INTO features_films (feature_id, film_id) VALUES (2, 517); INSERT INTO features_films (feature_id, film_id) VALUES (4, 518); INSERT INTO features_films (feature_id, film_id) VALUES (2, 518); INSERT INTO features_films (feature_id, film_id) VALUES (4, 519); INSERT INTO features_films (feature_id, film_id) VALUES (1, 519); INSERT INTO features_films (feature_id, film_id) VALUES (2, 519); INSERT INTO features_films (feature_id, film_id) VALUES (1, 520); INSERT INTO features_films (feature_id, film_id) VALUES (2, 520); INSERT INTO features_films (feature_id, film_id) VALUES (4, 521); INSERT INTO features_films (feature_id, film_id) VALUES (1, 521); INSERT INTO features_films (feature_id, film_id) VALUES (2, 521); INSERT INTO features_films (feature_id, film_id) VALUES (4, 522); INSERT INTO features_films (feature_id, film_id) VALUES (1, 522); INSERT INTO features_films (feature_id, film_id) VALUES (4, 523); INSERT INTO features_films (feature_id, film_id) VALUES (3, 524); INSERT INTO features_films (feature_id, film_id) VALUES (1, 524); INSERT INTO features_films (feature_id, film_id) VALUES (1, 525); INSERT INTO features_films (feature_id, film_id) VALUES (3, 526); INSERT INTO features_films (feature_id, film_id) VALUES (4, 526); INSERT INTO features_films (feature_id, film_id) VALUES (3, 527); INSERT INTO features_films (feature_id, film_id) VALUES (4, 527); INSERT INTO features_films (feature_id, film_id) VALUES (3, 528); INSERT INTO features_films (feature_id, film_id) VALUES (1, 528); INSERT INTO features_films (feature_id, film_id) VALUES (3, 529); INSERT INTO features_films (feature_id, film_id) VALUES (4, 529); INSERT INTO features_films (feature_id, film_id) VALUES (1, 529); INSERT INTO features_films (feature_id, film_id) VALUES (2, 529); INSERT INTO features_films (feature_id, film_id) VALUES (3, 530); INSERT INTO features_films (feature_id, film_id) VALUES (3, 531); INSERT INTO features_films (feature_id, film_id) VALUES (4, 531); INSERT INTO features_films (feature_id, film_id) VALUES (1, 532); INSERT INTO features_films (feature_id, film_id) VALUES (2, 532); INSERT INTO features_films (feature_id, film_id) VALUES (1, 533); INSERT INTO features_films (feature_id, film_id) VALUES (3, 534); INSERT INTO features_films (feature_id, film_id) VALUES (3, 535); INSERT INTO features_films (feature_id, film_id) VALUES (2, 535); INSERT INTO features_films (feature_id, film_id) VALUES (3, 536); INSERT INTO features_films (feature_id, film_id) VALUES (2, 536); INSERT INTO features_films (feature_id, film_id) VALUES (3, 537); INSERT INTO features_films (feature_id, film_id) VALUES (3, 538); INSERT INTO features_films (feature_id, film_id) VALUES (2, 538); INSERT INTO features_films (feature_id, film_id) VALUES (3, 539); INSERT INTO features_films (feature_id, film_id) VALUES (4, 539); INSERT INTO features_films (feature_id, film_id) VALUES (2, 539); INSERT INTO features_films (feature_id, film_id) VALUES (3, 540); INSERT INTO features_films (feature_id, film_id) VALUES (4, 540); INSERT INTO features_films (feature_id, film_id) VALUES (2, 540); INSERT INTO features_films (feature_id, film_id) VALUES (3, 541); INSERT INTO features_films (feature_id, film_id) VALUES (2, 541); INSERT INTO features_films (feature_id, film_id) VALUES (3, 542); INSERT INTO features_films (feature_id, film_id) VALUES (4, 542); INSERT INTO features_films (feature_id, film_id) VALUES (2, 542); INSERT INTO features_films (feature_id, film_id) VALUES (1, 543); INSERT INTO features_films (feature_id, film_id) VALUES (2, 543); INSERT INTO features_films (feature_id, film_id) VALUES (4, 544); INSERT INTO features_films (feature_id, film_id) VALUES (1, 544); INSERT INTO features_films (feature_id, film_id) VALUES (2, 544); INSERT INTO features_films (feature_id, film_id) VALUES (3, 545); INSERT INTO features_films (feature_id, film_id) VALUES (3, 546); INSERT INTO features_films (feature_id, film_id) VALUES (4, 546); INSERT INTO features_films (feature_id, film_id) VALUES (1, 546); INSERT INTO features_films (feature_id, film_id) VALUES (3, 547); INSERT INTO features_films (feature_id, film_id) VALUES (4, 547); INSERT INTO features_films (feature_id, film_id) VALUES (4, 548); INSERT INTO features_films (feature_id, film_id) VALUES (1, 548); INSERT INTO features_films (feature_id, film_id) VALUES (3, 549); INSERT INTO features_films (feature_id, film_id) VALUES (4, 549); INSERT INTO features_films (feature_id, film_id) VALUES (1, 549); INSERT INTO features_films (feature_id, film_id) VALUES (3, 550); INSERT INTO features_films (feature_id, film_id) VALUES (4, 550); INSERT INTO features_films (feature_id, film_id) VALUES (2, 551); INSERT INTO features_films (feature_id, film_id) VALUES (3, 552); INSERT INTO features_films (feature_id, film_id) VALUES (1, 553); INSERT INTO features_films (feature_id, film_id) VALUES (2, 553); INSERT INTO features_films (feature_id, film_id) VALUES (2, 554); INSERT INTO features_films (feature_id, film_id) VALUES (3, 555); INSERT INTO features_films (feature_id, film_id) VALUES (4, 555); INSERT INTO features_films (feature_id, film_id) VALUES (1, 555); INSERT INTO features_films (feature_id, film_id) VALUES (2, 556); INSERT INTO features_films (feature_id, film_id) VALUES (3, 557); INSERT INTO features_films (feature_id, film_id) VALUES (4, 557); INSERT INTO features_films (feature_id, film_id) VALUES (3, 558); INSERT INTO features_films (feature_id, film_id) VALUES (4, 558); INSERT INTO features_films (feature_id, film_id) VALUES (1, 558); INSERT INTO features_films (feature_id, film_id) VALUES (2, 559); INSERT INTO features_films (feature_id, film_id) VALUES (4, 560); INSERT INTO features_films (feature_id, film_id) VALUES (1, 560); INSERT INTO features_films (feature_id, film_id) VALUES (4, 561); INSERT INTO features_films (feature_id, film_id) VALUES (1, 561); INSERT INTO features_films (feature_id, film_id) VALUES (4, 562); INSERT INTO features_films (feature_id, film_id) VALUES (2, 562); INSERT INTO features_films (feature_id, film_id) VALUES (4, 563); INSERT INTO features_films (feature_id, film_id) VALUES (4, 564); INSERT INTO features_films (feature_id, film_id) VALUES (2, 564); INSERT INTO features_films (feature_id, film_id) VALUES (4, 565); INSERT INTO features_films (feature_id, film_id) VALUES (1, 565); INSERT INTO features_films (feature_id, film_id) VALUES (2, 565); INSERT INTO features_films (feature_id, film_id) VALUES (3, 566); INSERT INTO features_films (feature_id, film_id) VALUES (2, 566); INSERT INTO features_films (feature_id, film_id) VALUES (3, 567); INSERT INTO features_films (feature_id, film_id) VALUES (2, 568); INSERT INTO features_films (feature_id, film_id) VALUES (3, 569); INSERT INTO features_films (feature_id, film_id) VALUES (4, 569); INSERT INTO features_films (feature_id, film_id) VALUES (1, 569); INSERT INTO features_films (feature_id, film_id) VALUES (3, 570); INSERT INTO features_films (feature_id, film_id) VALUES (2, 570); INSERT INTO features_films (feature_id, film_id) VALUES (3, 571); INSERT INTO features_films (feature_id, film_id) VALUES (4, 571); INSERT INTO features_films (feature_id, film_id) VALUES (1, 571); INSERT INTO features_films (feature_id, film_id) VALUES (3, 572); INSERT INTO features_films (feature_id, film_id) VALUES (4, 572); INSERT INTO features_films (feature_id, film_id) VALUES (2, 572); INSERT INTO features_films (feature_id, film_id) VALUES (4, 573); INSERT INTO features_films (feature_id, film_id) VALUES (3, 574); INSERT INTO features_films (feature_id, film_id) VALUES (1, 574); INSERT INTO features_films (feature_id, film_id) VALUES (3, 575); INSERT INTO features_films (feature_id, film_id) VALUES (1, 575); INSERT INTO features_films (feature_id, film_id) VALUES (2, 576); INSERT INTO features_films (feature_id, film_id) VALUES (1, 577); INSERT INTO features_films (feature_id, film_id) VALUES (2, 577); INSERT INTO features_films (feature_id, film_id) VALUES (1, 578); INSERT INTO features_films (feature_id, film_id) VALUES (1, 579); INSERT INTO features_films (feature_id, film_id) VALUES (2, 579); INSERT INTO features_films (feature_id, film_id) VALUES (3, 580); INSERT INTO features_films (feature_id, film_id) VALUES (1, 580); INSERT INTO features_films (feature_id, film_id) VALUES (3, 581); INSERT INTO features_films (feature_id, film_id) VALUES (3, 582); INSERT INTO features_films (feature_id, film_id) VALUES (1, 582); INSERT INTO features_films (feature_id, film_id) VALUES (2, 583); INSERT INTO features_films (feature_id, film_id) VALUES (2, 584); INSERT INTO features_films (feature_id, film_id) VALUES (3, 585); INSERT INTO features_films (feature_id, film_id) VALUES (2, 586); INSERT INTO features_films (feature_id, film_id) VALUES (4, 587); INSERT INTO features_films (feature_id, film_id) VALUES (2, 587); INSERT INTO features_films (feature_id, film_id) VALUES (3, 588); INSERT INTO features_films (feature_id, film_id) VALUES (4, 588); INSERT INTO features_films (feature_id, film_id) VALUES (2, 588); INSERT INTO features_films (feature_id, film_id) VALUES (3, 589); INSERT INTO features_films (feature_id, film_id) VALUES (4, 589); INSERT INTO features_films (feature_id, film_id) VALUES (1, 589); INSERT INTO features_films (feature_id, film_id) VALUES (3, 590); INSERT INTO features_films (feature_id, film_id) VALUES (4, 590); INSERT INTO features_films (feature_id, film_id) VALUES (4, 591); INSERT INTO features_films (feature_id, film_id) VALUES (2, 591); INSERT INTO features_films (feature_id, film_id) VALUES (4, 592); INSERT INTO features_films (feature_id, film_id) VALUES (2, 592); INSERT INTO features_films (feature_id, film_id) VALUES (3, 593); INSERT INTO features_films (feature_id, film_id) VALUES (4, 593); INSERT INTO features_films (feature_id, film_id) VALUES (3, 594); INSERT INTO features_films (feature_id, film_id) VALUES (1, 595); INSERT INTO features_films (feature_id, film_id) VALUES (2, 595); INSERT INTO features_films (feature_id, film_id) VALUES (2, 596); INSERT INTO features_films (feature_id, film_id) VALUES (3, 597); INSERT INTO features_films (feature_id, film_id) VALUES (1, 597); INSERT INTO features_films (feature_id, film_id) VALUES (3, 598); INSERT INTO features_films (feature_id, film_id) VALUES (3, 599); INSERT INTO features_films (feature_id, film_id) VALUES (4, 599); INSERT INTO features_films (feature_id, film_id) VALUES (3, 600); INSERT INTO features_films (feature_id, film_id) VALUES (4, 600); INSERT INTO features_films (feature_id, film_id) VALUES (2, 600); INSERT INTO features_films (feature_id, film_id) VALUES (3, 601); INSERT INTO features_films (feature_id, film_id) VALUES (3, 602); INSERT INTO features_films (feature_id, film_id) VALUES (4, 602); INSERT INTO features_films (feature_id, film_id) VALUES (1, 602); INSERT INTO features_films (feature_id, film_id) VALUES (2, 602); INSERT INTO features_films (feature_id, film_id) VALUES (4, 603); INSERT INTO features_films (feature_id, film_id) VALUES (1, 603); INSERT INTO features_films (feature_id, film_id) VALUES (2, 603); INSERT INTO features_films (feature_id, film_id) VALUES (2, 604); INSERT INTO features_films (feature_id, film_id) VALUES (3, 605); INSERT INTO features_films (feature_id, film_id) VALUES (1, 605); INSERT INTO features_films (feature_id, film_id) VALUES (2, 605); INSERT INTO features_films (feature_id, film_id) VALUES (3, 606); INSERT INTO features_films (feature_id, film_id) VALUES (2, 606); INSERT INTO features_films (feature_id, film_id) VALUES (3, 607); INSERT INTO features_films (feature_id, film_id) VALUES (1, 607); INSERT INTO features_films (feature_id, film_id) VALUES (3, 608); INSERT INTO features_films (feature_id, film_id) VALUES (1, 608); INSERT INTO features_films (feature_id, film_id) VALUES (2, 608); INSERT INTO features_films (feature_id, film_id) VALUES (1, 609); INSERT INTO features_films (feature_id, film_id) VALUES (3, 610); INSERT INTO features_films (feature_id, film_id) VALUES (4, 610); INSERT INTO features_films (feature_id, film_id) VALUES (2, 610); INSERT INTO features_films (feature_id, film_id) VALUES (1, 611); INSERT INTO features_films (feature_id, film_id) VALUES (2, 611); INSERT INTO features_films (feature_id, film_id) VALUES (1, 612); INSERT INTO features_films (feature_id, film_id) VALUES (2, 612); INSERT INTO features_films (feature_id, film_id) VALUES (4, 613); INSERT INTO features_films (feature_id, film_id) VALUES (2, 613); INSERT INTO features_films (feature_id, film_id) VALUES (3, 614); INSERT INTO features_films (feature_id, film_id) VALUES (4, 614); INSERT INTO features_films (feature_id, film_id) VALUES (2, 614); INSERT INTO features_films (feature_id, film_id) VALUES (4, 615); INSERT INTO features_films (feature_id, film_id) VALUES (2, 615); INSERT INTO features_films (feature_id, film_id) VALUES (3, 616); INSERT INTO features_films (feature_id, film_id) VALUES (4, 617); INSERT INTO features_films (feature_id, film_id) VALUES (1, 617); INSERT INTO features_films (feature_id, film_id) VALUES (3, 618); INSERT INTO features_films (feature_id, film_id) VALUES (4, 618); INSERT INTO features_films (feature_id, film_id) VALUES (2, 618); INSERT INTO features_films (feature_id, film_id) VALUES (3, 619); INSERT INTO features_films (feature_id, film_id) VALUES (4, 619); INSERT INTO features_films (feature_id, film_id) VALUES (1, 619); INSERT INTO features_films (feature_id, film_id) VALUES (3, 620); INSERT INTO features_films (feature_id, film_id) VALUES (4, 621); INSERT INTO features_films (feature_id, film_id) VALUES (1, 621); INSERT INTO features_films (feature_id, film_id) VALUES (2, 621); INSERT INTO features_films (feature_id, film_id) VALUES (3, 622); INSERT INTO features_films (feature_id, film_id) VALUES (1, 622); INSERT INTO features_films (feature_id, film_id) VALUES (3, 623); INSERT INTO features_films (feature_id, film_id) VALUES (4, 623); INSERT INTO features_films (feature_id, film_id) VALUES (1, 623); INSERT INTO features_films (feature_id, film_id) VALUES (2, 623); INSERT INTO features_films (feature_id, film_id) VALUES (3, 624); INSERT INTO features_films (feature_id, film_id) VALUES (1, 624); INSERT INTO features_films (feature_id, film_id) VALUES (2, 624); INSERT INTO features_films (feature_id, film_id) VALUES (3, 625); INSERT INTO features_films (feature_id, film_id) VALUES (4, 625); INSERT INTO features_films (feature_id, film_id) VALUES (2, 626); INSERT INTO features_films (feature_id, film_id) VALUES (4, 627); INSERT INTO features_films (feature_id, film_id) VALUES (1, 627); INSERT INTO features_films (feature_id, film_id) VALUES (2, 627); INSERT INTO features_films (feature_id, film_id) VALUES (3, 628); INSERT INTO features_films (feature_id, film_id) VALUES (3, 629); INSERT INTO features_films (feature_id, film_id) VALUES (4, 629); INSERT INTO features_films (feature_id, film_id) VALUES (1, 629); INSERT INTO features_films (feature_id, film_id) VALUES (3, 630); INSERT INTO features_films (feature_id, film_id) VALUES (4, 630); INSERT INTO features_films (feature_id, film_id) VALUES (3, 631); INSERT INTO features_films (feature_id, film_id) VALUES (4, 631); INSERT INTO features_films (feature_id, film_id) VALUES (1, 631); INSERT INTO features_films (feature_id, film_id) VALUES (3, 632); INSERT INTO features_films (feature_id, film_id) VALUES (2, 632); INSERT INTO features_films (feature_id, film_id) VALUES (3, 633); INSERT INTO features_films (feature_id, film_id) VALUES (4, 633); INSERT INTO features_films (feature_id, film_id) VALUES (2, 633); INSERT INTO features_films (feature_id, film_id) VALUES (3, 634); INSERT INTO features_films (feature_id, film_id) VALUES (4, 634); INSERT INTO features_films (feature_id, film_id) VALUES (2, 634); INSERT INTO features_films (feature_id, film_id) VALUES (2, 635); INSERT INTO features_films (feature_id, film_id) VALUES (4, 636); INSERT INTO features_films (feature_id, film_id) VALUES (1, 636); INSERT INTO features_films (feature_id, film_id) VALUES (3, 637); INSERT INTO features_films (feature_id, film_id) VALUES (4, 637); INSERT INTO features_films (feature_id, film_id) VALUES (3, 638); INSERT INTO features_films (feature_id, film_id) VALUES (4, 638); INSERT INTO features_films (feature_id, film_id) VALUES (1, 638); INSERT INTO features_films (feature_id, film_id) VALUES (2, 638); INSERT INTO features_films (feature_id, film_id) VALUES (1, 639); INSERT INTO features_films (feature_id, film_id) VALUES (4, 640); INSERT INTO features_films (feature_id, film_id) VALUES (1, 640); INSERT INTO features_films (feature_id, film_id) VALUES (3, 641); INSERT INTO features_films (feature_id, film_id) VALUES (4, 641); INSERT INTO features_films (feature_id, film_id) VALUES (1, 642); INSERT INTO features_films (feature_id, film_id) VALUES (2, 642); INSERT INTO features_films (feature_id, film_id) VALUES (4, 643); INSERT INTO features_films (feature_id, film_id) VALUES (1, 643); INSERT INTO features_films (feature_id, film_id) VALUES (2, 644); INSERT INTO features_films (feature_id, film_id) VALUES (1, 645); INSERT INTO features_films (feature_id, film_id) VALUES (3, 646); INSERT INTO features_films (feature_id, film_id) VALUES (1, 646); INSERT INTO features_films (feature_id, film_id) VALUES (2, 646); INSERT INTO features_films (feature_id, film_id) VALUES (3, 647); INSERT INTO features_films (feature_id, film_id) VALUES (1, 647); INSERT INTO features_films (feature_id, film_id) VALUES (3, 648); INSERT INTO features_films (feature_id, film_id) VALUES (4, 648); INSERT INTO features_films (feature_id, film_id) VALUES (4, 649); INSERT INTO features_films (feature_id, film_id) VALUES (1, 649); INSERT INTO features_films (feature_id, film_id) VALUES (2, 649); INSERT INTO features_films (feature_id, film_id) VALUES (3, 650); INSERT INTO features_films (feature_id, film_id) VALUES (4, 650); INSERT INTO features_films (feature_id, film_id) VALUES (1, 650); INSERT INTO features_films (feature_id, film_id) VALUES (2, 650); INSERT INTO features_films (feature_id, film_id) VALUES (3, 651); INSERT INTO features_films (feature_id, film_id) VALUES (3, 652); INSERT INTO features_films (feature_id, film_id) VALUES (1, 652); INSERT INTO features_films (feature_id, film_id) VALUES (4, 653); INSERT INTO features_films (feature_id, film_id) VALUES (1, 653); INSERT INTO features_films (feature_id, film_id) VALUES (3, 654); INSERT INTO features_films (feature_id, film_id) VALUES (4, 654); INSERT INTO features_films (feature_id, film_id) VALUES (1, 654); INSERT INTO features_films (feature_id, film_id) VALUES (2, 654); INSERT INTO features_films (feature_id, film_id) VALUES (1, 655); INSERT INTO features_films (feature_id, film_id) VALUES (2, 655); INSERT INTO features_films (feature_id, film_id) VALUES (3, 656); INSERT INTO features_films (feature_id, film_id) VALUES (1, 656); INSERT INTO features_films (feature_id, film_id) VALUES (2, 656); INSERT INTO features_films (feature_id, film_id) VALUES (4, 657); INSERT INTO features_films (feature_id, film_id) VALUES (1, 657); INSERT INTO features_films (feature_id, film_id) VALUES (2, 657); INSERT INTO features_films (feature_id, film_id) VALUES (3, 658); INSERT INTO features_films (feature_id, film_id) VALUES (4, 658); INSERT INTO features_films (feature_id, film_id) VALUES (1, 658); INSERT INTO features_films (feature_id, film_id) VALUES (2, 658); INSERT INTO features_films (feature_id, film_id) VALUES (3, 659); INSERT INTO features_films (feature_id, film_id) VALUES (1, 659); INSERT INTO features_films (feature_id, film_id) VALUES (3, 660); INSERT INTO features_films (feature_id, film_id) VALUES (2, 660); INSERT INTO features_films (feature_id, film_id) VALUES (3, 661); INSERT INTO features_films (feature_id, film_id) VALUES (1, 661); INSERT INTO features_films (feature_id, film_id) VALUES (2, 661); INSERT INTO features_films (feature_id, film_id) VALUES (3, 662); INSERT INTO features_films (feature_id, film_id) VALUES (2, 662); INSERT INTO features_films (feature_id, film_id) VALUES (3, 663); INSERT INTO features_films (feature_id, film_id) VALUES (4, 663); INSERT INTO features_films (feature_id, film_id) VALUES (3, 664); INSERT INTO features_films (feature_id, film_id) VALUES (1, 664); INSERT INTO features_films (feature_id, film_id) VALUES (4, 665); INSERT INTO features_films (feature_id, film_id) VALUES (4, 666); INSERT INTO features_films (feature_id, film_id) VALUES (1, 666); INSERT INTO features_films (feature_id, film_id) VALUES (4, 667); INSERT INTO features_films (feature_id, film_id) VALUES (2, 667); INSERT INTO features_films (feature_id, film_id) VALUES (3, 668); INSERT INTO features_films (feature_id, film_id) VALUES (4, 668); INSERT INTO features_films (feature_id, film_id) VALUES (1, 668); INSERT INTO features_films (feature_id, film_id) VALUES (2, 668); INSERT INTO features_films (feature_id, film_id) VALUES (3, 669); INSERT INTO features_films (feature_id, film_id) VALUES (4, 670); INSERT INTO features_films (feature_id, film_id) VALUES (1, 670); INSERT INTO features_films (feature_id, film_id) VALUES (3, 671); INSERT INTO features_films (feature_id, film_id) VALUES (2, 671); INSERT INTO features_films (feature_id, film_id) VALUES (4, 672); INSERT INTO features_films (feature_id, film_id) VALUES (1, 672); INSERT INTO features_films (feature_id, film_id) VALUES (2, 672); INSERT INTO features_films (feature_id, film_id) VALUES (1, 673); INSERT INTO features_films (feature_id, film_id) VALUES (2, 673); INSERT INTO features_films (feature_id, film_id) VALUES (3, 674); INSERT INTO features_films (feature_id, film_id) VALUES (4, 674); INSERT INTO features_films (feature_id, film_id) VALUES (4, 675); INSERT INTO features_films (feature_id, film_id) VALUES (2, 675); INSERT INTO features_films (feature_id, film_id) VALUES (3, 676); INSERT INTO features_films (feature_id, film_id) VALUES (4, 676); INSERT INTO features_films (feature_id, film_id) VALUES (1, 676); INSERT INTO features_films (feature_id, film_id) VALUES (3, 677); INSERT INTO features_films (feature_id, film_id) VALUES (4, 677); INSERT INTO features_films (feature_id, film_id) VALUES (1, 677); INSERT INTO features_films (feature_id, film_id) VALUES (3, 678); INSERT INTO features_films (feature_id, film_id) VALUES (4, 678); INSERT INTO features_films (feature_id, film_id) VALUES (1, 678); INSERT INTO features_films (feature_id, film_id) VALUES (2, 678); INSERT INTO features_films (feature_id, film_id) VALUES (3, 679); INSERT INTO features_films (feature_id, film_id) VALUES (1, 679); INSERT INTO features_films (feature_id, film_id) VALUES (4, 680); INSERT INTO features_films (feature_id, film_id) VALUES (2, 680); INSERT INTO features_films (feature_id, film_id) VALUES (4, 681); INSERT INTO features_films (feature_id, film_id) VALUES (1, 681); INSERT INTO features_films (feature_id, film_id) VALUES (3, 682); INSERT INTO features_films (feature_id, film_id) VALUES (1, 682); INSERT INTO features_films (feature_id, film_id) VALUES (2, 682); INSERT INTO features_films (feature_id, film_id) VALUES (4, 683); INSERT INTO features_films (feature_id, film_id) VALUES (4, 684); INSERT INTO features_films (feature_id, film_id) VALUES (3, 685); INSERT INTO features_films (feature_id, film_id) VALUES (4, 685); INSERT INTO features_films (feature_id, film_id) VALUES (2, 686); INSERT INTO features_films (feature_id, film_id) VALUES (4, 687); INSERT INTO features_films (feature_id, film_id) VALUES (1, 687); INSERT INTO features_films (feature_id, film_id) VALUES (2, 687); INSERT INTO features_films (feature_id, film_id) VALUES (3, 688); INSERT INTO features_films (feature_id, film_id) VALUES (4, 688); INSERT INTO features_films (feature_id, film_id) VALUES (1, 688); INSERT INTO features_films (feature_id, film_id) VALUES (2, 688); INSERT INTO features_films (feature_id, film_id) VALUES (4, 689); INSERT INTO features_films (feature_id, film_id) VALUES (3, 690); INSERT INTO features_films (feature_id, film_id) VALUES (4, 690); INSERT INTO features_films (feature_id, film_id) VALUES (2, 690); INSERT INTO features_films (feature_id, film_id) VALUES (4, 691); INSERT INTO features_films (feature_id, film_id) VALUES (2, 692); INSERT INTO features_films (feature_id, film_id) VALUES (3, 693); INSERT INTO features_films (feature_id, film_id) VALUES (4, 693); INSERT INTO features_films (feature_id, film_id) VALUES (3, 694); INSERT INTO features_films (feature_id, film_id) VALUES (4, 694); INSERT INTO features_films (feature_id, film_id) VALUES (1, 694); INSERT INTO features_films (feature_id, film_id) VALUES (2, 695); INSERT INTO features_films (feature_id, film_id) VALUES (1, 696); INSERT INTO features_films (feature_id, film_id) VALUES (3, 697); INSERT INTO features_films (feature_id, film_id) VALUES (1, 697); INSERT INTO features_films (feature_id, film_id) VALUES (2, 697); INSERT INTO features_films (feature_id, film_id) VALUES (3, 698); INSERT INTO features_films (feature_id, film_id) VALUES (1, 698); INSERT INTO features_films (feature_id, film_id) VALUES (3, 699); INSERT INTO features_films (feature_id, film_id) VALUES (3, 700); INSERT INTO features_films (feature_id, film_id) VALUES (1, 700); INSERT INTO features_films (feature_id, film_id) VALUES (2, 701); INSERT INTO features_films (feature_id, film_id) VALUES (3, 702); INSERT INTO features_films (feature_id, film_id) VALUES (2, 702); INSERT INTO features_films (feature_id, film_id) VALUES (3, 703); INSERT INTO features_films (feature_id, film_id) VALUES (4, 703); INSERT INTO features_films (feature_id, film_id) VALUES (1, 703); INSERT INTO features_films (feature_id, film_id) VALUES (3, 704); INSERT INTO features_films (feature_id, film_id) VALUES (1, 704); INSERT INTO features_films (feature_id, film_id) VALUES (4, 705); INSERT INTO features_films (feature_id, film_id) VALUES (1, 705); INSERT INTO features_films (feature_id, film_id) VALUES (4, 706); INSERT INTO features_films (feature_id, film_id) VALUES (1, 706); INSERT INTO features_films (feature_id, film_id) VALUES (2, 706); INSERT INTO features_films (feature_id, film_id) VALUES (2, 707); INSERT INTO features_films (feature_id, film_id) VALUES (3, 708); INSERT INTO features_films (feature_id, film_id) VALUES (2, 708); INSERT INTO features_films (feature_id, film_id) VALUES (3, 709); INSERT INTO features_films (feature_id, film_id) VALUES (4, 709); INSERT INTO features_films (feature_id, film_id) VALUES (1, 709); INSERT INTO features_films (feature_id, film_id) VALUES (3, 710); INSERT INTO features_films (feature_id, film_id) VALUES (2, 710); INSERT INTO features_films (feature_id, film_id) VALUES (4, 711); INSERT INTO features_films (feature_id, film_id) VALUES (1, 711); INSERT INTO features_films (feature_id, film_id) VALUES (1, 712); INSERT INTO features_films (feature_id, film_id) VALUES (3, 713); INSERT INTO features_films (feature_id, film_id) VALUES (4, 713); INSERT INTO features_films (feature_id, film_id) VALUES (1, 713); INSERT INTO features_films (feature_id, film_id) VALUES (2, 713); INSERT INTO features_films (feature_id, film_id) VALUES (3, 714); INSERT INTO features_films (feature_id, film_id) VALUES (3, 715); INSERT INTO features_films (feature_id, film_id) VALUES (4, 715); INSERT INTO features_films (feature_id, film_id) VALUES (1, 715); INSERT INTO features_films (feature_id, film_id) VALUES (3, 716); INSERT INTO features_films (feature_id, film_id) VALUES (4, 716); INSERT INTO features_films (feature_id, film_id) VALUES (3, 717); INSERT INTO features_films (feature_id, film_id) VALUES (4, 717); INSERT INTO features_films (feature_id, film_id) VALUES (1, 717); INSERT INTO features_films (feature_id, film_id) VALUES (3, 718); INSERT INTO features_films (feature_id, film_id) VALUES (2, 718); INSERT INTO features_films (feature_id, film_id) VALUES (2, 719); INSERT INTO features_films (feature_id, film_id) VALUES (3, 720); INSERT INTO features_films (feature_id, film_id) VALUES (1, 720); INSERT INTO features_films (feature_id, film_id) VALUES (2, 720); INSERT INTO features_films (feature_id, film_id) VALUES (3, 721); INSERT INTO features_films (feature_id, film_id) VALUES (2, 721); INSERT INTO features_films (feature_id, film_id) VALUES (2, 722); INSERT INTO features_films (feature_id, film_id) VALUES (1, 723); INSERT INTO features_films (feature_id, film_id) VALUES (2, 723); INSERT INTO features_films (feature_id, film_id) VALUES (3, 724); INSERT INTO features_films (feature_id, film_id) VALUES (4, 724); INSERT INTO features_films (feature_id, film_id) VALUES (3, 725); INSERT INTO features_films (feature_id, film_id) VALUES (4, 725); INSERT INTO features_films (feature_id, film_id) VALUES (2, 725); INSERT INTO features_films (feature_id, film_id) VALUES (4, 726); INSERT INTO features_films (feature_id, film_id) VALUES (3, 727); INSERT INTO features_films (feature_id, film_id) VALUES (1, 727); INSERT INTO features_films (feature_id, film_id) VALUES (4, 728); INSERT INTO features_films (feature_id, film_id) VALUES (4, 729); INSERT INTO features_films (feature_id, film_id) VALUES (2, 729); INSERT INTO features_films (feature_id, film_id) VALUES (4, 730); INSERT INTO features_films (feature_id, film_id) VALUES (1, 730); INSERT INTO features_films (feature_id, film_id) VALUES (2, 730); INSERT INTO features_films (feature_id, film_id) VALUES (3, 731); INSERT INTO features_films (feature_id, film_id) VALUES (4, 731); INSERT INTO features_films (feature_id, film_id) VALUES (1, 731); INSERT INTO features_films (feature_id, film_id) VALUES (3, 732); INSERT INTO features_films (feature_id, film_id) VALUES (4, 732); INSERT INTO features_films (feature_id, film_id) VALUES (2, 732); INSERT INTO features_films (feature_id, film_id) VALUES (4, 733); INSERT INTO features_films (feature_id, film_id) VALUES (2, 734); INSERT INTO features_films (feature_id, film_id) VALUES (4, 735); INSERT INTO features_films (feature_id, film_id) VALUES (3, 736); INSERT INTO features_films (feature_id, film_id) VALUES (3, 737); INSERT INTO features_films (feature_id, film_id) VALUES (4, 737); INSERT INTO features_films (feature_id, film_id) VALUES (1, 737); INSERT INTO features_films (feature_id, film_id) VALUES (2, 737); INSERT INTO features_films (feature_id, film_id) VALUES (1, 738); INSERT INTO features_films (feature_id, film_id) VALUES (2, 738); INSERT INTO features_films (feature_id, film_id) VALUES (3, 739); INSERT INTO features_films (feature_id, film_id) VALUES (4, 739); INSERT INTO features_films (feature_id, film_id) VALUES (2, 739); INSERT INTO features_films (feature_id, film_id) VALUES (3, 740); INSERT INTO features_films (feature_id, film_id) VALUES (4, 740); INSERT INTO features_films (feature_id, film_id) VALUES (1, 740); INSERT INTO features_films (feature_id, film_id) VALUES (3, 741); INSERT INTO features_films (feature_id, film_id) VALUES (1, 742); INSERT INTO features_films (feature_id, film_id) VALUES (2, 742); INSERT INTO features_films (feature_id, film_id) VALUES (3, 743); INSERT INTO features_films (feature_id, film_id) VALUES (1, 743); INSERT INTO features_films (feature_id, film_id) VALUES (2, 743); INSERT INTO features_films (feature_id, film_id) VALUES (4, 744); INSERT INTO features_films (feature_id, film_id) VALUES (1, 744); INSERT INTO features_films (feature_id, film_id) VALUES (2, 744); INSERT INTO features_films (feature_id, film_id) VALUES (4, 745); INSERT INTO features_films (feature_id, film_id) VALUES (1, 745); INSERT INTO features_films (feature_id, film_id) VALUES (2, 745); INSERT INTO features_films (feature_id, film_id) VALUES (4, 746); INSERT INTO features_films (feature_id, film_id) VALUES (1, 746); INSERT INTO features_films (feature_id, film_id) VALUES (2, 746); INSERT INTO features_films (feature_id, film_id) VALUES (1, 747); INSERT INTO features_films (feature_id, film_id) VALUES (2, 747); INSERT INTO features_films (feature_id, film_id) VALUES (3, 748); INSERT INTO features_films (feature_id, film_id) VALUES (4, 748); INSERT INTO features_films (feature_id, film_id) VALUES (1, 748); INSERT INTO features_films (feature_id, film_id) VALUES (2, 748); INSERT INTO features_films (feature_id, film_id) VALUES (1, 749); INSERT INTO features_films (feature_id, film_id) VALUES (2, 749); INSERT INTO features_films (feature_id, film_id) VALUES (4, 750); INSERT INTO features_films (feature_id, film_id) VALUES (1, 750); INSERT INTO features_films (feature_id, film_id) VALUES (2, 750); INSERT INTO features_films (feature_id, film_id) VALUES (4, 751); INSERT INTO features_films (feature_id, film_id) VALUES (4, 752); INSERT INTO features_films (feature_id, film_id) VALUES (1, 752); INSERT INTO features_films (feature_id, film_id) VALUES (2, 752); INSERT INTO features_films (feature_id, film_id) VALUES (1, 753); INSERT INTO features_films (feature_id, film_id) VALUES (3, 754); INSERT INTO features_films (feature_id, film_id) VALUES (4, 754); INSERT INTO features_films (feature_id, film_id) VALUES (1, 754); INSERT INTO features_films (feature_id, film_id) VALUES (3, 755); INSERT INTO features_films (feature_id, film_id) VALUES (2, 755); INSERT INTO features_films (feature_id, film_id) VALUES (3, 756); INSERT INTO features_films (feature_id, film_id) VALUES (1, 756); INSERT INTO features_films (feature_id, film_id) VALUES (3, 757); INSERT INTO features_films (feature_id, film_id) VALUES (1, 758); INSERT INTO features_films (feature_id, film_id) VALUES (3, 759); INSERT INTO features_films (feature_id, film_id) VALUES (4, 759); INSERT INTO features_films (feature_id, film_id) VALUES (1, 759); INSERT INTO features_films (feature_id, film_id) VALUES (2, 759); INSERT INTO features_films (feature_id, film_id) VALUES (4, 760); INSERT INTO features_films (feature_id, film_id) VALUES (4, 761); INSERT INTO features_films (feature_id, film_id) VALUES (2, 761); INSERT INTO features_films (feature_id, film_id) VALUES (1, 762); INSERT INTO features_films (feature_id, film_id) VALUES (2, 762); INSERT INTO features_films (feature_id, film_id) VALUES (4, 763); INSERT INTO features_films (feature_id, film_id) VALUES (1, 763); INSERT INTO features_films (feature_id, film_id) VALUES (2, 763); INSERT INTO features_films (feature_id, film_id) VALUES (4, 764); INSERT INTO features_films (feature_id, film_id) VALUES (1, 764); INSERT INTO features_films (feature_id, film_id) VALUES (3, 765); INSERT INTO features_films (feature_id, film_id) VALUES (4, 765); INSERT INTO features_films (feature_id, film_id) VALUES (1, 765); INSERT INTO features_films (feature_id, film_id) VALUES (2, 765); INSERT INTO features_films (feature_id, film_id) VALUES (4, 766); INSERT INTO features_films (feature_id, film_id) VALUES (1, 766); INSERT INTO features_films (feature_id, film_id) VALUES (2, 766); INSERT INTO features_films (feature_id, film_id) VALUES (4, 767); INSERT INTO features_films (feature_id, film_id) VALUES (2, 767); INSERT INTO features_films (feature_id, film_id) VALUES (4, 768); INSERT INTO features_films (feature_id, film_id) VALUES (1, 768); INSERT INTO features_films (feature_id, film_id) VALUES (3, 769); INSERT INTO features_films (feature_id, film_id) VALUES (4, 770); INSERT INTO features_films (feature_id, film_id) VALUES (1, 770); INSERT INTO features_films (feature_id, film_id) VALUES (2, 770); INSERT INTO features_films (feature_id, film_id) VALUES (4, 771); INSERT INTO features_films (feature_id, film_id) VALUES (1, 771); INSERT INTO features_films (feature_id, film_id) VALUES (1, 772); INSERT INTO features_films (feature_id, film_id) VALUES (4, 773); INSERT INTO features_films (feature_id, film_id) VALUES (1, 773); INSERT INTO features_films (feature_id, film_id) VALUES (2, 773); INSERT INTO features_films (feature_id, film_id) VALUES (3, 774); INSERT INTO features_films (feature_id, film_id) VALUES (4, 774); INSERT INTO features_films (feature_id, film_id) VALUES (1, 774); INSERT INTO features_films (feature_id, film_id) VALUES (2, 774); INSERT INTO features_films (feature_id, film_id) VALUES (3, 775); INSERT INTO features_films (feature_id, film_id) VALUES (4, 776); INSERT INTO features_films (feature_id, film_id) VALUES (1, 776); INSERT INTO features_films (feature_id, film_id) VALUES (4, 777); INSERT INTO features_films (feature_id, film_id) VALUES (2, 777); INSERT INTO features_films (feature_id, film_id) VALUES (3, 778); INSERT INTO features_films (feature_id, film_id) VALUES (4, 778); INSERT INTO features_films (feature_id, film_id) VALUES (1, 779); INSERT INTO features_films (feature_id, film_id) VALUES (2, 779); INSERT INTO features_films (feature_id, film_id) VALUES (2, 780); INSERT INTO features_films (feature_id, film_id) VALUES (1, 781); INSERT INTO features_films (feature_id, film_id) VALUES (4, 782); INSERT INTO features_films (feature_id, film_id) VALUES (2, 782); INSERT INTO features_films (feature_id, film_id) VALUES (4, 783); INSERT INTO features_films (feature_id, film_id) VALUES (1, 783); INSERT INTO features_films (feature_id, film_id) VALUES (4, 784); INSERT INTO features_films (feature_id, film_id) VALUES (1, 784); INSERT INTO features_films (feature_id, film_id) VALUES (2, 784); INSERT INTO features_films (feature_id, film_id) VALUES (4, 785); INSERT INTO features_films (feature_id, film_id) VALUES (1, 785); INSERT INTO features_films (feature_id, film_id) VALUES (1, 786); INSERT INTO features_films (feature_id, film_id) VALUES (3, 787); INSERT INTO features_films (feature_id, film_id) VALUES (4, 787); INSERT INTO features_films (feature_id, film_id) VALUES (1, 787); INSERT INTO features_films (feature_id, film_id) VALUES (2, 787); INSERT INTO features_films (feature_id, film_id) VALUES (4, 788); INSERT INTO features_films (feature_id, film_id) VALUES (3, 789); INSERT INTO features_films (feature_id, film_id) VALUES (4, 789); INSERT INTO features_films (feature_id, film_id) VALUES (2, 789); INSERT INTO features_films (feature_id, film_id) VALUES (3, 790); INSERT INTO features_films (feature_id, film_id) VALUES (1, 791); INSERT INTO features_films (feature_id, film_id) VALUES (4, 792); INSERT INTO features_films (feature_id, film_id) VALUES (3, 793); INSERT INTO features_films (feature_id, film_id) VALUES (1, 793); INSERT INTO features_films (feature_id, film_id) VALUES (2, 793); INSERT INTO features_films (feature_id, film_id) VALUES (1, 794); INSERT INTO features_films (feature_id, film_id) VALUES (2, 794); INSERT INTO features_films (feature_id, film_id) VALUES (3, 795); INSERT INTO features_films (feature_id, film_id) VALUES (1, 795); INSERT INTO features_films (feature_id, film_id) VALUES (4, 796); INSERT INTO features_films (feature_id, film_id) VALUES (1, 796); INSERT INTO features_films (feature_id, film_id) VALUES (3, 797); INSERT INTO features_films (feature_id, film_id) VALUES (1, 797); INSERT INTO features_films (feature_id, film_id) VALUES (2, 797); INSERT INTO features_films (feature_id, film_id) VALUES (3, 798); INSERT INTO features_films (feature_id, film_id) VALUES (4, 798); INSERT INTO features_films (feature_id, film_id) VALUES (3, 799); INSERT INTO features_films (feature_id, film_id) VALUES (4, 799); INSERT INTO features_films (feature_id, film_id) VALUES (3, 800); INSERT INTO features_films (feature_id, film_id) VALUES (4, 800); INSERT INTO features_films (feature_id, film_id) VALUES (1, 800); INSERT INTO features_films (feature_id, film_id) VALUES (3, 801); INSERT INTO features_films (feature_id, film_id) VALUES (2, 801); INSERT INTO features_films (feature_id, film_id) VALUES (3, 802); INSERT INTO features_films (feature_id, film_id) VALUES (4, 802); INSERT INTO features_films (feature_id, film_id) VALUES (1, 802); INSERT INTO features_films (feature_id, film_id) VALUES (3, 803); INSERT INTO features_films (feature_id, film_id) VALUES (4, 803); INSERT INTO features_films (feature_id, film_id) VALUES (2, 803); INSERT INTO features_films (feature_id, film_id) VALUES (3, 804); INSERT INTO features_films (feature_id, film_id) VALUES (4, 804); INSERT INTO features_films (feature_id, film_id) VALUES (3, 805); INSERT INTO features_films (feature_id, film_id) VALUES (1, 805); INSERT INTO features_films (feature_id, film_id) VALUES (2, 805); INSERT INTO features_films (feature_id, film_id) VALUES (3, 806); INSERT INTO features_films (feature_id, film_id) VALUES (4, 806); INSERT INTO features_films (feature_id, film_id) VALUES (1, 806); INSERT INTO features_films (feature_id, film_id) VALUES (1, 807); INSERT INTO features_films (feature_id, film_id) VALUES (2, 807); INSERT INTO features_films (feature_id, film_id) VALUES (2, 808); INSERT INTO features_films (feature_id, film_id) VALUES (3, 809); INSERT INTO features_films (feature_id, film_id) VALUES (1, 809); INSERT INTO features_films (feature_id, film_id) VALUES (4, 810); INSERT INTO features_films (feature_id, film_id) VALUES (1, 810); INSERT INTO features_films (feature_id, film_id) VALUES (2, 810); INSERT INTO features_films (feature_id, film_id) VALUES (4, 811); INSERT INTO features_films (feature_id, film_id) VALUES (2, 811); INSERT INTO features_films (feature_id, film_id) VALUES (2, 812); INSERT INTO features_films (feature_id, film_id) VALUES (2, 813); INSERT INTO features_films (feature_id, film_id) VALUES (4, 814); INSERT INTO features_films (feature_id, film_id) VALUES (4, 815); INSERT INTO features_films (feature_id, film_id) VALUES (3, 816); INSERT INTO features_films (feature_id, film_id) VALUES (3, 817); INSERT INTO features_films (feature_id, film_id) VALUES (4, 817); INSERT INTO features_films (feature_id, film_id) VALUES (1, 817); INSERT INTO features_films (feature_id, film_id) VALUES (2, 817); INSERT INTO features_films (feature_id, film_id) VALUES (4, 818); INSERT INTO features_films (feature_id, film_id) VALUES (2, 818); INSERT INTO features_films (feature_id, film_id) VALUES (3, 819); INSERT INTO features_films (feature_id, film_id) VALUES (1, 819); INSERT INTO features_films (feature_id, film_id) VALUES (4, 820); INSERT INTO features_films (feature_id, film_id) VALUES (2, 820); INSERT INTO features_films (feature_id, film_id) VALUES (3, 821); INSERT INTO features_films (feature_id, film_id) VALUES (1, 821); INSERT INTO features_films (feature_id, film_id) VALUES (2, 822); INSERT INTO features_films (feature_id, film_id) VALUES (4, 823); INSERT INTO features_films (feature_id, film_id) VALUES (2, 823); INSERT INTO features_films (feature_id, film_id) VALUES (1, 824); INSERT INTO features_films (feature_id, film_id) VALUES (2, 824); INSERT INTO features_films (feature_id, film_id) VALUES (1, 825); INSERT INTO features_films (feature_id, film_id) VALUES (2, 825); INSERT INTO features_films (feature_id, film_id) VALUES (4, 826); INSERT INTO features_films (feature_id, film_id) VALUES (2, 826); INSERT INTO features_films (feature_id, film_id) VALUES (3, 827); INSERT INTO features_films (feature_id, film_id) VALUES (4, 827); INSERT INTO features_films (feature_id, film_id) VALUES (1, 827); INSERT INTO features_films (feature_id, film_id) VALUES (2, 827); INSERT INTO features_films (feature_id, film_id) VALUES (3, 828); INSERT INTO features_films (feature_id, film_id) VALUES (1, 828); INSERT INTO features_films (feature_id, film_id) VALUES (2, 828); INSERT INTO features_films (feature_id, film_id) VALUES (4, 829); INSERT INTO features_films (feature_id, film_id) VALUES (1, 829); INSERT INTO features_films (feature_id, film_id) VALUES (4, 830); INSERT INTO features_films (feature_id, film_id) VALUES (1, 830); INSERT INTO features_films (feature_id, film_id) VALUES (4, 831); INSERT INTO features_films (feature_id, film_id) VALUES (2, 831); INSERT INTO features_films (feature_id, film_id) VALUES (3, 832); INSERT INTO features_films (feature_id, film_id) VALUES (4, 832); INSERT INTO features_films (feature_id, film_id) VALUES (1, 832); INSERT INTO features_films (feature_id, film_id) VALUES (2, 832); INSERT INTO features_films (feature_id, film_id) VALUES (3, 833); INSERT INTO features_films (feature_id, film_id) VALUES (4, 833); INSERT INTO features_films (feature_id, film_id) VALUES (1, 833); INSERT INTO features_films (feature_id, film_id) VALUES (2, 833); INSERT INTO features_films (feature_id, film_id) VALUES (3, 834); INSERT INTO features_films (feature_id, film_id) VALUES (4, 834); INSERT INTO features_films (feature_id, film_id) VALUES (1, 834); INSERT INTO features_films (feature_id, film_id) VALUES (2, 834); INSERT INTO features_films (feature_id, film_id) VALUES (3, 835); INSERT INTO features_films (feature_id, film_id) VALUES (4, 835); INSERT INTO features_films (feature_id, film_id) VALUES (1, 835); INSERT INTO features_films (feature_id, film_id) VALUES (2, 835); INSERT INTO features_films (feature_id, film_id) VALUES (4, 836); INSERT INTO features_films (feature_id, film_id) VALUES (1, 836); INSERT INTO features_films (feature_id, film_id) VALUES (2, 836); INSERT INTO features_films (feature_id, film_id) VALUES (4, 837); INSERT INTO features_films (feature_id, film_id) VALUES (2, 837); INSERT INTO features_films (feature_id, film_id) VALUES (3, 838); INSERT INTO features_films (feature_id, film_id) VALUES (1, 838); INSERT INTO features_films (feature_id, film_id) VALUES (1, 839); INSERT INTO features_films (feature_id, film_id) VALUES (2, 839); INSERT INTO features_films (feature_id, film_id) VALUES (4, 840); INSERT INTO features_films (feature_id, film_id) VALUES (1, 840); INSERT INTO features_films (feature_id, film_id) VALUES (2, 840); INSERT INTO features_films (feature_id, film_id) VALUES (4, 841); INSERT INTO features_films (feature_id, film_id) VALUES (3, 842); INSERT INTO features_films (feature_id, film_id) VALUES (4, 842); INSERT INTO features_films (feature_id, film_id) VALUES (1, 842); INSERT INTO features_films (feature_id, film_id) VALUES (2, 842); INSERT INTO features_films (feature_id, film_id) VALUES (4, 843); INSERT INTO features_films (feature_id, film_id) VALUES (1, 843); INSERT INTO features_films (feature_id, film_id) VALUES (3, 844); INSERT INTO features_films (feature_id, film_id) VALUES (4, 844); INSERT INTO features_films (feature_id, film_id) VALUES (1, 844); INSERT INTO features_films (feature_id, film_id) VALUES (2, 844); INSERT INTO features_films (feature_id, film_id) VALUES (1, 845); INSERT INTO features_films (feature_id, film_id) VALUES (2, 845); INSERT INTO features_films (feature_id, film_id) VALUES (4, 846); INSERT INTO features_films (feature_id, film_id) VALUES (1, 846); INSERT INTO features_films (feature_id, film_id) VALUES (2, 846); INSERT INTO features_films (feature_id, film_id) VALUES (4, 847); INSERT INTO features_films (feature_id, film_id) VALUES (3, 848); INSERT INTO features_films (feature_id, film_id) VALUES (3, 849); INSERT INTO features_films (feature_id, film_id) VALUES (4, 849); INSERT INTO features_films (feature_id, film_id) VALUES (2, 849); INSERT INTO features_films (feature_id, film_id) VALUES (3, 850); INSERT INTO features_films (feature_id, film_id) VALUES (2, 850); INSERT INTO features_films (feature_id, film_id) VALUES (4, 851); INSERT INTO features_films (feature_id, film_id) VALUES (2, 851); INSERT INTO features_films (feature_id, film_id) VALUES (3, 852); INSERT INTO features_films (feature_id, film_id) VALUES (4, 852); INSERT INTO features_films (feature_id, film_id) VALUES (1, 852); INSERT INTO features_films (feature_id, film_id) VALUES (4, 853); INSERT INTO features_films (feature_id, film_id) VALUES (1, 853); INSERT INTO features_films (feature_id, film_id) VALUES (3, 854); INSERT INTO features_films (feature_id, film_id) VALUES (2, 854); INSERT INTO features_films (feature_id, film_id) VALUES (3, 855); INSERT INTO features_films (feature_id, film_id) VALUES (2, 855); INSERT INTO features_films (feature_id, film_id) VALUES (4, 856); INSERT INTO features_films (feature_id, film_id) VALUES (4, 857); INSERT INTO features_films (feature_id, film_id) VALUES (1, 857); INSERT INTO features_films (feature_id, film_id) VALUES (2, 857); INSERT INTO features_films (feature_id, film_id) VALUES (3, 858); INSERT INTO features_films (feature_id, film_id) VALUES (3, 859); INSERT INTO features_films (feature_id, film_id) VALUES (4, 859); INSERT INTO features_films (feature_id, film_id) VALUES (2, 859); INSERT INTO features_films (feature_id, film_id) VALUES (1, 860); INSERT INTO features_films (feature_id, film_id) VALUES (4, 861); INSERT INTO features_films (feature_id, film_id) VALUES (1, 862); INSERT INTO features_films (feature_id, film_id) VALUES (2, 862); INSERT INTO features_films (feature_id, film_id) VALUES (3, 863); INSERT INTO features_films (feature_id, film_id) VALUES (2, 863); INSERT INTO features_films (feature_id, film_id) VALUES (4, 864); INSERT INTO features_films (feature_id, film_id) VALUES (2, 864); INSERT INTO features_films (feature_id, film_id) VALUES (2, 865); INSERT INTO features_films (feature_id, film_id) VALUES (4, 866); INSERT INTO features_films (feature_id, film_id) VALUES (2, 866); INSERT INTO features_films (feature_id, film_id) VALUES (3, 867); INSERT INTO features_films (feature_id, film_id) VALUES (4, 867); INSERT INTO features_films (feature_id, film_id) VALUES (2, 867); INSERT INTO features_films (feature_id, film_id) VALUES (4, 868); INSERT INTO features_films (feature_id, film_id) VALUES (2, 868); INSERT INTO features_films (feature_id, film_id) VALUES (3, 869); INSERT INTO features_films (feature_id, film_id) VALUES (3, 870); INSERT INTO features_films (feature_id, film_id) VALUES (4, 870); INSERT INTO features_films (feature_id, film_id) VALUES (1, 871); INSERT INTO features_films (feature_id, film_id) VALUES (2, 871); INSERT INTO features_films (feature_id, film_id) VALUES (1, 872); INSERT INTO features_films (feature_id, film_id) VALUES (3, 873); INSERT INTO features_films (feature_id, film_id) VALUES (4, 873); INSERT INTO features_films (feature_id, film_id) VALUES (1, 873); INSERT INTO features_films (feature_id, film_id) VALUES (2, 873); INSERT INTO features_films (feature_id, film_id) VALUES (3, 874); INSERT INTO features_films (feature_id, film_id) VALUES (4, 874); INSERT INTO features_films (feature_id, film_id) VALUES (4, 875); INSERT INTO features_films (feature_id, film_id) VALUES (1, 875); INSERT INTO features_films (feature_id, film_id) VALUES (2, 875); INSERT INTO features_films (feature_id, film_id) VALUES (3, 876); INSERT INTO features_films (feature_id, film_id) VALUES (4, 877); INSERT INTO features_films (feature_id, film_id) VALUES (1, 877); INSERT INTO features_films (feature_id, film_id) VALUES (3, 878); INSERT INTO features_films (feature_id, film_id) VALUES (1, 878); INSERT INTO features_films (feature_id, film_id) VALUES (2, 878); INSERT INTO features_films (feature_id, film_id) VALUES (4, 879); INSERT INTO features_films (feature_id, film_id) VALUES (3, 880); INSERT INTO features_films (feature_id, film_id) VALUES (4, 880); INSERT INTO features_films (feature_id, film_id) VALUES (1, 880); INSERT INTO features_films (feature_id, film_id) VALUES (2, 880); INSERT INTO features_films (feature_id, film_id) VALUES (4, 881); INSERT INTO features_films (feature_id, film_id) VALUES (1, 881); INSERT INTO features_films (feature_id, film_id) VALUES (3, 882); INSERT INTO features_films (feature_id, film_id) VALUES (4, 882); INSERT INTO features_films (feature_id, film_id) VALUES (4, 883); INSERT INTO features_films (feature_id, film_id) VALUES (2, 883); INSERT INTO features_films (feature_id, film_id) VALUES (3, 884); INSERT INTO features_films (feature_id, film_id) VALUES (1, 884); INSERT INTO features_films (feature_id, film_id) VALUES (2, 884); INSERT INTO features_films (feature_id, film_id) VALUES (3, 885); INSERT INTO features_films (feature_id, film_id) VALUES (1, 886); INSERT INTO features_films (feature_id, film_id) VALUES (2, 886); INSERT INTO features_films (feature_id, film_id) VALUES (1, 887); INSERT INTO features_films (feature_id, film_id) VALUES (2, 887); INSERT INTO features_films (feature_id, film_id) VALUES (2, 888); INSERT INTO features_films (feature_id, film_id) VALUES (1, 889); INSERT INTO features_films (feature_id, film_id) VALUES (3, 890); INSERT INTO features_films (feature_id, film_id) VALUES (2, 890); INSERT INTO features_films (feature_id, film_id) VALUES (4, 891); INSERT INTO features_films (feature_id, film_id) VALUES (3, 892); INSERT INTO features_films (feature_id, film_id) VALUES (4, 892); INSERT INTO features_films (feature_id, film_id) VALUES (1, 892); INSERT INTO features_films (feature_id, film_id) VALUES (2, 892); INSERT INTO features_films (feature_id, film_id) VALUES (2, 893); INSERT INTO features_films (feature_id, film_id) VALUES (2, 894); INSERT INTO features_films (feature_id, film_id) VALUES (4, 895); INSERT INTO features_films (feature_id, film_id) VALUES (4, 896); INSERT INTO features_films (feature_id, film_id) VALUES (1, 896); INSERT INTO features_films (feature_id, film_id) VALUES (2, 896); INSERT INTO features_films (feature_id, film_id) VALUES (3, 897); INSERT INTO features_films (feature_id, film_id) VALUES (4, 897); INSERT INTO features_films (feature_id, film_id) VALUES (1, 898); INSERT INTO features_films (feature_id, film_id) VALUES (4, 899); INSERT INTO features_films (feature_id, film_id) VALUES (2, 899); INSERT INTO features_films (feature_id, film_id) VALUES (2, 900); INSERT INTO features_films (feature_id, film_id) VALUES (3, 901); INSERT INTO features_films (feature_id, film_id) VALUES (4, 901); INSERT INTO features_films (feature_id, film_id) VALUES (2, 901); INSERT INTO features_films (feature_id, film_id) VALUES (3, 902); INSERT INTO features_films (feature_id, film_id) VALUES (1, 902); INSERT INTO features_films (feature_id, film_id) VALUES (2, 902); INSERT INTO features_films (feature_id, film_id) VALUES (3, 903); INSERT INTO features_films (feature_id, film_id) VALUES (4, 903); INSERT INTO features_films (feature_id, film_id) VALUES (3, 904); INSERT INTO features_films (feature_id, film_id) VALUES (1, 904); INSERT INTO features_films (feature_id, film_id) VALUES (3, 905); INSERT INTO features_films (feature_id, film_id) VALUES (1, 906); INSERT INTO features_films (feature_id, film_id) VALUES (3, 907); INSERT INTO features_films (feature_id, film_id) VALUES (4, 908); INSERT INTO features_films (feature_id, film_id) VALUES (2, 908); INSERT INTO features_films (feature_id, film_id) VALUES (3, 909); INSERT INTO features_films (feature_id, film_id) VALUES (4, 909); INSERT INTO features_films (feature_id, film_id) VALUES (1, 909); INSERT INTO features_films (feature_id, film_id) VALUES (2, 909); INSERT INTO features_films (feature_id, film_id) VALUES (3, 910); INSERT INTO features_films (feature_id, film_id) VALUES (1, 910); INSERT INTO features_films (feature_id, film_id) VALUES (2, 910); INSERT INTO features_films (feature_id, film_id) VALUES (4, 911); INSERT INTO features_films (feature_id, film_id) VALUES (1, 911); INSERT INTO features_films (feature_id, film_id) VALUES (4, 912); INSERT INTO features_films (feature_id, film_id) VALUES (1, 912); INSERT INTO features_films (feature_id, film_id) VALUES (1, 913); INSERT INTO features_films (feature_id, film_id) VALUES (2, 913); INSERT INTO features_films (feature_id, film_id) VALUES (3, 914); INSERT INTO features_films (feature_id, film_id) VALUES (4, 914); INSERT INTO features_films (feature_id, film_id) VALUES (2, 914); INSERT INTO features_films (feature_id, film_id) VALUES (3, 915); INSERT INTO features_films (feature_id, film_id) VALUES (4, 915); INSERT INTO features_films (feature_id, film_id) VALUES (4, 916); INSERT INTO features_films (feature_id, film_id) VALUES (2, 916); INSERT INTO features_films (feature_id, film_id) VALUES (4, 917); INSERT INTO features_films (feature_id, film_id) VALUES (1, 917); INSERT INTO features_films (feature_id, film_id) VALUES (2, 917); INSERT INTO features_films (feature_id, film_id) VALUES (3, 918); INSERT INTO features_films (feature_id, film_id) VALUES (4, 918); INSERT INTO features_films (feature_id, film_id) VALUES (1, 918); INSERT INTO features_films (feature_id, film_id) VALUES (3, 919); INSERT INTO features_films (feature_id, film_id) VALUES (4, 919); INSERT INTO features_films (feature_id, film_id) VALUES (1, 919); INSERT INTO features_films (feature_id, film_id) VALUES (1, 920); INSERT INTO features_films (feature_id, film_id) VALUES (2, 920); INSERT INTO features_films (feature_id, film_id) VALUES (3, 921); INSERT INTO features_films (feature_id, film_id) VALUES (4, 921); INSERT INTO features_films (feature_id, film_id) VALUES (2, 921); INSERT INTO features_films (feature_id, film_id) VALUES (4, 922); INSERT INTO features_films (feature_id, film_id) VALUES (4, 923); INSERT INTO features_films (feature_id, film_id) VALUES (1, 923); INSERT INTO features_films (feature_id, film_id) VALUES (3, 924); INSERT INTO features_films (feature_id, film_id) VALUES (4, 924); INSERT INTO features_films (feature_id, film_id) VALUES (2, 924); INSERT INTO features_films (feature_id, film_id) VALUES (3, 925); INSERT INTO features_films (feature_id, film_id) VALUES (1, 925); INSERT INTO features_films (feature_id, film_id) VALUES (3, 926); INSERT INTO features_films (feature_id, film_id) VALUES (1, 926); INSERT INTO features_films (feature_id, film_id) VALUES (3, 927); INSERT INTO features_films (feature_id, film_id) VALUES (2, 927); INSERT INTO features_films (feature_id, film_id) VALUES (4, 928); INSERT INTO features_films (feature_id, film_id) VALUES (3, 929); INSERT INTO features_films (feature_id, film_id) VALUES (4, 929); INSERT INTO features_films (feature_id, film_id) VALUES (2, 929); INSERT INTO features_films (feature_id, film_id) VALUES (4, 930); INSERT INTO features_films (feature_id, film_id) VALUES (3, 931); INSERT INTO features_films (feature_id, film_id) VALUES (2, 931); INSERT INTO features_films (feature_id, film_id) VALUES (4, 932); INSERT INTO features_films (feature_id, film_id) VALUES (1, 932); INSERT INTO features_films (feature_id, film_id) VALUES (3, 933); INSERT INTO features_films (feature_id, film_id) VALUES (4, 933); INSERT INTO features_films (feature_id, film_id) VALUES (1, 934); INSERT INTO features_films (feature_id, film_id) VALUES (2, 934); INSERT INTO features_films (feature_id, film_id) VALUES (3, 935); INSERT INTO features_films (feature_id, film_id) VALUES (4, 935); INSERT INTO features_films (feature_id, film_id) VALUES (1, 935); INSERT INTO features_films (feature_id, film_id) VALUES (3, 936); INSERT INTO features_films (feature_id, film_id) VALUES (4, 936); INSERT INTO features_films (feature_id, film_id) VALUES (2, 936); INSERT INTO features_films (feature_id, film_id) VALUES (4, 937); INSERT INTO features_films (feature_id, film_id) VALUES (1, 937); INSERT INTO features_films (feature_id, film_id) VALUES (2, 938); INSERT INTO features_films (feature_id, film_id) VALUES (4, 939); INSERT INTO features_films (feature_id, film_id) VALUES (2, 939); INSERT INTO features_films (feature_id, film_id) VALUES (3, 940); INSERT INTO features_films (feature_id, film_id) VALUES (2, 940); INSERT INTO features_films (feature_id, film_id) VALUES (4, 941); INSERT INTO features_films (feature_id, film_id) VALUES (1, 941); INSERT INTO features_films (feature_id, film_id) VALUES (2, 941); INSERT INTO features_films (feature_id, film_id) VALUES (1, 942); INSERT INTO features_films (feature_id, film_id) VALUES (2, 942); INSERT INTO features_films (feature_id, film_id) VALUES (3, 943); INSERT INTO features_films (feature_id, film_id) VALUES (4, 943); INSERT INTO features_films (feature_id, film_id) VALUES (3, 944); INSERT INTO features_films (feature_id, film_id) VALUES (2, 944); INSERT INTO features_films (feature_id, film_id) VALUES (1, 945); INSERT INTO features_films (feature_id, film_id) VALUES (4, 946); INSERT INTO features_films (feature_id, film_id) VALUES (1, 946); INSERT INTO features_films (feature_id, film_id) VALUES (4, 947); INSERT INTO features_films (feature_id, film_id) VALUES (1, 947); INSERT INTO features_films (feature_id, film_id) VALUES (4, 948); INSERT INTO features_films (feature_id, film_id) VALUES (2, 948); INSERT INTO features_films (feature_id, film_id) VALUES (3, 949); INSERT INTO features_films (feature_id, film_id) VALUES (4, 949); INSERT INTO features_films (feature_id, film_id) VALUES (1, 949); INSERT INTO features_films (feature_id, film_id) VALUES (2, 949); INSERT INTO features_films (feature_id, film_id) VALUES (4, 950); INSERT INTO features_films (feature_id, film_id) VALUES (4, 951); INSERT INTO features_films (feature_id, film_id) VALUES (2, 951); INSERT INTO features_films (feature_id, film_id) VALUES (1, 952); INSERT INTO features_films (feature_id, film_id) VALUES (2, 952); INSERT INTO features_films (feature_id, film_id) VALUES (3, 953); INSERT INTO features_films (feature_id, film_id) VALUES (3, 954); INSERT INTO features_films (feature_id, film_id) VALUES (4, 954); INSERT INTO features_films (feature_id, film_id) VALUES (1, 954); INSERT INTO features_films (feature_id, film_id) VALUES (2, 954); INSERT INTO features_films (feature_id, film_id) VALUES (3, 955); INSERT INTO features_films (feature_id, film_id) VALUES (2, 955); INSERT INTO features_films (feature_id, film_id) VALUES (4, 956); INSERT INTO features_films (feature_id, film_id) VALUES (1, 956); INSERT INTO features_films (feature_id, film_id) VALUES (2, 956); INSERT INTO features_films (feature_id, film_id) VALUES (1, 957); INSERT INTO features_films (feature_id, film_id) VALUES (2, 957); INSERT INTO features_films (feature_id, film_id) VALUES (3, 958); INSERT INTO features_films (feature_id, film_id) VALUES (4, 958); INSERT INTO features_films (feature_id, film_id) VALUES (4, 959); INSERT INTO features_films (feature_id, film_id) VALUES (2, 959); INSERT INTO features_films (feature_id, film_id) VALUES (4, 960); INSERT INTO features_films (feature_id, film_id) VALUES (2, 960); INSERT INTO features_films (feature_id, film_id) VALUES (4, 961); INSERT INTO features_films (feature_id, film_id) VALUES (3, 962); INSERT INTO features_films (feature_id, film_id) VALUES (1, 962); INSERT INTO features_films (feature_id, film_id) VALUES (2, 962); INSERT INTO features_films (feature_id, film_id) VALUES (3, 963); INSERT INTO features_films (feature_id, film_id) VALUES (1, 963); INSERT INTO features_films (feature_id, film_id) VALUES (2, 963); INSERT INTO features_films (feature_id, film_id) VALUES (2, 964); INSERT INTO features_films (feature_id, film_id) VALUES (4, 965); INSERT INTO features_films (feature_id, film_id) VALUES (3, 966); INSERT INTO features_films (feature_id, film_id) VALUES (3, 967); INSERT INTO features_films (feature_id, film_id) VALUES (4, 967); INSERT INTO features_films (feature_id, film_id) VALUES (1, 967); INSERT INTO features_films (feature_id, film_id) VALUES (2, 967); INSERT INTO features_films (feature_id, film_id) VALUES (3, 968); INSERT INTO features_films (feature_id, film_id) VALUES (2, 968); INSERT INTO features_films (feature_id, film_id) VALUES (3, 969); INSERT INTO features_films (feature_id, film_id) VALUES (4, 970); INSERT INTO features_films (feature_id, film_id) VALUES (1, 970); INSERT INTO features_films (feature_id, film_id) VALUES (4, 971); INSERT INTO features_films (feature_id, film_id) VALUES (1, 971); INSERT INTO features_films (feature_id, film_id) VALUES (2, 971); INSERT INTO features_films (feature_id, film_id) VALUES (3, 972); INSERT INTO features_films (feature_id, film_id) VALUES (1, 972); INSERT INTO features_films (feature_id, film_id) VALUES (1, 973); INSERT INTO features_films (feature_id, film_id) VALUES (2, 973); INSERT INTO features_films (feature_id, film_id) VALUES (3, 974); INSERT INTO features_films (feature_id, film_id) VALUES (4, 974); INSERT INTO features_films (feature_id, film_id) VALUES (1, 974); INSERT INTO features_films (feature_id, film_id) VALUES (2, 974); INSERT INTO features_films (feature_id, film_id) VALUES (3, 975); INSERT INTO features_films (feature_id, film_id) VALUES (4, 975); INSERT INTO features_films (feature_id, film_id) VALUES (2, 975); INSERT INTO features_films (feature_id, film_id) VALUES (4, 976); INSERT INTO features_films (feature_id, film_id) VALUES (1, 976); INSERT INTO features_films (feature_id, film_id) VALUES (1, 977); INSERT INTO features_films (feature_id, film_id) VALUES (2, 977); INSERT INTO features_films (feature_id, film_id) VALUES (1, 978); INSERT INTO features_films (feature_id, film_id) VALUES (2, 978); INSERT INTO features_films (feature_id, film_id) VALUES (4, 979); INSERT INTO features_films (feature_id, film_id) VALUES (2, 979); INSERT INTO features_films (feature_id, film_id) VALUES (4, 980); INSERT INTO features_films (feature_id, film_id) VALUES (1, 980); INSERT INTO features_films (feature_id, film_id) VALUES (2, 980); INSERT INTO features_films (feature_id, film_id) VALUES (2, 981); INSERT INTO features_films (feature_id, film_id) VALUES (1, 982); INSERT INTO features_films (feature_id, film_id) VALUES (2, 982); INSERT INTO features_films (feature_id, film_id) VALUES (2, 983); INSERT INTO features_films (feature_id, film_id) VALUES (4, 984); INSERT INTO features_films (feature_id, film_id) VALUES (4, 985); INSERT INTO features_films (feature_id, film_id) VALUES (3, 986); INSERT INTO features_films (feature_id, film_id) VALUES (4, 986); INSERT INTO features_films (feature_id, film_id) VALUES (3, 987); INSERT INTO features_films (feature_id, film_id) VALUES (4, 987); INSERT INTO features_films (feature_id, film_id) VALUES (1, 987); INSERT INTO features_films (feature_id, film_id) VALUES (3, 988); INSERT INTO features_films (feature_id, film_id) VALUES (4, 988); INSERT INTO features_films (feature_id, film_id) VALUES (2, 988); INSERT INTO features_films (feature_id, film_id) VALUES (4, 989); INSERT INTO features_films (feature_id, film_id) VALUES (1, 989); INSERT INTO features_films (feature_id, film_id) VALUES (3, 990); INSERT INTO features_films (feature_id, film_id) VALUES (2, 990); INSERT INTO features_films (feature_id, film_id) VALUES (1, 991); INSERT INTO features_films (feature_id, film_id) VALUES (2, 991); INSERT INTO features_films (feature_id, film_id) VALUES (3, 992); INSERT INTO features_films (feature_id, film_id) VALUES (4, 992); INSERT INTO features_films (feature_id, film_id) VALUES (3, 993); INSERT INTO features_films (feature_id, film_id) VALUES (2, 993); INSERT INTO features_films (feature_id, film_id) VALUES (1, 994); INSERT INTO features_films (feature_id, film_id) VALUES (3, 995); INSERT INTO features_films (feature_id, film_id) VALUES (4, 995); INSERT INTO features_films (feature_id, film_id) VALUES (1, 995); INSERT INTO features_films (feature_id, film_id) VALUES (3, 996); INSERT INTO features_films (feature_id, film_id) VALUES (2, 996); INSERT INTO features_films (feature_id, film_id) VALUES (3, 997); INSERT INTO features_films (feature_id, film_id) VALUES (2, 997); INSERT INTO features_films (feature_id, film_id) VALUES (1, 998); INSERT INTO features_films (feature_id, film_id) VALUES (3, 999); INSERT INTO features_films (feature_id, film_id) VALUES (1, 999); INSERT INTO features_films (feature_id, film_id) VALUES (3, 1000); INSERT INTO features_films (feature_id, film_id) VALUES (4, 1000); INSERT INTO features_films (feature_id, film_id) VALUES (2, 1000); -- -- TOC entry 1665 (class 0 OID 60376) -- Dependencies: 1223 -- Data for Name: films; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (1, 'ACADEMY DINOSAUR', 'A Epic Drama of a Feminist And a Mad Scientist who must Battle a Teacher in The Canadian Rockies', 6, 6, 0.99, 86, 20.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (2, 'ACE GOLDFINGER', 'A Astounding Epistle of a Database Administrator And a Explorer who must Find a Car in Ancient China', 11, 3, 4.99, 48, 12.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (3, 'ADAPTATION HOLES', 'A Astounding Reflection of a Lumberjack And a Car who must Sink a Lumberjack in A Baloon Factory', 6, 7, 2.99, 50, 18.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (4, 'AFFAIR PREJUDICE', 'A Fanciful Documentary of a Frisbee And a Lumberjack who must Chase a Monkey in A Shark Tank', 11, 5, 2.99, 117, 26.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (5, 'AFRICAN EGG', 'A Fast-Paced Documentary of a Pastry Chef And a Dentist who must Pursue a Forensic Psychologist in The Gulf of Mexico', 8, 6, 2.99, 130, 22.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (6, 'AGENT TRUMAN', 'A Intrepid Panorama of a Robot And a Boy who must Escape a Sumo Wrestler in Ancient China', 9, 3, 2.99, 169, 17.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (7, 'AIRPLANE SIERRA', 'A Touching Saga of a Hunter And a Butler who must Discover a Butler in A Jet Boat', 5, 6, 4.99, 62, 28.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (8, 'AIRPORT POLLOCK', 'A Epic Tale of a Moose And a Girl who must Confront a Monkey in Ancient India', 11, 6, 4.99, 54, 15.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (9, 'ALABAMA DEVIL', 'A Thoughtful Panorama of a Database Administrator And a Mad Scientist who must Outgun a Mad Scientist in A Jet Boat', 11, 3, 2.99, 114, 21.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (10, 'ALADDIN CALENDAR', 'A Action-Packed Tale of a Man And a Lumberjack who must Reach a Feminist in Ancient China', 15, 6, 4.99, 63, 24.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (11, 'ALAMO VIDEOTAPE', 'A Boring Epistle of a Butler And a Cat who must Fight a Pastry Chef in A MySQL Convention', 9, 6, 0.99, 126, 16.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (12, 'ALASKA PHANTOM', 'A Fanciful Saga of a Hunter And a Pastry Chef who must Vanquish a Boy in Australia', 12, 6, 0.99, 136, 22.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (13, 'ALI FOREVER', 'A Action-Packed Drama of a Dentist And a Crocodile who must Battle a Feminist in The Canadian Rockies', 11, 4, 4.99, 150, 21.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (14, 'ALICE FANTASIA', 'A Emotional Drama of a A Shark And a Database Administrator who must Vanquish a Pioneer in Soviet Georgia', 4, 6, 0.99, 94, 23.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (15, 'ALIEN CENTER', 'A Brilliant Drama of a Cat And a Mad Scientist who must Battle a Feminist in A MySQL Convention', 9, 5, 2.99, 46, 10.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (16, 'ALLEY EVOLUTION', 'A Fast-Paced Drama of a Robot And a Composer who must Battle a Astronaut in New Orleans', 9, 6, 2.99, 180, 23.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (17, 'ALONE TRIP', 'A Fast-Paced Character Study of a Composer And a Dog who must Outgun a Boat in An Abandoned Fun House', 12, 3, 0.99, 82, 14.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (18, 'ALTER VICTORY', 'A Thoughtful Drama of a Composer And a Feminist who must Meet a Secret Agent in The Canadian Rockies', 2, 6, 0.99, 57, 27.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (19, 'AMADEUS HOLY', 'A Emotional Display of a Pioneer And a Technical Writer who must Battle a Man in A Baloon', 1, 6, 0.99, 113, 20.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (20, 'AMELIE HELLFIGHTERS', 'A Boring Drama of a Woman And a Squirrel who must Conquer a Student in A Baloon', 12, 4, 4.99, 79, 23.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (21, 'AMERICAN CIRCUS', 'A Insightful Drama of a Girl And a Astronaut who must Face a Database Administrator in A Shark Tank', 1, 3, 4.99, 129, 17.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (22, 'AMISTAD MIDSUMMER', 'A Emotional Character Study of a Dentist And a Crocodile who must Meet a Sumo Wrestler in California', 13, 6, 2.99, 85, 10.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (23, 'ANACONDA CONFESSIONS', 'A Lacklusture Display of a Dentist And a Dentist who must Fight a Girl in Australia', 2, 3, 0.99, 92, 9.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (24, 'ANALYZE HOOSIERS', 'A Thoughtful Display of a Explorer And a Pastry Chef who must Overcome a Feminist in The Sahara Desert', 11, 6, 2.99, 181, 19.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (25, 'ANGELS LIFE', 'A Thoughtful Display of a Woman And a Astronaut who must Battle a Robot in Berlin', 13, 3, 2.99, 74, 15.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (26, 'ANNIE IDENTITY', 'A Amazing Panorama of a Pastry Chef And a Boat who must Escape a Woman in An Abandoned Amusement Park', 14, 3, 0.99, 86, 15.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (27, 'ANONYMOUS HUMAN', 'A Amazing Reflection of a Database Administrator And a Astronaut who must Outrace a Database Administrator in A Shark Tank', 15, 7, 0.99, 179, 12.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (28, 'ANTHEM LUKE', 'A Touching Panorama of a Waitress And a Woman who must Outrace a Dog in An Abandoned Amusement Park', 5, 5, 4.99, 91, 16.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (29, 'ANTITRUST TOMATOES', 'A Fateful Yarn of a Womanizer And a Feminist who must Succumb a Database Administrator in Ancient India', 1, 5, 2.99, 168, 11.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (30, 'ANYTHING SAVANNAH', 'A Epic Story of a Pastry Chef And a Woman who must Chase a Feminist in An Abandoned Fun House', 11, 4, 2.99, 82, 27.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (31, 'APACHE DIVINE', 'A Awe-Inspiring Reflection of a Pastry Chef And a Teacher who must Overcome a Sumo Wrestler in A U-Boat', 8, 5, 4.99, 92, 16.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (32, 'APOCALYPSE FLAMINGOS', 'A Astounding Story of a Dog And a Squirrel who must Defeat a Woman in An Abandoned Amusement Park', 13, 6, 4.99, 119, 11.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (33, 'APOLLO TEEN', 'A Action-Packed Reflection of a Crocodile And a Explorer who must Find a Sumo Wrestler in An Abandoned Mine Shaft', 7, 5, 2.99, 153, 15.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (34, 'ARABIA DOGMA', 'A Touching Epistle of a Madman And a Mad Cow who must Defeat a Student in Nigeria', 11, 6, 0.99, 62, 29.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (35, 'ARACHNOPHOBIA ROLLERCOASTER', 'A Action-Packed Reflection of a Pastry Chef And a Composer who must Discover a Mad Scientist in The First Manned Space Station', 11, 4, 2.99, 147, 24.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (36, 'ARGONAUTS TOWN', 'A Emotional Epistle of a Forensic Psychologist And a Butler who must Challenge a Waitress in An Abandoned Mine Shaft', 2, 7, 0.99, 127, 12.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (37, 'ARIZONA BANG', 'A Brilliant Panorama of a Mad Scientist And a Mad Cow who must Meet a Pioneer in A Monastery', 4, 3, 2.99, 121, 28.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (38, 'ARK RIDGEMONT', 'A Beautiful Yarn of a Pioneer And a Monkey who must Pursue a Explorer in The Sahara Desert', 1, 6, 0.99, 68, 25.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (39, 'ARMAGEDDON LOST', 'A Fast-Paced Tale of a Boat And a Teacher who must Succumb a Composer in An Abandoned Mine Shaft', 14, 5, 0.99, 99, 10.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (40, 'ARMY FLINTSTONES', 'A Boring Saga of a Database Administrator And a Womanizer who must Battle a Waitress in Nigeria', 6, 4, 0.99, 148, 22.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (41, 'ARSENIC INDEPENDENCE', 'A Fanciful Documentary of a Mad Cow And a Womanizer who must Find a Dentist in Berlin', 16, 4, 0.99, 137, 17.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (42, 'ARTIST COLDBLOODED', 'A Stunning Reflection of a Robot And a Moose who must Challenge a Woman in California', 15, 5, 2.99, 170, 10.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (43, 'ATLANTIS CAUSE', 'A Thrilling Yarn of a Feminist And a Hunter who must Fight a Technical Writer in A Shark Tank', 8, 6, 2.99, 170, 15.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (44, 'ATTACKS HATE', 'A Fast-Paced Panorama of a Technical Writer And a Mad Scientist who must Find a Feminist in An Abandoned Mine Shaft', 14, 5, 4.99, 113, 21.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (45, 'ATTRACTION NEWTON', 'A Astounding Panorama of a Composer And a Frisbee who must Reach a Husband in Ancient Japan', 13, 5, 4.99, 83, 14.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (46, 'AUTUMN CROW', 'A Beautiful Tale of a Dentist And a Mad Cow who must Battle a Moose in The Sahara Desert', 10, 3, 4.99, 108, 13.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (47, 'BABY HALL', 'A Boring Character Study of a A Shark And a Girl who must Outrace a Feminist in An Abandoned Mine Shaft', 9, 5, 4.99, 153, 23.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (48, 'BACKLASH UNDEFEATED', 'A Stunning Character Study of a Mad Scientist And a Mad Cow who must Kill a Car in A Monastery', 3, 3, 4.99, 118, 24.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (49, 'BADMAN DAWN', 'A Emotional Panorama of a Pioneer And a Composer who must Escape a Mad Scientist in A Jet Boat', 14, 6, 2.99, 162, 22.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (50, 'BAKED CLEOPATRA', 'A Stunning Drama of a Forensic Psychologist And a Husband who must Overcome a Waitress in A Monastery', 8, 3, 2.99, 182, 20.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (51, 'BALLOON HOMEWARD', 'A Insightful Panorama of a Forensic Psychologist And a Mad Cow who must Build a Mad Scientist in The First Manned Space Station', 12, 5, 2.99, 75, 10.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (52, 'BALLROOM MOCKINGBIRD', 'A Thrilling Documentary of a Composer And a Monkey who must Find a Feminist in California', 9, 6, 0.99, 173, 29.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (53, 'BANG KWAI', 'A Epic Drama of a Madman And a Cat who must Face a A Shark in An Abandoned Amusement Park', 8, 5, 2.99, 87, 25.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (54, 'BANGER PINOCCHIO', 'A Awe-Inspiring Drama of a Car And a Pastry Chef who must Chase a Crocodile in The First Manned Space Station', 12, 5, 0.99, 113, 15.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (55, 'BARBARELLA STREETCAR', 'A Awe-Inspiring Story of a Feminist And a Cat who must Conquer a Dog in A Monastery', 14, 6, 2.99, 65, 27.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (56, 'BAREFOOT MANCHURIAN', 'A Intrepid Story of a Cat And a Student who must Vanquish a Girl in An Abandoned Amusement Park', 1, 6, 2.99, 129, 15.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (57, 'BASIC EASY', 'A Stunning Epistle of a Man And a Husband who must Reach a Mad Scientist in A Jet Boat', 16, 4, 2.99, 90, 18.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (58, 'BEACH HEARTBREAKERS', 'A Fateful Display of a Womanizer And a Mad Scientist who must Outgun a A Shark in Soviet Georgia', 6, 6, 2.99, 122, 16.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (59, 'BEAR GRACELAND', 'A Astounding Saga of a Dog And a Boy who must Kill a Teacher in The First Manned Space Station', 3, 4, 2.99, 160, 20.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (60, 'BEAST HUNCHBACK', 'A Awe-Inspiring Epistle of a Student And a Squirrel who must Defeat a Boy in Ancient China', 4, 3, 4.99, 89, 22.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (61, 'BEAUTY GREASE', 'A Fast-Paced Display of a Composer And a Moose who must Sink a Robot in An Abandoned Mine Shaft', 7, 5, 4.99, 175, 28.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (62, 'BED HIGHBALL', 'A Astounding Panorama of a Lumberjack And a Dog who must Redeem a Woman in An Abandoned Fun House', 6, 5, 2.99, 106, 23.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (63, 'BEDAZZLED MARRIED', 'A Astounding Character Study of a Madman And a Robot who must Meet a Mad Scientist in An Abandoned Fun House', 8, 6, 0.99, 73, 21.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (64, 'BEETHOVEN EXORCIST', 'A Epic Display of a Pioneer And a Student who must Challenge a Butler in The Gulf of Mexico', 7, 6, 0.99, 151, 26.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (65, 'BEHAVIOR RUNAWAY', 'A Unbelieveable Drama of a Student And a Husband who must Outrace a Sumo Wrestler in Berlin', 11, 3, 4.99, 100, 20.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (66, 'BENEATH RUSH', 'A Astounding Panorama of a Man And a Monkey who must Discover a Man in The First Manned Space Station', 3, 6, 0.99, 53, 27.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (67, 'BERETS AGENT', 'A Taut Saga of a Crocodile And a Boy who must Overcome a Technical Writer in Ancient China', 1, 5, 2.99, 77, 24.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (68, 'BETRAYED REAR', 'A Emotional Character Study of a Boat And a Pioneer who must Find a Explorer in A Shark Tank', 3, 5, 4.99, 122, 26.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (69, 'BEVERLY OUTLAW', 'A Fanciful Documentary of a Womanizer And a Boat who must Defeat a Madman in The First Manned Space Station', 14, 3, 2.99, 85, 21.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (70, 'BIKINI BORROWERS', 'A Astounding Drama of a Astronaut And a Cat who must Discover a Woman in The First Manned Space Station', 2, 7, 4.99, 142, 26.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (71, 'BILKO ANONYMOUS', 'A Emotional Reflection of a Teacher And a Man who must Meet a Cat in The First Manned Space Station', 8, 3, 4.99, 100, 25.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (72, 'BILL OTHERS', 'A Stunning Saga of a Mad Scientist And a Forensic Psychologist who must Challenge a Squirrel in A MySQL Convention', 6, 6, 2.99, 93, 12.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (73, 'BINGO TALENTED', 'A Touching Tale of a Girl And a Crocodile who must Discover a Waitress in Nigeria', 14, 5, 2.99, 150, 22.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (74, 'BIRCH ANTITRUST', 'A Fanciful Panorama of a Husband And a Pioneer who must Outgun a Dog in A Baloon', 12, 4, 4.99, 162, 18.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (75, 'BIRD INDEPENDENCE', 'A Thrilling Documentary of a Car And a Student who must Sink a Hunter in The Canadian Rockies', 16, 6, 4.99, 163, 14.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (76, 'BIRDCAGE CASPER', 'A Fast-Paced Saga of a Frisbee And a Astronaut who must Overcome a Feminist in Ancient India', 12, 4, 0.99, 103, 23.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (77, 'BIRDS PERDITION', 'A Boring Story of a Womanizer And a Pioneer who must Face a Dog in California', 13, 5, 4.99, 61, 15.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (78, 'BLACKOUT PRIVATE', 'A Intrepid Yarn of a Pastry Chef And a Mad Scientist who must Challenge a Secret Agent in Ancient Japan', 2, 7, 2.99, 85, 12.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (79, 'BLADE POLISH', 'A Thoughtful Character Study of a Frisbee And a Pastry Chef who must Fight a Dentist in The First Manned Space Station', 7, 5, 0.99, 114, 10.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (80, 'BLANKET BEVERLY', 'A Emotional Documentary of a Student And a Girl who must Build a Boat in Nigeria', 8, 7, 2.99, 148, 21.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (81, 'BLINDNESS GUN', 'A Touching Drama of a Robot And a Dentist who must Meet a Hunter in A Jet Boat', 14, 6, 4.99, 103, 29.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (82, 'BLOOD ARGONAUTS', 'A Boring Drama of a Explorer And a Man who must Kill a Lumberjack in A Manhattan Penthouse', 8, 3, 0.99, 71, 13.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (83, 'BLUES INSTINCT', 'A Insightful Documentary of a Boat And a Composer who must Meet a Forensic Psychologist in An Abandoned Fun House', 8, 5, 2.99, 50, 18.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (84, 'BOILED DARES', 'A Awe-Inspiring Story of a Waitress And a Dog who must Discover a Dentist in Ancient Japan', 16, 7, 4.99, 102, 13.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (85, 'BONNIE HOLOCAUST', 'A Fast-Paced Story of a Crocodile And a Robot who must Find a Moose in Ancient Japan', 6, 4, 0.99, 63, 29.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (86, 'BOOGIE AMELIE', 'A Lacklusture Character Study of a Husband And a Sumo Wrestler who must Succumb a Technical Writer in The Gulf of Mexico', 12, 6, 4.99, 121, 11.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (87, 'BOONDOCK BALLROOM', 'A Fateful Panorama of a Crocodile And a Boy who must Defeat a Monkey in The Gulf of Mexico', 16, 7, 0.99, 76, 14.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (88, 'BORN SPINAL', 'A Touching Epistle of a Frisbee And a Husband who must Pursue a Student in Nigeria', 16, 7, 4.99, 179, 17.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (89, 'BORROWERS BEDAZZLED', 'A Brilliant Epistle of a Teacher And a Sumo Wrestler who must Defeat a Man in An Abandoned Fun House', 2, 7, 0.99, 63, 22.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (90, 'BOULEVARD MOB', 'A Fateful Epistle of a Moose And a Monkey who must Confront a Lumberjack in Ancient China', 13, 3, 0.99, 63, 11.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (91, 'BOUND CHEAPER', 'A Thrilling Panorama of a Database Administrator And a Astronaut who must Challenge a Lumberjack in A Baloon', 4, 5, 0.99, 98, 17.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (92, 'BOWFINGER GABLES', 'A Fast-Paced Yarn of a Waitress And a Composer who must Outgun a Dentist in California', 11, 7, 4.99, 72, 19.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (93, 'BRANNIGAN SUNRISE', 'A Amazing Epistle of a Moose And a Crocodile who must Outrace a Dog in Berlin', 13, 4, 4.99, 121, 27.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (94, 'BRAVEHEART HUMAN', 'A Insightful Story of a Dog And a Pastry Chef who must Battle a Girl in Berlin', 8, 7, 2.99, 176, 14.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (95, 'BREAKFAST GOLDFINGER', 'A Beautiful Reflection of a Student And a Student who must Fight a Moose in Berlin', 13, 5, 4.99, 123, 18.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (96, 'BREAKING HOME', 'A Beautiful Display of a Secret Agent And a Monkey who must Battle a Sumo Wrestler in An Abandoned Mine Shaft', 13, 4, 2.99, 169, 21.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (97, 'BRIDE INTRIGUE', 'A Epic Tale of a Robot And a Monkey who must Vanquish a Man in New Orleans', 1, 7, 0.99, 56, 24.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (98, 'BRIGHT ENCOUNTERS', 'A Fateful Yarn of a Lumberjack And a Feminist who must Conquer a Student in A Jet Boat', 7, 4, 4.99, 73, 12.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (99, 'BRINGING HYSTERICAL', 'A Fateful Saga of a A Shark And a Technical Writer who must Find a Woman in A Jet Boat', 5, 7, 2.99, 136, 14.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (100, 'BROOKLYN DESERT', 'A Beautiful Drama of a Dentist And a Composer who must Battle a Sumo Wrestler in The First Manned Space Station', 9, 7, 4.99, 161, 21.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (101, 'BROTHERHOOD BLANKET', 'A Fateful Character Study of a Butler And a Technical Writer who must Sink a Astronaut in Ancient Japan', 6, 3, 0.99, 73, 26.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (102, 'BUBBLE GROSSE', 'A Awe-Inspiring Panorama of a Crocodile And a Moose who must Confront a Girl in A Baloon', 15, 4, 4.99, 60, 20.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (103, 'BUCKET BROTHERHOOD', 'A Amazing Display of a Girl And a Womanizer who must Succumb a Lumberjack in A Baloon Factory', 16, 7, 4.99, 133, 27.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (104, 'BUGSY SONG', 'A Awe-Inspiring Character Study of a Secret Agent And a Boat who must Find a Squirrel in The First Manned Space Station', 9, 4, 2.99, 119, 17.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (105, 'BULL SHAWSHANK', 'A Fanciful Drama of a Moose And a Squirrel who must Conquer a Pioneer in The Canadian Rockies', 1, 6, 0.99, 125, 21.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (106, 'BULWORTH COMMANDMENTS', 'A Amazing Display of a Mad Cow And a Pioneer who must Redeem a Sumo Wrestler in The Outback', 10, 4, 2.99, 61, 14.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (107, 'BUNCH MINDS', 'A Emotional Story of a Feminist And a Feminist who must Escape a Pastry Chef in A MySQL Convention', 7, 4, 2.99, 63, 13.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (108, 'BUTCH PANTHER', 'A Lacklusture Yarn of a Feminist And a Database Administrator who must Face a Hunter in New Orleans', 13, 6, 0.99, 67, 19.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (109, 'BUTTERFLY CHOCOLAT', 'A Fateful Story of a Girl And a Composer who must Conquer a Husband in A Shark Tank', 13, 3, 0.99, 89, 17.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (110, 'CABIN FLASH', 'A Stunning Epistle of a Boat And a Man who must Challenge a A Shark in A Baloon Factory', 3, 4, 0.99, 53, 25.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (111, 'CADDYSHACK JEDI', 'A Awe-Inspiring Epistle of a Woman And a Madman who must Fight a Robot in Soviet Georgia', 1, 3, 0.99, 52, 17.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (112, 'CALENDAR GUNFIGHT', 'A Thrilling Drama of a Frisbee And a Lumberjack who must Sink a Man in Nigeria', 9, 4, 4.99, 120, 22.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (113, 'CALIFORNIA BIRDS', 'A Thrilling Yarn of a Database Administrator And a Robot who must Battle a Database Administrator in Ancient India', 15, 4, 4.99, 75, 19.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (114, 'CAMELOT VACATION', 'A Touching Character Study of a Woman And a Waitress who must Battle a Pastry Chef in A MySQL Convention', 14, 3, 0.99, 61, 26.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (115, 'CAMPUS REMEMBER', 'A Astounding Drama of a Crocodile And a Mad Cow who must Build a Robot in A Jet Boat', 1, 5, 2.99, 167, 27.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (116, 'CANDIDATE PERDITION', 'A Brilliant Epistle of a Composer And a Database Administrator who must Vanquish a Mad Scientist in The First Manned Space Station', 4, 4, 2.99, 70, 10.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (117, 'CANDLES GRAPES', 'A Fanciful Character Study of a Monkey And a Explorer who must Build a Astronaut in An Abandoned Fun House', 10, 6, 4.99, 135, 15.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (118, 'CANYON STOCK', 'A Thoughtful Reflection of a Waitress And a Feminist who must Escape a Squirrel in A Manhattan Penthouse', 2, 7, 0.99, 85, 26.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (119, 'CAPER MOTIONS', 'A Fateful Saga of a Moose And a Car who must Pursue a Woman in A MySQL Convention', 5, 6, 0.99, 176, 22.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (120, 'CARIBBEAN LIBERTY', 'A Fanciful Tale of a Pioneer And a Technical Writer who must Outgun a Pioneer in A Shark Tank', 15, 3, 4.99, 92, 16.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (121, 'CAROL TEXAS', 'A Astounding Character Study of a Composer And a Student who must Overcome a Composer in A Monastery', 2, 4, 2.99, 151, 15.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (122, 'CARRIE BUNCH', 'A Amazing Epistle of a Student And a Astronaut who must Discover a Frisbee in The Canadian Rockies', 11, 7, 0.99, 114, 11.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (123, 'CASABLANCA SUPER', 'A Amazing Panorama of a Crocodile And a Forensic Psychologist who must Pursue a Secret Agent in The First Manned Space Station', 16, 6, 4.99, 85, 22.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (124, 'CASPER DRAGONFLY', 'A Intrepid Documentary of a Boat And a Crocodile who must Chase a Robot in The Sahara Desert', 3, 3, 4.99, 163, 16.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (125, 'CASSIDY WYOMING', 'A Intrepid Drama of a Frisbee And a Hunter who must Kill a Secret Agent in New Orleans', 16, 5, 2.99, 61, 19.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (126, 'CASUALTIES ENCINO', 'A Insightful Yarn of a A Shark And a Pastry Chef who must Face a Boy in A Monastery', 1, 3, 4.99, 179, 16.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (127, 'CAT CONEHEADS', 'A Fast-Paced Panorama of a Girl And a A Shark who must Confront a Boy in Ancient India', 5, 5, 4.99, 112, 14.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (128, 'CATCH AMISTAD', 'A Boring Reflection of a Lumberjack And a Feminist who must Discover a Woman in Nigeria', 9, 7, 0.99, 183, 10.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (129, 'CAUSE DATE', 'A Taut Tale of a Explorer And a Pastry Chef who must Conquer a Hunter in A MySQL Convention', 6, 3, 2.99, 179, 16.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (130, 'CELEBRITY HORN', 'A Amazing Documentary of a Secret Agent And a Astronaut who must Vanquish a Hunter in A Shark Tank', 1, 7, 0.99, 110, 24.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (131, 'CENTER DINOSAUR', 'A Beautiful Character Study of a Sumo Wrestler And a Dentist who must Find a Dog in California', 4, 5, 4.99, 152, 12.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (132, 'CHAINSAW UPTOWN', 'A Beautiful Documentary of a Boy And a Robot who must Discover a Squirrel in Australia', 14, 6, 0.99, 114, 25.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (133, 'CHAMBER ITALIAN', 'A Fateful Reflection of a Moose And a Husband who must Overcome a Monkey in Nigeria', 12, 7, 4.99, 117, 14.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (134, 'CHAMPION FLATLINERS', 'A Amazing Story of a Mad Cow And a Dog who must Kill a Husband in A Monastery', 2, 4, 4.99, 51, 21.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (135, 'CHANCE RESURRECTION', 'A Astounding Story of a Forensic Psychologist And a Forensic Psychologist who must Overcome a Moose in Ancient China', 15, 3, 2.99, 70, 22.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (136, 'CHAPLIN LICENSE', 'A Boring Drama of a Dog And a Forensic Psychologist who must Outrace a Explorer in Ancient India', 13, 7, 2.99, 146, 26.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (137, 'CHARADE DUFFEL', 'A Action-Packed Display of a Man And a Waitress who must Build a Dog in A MySQL Convention', 14, 3, 2.99, 66, 21.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (138, 'CHARIOTS CONSPIRACY', 'A Unbelieveable Epistle of a Robot And a Husband who must Chase a Robot in The First Manned Space Station', 14, 5, 2.99, 71, 29.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (139, 'CHASING FIGHT', 'A Astounding Saga of a Technical Writer And a Butler who must Battle a Butler in A Shark Tank', 8, 7, 4.99, 114, 21.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (140, 'CHEAPER CLYDE', 'A Emotional Character Study of a Pioneer And a Girl who must Discover a Dog in Ancient Japan', 14, 6, 0.99, 87, 23.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (141, 'CHICAGO NORTH', 'A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California', 10, 6, 4.99, 185, 11.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (142, 'CHICKEN HELLFIGHTERS', 'A Emotional Drama of a Dog And a Explorer who must Outrace a Technical Writer in Australia', 6, 3, 0.99, 122, 24.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (143, 'CHILL LUCK', 'A Lacklusture Epistle of a Boat And a Technical Writer who must Fight a A Shark in The Canadian Rockies', 7, 6, 0.99, 142, 17.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (144, 'CHINATOWN GLADIATOR', 'A Brilliant Panorama of a Technical Writer And a Lumberjack who must Escape a Butler in Ancient India', 13, 7, 4.99, 61, 24.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (145, 'CHISUM BEHAVIOR', 'A Epic Documentary of a Sumo Wrestler And a Butler who must Kill a Car in Ancient India', 8, 5, 4.99, 124, 25.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (146, 'CHITTY LOCK', 'A Boring Epistle of a Boat And a Database Administrator who must Kill a Sumo Wrestler in The First Manned Space Station', 7, 6, 2.99, 107, 24.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (147, 'CHOCOLAT HARRY', 'A Action-Packed Epistle of a Dentist And a Moose who must Meet a Mad Cow in Ancient Japan', 8, 5, 0.99, 101, 16.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (148, 'CHOCOLATE DUCK', 'A Unbelieveable Story of a Mad Scientist And a Technical Writer who must Discover a Composer in Ancient China', 9, 3, 2.99, 132, 13.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (149, 'CHRISTMAS MOONSHINE', 'A Action-Packed Epistle of a Feminist And a Astronaut who must Conquer a Boat in A Manhattan Penthouse', 3, 7, 0.99, 150, 21.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (150, 'CIDER DESIRE', 'A Stunning Character Study of a Composer And a Mad Cow who must Succumb a Cat in Soviet Georgia', 6, 7, 2.99, 101, 9.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (151, 'CINCINATTI WHISPERER', 'A Brilliant Saga of a Pastry Chef And a Hunter who must Confront a Butler in Berlin', 14, 5, 4.99, 143, 26.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (152, 'CIRCUS YOUTH', 'A Thoughtful Drama of a Pastry Chef And a Dentist who must Pursue a Girl in A Baloon', 3, 5, 2.99, 90, 13.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (153, 'CITIZEN SHREK', 'A Fanciful Character Study of a Technical Writer And a Husband who must Redeem a Robot in The Outback', 14, 7, 0.99, 165, 18.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (154, 'CLASH FREDDY', 'A Amazing Yarn of a Composer And a Squirrel who must Escape a Astronaut in Australia', 2, 6, 2.99, 81, 12.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (155, 'CLEOPATRA DEVIL', 'A Fanciful Documentary of a Crocodile And a Technical Writer who must Fight a A Shark in A Baloon', 13, 6, 0.99, 150, 26.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (156, 'CLERKS ANGELS', 'A Thrilling Display of a Sumo Wrestler And a Girl who must Confront a Man in A Baloon', 6, 3, 4.99, 164, 15.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (157, 'CLOCKWORK PARADISE', 'A Insightful Documentary of a Technical Writer And a Feminist who must Challenge a Cat in A Baloon', 3, 7, 0.99, 143, 29.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (158, 'CLONES PINOCCHIO', 'A Amazing Drama of a Car And a Robot who must Pursue a Dentist in New Orleans', 12, 6, 2.99, 124, 16.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (159, 'CLOSER BANG', 'A Unbelieveable Panorama of a Frisbee And a Hunter who must Vanquish a Monkey in Ancient India', 5, 5, 4.99, 58, 12.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (160, 'CLUB GRAFFITI', 'A Epic Tale of a Pioneer And a Hunter who must Escape a Girl in A U-Boat', 2, 4, 0.99, 65, 12.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (161, 'CLUE GRAIL', 'A Taut Tale of a Butler And a Mad Scientist who must Build a Crocodile in Ancient China', 12, 6, 4.99, 70, 27.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (162, 'CLUELESS BUCKET', 'A Taut Tale of a Car And a Pioneer who must Conquer a Sumo Wrestler in An Abandoned Fun House', 1, 4, 2.99, 95, 13.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (163, 'CLYDE THEORY', 'A Beautiful Yarn of a Astronaut And a Frisbee who must Overcome a Explorer in A Jet Boat', 13, 4, 0.99, 139, 29.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (164, 'COAST RAINBOW', 'A Astounding Documentary of a Mad Cow And a Pioneer who must Challenge a Butler in The Sahara Desert', 6, 4, 0.99, 55, 20.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (165, 'COLDBLOODED DARLING', 'A Brilliant Panorama of a Dentist And a Moose who must Find a Student in The Gulf of Mexico', 14, 7, 4.99, 70, 27.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (166, 'COLOR PHILADELPHIA', 'A Thoughtful Panorama of a Car And a Crocodile who must Sink a Monkey in The Sahara Desert', 4, 6, 2.99, 149, 19.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (167, 'COMA HEAD', 'A Awe-Inspiring Drama of a Boy And a Frisbee who must Escape a Pastry Chef in California', 16, 6, 4.99, 109, 10.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (168, 'COMANCHEROS ENEMY', 'A Boring Saga of a Lumberjack And a Monkey who must Find a Monkey in The Gulf of Mexico', 3, 5, 0.99, 67, 23.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (169, 'COMFORTS RUSH', 'A Unbelieveable Panorama of a Pioneer And a Husband who must Meet a Mad Cow in An Abandoned Mine Shaft', 16, 3, 2.99, 76, 19.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (170, 'COMMAND DARLING', 'A Awe-Inspiring Tale of a Forensic Psychologist And a Woman who must Challenge a Database Administrator in Ancient Japan', 9, 5, 4.99, 120, 28.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (171, 'COMMANDMENTS EXPRESS', 'A Fanciful Saga of a Student And a Mad Scientist who must Battle a Hunter in An Abandoned Mine Shaft', 11, 6, 4.99, 59, 13.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (172, 'CONEHEADS SMOOCHY', 'A Touching Story of a Womanizer And a Composer who must Pursue a Husband in Nigeria', 7, 7, 4.99, 112, 12.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (173, 'CONFESSIONS MAGUIRE', 'A Insightful Story of a Car And a Boy who must Battle a Technical Writer in A Baloon', 7, 7, 4.99, 65, 25.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (174, 'CONFIDENTIAL INTERVIEW', 'A Stunning Reflection of a Cat And a Woman who must Find a Astronaut in Ancient Japan', 12, 6, 4.99, 180, 13.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (175, 'CONFUSED CANDLES', 'A Stunning Epistle of a Cat And a Forensic Psychologist who must Confront a Pioneer in A Baloon', 8, 3, 2.99, 122, 27.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (176, 'CONGENIALITY QUEST', 'A Touching Documentary of a Cat And a Pastry Chef who must Find a Lumberjack in A Baloon', 15, 6, 0.99, 87, 21.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (177, 'CONNECTICUT TRAMP', 'A Unbelieveable Drama of a Crocodile And a Mad Cow who must Reach a Dentist in A Shark Tank', 14, 4, 4.99, 172, 20.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (178, 'CONNECTION MICROCOSMOS', 'A Fateful Documentary of a Crocodile And a Husband who must Face a Husband in The First Manned Space Station', 5, 6, 0.99, 115, 25.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (179, 'CONQUERER NUTS', 'A Taut Drama of a Mad Scientist And a Man who must Escape a Pioneer in An Abandoned Mine Shaft', 7, 4, 4.99, 173, 14.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (180, 'CONSPIRACY SPIRIT', 'A Awe-Inspiring Story of a Student And a Frisbee who must Conquer a Crocodile in An Abandoned Mine Shaft', 4, 4, 2.99, 184, 27.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (181, 'CONTACT ANONYMOUS', 'A Insightful Display of a A Shark And a Monkey who must Face a Database Administrator in Ancient India', 16, 7, 2.99, 166, 10.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (182, 'CONTROL ANTHEM', 'A Fateful Documentary of a Robot And a Student who must Battle a Cat in A Monastery', 5, 7, 4.99, 185, 9.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (183, 'CONVERSATION DOWNHILL', 'A Taut Character Study of a Husband And a Waitress who must Sink a Squirrel in A MySQL Convention', 8, 4, 4.99, 112, 14.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (184, 'CORE SUIT', 'A Unbelieveable Tale of a Car And a Explorer who must Confront a Boat in A Manhattan Penthouse', 4, 3, 2.99, 92, 24.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (185, 'COWBOY DOOM', 'A Astounding Drama of a Boy And a Lumberjack who must Fight a Butler in A Baloon', 9, 3, 2.99, 146, 10.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (186, 'CRAFT OUTFIELD', 'A Lacklusture Display of a Explorer And a Hunter who must Succumb a Database Administrator in A Baloon Factory', 7, 6, 0.99, 64, 17.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (187, 'CRANES RESERVOIR', 'A Fanciful Documentary of a Teacher And a Dog who must Outgun a Forensic Psychologist in A Baloon Factory', 15, 5, 2.99, 57, 12.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (188, 'CRAZY HOME', 'A Fanciful Panorama of a Boy And a Woman who must Vanquish a Database Administrator in The Outback', 5, 7, 2.99, 136, 24.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (189, 'CREATURES SHAKESPEARE', 'A Emotional Drama of a Womanizer And a Squirrel who must Vanquish a Crocodile in Ancient India', 10, 3, 0.99, 139, 23.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (190, 'CREEPERS KANE', 'A Awe-Inspiring Reflection of a Squirrel And a Boat who must Outrace a Car in A Jet Boat', 4, 5, 4.99, 172, 23.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (191, 'CROOKED FROGMEN', 'A Unbelieveable Drama of a Hunter And a Database Administrator who must Battle a Crocodile in An Abandoned Amusement Park', 3, 6, 0.99, 143, 27.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (192, 'CROSSING DIVORCE', 'A Beautiful Documentary of a Dog And a Robot who must Redeem a Womanizer in Berlin', 9, 4, 4.99, 50, 19.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (193, 'CROSSROADS CASUALTIES', 'A Intrepid Documentary of a Sumo Wrestler And a Astronaut who must Battle a Composer in The Outback', 2, 5, 2.99, 153, 20.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (194, 'CROW GREASE', 'A Awe-Inspiring Documentary of a Woman And a Husband who must Sink a Database Administrator in The First Manned Space Station', 1, 6, 0.99, 104, 22.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (195, 'CROWDS TELEMARK', 'A Intrepid Documentary of a Astronaut And a Forensic Psychologist who must Find a Frisbee in An Abandoned Fun House', 14, 3, 4.99, 112, 16.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (196, 'CRUELTY UNFORGIVEN', 'A Brilliant Tale of a Car And a Moose who must Battle a Dentist in Nigeria', 4, 7, 0.99, 69, 29.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (197, 'CRUSADE HONEY', 'A Fast-Paced Reflection of a Explorer And a Butler who must Battle a Madman in An Abandoned Amusement Park', 15, 4, 2.99, 112, 27.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (198, 'CRYSTAL BREAKING', 'A Fast-Paced Character Study of a Feminist And a Explorer who must Face a Pastry Chef in Ancient Japan', 9, 6, 2.99, 184, 22.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (199, 'CUPBOARD SINNERS', 'A Emotional Reflection of a Frisbee And a Boat who must Reach a Pastry Chef in An Abandoned Amusement Park', 6, 4, 2.99, 56, 29.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (200, 'CURTAIN VIDEOTAPE', 'A Boring Reflection of a Dentist And a Mad Cow who must Chase a Secret Agent in A Shark Tank', 10, 7, 0.99, 133, 27.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (201, 'CYCLONE FAMILY', 'A Lacklusture Drama of a Student And a Monkey who must Sink a Womanizer in A MySQL Convention', 9, 7, 2.99, 176, 18.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (202, 'DADDY PITTSBURGH', 'A Epic Story of a A Shark And a Student who must Confront a Explorer in The Gulf of Mexico', 5, 5, 4.99, 161, 26.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (203, 'DAISY MENAGERIE', 'A Fast-Paced Saga of a Pastry Chef And a Monkey who must Sink a Composer in Ancient India', 14, 5, 4.99, 84, 9.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (204, 'DALMATIONS SWEDEN', 'A Emotional Epistle of a Moose And a Hunter who must Overcome a Robot in A Manhattan Penthouse', 7, 4, 0.99, 106, 25.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (205, 'DANCES NONE', 'A Insightful Reflection of a A Shark And a Dog who must Kill a Butler in An Abandoned Amusement Park', 1, 3, 0.99, 58, 22.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (206, 'DANCING FEVER', 'A Stunning Story of a Explorer And a Forensic Psychologist who must Face a Crocodile in A Shark Tank', 6, 6, 0.99, 144, 25.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (207, 'DANGEROUS UPTOWN', 'A Unbelieveable Story of a Mad Scientist And a Woman who must Overcome a Dog in California', 9, 7, 4.99, 121, 26.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (208, 'DARES PLUTO', 'A Fateful Story of a Robot And a Dentist who must Defeat a Astronaut in New Orleans', 2, 7, 2.99, 89, 16.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (209, 'DARKNESS WAR', 'A Touching Documentary of a Husband And a Hunter who must Escape a Boy in The Sahara Desert', 7, 6, 2.99, 99, 24.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (210, 'DARKO DORADO', 'A Stunning Reflection of a Frisbee And a Husband who must Redeem a Dog in New Orleans', 1, 3, 4.99, 130, 13.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (211, 'DARLING BREAKING', 'A Brilliant Documentary of a Astronaut And a Squirrel who must Succumb a Student in The Gulf of Mexico', 10, 7, 4.99, 165, 20.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (212, 'DARN FORRESTER', 'A Fateful Story of a A Shark And a Explorer who must Succumb a Technical Writer in A Jet Boat', 1, 7, 4.99, 185, 14.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (213, 'DATE SPEED', 'A Touching Saga of a Composer And a Moose who must Discover a Dentist in A MySQL Convention', 8, 4, 0.99, 104, 19.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (214, 'DAUGHTER MADIGAN', 'A Beautiful Tale of a Hunter And a Mad Scientist who must Confront a Squirrel in The First Manned Space Station', 3, 3, 4.99, 59, 13.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (215, 'DAWN POND', 'A Thoughtful Documentary of a Dentist And a Forensic Psychologist who must Defeat a Waitress in Berlin', 10, 4, 4.99, 57, 27.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (216, 'DAY UNFAITHFUL', 'A Stunning Documentary of a Composer And a Mad Scientist who must Find a Technical Writer in A U-Boat', 13, 3, 4.99, 113, 16.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (217, 'DAZED PUNK', 'A Action-Packed Story of a Pioneer And a Technical Writer who must Discover a Forensic Psychologist in An Abandoned Amusement Park', 10, 6, 4.99, 120, 20.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (218, 'DECEIVER BETRAYED', 'A Taut Story of a Moose And a Squirrel who must Build a Husband in Ancient India', 7, 7, 0.99, 122, 22.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (219, 'DEEP CRUSADE', 'A Amazing Tale of a Crocodile And a Squirrel who must Discover a Composer in Australia', 6, 6, 4.99, 51, 20.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (220, 'DEER VIRGINIAN', 'A Thoughtful Story of a Mad Cow And a Womanizer who must Overcome a Mad Scientist in Soviet Georgia', 12, 7, 2.99, 106, 13.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (221, 'DELIVERANCE MULHOLLAND', 'A Astounding Saga of a Monkey And a Moose who must Conquer a Butler in A Shark Tank', 6, 4, 0.99, 100, 9.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (222, 'DESERT POSEIDON', 'A Brilliant Documentary of a Butler And a Frisbee who must Build a Astronaut in New Orleans', 11, 4, 4.99, 64, 27.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (223, 'DESIRE ALIEN', 'A Fast-Paced Tale of a Dog And a Forensic Psychologist who must Meet a Astronaut in The First Manned Space Station', 2, 7, 2.99, 76, 24.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (224, 'DESPERATE TRAINSPOTTING', 'A Epic Yarn of a Forensic Psychologist And a Teacher who must Face a Lumberjack in California', 16, 7, 4.99, 81, 29.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (225, 'DESTINATION JERK', 'A Beautiful Yarn of a Teacher And a Cat who must Build a Car in A U-Boat', 7, 3, 0.99, 76, 19.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (226, 'DESTINY SATURDAY', 'A Touching Drama of a Crocodile And a Crocodile who must Conquer a Explorer in Soviet Georgia', 13, 4, 4.99, 56, 20.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (227, 'DETAILS PACKER', 'A Epic Saga of a Waitress And a Composer who must Face a Boat in A U-Boat', 10, 4, 4.99, 88, 17.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (228, 'DETECTIVE VISION', 'A Fanciful Documentary of a Pioneer And a Woman who must Redeem a Hunter in Ancient Japan', 4, 4, 0.99, 143, 16.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (229, 'DEVIL DESIRE', 'A Beautiful Reflection of a Monkey And a Dentist who must Face a Database Administrator in Ancient Japan', 1, 6, 4.99, 87, 12.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (230, 'DIARY PANIC', 'A Thoughtful Character Study of a Frisbee And a Mad Cow who must Outgun a Man in Ancient India', 7, 7, 2.99, 107, 20.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (231, 'DINOSAUR SECRETARY', 'A Action-Packed Drama of a Feminist And a Girl who must Reach a Robot in The Canadian Rockies', 8, 7, 2.99, 63, 27.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (232, 'DIRTY ACE', 'A Action-Packed Character Study of a Forensic Psychologist And a Girl who must Build a Dentist in The Outback', 10, 7, 2.99, 147, 29.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (233, 'DISCIPLE MOTHER', 'A Touching Reflection of a Mad Scientist And a Boat who must Face a Moose in A Shark Tank', 16, 3, 0.99, 141, 17.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (234, 'DISTURBING SCARFACE', 'A Lacklusture Display of a Crocodile And a Butler who must Overcome a Monkey in A U-Boat', 14, 6, 2.99, 94, 27.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (235, 'DIVIDE MONSTER', 'A Intrepid Saga of a Man And a Forensic Psychologist who must Reach a Squirrel in A Monastery', 14, 6, 2.99, 68, 13.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (236, 'DIVINE RESURRECTION', 'A Boring Character Study of a Man And a Womanizer who must Succumb a Teacher in An Abandoned Amusement Park', 10, 4, 2.99, 100, 19.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (237, 'DIVORCE SHINING', 'A Unbelieveable Saga of a Crocodile And a Student who must Discover a Cat in Ancient India', 15, 3, 2.99, 47, 21.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (238, 'DOCTOR GRAIL', 'A Insightful Drama of a Womanizer And a Waitress who must Reach a Forensic Psychologist in The Outback', 3, 4, 2.99, 57, 29.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (239, 'DOGMA FAMILY', 'A Brilliant Character Study of a Database Administrator And a Monkey who must Succumb a Astronaut in New Orleans', 2, 5, 4.99, 122, 16.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (240, 'DOLLS RAGE', 'A Thrilling Display of a Pioneer And a Frisbee who must Escape a Teacher in The Outback', 14, 7, 2.99, 120, 10.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (241, 'DONNIE ALLEY', 'A Awe-Inspiring Tale of a Butler And a Frisbee who must Vanquish a Teacher in Ancient Japan', 2, 4, 0.99, 125, 20.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (242, 'DOOM DANCING', 'A Astounding Panorama of a Car And a Mad Scientist who must Battle a Lumberjack in A MySQL Convention', 5, 4, 0.99, 68, 13.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (243, 'DOORS PRESIDENT', 'A Awe-Inspiring Display of a Squirrel And a Woman who must Overcome a Boy in The Gulf of Mexico', 2, 3, 4.99, 49, 22.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (244, 'DORADO NOTTING', 'A Action-Packed Tale of a Sumo Wrestler And a A Shark who must Meet a Frisbee in California', 12, 5, 4.99, 139, 26.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (245, 'DOUBLE WRATH', 'A Thoughtful Yarn of a Womanizer And a Dog who must Challenge a Madman in The Gulf of Mexico', 2, 4, 0.99, 177, 28.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (246, 'DOUBTFIRE LABYRINTH', 'A Intrepid Panorama of a Butler And a Composer who must Meet a Mad Cow in The Sahara Desert', 9, 5, 4.99, 154, 16.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (247, 'DOWNHILL ENOUGH', 'A Emotional Tale of a Pastry Chef And a Forensic Psychologist who must Succumb a Monkey in The Sahara Desert', 5, 3, 0.99, 47, 19.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (248, 'DOZEN LION', 'A Taut Drama of a Cat And a Girl who must Defeat a Frisbee in The Canadian Rockies', 6, 6, 4.99, 177, 20.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (249, 'DRACULA CRYSTAL', 'A Thrilling Reflection of a Feminist And a Cat who must Find a Frisbee in An Abandoned Fun House', 4, 7, 0.99, 176, 26.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (250, 'DRAGON SQUAD', 'A Taut Reflection of a Boy And a Waitress who must Outgun a Teacher in Ancient China', 1, 4, 0.99, 170, 26.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (251, 'DRAGONFLY STRANGERS', 'A Boring Documentary of a Pioneer And a Man who must Vanquish a Man in Nigeria', 13, 6, 4.99, 133, 19.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (252, 'DREAM PICKUP', 'A Epic Display of a Car And a Composer who must Overcome a Forensic Psychologist in The Gulf of Mexico', 1, 6, 2.99, 135, 18.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (253, 'DRIFTER COMMANDMENTS', 'A Epic Reflection of a Womanizer And a Squirrel who must Discover a Husband in A Jet Boat', 1, 5, 4.99, 61, 18.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (254, 'DRIVER ANNIE', 'A Lacklusture Character Study of a Butler And a Car who must Redeem a Boat in An Abandoned Fun House', 15, 4, 2.99, 159, 11.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (255, 'DRIVING POLISH', 'A Action-Packed Yarn of a Feminist And a Technical Writer who must Sink a Boat in An Abandoned Mine Shaft', 12, 6, 4.99, 175, 21.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (256, 'DROP WATERFRONT', 'A Fanciful Documentary of a Husband And a Explorer who must Reach a Madman in Ancient China', 15, 6, 4.99, 178, 20.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (257, 'DRUMLINE CYCLONE', 'A Insightful Panorama of a Monkey And a Sumo Wrestler who must Outrace a Mad Scientist in The Canadian Rockies', 16, 3, 0.99, 110, 14.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (258, 'DRUMS DYNAMITE', 'A Epic Display of a Crocodile And a Crocodile who must Confront a Dog in An Abandoned Amusement Park', 11, 6, 0.99, 96, 11.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (259, 'DUCK RACER', 'A Lacklusture Yarn of a Teacher And a Squirrel who must Overcome a Dog in A Shark Tank', 2, 4, 2.99, 116, 15.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (260, 'DUDE BLINDNESS', 'A Stunning Reflection of a Husband And a Lumberjack who must Face a Frisbee in An Abandoned Fun House', 15, 3, 4.99, 132, 9.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (261, 'DUFFEL APOCALYPSE', 'A Emotional Display of a Boat And a Explorer who must Challenge a Madman in A MySQL Convention', 6, 5, 0.99, 171, 13.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (262, 'DUMBO LUST', 'A Touching Display of a Feminist And a Dentist who must Conquer a Husband in The Gulf of Mexico', 8, 5, 0.99, 119, 17.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (263, 'DURHAM PANKY', 'A Brilliant Panorama of a Girl And a Boy who must Face a Mad Scientist in An Abandoned Mine Shaft', 15, 6, 4.99, 154, 14.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (264, 'DWARFS ALTER', 'A Emotional Yarn of a Girl And a Dog who must Challenge a Composer in Ancient Japan', 10, 6, 2.99, 101, 13.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (265, 'DYING MAKER', 'A Intrepid Tale of a Boat And a Monkey who must Kill a Cat in California', 5, 5, 4.99, 168, 28.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (266, 'DYNAMITE TARZAN', 'A Intrepid Documentary of a Forensic Psychologist And a Mad Scientist who must Face a Explorer in A U-Boat', 4, 4, 0.99, 141, 27.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (267, 'EAGLES PANKY', 'A Thoughtful Story of a Car And a Boy who must Find a A Shark in The Sahara Desert', 13, 4, 4.99, 140, 14.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (268, 'EARLY HOME', 'A Amazing Panorama of a Mad Scientist And a Husband who must Meet a Woman in The Outback', 2, 6, 4.99, 96, 27.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (269, 'EARRING INSTINCT', 'A Stunning Character Study of a Dentist And a Mad Cow who must Find a Teacher in Nigeria', 8, 3, 0.99, 98, 22.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (270, 'EARTH VISION', 'A Stunning Drama of a Butler And a Madman who must Outrace a Womanizer in Ancient India', 13, 7, 0.99, 85, 29.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (271, 'EASY GLADIATOR', 'A Fateful Story of a Monkey And a Girl who must Overcome a Pastry Chef in Ancient India', 1, 5, 4.99, 148, 12.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (272, 'EDGE KISSING', 'A Beautiful Yarn of a Composer And a Mad Cow who must Redeem a Mad Scientist in A Jet Boat', 7, 5, 4.99, 153, 9.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (273, 'EFFECT GLADIATOR', 'A Beautiful Display of a Pastry Chef And a Pastry Chef who must Outgun a Forensic Psychologist in A Manhattan Penthouse', 8, 6, 0.99, 107, 14.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (274, 'EGG IGBY', 'A Beautiful Documentary of a Boat And a Sumo Wrestler who must Succumb a Database Administrator in The First Manned Space Station', 6, 4, 2.99, 67, 20.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (275, 'EGYPT TENENBAUMS', 'A Intrepid Story of a Madman And a Secret Agent who must Outrace a Astronaut in An Abandoned Amusement Park', 11, 3, 0.99, 85, 11.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (276, 'ELEMENT FREDDY', 'A Awe-Inspiring Reflection of a Waitress And a Squirrel who must Kill a Mad Cow in A Jet Boat', 5, 6, 4.99, 115, 28.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (277, 'ELEPHANT TROJAN', 'A Beautiful Panorama of a Lumberjack And a Forensic Psychologist who must Overcome a Frisbee in A Baloon', 11, 4, 4.99, 126, 24.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (278, 'ELF MURDER', 'A Action-Packed Story of a Frisbee And a Woman who must Reach a Girl in An Abandoned Mine Shaft', 12, 4, 4.99, 155, 19.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (279, 'ELIZABETH SHANE', 'A Lacklusture Display of a Womanizer And a Dog who must Face a Sumo Wrestler in Ancient Japan', 15, 7, 4.99, 152, 11.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (280, 'EMPIRE MALKOVICH', 'A Amazing Story of a Feminist And a Cat who must Face a Car in An Abandoned Fun House', 3, 7, 0.99, 177, 26.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (281, 'ENCINO ELF', 'A Astounding Drama of a Feminist And a Teacher who must Confront a Husband in A Baloon', 10, 6, 0.99, 143, 9.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (282, 'ENCOUNTERS CURTAIN', 'A Insightful Epistle of a Pastry Chef And a Womanizer who must Build a Boat in New Orleans', 7, 5, 0.99, 92, 20.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (283, 'ENDING CROWDS', 'A Unbelieveable Display of a Dentist And a Madman who must Vanquish a Squirrel in Berlin', 13, 6, 0.99, 85, 10.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (284, 'ENEMY ODDS', 'A Fanciful Panorama of a Mad Scientist And a Woman who must Pursue a Astronaut in Ancient India', 12, 5, 4.99, 77, 23.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (285, 'ENGLISH BULWORTH', 'A Intrepid Epistle of a Pastry Chef And a Pastry Chef who must Pursue a Crocodile in Ancient China', 14, 3, 0.99, 51, 18.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (286, 'ENOUGH RAGING', 'A Astounding Character Study of a Boat And a Secret Agent who must Find a Mad Cow in The Sahara Desert', 16, 7, 2.99, 158, 16.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (287, 'ENTRAPMENT SATISFACTION', 'A Thoughtful Panorama of a Hunter And a Teacher who must Reach a Mad Cow in A U-Boat', 1, 5, 0.99, 176, 19.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (288, 'ESCAPE METROPOLIS', 'A Taut Yarn of a Astronaut And a Technical Writer who must Outgun a Boat in New Orleans', 16, 7, 2.99, 167, 20.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (289, 'EVE RESURRECTION', 'A Awe-Inspiring Yarn of a Pastry Chef And a Database Administrator who must Challenge a Teacher in A Baloon', 13, 5, 4.99, 66, 25.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (290, 'EVERYONE CRAFT', 'A Fateful Display of a Waitress And a Dentist who must Reach a Butler in Nigeria', 9, 4, 0.99, 163, 29.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (291, 'EVOLUTION ALTER', 'A Fanciful Character Study of a Feminist And a Madman who must Find a Explorer in A Baloon Factory', 15, 5, 0.99, 174, 10.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (292, 'EXCITEMENT EVE', 'A Brilliant Documentary of a Monkey And a Car who must Conquer a Crocodile in A Shark Tank', 1, 3, 0.99, 51, 20.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (293, 'EXORCIST STING', 'A Touching Drama of a Dog And a Sumo Wrestler who must Conquer a Mad Scientist in Berlin', 15, 6, 2.99, 167, 17.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (294, 'EXPECATIONS NATURAL', 'A Amazing Drama of a Butler And a Husband who must Reach a A Shark in A U-Boat', 16, 5, 4.99, 138, 26.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (295, 'EXPENDABLE STALLION', 'A Amazing Character Study of a Mad Cow And a Squirrel who must Discover a Hunter in A U-Boat', 6, 3, 0.99, 97, 14.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (296, 'EXPRESS LONELY', 'A Boring Drama of a Astronaut And a Boat who must Face a Boat in California', 14, 5, 2.99, 178, 23.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (297, 'EXTRAORDINARY CONQUERER', 'A Stunning Story of a Dog And a Feminist who must Face a Forensic Psychologist in Berlin', 4, 6, 2.99, 122, 29.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (298, 'EYES DRIVING', 'A Thrilling Story of a Cat And a Waitress who must Fight a Explorer in The Outback', 14, 4, 2.99, 172, 13.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (299, 'FACTORY DRAGON', 'A Action-Packed Saga of a Teacher And a Frisbee who must Escape a Lumberjack in The Sahara Desert', 16, 4, 0.99, 144, 9.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (300, 'FALCON VOLUME', 'A Fateful Saga of a Sumo Wrestler And a Hunter who must Redeem a A Shark in New Orleans', 2, 5, 4.99, 102, 21.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (301, 'FAMILY SWEET', 'A Epic Documentary of a Teacher And a Boy who must Escape a Woman in Berlin', 11, 4, 0.99, 155, 24.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (302, 'FANTASIA PARK', 'A Thoughtful Documentary of a Mad Scientist And a A Shark who must Outrace a Feminist in Australia', 10, 5, 2.99, 131, 29.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (303, 'FANTASY TROOPERS', 'A Touching Saga of a Teacher And a Monkey who must Overcome a Secret Agent in A MySQL Convention', 1, 6, 0.99, 58, 27.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (304, 'FARGO GANDHI', 'A Thrilling Reflection of a Pastry Chef And a Crocodile who must Reach a Teacher in The Outback', 3, 3, 2.99, 130, 28.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (305, 'FATAL HAUNTED', 'A Beautiful Drama of a Student And a Secret Agent who must Confront a Dentist in Ancient Japan', 13, 6, 2.99, 91, 24.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (306, 'FEATHERS METAL', 'A Thoughtful Yarn of a Monkey And a Teacher who must Find a Dog in Australia', 10, 3, 0.99, 104, 12.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (307, 'FELLOWSHIP AUTUMN', 'A Lacklusture Reflection of a Dentist And a Hunter who must Meet a Teacher in A Baloon', 16, 6, 4.99, 77, 9.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (308, 'FERRIS MOTHER', 'A Touching Display of a Frisbee And a Frisbee who must Kill a Girl in The Gulf of Mexico', 5, 3, 2.99, 142, 13.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (309, 'FEUD FROGMEN', 'A Brilliant Reflection of a Database Administrator And a Mad Cow who must Chase a Woman in The Canadian Rockies', 8, 6, 0.99, 98, 29.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (310, 'FEVER EMPIRE', 'A Insightful Panorama of a Cat And a Boat who must Defeat a Boat in The Gulf of Mexico', 10, 5, 4.99, 158, 20.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (311, 'FICTION CHRISTMAS', 'A Emotional Yarn of a A Shark And a Student who must Battle a Robot in An Abandoned Mine Shaft', 9, 4, 0.99, 72, 14.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (312, 'FIDDLER LOST', 'A Boring Tale of a Squirrel And a Dog who must Challenge a Madman in The Gulf of Mexico', 14, 4, 4.99, 75, 20.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (313, 'FIDELITY DEVIL', 'A Awe-Inspiring Drama of a Technical Writer And a Composer who must Reach a Pastry Chef in A U-Boat', 11, 5, 4.99, 118, 11.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (314, 'FIGHT JAWBREAKER', 'A Intrepid Panorama of a Womanizer And a Girl who must Escape a Girl in A Manhattan Penthouse', 2, 3, 0.99, 91, 13.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (315, 'FINDING ANACONDA', 'A Fateful Tale of a Database Administrator And a Girl who must Battle a Squirrel in New Orleans', 8, 4, 0.99, 156, 10.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (316, 'FIRE WOLVES', 'A Intrepid Documentary of a Frisbee And a Dog who must Outrace a Lumberjack in Nigeria', 10, 5, 4.99, 173, 18.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (317, 'FIREBALL PHILADELPHIA', 'A Amazing Yarn of a Dentist And a A Shark who must Vanquish a Madman in An Abandoned Mine Shaft', 5, 4, 0.99, 148, 25.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (318, 'FIREHOUSE VIETNAM', 'A Awe-Inspiring Character Study of a Boat And a Boy who must Kill a Pastry Chef in The Sahara Desert', 1, 7, 0.99, 103, 14.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (319, 'FISH OPUS', 'A Touching Display of a Feminist And a Girl who must Confront a Astronaut in Australia', 14, 4, 2.99, 125, 22.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (320, 'FLAMINGOS CONNECTICUT', 'A Fast-Paced Reflection of a Composer And a Composer who must Meet a Cat in The Sahara Desert', 13, 4, 4.99, 80, 28.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (321, 'FLASH WARS', 'A Astounding Saga of a Moose And a Pastry Chef who must Chase a Student in The Gulf of Mexico', 13, 3, 4.99, 123, 21.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (322, 'FLATLINERS KILLER', 'A Taut Display of a Secret Agent And a Waitress who must Sink a Robot in An Abandoned Mine Shaft', 15, 5, 2.99, 100, 29.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (323, 'FLIGHT LIES', 'A Stunning Character Study of a Crocodile And a Pioneer who must Pursue a Teacher in New Orleans', 15, 7, 4.99, 179, 22.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (324, 'FLINTSTONES HAPPINESS', 'A Fateful Story of a Husband And a Moose who must Vanquish a Boy in California', 5, 3, 4.99, 148, 11.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (325, 'FLOATS GARDEN', 'A Action-Packed Epistle of a Robot And a Car who must Chase a Boat in Ancient Japan', 2, 6, 2.99, 145, 29.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (326, 'FLYING HOOK', 'A Thrilling Display of a Mad Cow And a Dog who must Challenge a Frisbee in Nigeria', 2, 6, 2.99, 69, 18.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (327, 'FOOL MOCKINGBIRD', 'A Lacklusture Tale of a Crocodile And a Composer who must Defeat a Madman in A U-Boat', 1, 3, 4.99, 158, 24.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (328, 'FOREVER CANDIDATE', 'A Unbelieveable Panorama of a Technical Writer And a Man who must Pursue a Frisbee in A U-Boat', 3, 7, 2.99, 131, 28.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (329, 'FORREST SONS', 'A Thrilling Documentary of a Forensic Psychologist And a Butler who must Defeat a Explorer in A Jet Boat', 1, 4, 2.99, 63, 15.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (330, 'FORRESTER COMANCHEROS', 'A Fateful Tale of a Squirrel And a Forensic Psychologist who must Redeem a Man in Nigeria', 2, 7, 4.99, 112, 22.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (331, 'FORWARD TEMPLE', 'A Astounding Display of a Forensic Psychologist And a Mad Scientist who must Challenge a Girl in New Orleans', 10, 6, 2.99, 90, 25.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (332, 'FRANKENSTEIN STRANGER', 'A Insightful Character Study of a Feminist And a Pioneer who must Pursue a Pastry Chef in Nigeria', 5, 7, 0.99, 159, 16.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (333, 'FREAKY POCUS', 'A Fast-Paced Documentary of a Pastry Chef And a Crocodile who must Chase a Squirrel in The Gulf of Mexico', 12, 7, 2.99, 126, 16.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (334, 'FREDDY STORM', 'A Intrepid Saga of a Man And a Lumberjack who must Vanquish a Husband in The Outback', 11, 6, 4.99, 65, 21.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (335, 'FREEDOM CLEOPATRA', 'A Emotional Reflection of a Dentist And a Mad Cow who must Face a Squirrel in A Baloon', 5, 5, 0.99, 133, 23.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (336, 'FRENCH HOLIDAY', 'A Thrilling Epistle of a Dog And a Feminist who must Kill a Madman in Berlin', 6, 5, 4.99, 99, 22.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (337, 'FRIDA SLIPPER', 'A Fateful Story of a Lumberjack And a Car who must Escape a Boat in An Abandoned Mine Shaft', 9, 6, 2.99, 73, 11.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (338, 'FRISCO FORREST', 'A Beautiful Documentary of a Woman And a Pioneer who must Pursue a Mad Scientist in A Shark Tank', 14, 6, 4.99, 51, 23.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (339, 'FROGMEN BREAKING', 'A Unbelieveable Yarn of a Mad Scientist And a Cat who must Chase a Lumberjack in Australia', 16, 5, 0.99, 111, 17.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (340, 'FRONTIER CABIN', 'A Emotional Story of a Madman And a Waitress who must Battle a Teacher in An Abandoned Fun House', 13, 6, 4.99, 183, 14.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (341, 'FROST HEAD', 'A Amazing Reflection of a Lumberjack And a Cat who must Discover a Husband in A MySQL Convention', 4, 5, 0.99, 82, 13.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (342, 'FUGITIVE MAGUIRE', 'A Taut Epistle of a Feminist And a Sumo Wrestler who must Battle a Crocodile in Australia', 16, 7, 4.99, 83, 28.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (343, 'FULL FLATLINERS', 'A Beautiful Documentary of a Astronaut And a Moose who must Pursue a Monkey in A Shark Tank', 3, 6, 2.99, 94, 14.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (344, 'FURY MURDER', 'A Lacklusture Reflection of a Boat And a Forensic Psychologist who must Fight a Waitress in A Monastery', 3, 3, 0.99, 178, 28.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (345, 'GABLES METROPOLIS', 'A Fateful Display of a Cat And a Pioneer who must Challenge a Pastry Chef in A Baloon Factory', 8, 3, 0.99, 161, 17.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (346, 'GALAXY SWEETHEARTS', 'A Emotional Reflection of a Womanizer And a Pioneer who must Face a Squirrel in Berlin', 4, 4, 4.99, 128, 13.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (347, 'GAMES BOWFINGER', 'A Astounding Documentary of a Butler And a Explorer who must Challenge a Butler in A Monastery', 16, 7, 4.99, 119, 17.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (348, 'GANDHI KWAI', 'A Thoughtful Display of a Mad Scientist And a Secret Agent who must Chase a Boat in Berlin', 8, 7, 0.99, 86, 9.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (349, 'GANGS PRIDE', 'A Taut Character Study of a Woman And a A Shark who must Confront a Frisbee in Berlin', 2, 4, 2.99, 185, 27.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (350, 'GARDEN ISLAND', 'A Unbelieveable Character Study of a Womanizer And a Madman who must Reach a Man in The Outback', 14, 3, 4.99, 80, 21.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (351, 'GASLIGHT CRUSADE', 'A Amazing Epistle of a Boy And a Astronaut who must Redeem a Man in The Gulf of Mexico', 11, 4, 2.99, 106, 10.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (352, 'GATHERING CALENDAR', 'A Intrepid Tale of a Pioneer And a Moose who must Conquer a Frisbee in A MySQL Convention', 10, 4, 0.99, 176, 22.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (353, 'GENTLEMEN STAGE', 'A Awe-Inspiring Reflection of a Monkey And a Student who must Overcome a Dentist in The First Manned Space Station', 9, 6, 2.99, 125, 22.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (354, 'GHOST GROUNDHOG', 'A Brilliant Panorama of a Madman And a Composer who must Succumb a Car in Ancient India', 3, 6, 4.99, 85, 18.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (355, 'GHOSTBUSTERS ELF', 'A Thoughtful Epistle of a Dog And a Feminist who must Chase a Composer in Berlin', 2, 7, 0.99, 101, 18.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (356, 'GIANT TROOPERS', 'A Fateful Display of a Feminist And a Monkey who must Vanquish a Monkey in The Canadian Rockies', 3, 5, 2.99, 102, 10.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (357, 'GILBERT PELICAN', 'A Fateful Tale of a Man And a Feminist who must Conquer a Crocodile in A Manhattan Penthouse', 4, 7, 0.99, 114, 13.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (358, 'GILMORE BOILED', 'A Unbelieveable Documentary of a Boat And a Husband who must Succumb a Student in A U-Boat', 4, 5, 0.99, 163, 29.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (359, 'GLADIATOR WESTWARD', 'A Astounding Reflection of a Squirrel And a Sumo Wrestler who must Sink a Dentist in Ancient Japan', 8, 6, 4.99, 173, 20.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (360, 'GLASS DYING', 'A Astounding Drama of a Frisbee And a Astronaut who must Fight a Dog in Ancient Japan', 1, 4, 0.99, 103, 24.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (361, 'GLEAMING JAWBREAKER', 'A Amazing Display of a Composer And a Forensic Psychologist who must Discover a Car in The Canadian Rockies', 15, 5, 2.99, 89, 25.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (362, 'GLORY TRACY', 'A Amazing Saga of a Woman And a Womanizer who must Discover a Cat in The First Manned Space Station', 10, 7, 2.99, 115, 13.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (363, 'GO PURPLE', 'A Fast-Paced Display of a Car And a Database Administrator who must Battle a Woman in A Baloon', 12, 3, 0.99, 54, 12.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (364, 'GODFATHER DIARY', 'A Stunning Saga of a Lumberjack And a Squirrel who must Chase a Car in The Outback', 13, 3, 2.99, 73, 14.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (365, 'GOLD RIVER', 'A Taut Documentary of a Database Administrator And a Waitress who must Reach a Mad Scientist in A Baloon Factory', 5, 4, 4.99, 154, 21.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (366, 'GOLDFINGER SENSIBILITY', 'A Insightful Drama of a Mad Scientist And a Hunter who must Defeat a Pastry Chef in New Orleans', 7, 3, 0.99, 93, 29.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (367, 'GOLDMINE TYCOON', 'A Brilliant Epistle of a Composer And a Frisbee who must Conquer a Husband in The Outback', 14, 6, 0.99, 153, 20.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (368, 'GONE TROUBLE', 'A Insightful Character Study of a Mad Cow And a Forensic Psychologist who must Conquer a A Shark in A Manhattan Penthouse', 7, 7, 2.99, 84, 20.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (369, 'GOODFELLAS SALUTE', 'A Unbelieveable Tale of a Dog And a Explorer who must Sink a Mad Cow in A Baloon Factory', 14, 4, 4.99, 56, 22.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (370, 'GORGEOUS BINGO', 'A Action-Packed Display of a Sumo Wrestler And a Car who must Overcome a Waitress in A Baloon Factory', 3, 4, 2.99, 108, 26.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (371, 'GOSFORD DONNIE', 'A Epic Panorama of a Mad Scientist And a Monkey who must Redeem a Secret Agent in Berlin', 1, 5, 4.99, 129, 17.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (372, 'GRACELAND DYNAMITE', 'A Taut Display of a Cat And a Girl who must Overcome a Database Administrator in New Orleans', 15, 5, 4.99, 140, 26.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (373, 'GRADUATE LORD', 'A Lacklusture Epistle of a Girl And a A Shark who must Meet a Mad Scientist in Ancient China', 3, 7, 2.99, 156, 14.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (374, 'GRAFFITI LOVE', 'A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Build a Composer in Berlin', 14, 3, 0.99, 117, 29.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (375, 'GRAIL FRANKENSTEIN', 'A Unbelieveable Saga of a Teacher And a Monkey who must Fight a Girl in An Abandoned Mine Shaft', 1, 4, 2.99, 85, 17.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (376, 'GRAPES FURY', 'A Boring Yarn of a Mad Cow And a Sumo Wrestler who must Meet a Robot in Australia', 9, 4, 0.99, 155, 20.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (377, 'GREASE YOUTH', 'A Emotional Panorama of a Secret Agent And a Waitress who must Escape a Composer in Soviet Georgia', 8, 7, 0.99, 135, 20.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (378, 'GREATEST NORTH', 'A Astounding Character Study of a Secret Agent And a Robot who must Build a A Shark in Berlin', 12, 5, 2.99, 93, 24.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (379, 'GREEDY ROOTS', 'A Amazing Reflection of a A Shark And a Butler who must Chase a Hunter in The Canadian Rockies', 7, 7, 0.99, 166, 14.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (380, 'GREEK EVERYONE', 'A Stunning Display of a Butler And a Teacher who must Confront a A Shark in The First Manned Space Station', 9, 7, 2.99, 176, 11.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (381, 'GRINCH MASSAGE', 'A Intrepid Display of a Madman And a Feminist who must Pursue a Pioneer in The First Manned Space Station', 10, 7, 4.99, 150, 25.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (382, 'GRIT CLOCKWORK', 'A Thoughtful Display of a Dentist And a Squirrel who must Confront a Lumberjack in A Shark Tank', 10, 3, 0.99, 137, 21.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (383, 'GROOVE FICTION', 'A Unbelieveable Reflection of a Moose And a A Shark who must Defeat a Lumberjack in An Abandoned Mine Shaft', 15, 6, 0.99, 111, 13.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (384, 'GROSSE WONDERFUL', 'A Epic Drama of a Cat And a Explorer who must Redeem a Moose in Australia', 12, 5, 4.99, 49, 19.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (385, 'GROUNDHOG UNCUT', 'A Brilliant Panorama of a Astronaut And a Technical Writer who must Discover a Butler in A Manhattan Penthouse', 5, 6, 4.99, 139, 26.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (386, 'GUMP DATE', 'A Intrepid Yarn of a Explorer And a Student who must Kill a Husband in An Abandoned Mine Shaft', 16, 3, 4.99, 53, 12.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (387, 'GUN BONNIE', 'A Boring Display of a Sumo Wrestler And a Husband who must Build a Waitress in The Gulf of Mexico', 10, 7, 0.99, 100, 27.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (388, 'GUNFIGHT MOON', 'A Epic Reflection of a Pastry Chef And a Explorer who must Reach a Dentist in The Sahara Desert', 5, 5, 0.99, 70, 16.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (389, 'GUNFIGHTER MUSSOLINI', 'A Touching Saga of a Robot And a Boy who must Kill a Man in Ancient Japan', 15, 3, 2.99, 127, 9.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (390, 'GUYS FALCON', 'A Boring Story of a Woman And a Feminist who must Redeem a Squirrel in A U-Boat', 14, 4, 4.99, 84, 20.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (391, 'HALF OUTFIELD', 'A Epic Epistle of a Database Administrator And a Crocodile who must Face a Madman in A Jet Boat', 8, 6, 2.99, 146, 25.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (392, 'HALL CASSIDY', 'A Beautiful Panorama of a Pastry Chef And a A Shark who must Battle a Pioneer in Soviet Georgia', 3, 5, 4.99, 51, 13.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (393, 'HALLOWEEN NUTS', 'A Amazing Panorama of a Forensic Psychologist And a Technical Writer who must Fight a Dentist in A U-Boat', 6, 6, 2.99, 47, 19.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (394, 'HAMLET WISDOM', 'A Touching Reflection of a Man And a Man who must Sink a Robot in The Outback', 14, 7, 2.99, 146, 21.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (395, 'HANDICAP BOONDOCK', 'A Beautiful Display of a Pioneer And a Squirrel who must Vanquish a Sumo Wrestler in Soviet Georgia', 1, 4, 0.99, 108, 28.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (396, 'HANGING DEEP', 'A Action-Packed Yarn of a Boat And a Crocodile who must Build a Monkey in Berlin', 7, 5, 4.99, 62, 18.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (397, 'HANKY OCTOBER', 'A Boring Epistle of a Database Administrator And a Explorer who must Pursue a Madman in Soviet Georgia', 14, 5, 2.99, 107, 26.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (398, 'HANOVER GALAXY', 'A Stunning Reflection of a Girl And a Secret Agent who must Succumb a Boy in A MySQL Convention', 12, 5, 4.99, 47, 21.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (399, 'HAPPINESS UNITED', 'A Action-Packed Panorama of a Husband And a Feminist who must Meet a Forensic Psychologist in Ancient Japan', 9, 6, 2.99, 100, 23.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (400, 'HARDLY ROBBERS', 'A Emotional Character Study of a Hunter And a Car who must Kill a Woman in Berlin', 6, 7, 2.99, 72, 15.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (401, 'HAROLD FRENCH', 'A Stunning Saga of a Sumo Wrestler And a Student who must Outrace a Moose in The Sahara Desert', 7, 6, 0.99, 168, 10.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (402, 'HARPER DYING', 'A Awe-Inspiring Reflection of a Woman And a Cat who must Confront a Feminist in The Sahara Desert', 2, 3, 0.99, 52, 15.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (403, 'HARRY IDAHO', 'A Taut Yarn of a Technical Writer And a Feminist who must Outrace a Dog in California', 7, 5, 4.99, 121, 18.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (404, 'HATE HANDICAP', 'A Intrepid Reflection of a Mad Scientist And a Pioneer who must Overcome a Hunter in The First Manned Space Station', 5, 4, 0.99, 107, 26.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (405, 'HAUNTED ANTITRUST', 'A Amazing Saga of a Man And a Dentist who must Reach a Technical Writer in Ancient India', 16, 6, 4.99, 76, 13.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (406, 'HAUNTING PIANIST', 'A Fast-Paced Story of a Database Administrator And a Composer who must Defeat a Squirrel in An Abandoned Amusement Park', 10, 5, 0.99, 181, 22.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (407, 'HAWK CHILL', 'A Action-Packed Drama of a Mad Scientist And a Composer who must Outgun a Car in Australia', 6, 5, 0.99, 47, 12.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (408, 'HEAD STRANGER', 'A Thoughtful Saga of a Hunter And a Crocodile who must Confront a Dog in The Gulf of Mexico', 10, 4, 4.99, 69, 28.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (409, 'HEARTBREAKERS BRIGHT', 'A Awe-Inspiring Documentary of a A Shark And a Dentist who must Outrace a Pastry Chef in The Canadian Rockies', 3, 3, 4.99, 59, 9.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (410, 'HEAVEN FREEDOM', 'A Intrepid Story of a Butler And a Car who must Vanquish a Man in New Orleans', 5, 7, 2.99, 48, 19.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (411, 'HEAVENLY GUN', 'A Beautiful Yarn of a Forensic Psychologist And a Frisbee who must Battle a Moose in A Jet Boat', 12, 5, 4.99, 49, 13.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (412, 'HEAVYWEIGHTS BEAST', 'A Unbelieveable Story of a Composer And a Dog who must Overcome a Womanizer in An Abandoned Amusement Park', 6, 6, 4.99, 102, 25.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (413, 'HEDWIG ALTER', 'A Action-Packed Yarn of a Womanizer And a Lumberjack who must Chase a Sumo Wrestler in A Monastery', 5, 7, 2.99, 169, 16.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (414, 'HELLFIGHTERS SIERRA', 'A Taut Reflection of a A Shark And a Dentist who must Battle a Boat in Soviet Georgia', 9, 3, 2.99, 75, 23.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (415, 'HIGH ENCINO', 'A Fateful Saga of a Waitress And a Hunter who must Outrace a Sumo Wrestler in Australia', 11, 3, 2.99, 84, 23.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (416, 'HIGHBALL POTTER', 'A Action-Packed Saga of a Husband And a Dog who must Redeem a Database Administrator in The Sahara Desert', 9, 6, 0.99, 110, 10.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (417, 'HILLS NEIGHBORS', 'A Epic Display of a Hunter And a Feminist who must Sink a Car in A U-Boat', 1, 5, 0.99, 93, 29.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (418, 'HOBBIT ALIEN', 'A Emotional Drama of a Husband And a Girl who must Outgun a Composer in The First Manned Space Station', 7, 5, 0.99, 157, 27.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (419, 'HOCUS FRIDA', 'A Awe-Inspiring Tale of a Girl And a Madman who must Outgun a Student in A Shark Tank', 8, 4, 2.99, 141, 19.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (420, 'HOLES BRANNIGAN', 'A Fast-Paced Reflection of a Technical Writer And a Student who must Fight a Boy in The Canadian Rockies', 15, 7, 4.99, 128, 27.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (421, 'HOLIDAY GAMES', 'A Insightful Reflection of a Waitress And a Madman who must Pursue a Boy in Ancient Japan', 9, 7, 4.99, 78, 10.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (422, 'HOLLOW JEOPARDY', 'A Beautiful Character Study of a Robot And a Astronaut who must Overcome a Boat in A Monastery', 14, 7, 4.99, 136, 25.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (423, 'HOLLYWOOD ANONYMOUS', 'A Fast-Paced Epistle of a Boy And a Explorer who must Escape a Dog in A U-Boat', 3, 7, 0.99, 69, 29.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (424, 'HOLOCAUST HIGHBALL', 'A Awe-Inspiring Yarn of a Composer And a Man who must Find a Robot in Soviet Georgia', 3, 6, 0.99, 149, 12.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (425, 'HOLY TADPOLE', 'A Action-Packed Display of a Feminist And a Pioneer who must Pursue a Dog in A Baloon Factory', 4, 6, 0.99, 88, 20.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (426, 'HOME PITY', 'A Touching Panorama of a Man And a Secret Agent who must Challenge a Teacher in A MySQL Convention', 12, 7, 4.99, 185, 15.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (427, 'HOMEWARD CIDER', 'A Taut Reflection of a Astronaut And a Squirrel who must Fight a Squirrel in A Manhattan Penthouse', 6, 5, 0.99, 103, 19.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (428, 'HOMICIDE PEACH', 'A Astounding Documentary of a Hunter And a Boy who must Confront a Boy in A MySQL Convention', 8, 6, 2.99, 141, 21.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (429, 'HONEY TIES', 'A Taut Story of a Waitress And a Crocodile who must Outrace a Lumberjack in A Shark Tank', 15, 3, 0.99, 84, 29.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (430, 'HOOK CHARIOTS', 'A Insightful Story of a Boy And a Dog who must Redeem a Boy in Australia', 2, 7, 0.99, 49, 23.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (431, 'HOOSIERS BIRDCAGE', 'A Astounding Display of a Explorer And a Boat who must Vanquish a Car in The First Manned Space Station', 9, 3, 2.99, 176, 12.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (432, 'HOPE TOOTSIE', 'A Amazing Documentary of a Student And a Sumo Wrestler who must Outgun a A Shark in A Shark Tank', 4, 4, 2.99, 139, 22.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (433, 'HORN WORKING', 'A Stunning Display of a Mad Scientist And a Technical Writer who must Succumb a Monkey in A Shark Tank', 2, 4, 2.99, 95, 23.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (434, 'HORROR REIGN', 'A Touching Documentary of a A Shark And a Car who must Build a Husband in Nigeria', 16, 3, 0.99, 139, 25.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (435, 'HOTEL HAPPINESS', 'A Thrilling Yarn of a Pastry Chef And a A Shark who must Challenge a Mad Scientist in The Outback', 9, 6, 4.99, 181, 28.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (436, 'HOURS RAGE', 'A Fateful Story of a Explorer And a Feminist who must Meet a Technical Writer in Soviet Georgia', 13, 4, 0.99, 122, 14.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (437, 'HOUSE DYNAMITE', 'A Taut Story of a Pioneer And a Squirrel who must Battle a Student in Soviet Georgia', 8, 7, 2.99, 109, 13.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (438, 'HUMAN GRAFFITI', 'A Beautiful Reflection of a Womanizer And a Sumo Wrestler who must Chase a Database Administrator in The Gulf of Mexico', 10, 3, 2.99, 68, 22.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (439, 'HUNCHBACK IMPOSSIBLE', 'A Touching Yarn of a Frisbee And a Dentist who must Fight a Composer in Ancient Japan', 7, 4, 4.99, 151, 28.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (440, 'HUNGER ROOF', 'A Unbelieveable Yarn of a Student And a Database Administrator who must Outgun a Husband in An Abandoned Mine Shaft', 9, 6, 0.99, 105, 21.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (441, 'HUNTER ALTER', 'A Emotional Drama of a Mad Cow And a Boat who must Redeem a Secret Agent in A Shark Tank', 6, 5, 2.99, 125, 21.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (442, 'HUNTING MUSKETEERS', 'A Thrilling Reflection of a Pioneer And a Dentist who must Outrace a Womanizer in An Abandoned Mine Shaft', 8, 6, 2.99, 65, 24.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (443, 'HURRICANE AFFAIR', 'A Lacklusture Epistle of a Database Administrator And a Woman who must Meet a Hunter in An Abandoned Mine Shaft', 5, 6, 2.99, 49, 11.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (444, 'HUSTLER PARTY', 'A Emotional Reflection of a Sumo Wrestler And a Monkey who must Conquer a Robot in The Sahara Desert', 5, 3, 4.99, 83, 22.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (445, 'HYDE DOCTOR', 'A Fanciful Documentary of a Boy And a Woman who must Redeem a Womanizer in A Jet Boat', 4, 5, 2.99, 100, 11.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (446, 'HYSTERICAL GRAIL', 'A Amazing Saga of a Madman And a Dentist who must Build a Car in A Manhattan Penthouse', 15, 5, 4.99, 150, 19.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (447, 'ICE CROSSING', 'A Fast-Paced Tale of a Butler And a Moose who must Overcome a Pioneer in A Manhattan Penthouse', 10, 5, 2.99, 131, 28.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (448, 'IDAHO LOVE', 'A Fast-Paced Drama of a Student And a Crocodile who must Meet a Database Administrator in The Outback', 13, 3, 2.99, 172, 25.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (449, 'IDENTITY LOVER', 'A Boring Tale of a Composer And a Mad Cow who must Defeat a Car in The Outback', 14, 4, 2.99, 119, 12.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (450, 'IDOLS SNATCHERS', 'A Insightful Drama of a Car And a Composer who must Fight a Man in A Monastery', 3, 5, 2.99, 84, 29.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (451, 'IGBY MAKER', 'A Epic Documentary of a Hunter And a Dog who must Outgun a Dog in A Baloon Factory', 16, 7, 4.99, 160, 12.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (452, 'ILLUSION AMELIE', 'A Emotional Epistle of a Boat And a Mad Scientist who must Outrace a Robot in An Abandoned Mine Shaft', 9, 4, 0.99, 122, 15.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (453, 'IMAGE PRINCESS', 'A Lacklusture Panorama of a Secret Agent And a Crocodile who must Discover a Madman in The Canadian Rockies', 15, 3, 2.99, 178, 17.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (454, 'IMPACT ALADDIN', 'A Epic Character Study of a Frisbee And a Moose who must Outgun a Technical Writer in A Shark Tank', 12, 6, 0.99, 180, 20.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (455, 'IMPOSSIBLE PREJUDICE', 'A Awe-Inspiring Yarn of a Monkey And a Hunter who must Chase a Teacher in Ancient China', 9, 7, 4.99, 103, 11.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (456, 'INCH JET', 'A Fateful Saga of a Womanizer And a Student who must Defeat a Butler in A Monastery', 2, 6, 4.99, 167, 18.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (457, 'INDEPENDENCE HOTEL', 'A Thrilling Tale of a Technical Writer And a Boy who must Face a Pioneer in A Monastery', 6, 5, 0.99, 157, 21.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (458, 'INDIAN LOVE', 'A Insightful Saga of a Mad Scientist And a Mad Scientist who must Kill a Astronaut in An Abandoned Fun House', 8, 4, 0.99, 135, 26.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (459, 'INFORMER DOUBLE', 'A Action-Packed Display of a Woman And a Dentist who must Redeem a Forensic Psychologist in The Canadian Rockies', 9, 4, 4.99, 74, 23.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (460, 'INNOCENT USUAL', 'A Beautiful Drama of a Pioneer And a Crocodile who must Challenge a Student in The Outback', 9, 3, 4.99, 178, 26.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (461, 'INSECTS STONE', 'A Epic Display of a Butler And a Dog who must Vanquish a Crocodile in A Manhattan Penthouse', 2, 3, 0.99, 123, 14.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (462, 'INSIDER ARIZONA', 'A Astounding Saga of a Mad Scientist And a Hunter who must Pursue a Robot in A Baloon Factory', 12, 5, 2.99, 78, 17.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (463, 'INSTINCT AIRPORT', 'A Touching Documentary of a Mad Cow And a Explorer who must Confront a Butler in A Manhattan Penthouse', 15, 4, 2.99, 116, 21.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (464, 'INTENTIONS EMPIRE', 'A Astounding Epistle of a Cat And a Cat who must Conquer a Mad Cow in A U-Boat', 2, 3, 2.99, 107, 13.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (465, 'INTERVIEW LIAISONS', 'A Action-Packed Reflection of a Student And a Butler who must Discover a Database Administrator in A Manhattan Penthouse', 13, 4, 4.99, 59, 17.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (466, 'INTOLERABLE INTENTIONS', 'A Awe-Inspiring Story of a Monkey And a Pastry Chef who must Succumb a Womanizer in A MySQL Convention', 6, 6, 4.99, 63, 20.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (467, 'INTRIGUE WORST', 'A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat', 9, 6, 0.99, 181, 10.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (468, 'INVASION CYCLONE', 'A Lacklusture Character Study of a Mad Scientist And a Womanizer who must Outrace a Explorer in A Monastery', 3, 5, 2.99, 97, 12.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (469, 'IRON MOON', 'A Fast-Paced Documentary of a Mad Cow And a Boy who must Pursue a Dentist in A Baloon', 4, 7, 4.99, 46, 27.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (470, 'ISHTAR ROCKETEER', 'A Astounding Saga of a Dog And a Squirrel who must Conquer a Dog in An Abandoned Fun House', 2, 4, 4.99, 79, 24.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (471, 'ISLAND EXORCIST', 'A Fanciful Panorama of a Technical Writer And a Boy who must Find a Dentist in An Abandoned Fun House', 4, 7, 2.99, 84, 23.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (472, 'ITALIAN AFRICAN', 'A Astounding Character Study of a Monkey And a Moose who must Outgun a Cat in A U-Boat', 16, 3, 4.99, 174, 24.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (473, 'JACKET FRISCO', 'A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon', 7, 5, 2.99, 181, 16.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (474, 'JADE BUNCH', 'A Insightful Panorama of a Squirrel And a Mad Cow who must Confront a Student in The First Manned Space Station', 15, 6, 2.99, 174, 21.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (475, 'JAPANESE RUN', 'A Awe-Inspiring Epistle of a Feminist And a Girl who must Sink a Girl in The Outback', 11, 6, 0.99, 135, 29.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (476, 'JASON TRAP', 'A Thoughtful Tale of a Woman And a A Shark who must Conquer a Dog in A Monastery', 8, 5, 2.99, 130, 9.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (477, 'JAWBREAKER BROOKLYN', 'A Stunning Reflection of a Boat And a Pastry Chef who must Succumb a A Shark in A Jet Boat', 12, 5, 0.99, 118, 15.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (478, 'JAWS HARRY', 'A Thrilling Display of a Database Administrator And a Monkey who must Overcome a Dog in An Abandoned Fun House', 5, 4, 2.99, 112, 10.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (479, 'JEDI BENEATH', 'A Astounding Reflection of a Explorer And a Dentist who must Pursue a Student in Nigeria', 8, 7, 0.99, 128, 12.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (480, 'JEEPERS WEDDING', 'A Astounding Display of a Composer And a Dog who must Kill a Pastry Chef in Soviet Georgia', 4, 3, 2.99, 84, 29.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (481, 'JEKYLL FROGMEN', 'A Fanciful Epistle of a Student And a Astronaut who must Kill a Waitress in A Shark Tank', 13, 4, 2.99, 58, 22.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (482, 'JEOPARDY ENCINO', 'A Boring Panorama of a Man And a Mad Cow who must Face a Explorer in Ancient India', 4, 3, 0.99, 102, 12.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (483, 'JERICHO MULAN', 'A Amazing Yarn of a Hunter And a Butler who must Defeat a Boy in A Jet Boat', 10, 3, 2.99, 171, 29.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (484, 'JERK PAYCHECK', 'A Touching Character Study of a Pastry Chef And a Database Administrator who must Reach a A Shark in Ancient Japan', 4, 3, 2.99, 172, 13.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (485, 'JERSEY SASSY', 'A Lacklusture Documentary of a Madman And a Mad Cow who must Find a Feminist in Ancient Japan', 3, 6, 4.99, 60, 16.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (486, 'JET NEIGHBORS', 'A Amazing Display of a Lumberjack And a Teacher who must Outrace a Woman in A U-Boat', 9, 7, 4.99, 59, 14.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (487, 'JINGLE SAGEBRUSH', 'A Epic Character Study of a Feminist And a Student who must Meet a Woman in A Baloon', 4, 6, 4.99, 124, 29.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (488, 'JOON NORTHWEST', 'A Thrilling Panorama of a Technical Writer And a Car who must Discover a Forensic Psychologist in A Shark Tank', 15, 3, 0.99, 105, 23.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (489, 'JUGGLER HARDLY', 'A Epic Story of a Mad Cow And a Astronaut who must Challenge a Car in California', 2, 4, 0.99, 54, 14.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (490, 'JUMANJI BLADE', 'A Intrepid Yarn of a Husband And a Womanizer who must Pursue a Mad Scientist in New Orleans', 13, 4, 2.99, 121, 13.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (491, 'JUMPING WRATH', 'A Touching Epistle of a Monkey And a Feminist who must Discover a Boat in Berlin', 3, 4, 0.99, 74, 18.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (492, 'JUNGLE CLOSER', 'A Boring Character Study of a Boy And a Woman who must Battle a Astronaut in Australia', 13, 6, 0.99, 134, 11.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (493, 'KANE EXORCIST', 'A Epic Documentary of a Composer And a Robot who must Overcome a Car in Berlin', 9, 5, 0.99, 92, 18.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (494, 'KARATE MOON', 'A Astounding Yarn of a Womanizer And a Dog who must Reach a Waitress in A MySQL Convention', 11, 4, 0.99, 120, 21.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (495, 'KENTUCKIAN GIANT', 'A Stunning Yarn of a Woman And a Frisbee who must Escape a Waitress in A U-Boat', 11, 5, 2.99, 169, 10.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (496, 'KICK SAVANNAH', 'A Emotional Drama of a Monkey And a Robot who must Defeat a Monkey in New Orleans', 16, 3, 0.99, 179, 10.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (497, 'KILL BROTHERHOOD', 'A Touching Display of a Hunter And a Secret Agent who must Redeem a Husband in The Outback', 6, 4, 0.99, 54, 15.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (498, 'KILLER INNOCENT', 'A Fanciful Character Study of a Student And a Explorer who must Succumb a Composer in An Abandoned Mine Shaft', 8, 7, 2.99, 161, 11.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (499, 'KING EVOLUTION', 'A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon', 8, 3, 4.99, 184, 24.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (500, 'KISS GLORY', 'A Lacklusture Reflection of a Girl And a Husband who must Find a Robot in The Canadian Rockies', 9, 5, 4.99, 163, 11.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (501, 'KISSING DOLLS', 'A Insightful Reflection of a Pioneer And a Teacher who must Build a Composer in The First Manned Space Station', 1, 3, 4.99, 141, 9.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (502, 'KNOCK WARLOCK', 'A Unbelieveable Story of a Teacher And a Boat who must Confront a Moose in A Baloon', 5, 4, 2.99, 71, 21.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (503, 'KRAMER CHOCOLATE', 'A Amazing Yarn of a Robot And a Pastry Chef who must Redeem a Mad Scientist in The Outback', 15, 3, 2.99, 171, 24.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (504, 'KWAI HOMEWARD', 'A Amazing Drama of a Car And a Squirrel who must Pursue a Car in Soviet Georgia', 7, 5, 0.99, 46, 25.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (505, 'LABYRINTH LEAGUE', 'A Awe-Inspiring Saga of a Composer And a Frisbee who must Succumb a Pioneer in The Sahara Desert', 3, 6, 2.99, 46, 24.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (506, 'LADY STAGE', 'A Beautiful Character Study of a Woman And a Man who must Pursue a Explorer in A U-Boat', 11, 4, 4.99, 67, 14.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (507, 'LADYBUGS ARMAGEDDON', 'A Fateful Reflection of a Dog And a Mad Scientist who must Meet a Mad Scientist in New Orleans', 10, 4, 0.99, 113, 13.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (508, 'LAMBS CINCINATTI', 'A Insightful Story of a Man And a Feminist who must Fight a Composer in Australia', 10, 6, 4.99, 144, 18.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (509, 'LANGUAGE COWBOY', 'A Epic Yarn of a Cat And a Madman who must Vanquish a Dentist in An Abandoned Amusement Park', 3, 5, 0.99, 78, 26.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (510, 'LAWLESS VISION', 'A Insightful Yarn of a Boy And a Sumo Wrestler who must Outgun a Car in The Outback', 2, 6, 4.99, 181, 29.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (511, 'LAWRENCE LOVE', 'A Fanciful Yarn of a Database Administrator And a Mad Cow who must Pursue a Womanizer in Berlin', 1, 7, 0.99, 175, 23.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (512, 'LEAGUE HELLFIGHTERS', 'A Thoughtful Saga of a A Shark And a Monkey who must Outgun a Student in Ancient China', 4, 5, 4.99, 110, 25.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (513, 'LEATHERNECKS DWARFS', 'A Fateful Reflection of a Dog And a Mad Cow who must Outrace a Teacher in An Abandoned Mine Shaft', 16, 6, 2.99, 153, 21.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (514, 'LEBOWSKI SOLDIERS', 'A Beautiful Epistle of a Secret Agent And a Pioneer who must Chase a Astronaut in Ancient China', 7, 6, 2.99, 69, 17.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (515, 'LEGALLY SECRETARY', 'A Astounding Tale of a A Shark And a Moose who must Meet a Womanizer in The Sahara Desert', 3, 7, 4.99, 113, 14.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (516, 'LEGEND JEDI', 'A Awe-Inspiring Epistle of a Pioneer And a Student who must Outgun a Crocodile in The Outback', 12, 7, 0.99, 59, 18.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (517, 'LESSON CLEOPATRA', 'A Emotional Display of a Man And a Explorer who must Build a Boy in A Manhattan Penthouse', 15, 3, 0.99, 167, 28.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (518, 'LIAISONS SWEET', 'A Boring Drama of a A Shark And a Explorer who must Redeem a Waitress in The Canadian Rockies', 16, 5, 4.99, 140, 15.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (519, 'LIBERTY MAGNIFICENT', 'A Boring Drama of a Student And a Cat who must Sink a Technical Writer in A Baloon', 15, 3, 2.99, 138, 27.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (520, 'LICENSE WEEKEND', 'A Insightful Story of a Man And a Husband who must Overcome a Madman in A Monastery', 14, 7, 2.99, 91, 28.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (521, 'LIES TREATMENT', 'A Fast-Paced Character Study of a Dentist And a Moose who must Defeat a Composer in The First Manned Space Station', 7, 7, 4.99, 147, 28.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (522, 'LIFE TWISTED', 'A Thrilling Reflection of a Teacher And a Composer who must Find a Man in The First Manned Space Station', 5, 4, 2.99, 137, 9.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (523, 'LIGHTS DEER', 'A Unbelieveable Epistle of a Dog And a Woman who must Confront a Moose in The Gulf of Mexico', 4, 7, 0.99, 174, 21.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (524, 'LION UNCUT', 'A Intrepid Display of a Pastry Chef And a Cat who must Kill a A Shark in Ancient China', 5, 6, 0.99, 50, 13.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (525, 'LOATHING LEGALLY', 'A Boring Epistle of a Pioneer And a Mad Scientist who must Escape a Frisbee in The Gulf of Mexico', 4, 4, 0.99, 140, 29.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (526, 'LOCK REAR', 'A Thoughtful Character Study of a Squirrel And a Technical Writer who must Outrace a Student in Ancient Japan', 16, 7, 2.99, 120, 10.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (527, 'LOLA AGENT', 'A Astounding Tale of a Mad Scientist And a Husband who must Redeem a Database Administrator in Ancient Japan', 11, 4, 4.99, 85, 24.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (528, 'LOLITA WORLD', 'A Thrilling Drama of a Girl And a Robot who must Redeem a Waitress in An Abandoned Mine Shaft', 8, 4, 2.99, 155, 25.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (529, 'LONELY ELEPHANT', 'A Intrepid Story of a Student And a Dog who must Challenge a Explorer in Soviet Georgia', 5, 3, 2.99, 67, 12.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (530, 'LORD ARIZONA', 'A Action-Packed Display of a Frisbee And a Pastry Chef who must Pursue a Crocodile in A Jet Boat', 1, 5, 2.99, 108, 27.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (531, 'LOSE INCH', 'A Stunning Reflection of a Student And a Technical Writer who must Battle a Butler in The First Manned Space Station', 9, 3, 0.99, 137, 18.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (532, 'LOSER HUSTLER', 'A Stunning Drama of a Robot And a Feminist who must Outgun a Butler in Nigeria', 15, 5, 4.99, 80, 28.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (533, 'LOST BIRD', 'A Emotional Character Study of a Robot And a A Shark who must Defeat a Technical Writer in A Manhattan Penthouse', 9, 4, 2.99, 98, 21.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (534, 'LOUISIANA HARRY', 'A Lacklusture Drama of a Girl And a Technical Writer who must Redeem a Monkey in A Shark Tank', 8, 5, 0.99, 70, 18.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (535, 'LOVE SUICIDES', 'A Brilliant Panorama of a Hunter And a Explorer who must Pursue a Dentist in An Abandoned Fun House', 11, 6, 0.99, 181, 21.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (536, 'LOVELY JINGLE', 'A Fanciful Yarn of a Crocodile And a Forensic Psychologist who must Discover a Crocodile in The Outback', 4, 3, 2.99, 65, 18.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (537, 'LOVER TRUMAN', 'A Emotional Yarn of a Robot And a Boy who must Outgun a Technical Writer in A U-Boat', 4, 3, 2.99, 75, 29.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (538, 'LOVERBOY ATTACKS', 'A Boring Story of a Car And a Butler who must Build a Girl in Soviet Georgia', 13, 7, 0.99, 162, 19.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (539, 'LUCK OPUS', 'A Boring Display of a Moose And a Squirrel who must Outrace a Teacher in A Shark Tank', 7, 7, 2.99, 152, 21.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (540, 'LUCKY FLYING', 'A Lacklusture Character Study of a A Shark And a Man who must Find a Forensic Psychologist in A U-Boat', 12, 7, 2.99, 97, 10.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (541, 'LUKE MUMMY', 'A Taut Character Study of a Boy And a Robot who must Redeem a Mad Scientist in Ancient India', 2, 5, 2.99, 74, 21.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (542, 'LUST LOCK', 'A Fanciful Panorama of a Hunter And a Dentist who must Meet a Secret Agent in The Sahara Desert', 1, 3, 2.99, 52, 28.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (543, 'MADIGAN DORADO', 'A Astounding Character Study of a A Shark And a A Shark who must Discover a Crocodile in The Outback', 16, 5, 4.99, 116, 20.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (544, 'MADISON TRAP', 'A Awe-Inspiring Reflection of a Monkey And a Dentist who must Overcome a Pioneer in A U-Boat', 6, 4, 2.99, 147, 11.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (545, 'MADNESS ATTACKS', 'A Fanciful Tale of a Squirrel And a Boat who must Defeat a Crocodile in The Gulf of Mexico', 9, 4, 0.99, 178, 14.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (546, 'MADRE GABLES', 'A Intrepid Panorama of a Sumo Wrestler And a Forensic Psychologist who must Discover a Moose in The First Manned Space Station', 10, 7, 2.99, 98, 27.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (547, 'MAGIC MALLRATS', 'A Touching Documentary of a Pastry Chef And a Pastry Chef who must Build a Mad Scientist in California', 3, 3, 0.99, 117, 19.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (548, 'MAGNIFICENT CHITTY', 'A Insightful Story of a Teacher And a Hunter who must Face a Mad Cow in California', 4, 3, 2.99, 53, 27.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (549, 'MAGNOLIA FORRESTER', 'A Thoughtful Documentary of a Composer And a Explorer who must Conquer a Dentist in New Orleans', 1, 4, 0.99, 171, 28.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (550, 'MAGUIRE APACHE', 'A Fast-Paced Reflection of a Waitress And a Hunter who must Defeat a Forensic Psychologist in A Baloon', 8, 6, 2.99, 74, 22.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (551, 'MAIDEN HOME', 'A Lacklusture Saga of a Moose And a Teacher who must Kill a Forensic Psychologist in A MySQL Convention', 13, 3, 4.99, 138, 9.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (552, 'MAJESTIC FLOATS', 'A Thrilling Character Study of a Moose And a Student who must Escape a Butler in The First Manned Space Station', 6, 5, 0.99, 130, 15.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (553, 'MAKER GABLES', 'A Stunning Display of a Moose And a Database Administrator who must Pursue a Composer in A Jet Boat', 3, 4, 0.99, 136, 12.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (554, 'MALKOVICH PET', 'A Intrepid Reflection of a Waitress And a A Shark who must Kill a Squirrel in The Outback', 4, 6, 2.99, 159, 22.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (555, 'MALLRATS UNITED', 'A Thrilling Yarn of a Waitress And a Dentist who must Find a Hunter in A Monastery', 5, 4, 0.99, 133, 25.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (556, 'MALTESE HOPE', 'A Fast-Paced Documentary of a Crocodile And a Sumo Wrestler who must Conquer a Explorer in California', 10, 6, 4.99, 127, 26.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (557, 'MANCHURIAN CURTAIN', 'A Stunning Tale of a Mad Cow And a Boy who must Battle a Boy in Berlin', 8, 5, 2.99, 177, 27.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (558, 'MANNEQUIN WORST', 'A Astounding Saga of a Mad Cow And a Pastry Chef who must Discover a Husband in Ancient India', 13, 3, 2.99, 71, 18.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (559, 'MARRIED GO', 'A Fanciful Story of a Womanizer And a Dog who must Face a Forensic Psychologist in The Sahara Desert', 14, 7, 2.99, 114, 22.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (560, 'MARS ROMAN', 'A Boring Drama of a Car And a Dog who must Succumb a Madman in Soviet Georgia', 10, 6, 0.99, 62, 21.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (561, 'MASK PEACH', 'A Boring Character Study of a Student And a Robot who must Meet a Woman in California', 13, 6, 2.99, 123, 26.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (562, 'MASKED BUBBLE', 'A Fanciful Documentary of a Pioneer And a Boat who must Pursue a Pioneer in An Abandoned Mine Shaft', 12, 6, 0.99, 151, 12.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (563, 'MASSACRE USUAL', 'A Fateful Reflection of a Waitress And a Crocodile who must Challenge a Forensic Psychologist in California', 10, 6, 4.99, 165, 16.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (564, 'MASSAGE IMAGE', 'A Fateful Drama of a Frisbee And a Crocodile who must Vanquish a Dog in The First Manned Space Station', 2, 4, 2.99, 161, 11.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (565, 'MATRIX SNOWMAN', 'A Action-Packed Saga of a Womanizer And a Woman who must Overcome a Student in California', 9, 6, 4.99, 56, 9.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (566, 'MAUDE MOD', 'A Beautiful Documentary of a Forensic Psychologist And a Cat who must Reach a Astronaut in Nigeria', 9, 6, 0.99, 72, 20.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (567, 'MEET CHOCOLATE', 'A Boring Documentary of a Dentist And a Butler who must Confront a Monkey in A MySQL Convention', 9, 3, 2.99, 80, 26.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (568, 'MEMENTO ZOOLANDER', 'A Touching Epistle of a Squirrel And a Explorer who must Redeem a Pastry Chef in The Sahara Desert', 5, 4, 4.99, 77, 11.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (569, 'MENAGERIE RUSHMORE', 'A Unbelieveable Panorama of a Composer And a Butler who must Overcome a Database Administrator in The First Manned Space Station', 2, 7, 2.99, 147, 18.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (570, 'MERMAID INSECTS', 'A Lacklusture Drama of a Waitress And a Husband who must Fight a Husband in California', 15, 5, 4.99, 104, 20.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (571, 'METAL ARMAGEDDON', 'A Thrilling Display of a Lumberjack And a Crocodile who must Meet a Monkey in A Baloon Factory', 6, 6, 2.99, 161, 26.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (572, 'METROPOLIS COMA', 'A Emotional Saga of a Database Administrator And a Pastry Chef who must Confront a Teacher in A Baloon Factory', 14, 4, 2.99, 64, 9.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (573, 'MICROCOSMOS PARADISE', 'A Touching Character Study of a Boat And a Student who must Sink a A Shark in Nigeria', 3, 6, 2.99, 105, 22.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (574, 'MIDNIGHT WESTWARD', 'A Taut Reflection of a Husband And a A Shark who must Redeem a Pastry Chef in A Monastery', 1, 3, 0.99, 86, 19.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (575, 'MIDSUMMER GROUNDHOG', 'A Fateful Panorama of a Moose And a Dog who must Chase a Crocodile in Ancient Japan', 6, 3, 4.99, 48, 27.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (576, 'MIGHTY LUCK', 'A Astounding Epistle of a Mad Scientist And a Pioneer who must Escape a Database Administrator in A MySQL Convention', 6, 7, 2.99, 122, 13.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (577, 'MILE MULAN', 'A Lacklusture Epistle of a Cat And a Husband who must Confront a Boy in A MySQL Convention', 15, 4, 0.99, 64, 10.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (578, 'MILLION ACE', 'A Brilliant Documentary of a Womanizer And a Squirrel who must Find a Technical Writer in The Sahara Desert', 4, 4, 4.99, 142, 16.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (579, 'MINDS TRUMAN', 'A Taut Yarn of a Mad Scientist And a Crocodile who must Outgun a Database Administrator in A Monastery', 1, 3, 4.99, 149, 22.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (580, 'MINE TITANS', 'A Amazing Yarn of a Robot And a Womanizer who must Discover a Forensic Psychologist in Berlin', 13, 3, 4.99, 166, 12.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (581, 'MINORITY KISS', 'A Insightful Display of a Lumberjack And a Sumo Wrestler who must Meet a Man in The Outback', 12, 4, 0.99, 59, 16.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (582, 'MIRACLE VIRTUAL', 'A Touching Epistle of a Butler And a Boy who must Find a Mad Scientist in The Sahara Desert', 2, 3, 2.99, 162, 19.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (583, 'MISSION ZOOLANDER', 'A Intrepid Story of a Sumo Wrestler And a Teacher who must Meet a A Shark in An Abandoned Fun House', 2, 3, 4.99, 164, 26.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (584, 'MIXED DOORS', 'A Taut Drama of a Womanizer And a Lumberjack who must Succumb a Pioneer in Ancient India', 9, 6, 2.99, 180, 26.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (585, 'MOB DUFFEL', 'A Unbelieveable Documentary of a Frisbee And a Boat who must Meet a Boy in The Canadian Rockies', 7, 4, 0.99, 105, 25.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (586, 'MOCKINGBIRD HOLLYWOOD', 'A Thoughtful Panorama of a Man And a Car who must Sink a Composer in Berlin', 1, 4, 0.99, 60, 27.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (587, 'MOD SECRETARY', 'A Boring Documentary of a Mad Cow And a Cat who must Build a Lumberjack in New Orleans', 6, 6, 4.99, 77, 20.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (588, 'MODEL FISH', 'A Beautiful Panorama of a Boat And a Crocodile who must Outrace a Dog in Australia', 3, 4, 4.99, 175, 11.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (589, 'MODERN DORADO', 'A Awe-Inspiring Story of a Butler And a Sumo Wrestler who must Redeem a Boy in New Orleans', 6, 3, 0.99, 74, 20.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (590, 'MONEY HAROLD', 'A Touching Tale of a Explorer And a Boat who must Defeat a Robot in Australia', 13, 3, 2.99, 135, 17.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (591, 'MONSOON CAUSE', 'A Astounding Tale of a Crocodile And a Car who must Outrace a Squirrel in A U-Boat', 10, 6, 4.99, 182, 20.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (592, 'MONSTER SPARTACUS', 'A Fast-Paced Story of a Waitress And a Cat who must Fight a Girl in Australia', 12, 6, 2.99, 107, 28.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (593, 'MONTEREY LABYRINTH', 'A Awe-Inspiring Drama of a Monkey And a Composer who must Escape a Feminist in A U-Boat', 11, 6, 0.99, 158, 13.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (594, 'MONTEZUMA COMMAND', 'A Thrilling Reflection of a Waitress And a Butler who must Battle a Butler in A Jet Boat', 1, 6, 0.99, 126, 22.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (595, 'MOON BUNCH', 'A Beautiful Tale of a Astronaut And a Mad Cow who must Challenge a Cat in A Baloon Factory', 9, 7, 0.99, 83, 20.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (596, 'MOONSHINE CABIN', 'A Thoughtful Display of a Astronaut And a Feminist who must Chase a Frisbee in A Jet Boat', 10, 4, 4.99, 171, 25.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (597, 'MOONWALKER FOOL', 'A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans', 10, 5, 4.99, 184, 12.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (598, 'MOSQUITO ARMAGEDDON', 'A Thoughtful Character Study of a Waitress And a Feminist who must Build a Teacher in Ancient Japan', 15, 6, 0.99, 57, 22.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (599, 'MOTHER OLEANDER', 'A Boring Tale of a Husband And a Boy who must Fight a Squirrel in Ancient China', 15, 3, 0.99, 103, 20.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (600, 'MOTIONS DETAILS', 'A Awe-Inspiring Reflection of a Dog And a Student who must Kill a Car in An Abandoned Fun House', 11, 5, 0.99, 166, 16.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (601, 'MOULIN WAKE', 'A Astounding Story of a Forensic Psychologist And a Cat who must Battle a Teacher in An Abandoned Mine Shaft', 16, 4, 0.99, 79, 20.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (602, 'MOURNING PURPLE', 'A Lacklusture Display of a Waitress And a Lumberjack who must Chase a Pioneer in New Orleans', 14, 5, 0.99, 146, 14.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (603, 'MOVIE SHAKESPEARE', 'A Insightful Display of a Database Administrator And a Student who must Build a Hunter in Berlin', 8, 6, 4.99, 53, 27.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (604, 'MULAN MOON', 'A Emotional Saga of a Womanizer And a Pioneer who must Overcome a Dentist in A Baloon', 5, 4, 0.99, 160, 10.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (605, 'MULHOLLAND BEAST', 'A Awe-Inspiring Display of a Husband And a Squirrel who must Battle a Sumo Wrestler in A Jet Boat', 9, 7, 2.99, 157, 13.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (606, 'MUMMY CREATURES', 'A Fateful Character Study of a Crocodile And a Monkey who must Meet a Dentist in Australia', 15, 3, 0.99, 160, 15.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (607, 'MUPPET MILE', 'A Lacklusture Story of a Madman And a Teacher who must Kill a Frisbee in The Gulf of Mexico', 9, 5, 4.99, 50, 18.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (608, 'MURDER ANTITRUST', 'A Brilliant Yarn of a Car And a Database Administrator who must Escape a Boy in A MySQL Convention', 3, 6, 2.99, 166, 11.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (609, 'MUSCLE BRIGHT', 'A Stunning Panorama of a Sumo Wrestler And a Husband who must Redeem a Madman in Ancient India', 16, 7, 2.99, 185, 23.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (610, 'MUSIC BOONDOCK', 'A Thrilling Tale of a Butler And a Astronaut who must Battle a Explorer in The First Manned Space Station', 8, 7, 0.99, 129, 17.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (611, 'MUSKETEERS WAIT', 'A Touching Yarn of a Student And a Moose who must Fight a Mad Cow in Australia', 4, 7, 4.99, 73, 17.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (612, 'MUSSOLINI SPOILERS', 'A Thrilling Display of a Boat And a Monkey who must Meet a Composer in Ancient China', 15, 6, 2.99, 180, 10.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (613, 'MYSTIC TRUMAN', 'A Epic Yarn of a Teacher And a Hunter who must Outgun a Explorer in Soviet Georgia', 5, 5, 0.99, 92, 19.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (614, 'NAME DETECTIVE', 'A Touching Saga of a Sumo Wrestler And a Cat who must Pursue a Mad Scientist in Nigeria', 10, 5, 4.99, 178, 11.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (615, 'NASH CHOCOLAT', 'A Epic Reflection of a Monkey And a Mad Cow who must Kill a Forensic Psychologist in An Abandoned Mine Shaft', 2, 6, 2.99, 180, 21.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (616, 'NATIONAL STORY', 'A Taut Epistle of a Mad Scientist And a Girl who must Escape a Monkey in California', 6, 4, 2.99, 92, 19.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (617, 'NATURAL STOCK', 'A Fast-Paced Story of a Sumo Wrestler And a Girl who must Defeat a Car in A Baloon Factory', 8, 4, 0.99, 50, 24.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (618, 'NECKLACE OUTBREAK', 'A Astounding Epistle of a Database Administrator And a Mad Scientist who must Pursue a Cat in California', 7, 3, 0.99, 132, 21.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (619, 'NEIGHBORS CHARADE', 'A Fanciful Reflection of a Crocodile And a Astronaut who must Outrace a Feminist in An Abandoned Amusement Park', 15, 3, 0.99, 161, 20.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (620, 'NEMO CAMPUS', 'A Lacklusture Reflection of a Monkey And a Squirrel who must Outrace a Womanizer in A Manhattan Penthouse', 14, 5, 2.99, 131, 23.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (621, 'NETWORK PEAK', 'A Unbelieveable Reflection of a Butler And a Boat who must Outgun a Mad Scientist in California', 8, 5, 2.99, 75, 23.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (622, 'NEWSIES STORY', 'A Action-Packed Character Study of a Dog And a Lumberjack who must Outrace a Moose in The Gulf of Mexico', 6, 4, 0.99, 159, 25.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (623, 'NEWTON LABYRINTH', 'A Intrepid Character Study of a Moose And a Waitress who must Find a A Shark in Ancient India', 9, 4, 0.99, 75, 9.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (624, 'NIGHTMARE CHILL', 'A Brilliant Display of a Robot And a Butler who must Fight a Waitress in An Abandoned Mine Shaft', 10, 3, 4.99, 149, 25.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (625, 'NONE SPIKING', 'A Boring Reflection of a Secret Agent And a Astronaut who must Face a Composer in A Manhattan Penthouse', 14, 3, 0.99, 83, 18.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (626, 'NOON PAPI', 'A Unbelieveable Character Study of a Mad Scientist And a Astronaut who must Find a Pioneer in A Manhattan Penthouse', 3, 5, 2.99, 57, 12.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (627, 'NORTH TEQUILA', 'A Beautiful Character Study of a Mad Cow And a Robot who must Reach a Womanizer in New Orleans', 6, 4, 4.99, 67, 9.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (628, 'NORTHWEST POLISH', 'A Boring Character Study of a Boy And a A Shark who must Outrace a Womanizer in The Outback', 15, 5, 2.99, 172, 24.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (629, 'NOTORIOUS REUNION', 'A Amazing Epistle of a Woman And a Squirrel who must Fight a Hunter in A Baloon', 6, 7, 0.99, 128, 9.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (630, 'NOTTING SPEAKEASY', 'A Thoughtful Display of a Butler And a Womanizer who must Find a Waitress in The Canadian Rockies', 7, 7, 0.99, 48, 19.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (631, 'NOVOCAINE FLIGHT', 'A Fanciful Display of a Student And a Teacher who must Outgun a Crocodile in Nigeria', 15, 4, 0.99, 64, 11.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (632, 'NUTS TIES', 'A Thoughtful Drama of a Explorer And a Womanizer who must Meet a Teacher in California', 13, 5, 4.99, 145, 10.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (633, 'OCTOBER SUBMARINE', 'A Taut Epistle of a Monkey And a Boy who must Confront a Husband in A Jet Boat', 4, 6, 4.99, 54, 10.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (634, 'ODDS BOOGIE', 'A Thrilling Yarn of a Feminist And a Madman who must Battle a Hunter in Berlin', 8, 6, 0.99, 48, 14.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (635, 'OKLAHOMA JUMANJI', 'A Thoughtful Drama of a Dentist And a Womanizer who must Meet a Husband in The Sahara Desert', 13, 7, 0.99, 58, 15.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (636, 'OLEANDER CLUE', 'A Boring Story of a Teacher And a Monkey who must Succumb a Forensic Psychologist in A Jet Boat', 12, 5, 0.99, 161, 12.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (637, 'OPEN AFRICAN', 'A Lacklusture Drama of a Secret Agent And a Explorer who must Discover a Car in A U-Boat', 14, 7, 4.99, 131, 16.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (638, 'OPERATION OPERATION', 'A Intrepid Character Study of a Man And a Frisbee who must Overcome a Madman in Ancient China', 5, 7, 2.99, 156, 23.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (639, 'OPPOSITE NECKLACE', 'A Fateful Epistle of a Crocodile And a Moose who must Kill a Explorer in Nigeria', 8, 7, 4.99, 92, 9.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (640, 'OPUS ICE', 'A Fast-Paced Drama of a Hunter And a Boy who must Discover a Feminist in The Sahara Desert', 9, 5, 4.99, 102, 21.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (641, 'ORANGE GRAPES', 'A Astounding Documentary of a Butler And a Womanizer who must Face a Dog in A U-Boat', 9, 4, 0.99, 76, 21.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (642, 'ORDER BETRAYED', 'A Amazing Saga of a Dog And a A Shark who must Challenge a Cat in The Sahara Desert', 16, 7, 2.99, 120, 13.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (643, 'ORIENT CLOSER', 'A Astounding Epistle of a Technical Writer And a Teacher who must Fight a Squirrel in The Sahara Desert', 7, 3, 2.99, 118, 22.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (644, 'OSCAR GOLD', 'A Insightful Tale of a Database Administrator And a Dog who must Face a Madman in Soviet Georgia', 2, 7, 2.99, 115, 29.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (645, 'OTHERS SOUP', 'A Lacklusture Documentary of a Mad Cow And a Madman who must Sink a Moose in The Gulf of Mexico', 16, 7, 2.99, 118, 18.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (646, 'OUTBREAK DIVINE', 'A Unbelieveable Yarn of a Database Administrator And a Woman who must Succumb a A Shark in A U-Boat', 10, 6, 0.99, 169, 12.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (647, 'OUTFIELD MASSACRE', 'A Thoughtful Drama of a Husband And a Secret Agent who must Pursue a Database Administrator in Ancient India', 12, 4, 0.99, 129, 18.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (648, 'OUTLAW HANKY', 'A Thoughtful Story of a Astronaut And a Composer who must Conquer a Dog in The Sahara Desert', 16, 7, 4.99, 148, 17.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (649, 'OZ LIAISONS', 'A Epic Yarn of a Mad Scientist And a Cat who must Confront a Womanizer in A Baloon Factory', 2, 4, 2.99, 85, 14.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (650, 'PACIFIC AMISTAD', 'A Thrilling Yarn of a Dog And a Moose who must Kill a Pastry Chef in A Manhattan Penthouse', 6, 3, 0.99, 144, 27.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (651, 'PACKER MADIGAN', 'A Epic Display of a Sumo Wrestler And a Forensic Psychologist who must Build a Woman in An Abandoned Amusement Park', 2, 3, 0.99, 84, 20.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (652, 'PAJAMA JAWBREAKER', 'A Emotional Drama of a Boy And a Technical Writer who must Redeem a Sumo Wrestler in California', 4, 3, 0.99, 126, 14.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (653, 'PANIC CLUB', 'A Fanciful Display of a Teacher And a Crocodile who must Succumb a Girl in A Baloon', 11, 3, 4.99, 102, 15.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (654, 'PANKY SUBMARINE', 'A Touching Documentary of a Dentist And a Sumo Wrestler who must Overcome a Boy in The Gulf of Mexico', 10, 4, 4.99, 93, 19.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (655, 'PANTHER REDS', 'A Brilliant Panorama of a Moose And a Man who must Reach a Teacher in The Gulf of Mexico', 14, 5, 4.99, 109, 22.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (656, 'PAPI NECKLACE', 'A Fanciful Display of a Car And a Monkey who must Escape a Squirrel in Ancient Japan', 16, 3, 0.99, 128, 9.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (657, 'PARADISE SABRINA', 'A Intrepid Yarn of a Car And a Moose who must Outrace a Crocodile in A Manhattan Penthouse', 5, 5, 2.99, 48, 12.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (658, 'PARIS WEEKEND', 'A Intrepid Story of a Squirrel And a Crocodile who must Defeat a Monkey in The Outback', 11, 7, 2.99, 121, 19.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (659, 'PARK CITIZEN', 'A Taut Epistle of a Sumo Wrestler And a Girl who must Face a Husband in Ancient Japan', 1, 3, 4.99, 109, 14.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (660, 'PARTY KNOCK', 'A Fateful Display of a Technical Writer And a Butler who must Battle a Sumo Wrestler in An Abandoned Mine Shaft', 5, 7, 2.99, 107, 11.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (661, 'PAST SUICIDES', 'A Intrepid Tale of a Madman And a Astronaut who must Challenge a Hunter in A Monastery', 9, 5, 4.99, 157, 17.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (662, 'PATHS CONTROL', 'A Astounding Documentary of a Butler And a Cat who must Find a Frisbee in Ancient China', 7, 3, 4.99, 118, 9.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (663, 'PATIENT SISTER', 'A Emotional Epistle of a Squirrel And a Robot who must Confront a Lumberjack in Soviet Georgia', 4, 7, 0.99, 99, 29.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (664, 'PATRIOT ROMAN', 'A Taut Saga of a Robot And a Database Administrator who must Challenge a Astronaut in California', 1, 6, 2.99, 65, 12.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (665, 'PATTON INTERVIEW', 'A Thrilling Documentary of a Composer And a Secret Agent who must Succumb a Cat in Berlin', 11, 4, 2.99, 175, 22.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (666, 'PAYCHECK WAIT', 'A Awe-Inspiring Reflection of a Boy And a Man who must Discover a Moose in The Sahara Desert', 7, 4, 4.99, 145, 27.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (667, 'PEACH INNOCENT', 'A Action-Packed Drama of a Monkey And a Dentist who must Chase a Butler in Berlin', 15, 3, 2.99, 160, 20.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (668, 'PEAK FOREVER', 'A Insightful Reflection of a Boat And a Secret Agent who must Vanquish a Astronaut in An Abandoned Mine Shaft', 15, 7, 4.99, 80, 25.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (669, 'PEARL DESTINY', 'A Lacklusture Yarn of a Astronaut And a Pastry Chef who must Sink a Dog in A U-Boat', 9, 3, 2.99, 74, 10.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (670, 'PELICAN COMFORTS', 'A Epic Documentary of a Boy And a Monkey who must Pursue a Astronaut in Berlin', 6, 4, 4.99, 48, 17.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (671, 'PERDITION FARGO', 'A Fast-Paced Story of a Car And a Cat who must Outgun a Hunter in Berlin', 15, 7, 4.99, 99, 27.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (672, 'PERFECT GROOVE', 'A Thrilling Yarn of a Dog And a Dog who must Build a Husband in A Baloon', 5, 7, 2.99, 82, 17.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (673, 'PERSONAL LADYBUGS', 'A Epic Saga of a Hunter And a Technical Writer who must Conquer a Cat in Ancient Japan', 12, 3, 0.99, 118, 19.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (674, 'PET HAUNTING', 'A Unbelieveable Reflection of a Explorer And a Boat who must Conquer a Woman in California', 9, 3, 0.99, 99, 11.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (675, 'PHANTOM GLORY', 'A Beautiful Documentary of a Astronaut And a Crocodile who must Discover a Madman in A Monastery', 13, 6, 2.99, 60, 17.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (676, 'PHILADELPHIA WIFE', 'A Taut Yarn of a Hunter And a Astronaut who must Conquer a Database Administrator in The Sahara Desert', 15, 7, 4.99, 137, 16.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (677, 'PIANIST OUTFIELD', 'A Intrepid Story of a Boy And a Technical Writer who must Pursue a Lumberjack in A Monastery', 13, 6, 0.99, 136, 25.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (678, 'PICKUP DRIVING', 'A Touching Documentary of a Husband And a Boat who must Meet a Pastry Chef in A Baloon Factory', 15, 3, 2.99, 77, 23.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (679, 'PILOT HOOSIERS', 'A Awe-Inspiring Reflection of a Crocodile And a Sumo Wrestler who must Meet a Forensic Psychologist in An Abandoned Mine Shaft', 8, 6, 2.99, 50, 17.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (680, 'PINOCCHIO SIMON', 'A Action-Packed Reflection of a Mad Scientist And a A Shark who must Find a Feminist in California', 5, 4, 4.99, 103, 21.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (681, 'PIRATES ROXANNE', 'A Stunning Drama of a Woman And a Lumberjack who must Overcome a A Shark in The Canadian Rockies', 15, 4, 0.99, 100, 20.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (682, 'PITTSBURGH HUNCHBACK', 'A Thrilling Epistle of a Boy And a Boat who must Find a Student in Soviet Georgia', 8, 4, 4.99, 134, 17.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (683, 'PITY BOUND', 'A Boring Panorama of a Feminist And a Moose who must Defeat a Database Administrator in Nigeria', 7, 5, 4.99, 60, 19.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (684, 'PIZZA JUMANJI', 'A Epic Saga of a Cat And a Squirrel who must Outgun a Robot in A U-Boat', 10, 4, 2.99, 173, 11.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (685, 'PLATOON INSTINCT', 'A Thrilling Panorama of a Man And a Woman who must Reach a Woman in Australia', 13, 6, 4.99, 132, 10.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (686, 'PLUTO OLEANDER', 'A Action-Packed Reflection of a Car And a Moose who must Outgun a Car in A Shark Tank', 13, 5, 4.99, 84, 9.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (687, 'POCUS PULP', 'A Intrepid Yarn of a Frisbee And a Dog who must Build a Astronaut in A Baloon Factory', 6, 6, 0.99, 138, 15.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (688, 'POLISH BROOKLYN', 'A Boring Character Study of a Database Administrator And a Lumberjack who must Reach a Madman in The Outback', 3, 6, 0.99, 61, 12.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (689, 'POLLOCK DELIVERANCE', 'A Intrepid Story of a Madman And a Frisbee who must Outgun a Boat in The Sahara Desert', 9, 5, 2.99, 137, 14.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (690, 'POND SEATTLE', 'A Stunning Drama of a Teacher And a Boat who must Battle a Feminist in Ancient China', 2, 7, 2.99, 185, 25.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (691, 'POSEIDON FOREVER', 'A Thoughtful Epistle of a Womanizer And a Monkey who must Vanquish a Dentist in A Monastery', 15, 6, 4.99, 159, 29.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (692, 'POTLUCK MIXED', 'A Beautiful Story of a Dog And a Technical Writer who must Outgun a Student in A Baloon', 2, 3, 2.99, 179, 10.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (693, 'POTTER CONNECTICUT', 'A Thrilling Epistle of a Frisbee And a Cat who must Fight a Technical Writer in Berlin', 2, 5, 2.99, 115, 16.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (694, 'PREJUDICE OLEANDER', 'A Epic Saga of a Boy And a Dentist who must Outrace a Madman in A U-Boat', 4, 6, 4.99, 98, 15.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (695, 'PRESIDENT BANG', 'A Fateful Panorama of a Technical Writer And a Moose who must Battle a Robot in Soviet Georgia', 8, 6, 4.99, 144, 12.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (696, 'PRIDE ALAMO', 'A Thoughtful Drama of a A Shark And a Forensic Psychologist who must Vanquish a Student in Ancient India', 2, 6, 0.99, 114, 20.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (697, 'PRIMARY GLASS', 'A Fateful Documentary of a Pastry Chef And a Butler who must Build a Dog in The Canadian Rockies', 1, 7, 0.99, 53, 16.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (698, 'PRINCESS GIANT', 'A Thrilling Yarn of a Pastry Chef And a Monkey who must Battle a Monkey in A Shark Tank', 6, 3, 2.99, 71, 29.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (699, 'PRIVATE DROP', 'A Stunning Story of a Technical Writer And a Hunter who must Succumb a Secret Agent in A Baloon', 10, 7, 4.99, 106, 26.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (700, 'PRIX UNDEFEATED', 'A Stunning Saga of a Mad Scientist And a Boat who must Overcome a Dentist in Ancient China', 8, 4, 2.99, 115, 13.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (701, 'PSYCHO SHRUNK', 'A Amazing Panorama of a Crocodile And a Explorer who must Fight a Husband in Nigeria', 10, 5, 2.99, 155, 11.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (702, 'PULP BEVERLY', 'A Unbelieveable Display of a Dog And a Crocodile who must Outrace a Man in Nigeria', 11, 4, 2.99, 89, 12.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (703, 'PUNK DIVORCE', 'A Fast-Paced Tale of a Pastry Chef And a Boat who must Face a Frisbee in The Canadian Rockies', 2, 6, 4.99, 100, 18.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (704, 'PURE RUNNER', 'A Thoughtful Documentary of a Student And a Madman who must Challenge a Squirrel in A Manhattan Penthouse', 5, 3, 2.99, 121, 25.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (705, 'PURPLE MOVIE', 'A Boring Display of a Pastry Chef And a Sumo Wrestler who must Discover a Frisbee in An Abandoned Amusement Park', 9, 4, 2.99, 88, 9.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (706, 'QUEEN LUKE', 'A Astounding Story of a Girl And a Boy who must Challenge a Composer in New Orleans', 7, 5, 4.99, 163, 22.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (707, 'QUEST MUSSOLINI', 'A Fateful Drama of a Husband And a Sumo Wrestler who must Battle a Pastry Chef in A Baloon Factory', 1, 5, 2.99, 177, 29.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (708, 'QUILLS BULL', 'A Thoughtful Story of a Pioneer And a Woman who must Reach a Moose in Australia', 6, 4, 4.99, 112, 19.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (709, 'RACER EGG', 'A Emotional Display of a Monkey And a Waitress who must Reach a Secret Agent in California', 7, 7, 2.99, 147, 19.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (710, 'RAGE GAMES', 'A Fast-Paced Saga of a Astronaut And a Secret Agent who must Escape a Hunter in An Abandoned Amusement Park', 8, 4, 4.99, 120, 18.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (711, 'RAGING AIRPLANE', 'A Astounding Display of a Secret Agent And a Technical Writer who must Escape a Mad Scientist in A Jet Boat', 14, 4, 4.99, 154, 18.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (712, 'RAIDERS ANTITRUST', 'A Amazing Drama of a Teacher And a Feminist who must Meet a Woman in The First Manned Space Station', 6, 4, 0.99, 82, 11.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (713, 'RAINBOW SHOCK', 'A Action-Packed Story of a Hunter And a Boy who must Discover a Lumberjack in Ancient India', 6, 3, 4.99, 74, 14.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (714, 'RANDOM GO', 'A Fateful Drama of a Frisbee And a Student who must Confront a Cat in A Shark Tank', 14, 6, 2.99, 73, 29.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (715, 'RANGE MOONWALKER', 'A Insightful Documentary of a Hunter And a Dentist who must Confront a Crocodile in A Baloon', 8, 3, 4.99, 147, 25.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (716, 'REAP UNFAITHFUL', 'A Thrilling Epistle of a Composer And a Sumo Wrestler who must Challenge a Mad Cow in A MySQL Convention', 11, 6, 2.99, 136, 26.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (717, 'REAR TRADING', 'A Awe-Inspiring Reflection of a Forensic Psychologist And a Secret Agent who must Succumb a Pastry Chef in Soviet Georgia', 1, 6, 0.99, 97, 23.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (718, 'REBEL AIRPORT', 'A Intrepid Yarn of a Database Administrator And a Boat who must Outrace a Husband in Ancient India', 12, 7, 0.99, 73, 24.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (719, 'RECORDS ZORRO', 'A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback', 15, 7, 4.99, 182, 11.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (720, 'REDEMPTION COMFORTS', 'A Emotional Documentary of a Dentist And a Woman who must Battle a Mad Scientist in Ancient China', 13, 3, 2.99, 179, 20.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (721, 'REDS POCUS', 'A Lacklusture Yarn of a Sumo Wrestler And a Squirrel who must Redeem a Monkey in Soviet Georgia', 12, 7, 4.99, 182, 23.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (722, 'REEF SALUTE', 'A Action-Packed Saga of a Teacher And a Lumberjack who must Battle a Dentist in A Baloon', 11, 5, 0.99, 123, 26.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (723, 'REIGN GENTLEMEN', 'A Emotional Yarn of a Composer And a Man who must Escape a Butler in The Gulf of Mexico', 14, 3, 2.99, 82, 29.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (724, 'REMEMBER DIARY', 'A Insightful Tale of a Technical Writer And a Waitress who must Conquer a Monkey in Ancient India', 8, 5, 2.99, 110, 15.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (725, 'REQUIEM TYCOON', 'A Unbelieveable Character Study of a Cat And a Database Administrator who must Pursue a Teacher in A Monastery', 4, 6, 4.99, 167, 25.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (726, 'RESERVOIR ADAPTATION', 'A Intrepid Drama of a Teacher And a Moose who must Kill a Car in California', 9, 7, 2.99, 61, 29.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (727, 'RESURRECTION SILVERADO', 'A Epic Yarn of a Robot And a Explorer who must Challenge a Girl in A MySQL Convention', 8, 6, 0.99, 117, 12.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (728, 'REUNION WITCHES', 'A Unbelieveable Documentary of a Database Administrator And a Frisbee who must Redeem a Mad Scientist in A Baloon Factory', 7, 3, 0.99, 63, 26.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (729, 'RIDER CADDYSHACK', 'A Taut Reflection of a Monkey And a Womanizer who must Chase a Moose in Nigeria', 15, 5, 2.99, 177, 28.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (730, 'RIDGEMONT SUBMARINE', 'A Unbelieveable Drama of a Waitress And a Composer who must Sink a Mad Cow in Ancient Japan', 13, 3, 0.99, 46, 28.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (731, 'RIGHT CRANES', 'A Fateful Character Study of a Boat And a Cat who must Find a Database Administrator in A Jet Boat', 4, 7, 4.99, 153, 29.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (732, 'RINGS HEARTBREAKERS', 'A Amazing Yarn of a Sumo Wrestler And a Boat who must Conquer a Waitress in New Orleans', 1, 5, 0.99, 58, 17.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (733, 'RIVER OUTLAW', 'A Thrilling Character Study of a Squirrel And a Lumberjack who must Face a Hunter in A MySQL Convention', 15, 4, 0.99, 149, 29.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (734, 'ROAD ROXANNE', 'A Boring Character Study of a Waitress And a Astronaut who must Fight a Crocodile in Ancient Japan', 6, 4, 4.99, 158, 12.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (735, 'ROBBERS JOON', 'A Thoughtful Story of a Mad Scientist And a Waitress who must Confront a Forensic Psychologist in Soviet Georgia', 3, 7, 2.99, 102, 26.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (736, 'ROBBERY BRIGHT', 'A Taut Reflection of a Robot And a Squirrel who must Fight a Boat in Ancient Japan', 8, 4, 0.99, 134, 21.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (737, 'ROCK INSTINCT', 'A Astounding Character Study of a Robot And a Moose who must Overcome a Astronaut in Ancient India', 11, 4, 0.99, 102, 28.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (738, 'ROCKETEER MOTHER', 'A Awe-Inspiring Character Study of a Robot And a Sumo Wrestler who must Discover a Womanizer in A Shark Tank', 9, 3, 0.99, 178, 27.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (739, 'ROCKY WAR', 'A Fast-Paced Display of a Squirrel And a Explorer who must Outgun a Mad Scientist in Nigeria', 7, 4, 4.99, 145, 17.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (740, 'ROLLERCOASTER BRINGING', 'A Beautiful Drama of a Robot And a Lumberjack who must Discover a Technical Writer in A Shark Tank', 11, 5, 2.99, 153, 13.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (741, 'ROMAN PUNK', 'A Thoughtful Panorama of a Mad Cow And a Student who must Battle a Forensic Psychologist in Berlin', 12, 7, 0.99, 81, 28.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (742, 'ROOF CHAMPION', 'A Lacklusture Reflection of a Car And a Explorer who must Find a Monkey in A Baloon', 10, 7, 0.99, 101, 25.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (743, 'ROOM ROMAN', 'A Awe-Inspiring Panorama of a Composer And a Secret Agent who must Sink a Composer in A Shark Tank', 2, 7, 0.99, 60, 27.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (744, 'ROOTS REMEMBER', 'A Brilliant Drama of a Mad Cow And a Hunter who must Escape a Hunter in Berlin', 4, 4, 0.99, 89, 23.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (745, 'ROSES TREASURE', 'A Astounding Panorama of a Monkey And a Secret Agent who must Defeat a Woman in The First Manned Space Station', 15, 5, 4.99, 162, 23.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (746, 'ROUGE SQUAD', 'A Awe-Inspiring Drama of a Astronaut And a Frisbee who must Conquer a Mad Scientist in Australia', 10, 3, 0.99, 118, 10.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (747, 'ROXANNE REBEL', 'A Astounding Story of a Pastry Chef And a Database Administrator who must Fight a Man in The Outback', 10, 5, 0.99, 171, 9.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (748, 'RUGRATS SHAKESPEARE', 'A Touching Saga of a Crocodile And a Crocodile who must Discover a Technical Writer in Nigeria', 1, 4, 0.99, 109, 16.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (749, 'RULES HUMAN', 'A Beautiful Epistle of a Astronaut And a Student who must Confront a Monkey in An Abandoned Fun House', 11, 6, 4.99, 153, 19.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (750, 'RUN PACIFIC', 'A Touching Tale of a Cat And a Pastry Chef who must Conquer a Pastry Chef in A MySQL Convention', 13, 3, 0.99, 145, 25.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (751, 'RUNAWAY TENENBAUMS', 'A Thoughtful Documentary of a Boat And a Man who must Meet a Boat in An Abandoned Fun House', 13, 6, 0.99, 181, 17.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (752, 'RUNNER MADIGAN', 'A Thoughtful Documentary of a Crocodile And a Robot who must Outrace a Womanizer in The Outback', 12, 6, 0.99, 101, 27.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (753, 'RUSH GOODFELLAS', 'A Emotional Display of a Man And a Dentist who must Challenge a Squirrel in Australia', 8, 3, 0.99, 48, 20.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (754, 'RUSHMORE MERMAID', 'A Boring Story of a Woman And a Moose who must Reach a Husband in A Shark Tank', 5, 6, 2.99, 150, 17.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (755, 'SABRINA MIDNIGHT', 'A Emotional Story of a Squirrel And a Crocodile who must Succumb a Husband in The Sahara Desert', 3, 5, 4.99, 99, 11.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (756, 'SADDLE ANTITRUST', 'A Stunning Epistle of a Feminist And a A Shark who must Battle a Woman in An Abandoned Fun House', 5, 7, 2.99, 80, 10.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (757, 'SAGEBRUSH CLUELESS', 'A Insightful Story of a Lumberjack And a Hunter who must Kill a Boy in Ancient Japan', 6, 4, 2.99, 106, 28.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (758, 'SAINTS BRIDE', 'A Fateful Tale of a Technical Writer And a Composer who must Pursue a Explorer in The Gulf of Mexico', 7, 5, 2.99, 125, 11.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (759, 'SALUTE APOLLO', 'A Awe-Inspiring Character Study of a Boy And a Feminist who must Sink a Crocodile in Ancient China', 13, 4, 2.99, 73, 29.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (760, 'SAMURAI LION', 'A Fast-Paced Story of a Pioneer And a Astronaut who must Reach a Boat in A Baloon', 13, 5, 2.99, 110, 21.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (761, 'SANTA PARIS', 'A Emotional Documentary of a Moose And a Car who must Redeem a Mad Cow in A Baloon Factory', 3, 7, 2.99, 154, 23.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (762, 'SASSY PACKER', 'A Fast-Paced Documentary of a Dog And a Teacher who must Find a Moose in A Manhattan Penthouse', 10, 6, 0.99, 154, 29.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (763, 'SATISFACTION CONFIDENTIAL', 'A Lacklusture Yarn of a Dentist And a Butler who must Meet a Secret Agent in Ancient China', 15, 3, 4.99, 75, 26.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (764, 'SATURDAY LAMBS', 'A Thoughtful Reflection of a Mad Scientist And a Moose who must Kill a Husband in A Baloon', 15, 3, 4.99, 150, 28.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (765, 'SATURN NAME', 'A Fateful Epistle of a Butler And a Boy who must Redeem a Teacher in Berlin', 5, 7, 4.99, 182, 18.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (766, 'SAVANNAH TOWN', 'A Awe-Inspiring Tale of a Astronaut And a Database Administrator who must Chase a Secret Agent in The Gulf of Mexico', 7, 5, 0.99, 84, 25.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (767, 'SCALAWAG DUCK', 'A Fateful Reflection of a Car And a Teacher who must Confront a Waitress in A Monastery', 12, 6, 4.99, 183, 13.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (768, 'SCARFACE BANG', 'A Emotional Yarn of a Teacher And a Girl who must Find a Teacher in A Baloon Factory', 3, 3, 4.99, 102, 11.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (769, 'SCHOOL JACKET', 'A Intrepid Yarn of a Monkey And a Boy who must Fight a Composer in A Manhattan Penthouse', 9, 5, 4.99, 151, 21.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (770, 'SCISSORHANDS SLUMS', 'A Awe-Inspiring Drama of a Girl And a Technical Writer who must Meet a Feminist in The Canadian Rockies', 9, 5, 2.99, 147, 13.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (771, 'SCORPION APOLLO', 'A Awe-Inspiring Documentary of a Technical Writer And a Husband who must Meet a Monkey in An Abandoned Fun House', 7, 3, 4.99, 137, 23.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (772, 'SEA VIRGIN', 'A Fast-Paced Documentary of a Technical Writer And a Pastry Chef who must Escape a Moose in A U-Boat', 7, 4, 2.99, 80, 24.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (773, 'SEABISCUIT PUNK', 'A Insightful Saga of a Man And a Forensic Psychologist who must Discover a Mad Cow in A MySQL Convention', 15, 6, 2.99, 112, 28.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (774, 'SEARCHERS WAIT', 'A Fast-Paced Tale of a Car And a Mad Scientist who must Kill a Womanizer in Ancient Japan', 5, 3, 2.99, 182, 22.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (775, 'SEATTLE EXPECATIONS', 'A Insightful Reflection of a Crocodile And a Sumo Wrestler who must Meet a Technical Writer in The Sahara Desert', 7, 4, 4.99, 110, 18.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (776, 'SECRET GROUNDHOG', 'A Astounding Story of a Cat And a Database Administrator who must Build a Technical Writer in New Orleans', 6, 6, 4.99, 90, 11.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (777, 'SECRETARY ROUGE', 'A Action-Packed Panorama of a Mad Cow And a Composer who must Discover a Robot in A Baloon Factory', 15, 5, 4.99, 158, 10.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (778, 'SECRETS PARADISE', 'A Fateful Saga of a Cat And a Frisbee who must Kill a Girl in A Manhattan Penthouse', 8, 3, 4.99, 109, 24.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (779, 'SENSE GREEK', 'A Taut Saga of a Lumberjack And a Pastry Chef who must Escape a Sumo Wrestler in An Abandoned Fun House', 15, 4, 4.99, 54, 23.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (780, 'SENSIBILITY REAR', 'A Emotional Tale of a Robot And a Sumo Wrestler who must Redeem a Pastry Chef in A Baloon Factory', 8, 7, 4.99, 98, 15.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (781, 'SEVEN SWARM', 'A Unbelieveable Character Study of a Dog And a Mad Cow who must Kill a Monkey in Berlin', 10, 4, 4.99, 127, 15.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (782, 'SHAKESPEARE SADDLE', 'A Fast-Paced Panorama of a Lumberjack And a Database Administrator who must Defeat a Madman in A MySQL Convention', 15, 6, 2.99, 60, 26.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (783, 'SHANE DARKNESS', 'A Action-Packed Saga of a Moose And a Lumberjack who must Find a Woman in Berlin', 16, 5, 2.99, 93, 22.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (784, 'SHANGHAI TYCOON', 'A Fast-Paced Character Study of a Crocodile And a Lumberjack who must Build a Husband in An Abandoned Fun House', 16, 7, 2.99, 47, 20.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (785, 'SHAWSHANK BUBBLE', 'A Lacklusture Story of a Moose And a Monkey who must Confront a Butler in An Abandoned Amusement Park', 16, 6, 4.99, 80, 20.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (786, 'SHEPHERD MIDSUMMER', 'A Thoughtful Drama of a Robot And a Womanizer who must Kill a Lumberjack in A Baloon', 3, 7, 0.99, 113, 14.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (787, 'SHINING ROSES', 'A Awe-Inspiring Character Study of a Astronaut And a Forensic Psychologist who must Challenge a Madman in Ancient India', 16, 4, 0.99, 125, 12.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (788, 'SHIP WONDERLAND', 'A Thrilling Saga of a Monkey And a Frisbee who must Escape a Explorer in The Outback', 6, 5, 2.99, 104, 15.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (789, 'SHOCK CABIN', 'A Fateful Tale of a Mad Cow And a Crocodile who must Meet a Husband in New Orleans', 9, 7, 2.99, 79, 15.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (790, 'SHOOTIST SUPERFLY', 'A Fast-Paced Story of a Crocodile And a A Shark who must Sink a Pioneer in Berlin', 7, 6, 0.99, 67, 22.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (791, 'SHOW LORD', 'A Fanciful Saga of a Student And a Girl who must Find a Butler in Ancient Japan', 6, 3, 4.99, 167, 24.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (792, 'SHREK LICENSE', 'A Fateful Yarn of a Secret Agent And a Feminist who must Find a Feminist in A Jet Boat', 9, 7, 2.99, 154, 15.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (793, 'SHRUNK DIVINE', 'A Fateful Character Study of a Waitress And a Technical Writer who must Battle a Hunter in A Baloon', 1, 6, 2.99, 139, 14.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (794, 'SIDE ARK', 'A Stunning Panorama of a Crocodile And a Womanizer who must Meet a Feminist in The Canadian Rockies', 1, 5, 0.99, 52, 28.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (795, 'SIEGE MADRE', 'A Boring Tale of a Frisbee And a Crocodile who must Vanquish a Moose in An Abandoned Mine Shaft', 8, 7, 0.99, 111, 23.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (796, 'SIERRA DIVIDE', 'A Emotional Character Study of a Frisbee And a Mad Scientist who must Build a Madman in California', 15, 3, 0.99, 135, 12.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (797, 'SILENCE KANE', 'A Emotional Drama of a Sumo Wrestler And a Dentist who must Confront a Sumo Wrestler in A Baloon', 12, 7, 0.99, 67, 23.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (798, 'SILVERADO GOLDFINGER', 'A Stunning Epistle of a Sumo Wrestler And a Man who must Challenge a Waitress in Ancient India', 14, 4, 4.99, 74, 11.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (799, 'SIMON NORTH', 'A Thrilling Documentary of a Technical Writer And a A Shark who must Face a Pioneer in A Shark Tank', 11, 3, 0.99, 51, 26.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (800, 'SINNERS ATLANTIS', 'A Epic Display of a Dog And a Boat who must Succumb a Mad Scientist in An Abandoned Mine Shaft', 11, 7, 2.99, 126, 19.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (801, 'SISTER FREDDY', 'A Stunning Saga of a Butler And a Woman who must Pursue a Explorer in Australia', 3, 5, 4.99, 152, 19.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (802, 'SKY MIRACLE', 'A Epic Drama of a Mad Scientist And a Explorer who must Succumb a Waitress in An Abandoned Fun House', 1, 7, 2.99, 132, 15.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (803, 'SLACKER LIAISONS', 'A Fast-Paced Tale of a A Shark And a Student who must Meet a Crocodile in Ancient China', 7, 7, 4.99, 179, 29.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (804, 'SLEEPING SUSPECTS', 'A Stunning Reflection of a Sumo Wrestler And a Explorer who must Sink a Frisbee in A MySQL Convention', 11, 7, 4.99, 129, 13.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (805, 'SLEEPLESS MONSOON', 'A Amazing Saga of a Moose And a Pastry Chef who must Escape a Butler in Australia', 2, 5, 4.99, 64, 12.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (806, 'SLEEPY JAPANESE', 'A Emotional Epistle of a Moose And a Composer who must Fight a Technical Writer in The Outback', 13, 4, 2.99, 137, 25.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (807, 'SLEUTH ORIENT', 'A Fateful Character Study of a Husband And a Dog who must Find a Feminist in Ancient India', 10, 4, 0.99, 87, 25.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (808, 'SLING LUKE', 'A Intrepid Character Study of a Robot And a Monkey who must Reach a Secret Agent in An Abandoned Amusement Park', 4, 5, 0.99, 84, 10.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (809, 'SLIPPER FIDELITY', 'A Taut Reflection of a Secret Agent And a Man who must Redeem a Explorer in A MySQL Convention', 15, 5, 0.99, 156, 14.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (810, 'SLUMS DUCK', 'A Amazing Character Study of a Teacher And a Database Administrator who must Defeat a Waitress in A Jet Boat', 8, 5, 0.99, 147, 21.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (811, 'SMILE EARRING', 'A Intrepid Drama of a Teacher And a Butler who must Build a Pastry Chef in Berlin', 16, 4, 2.99, 60, 29.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (812, 'SMOKING BARBARELLA', 'A Lacklusture Saga of a Mad Cow And a Mad Scientist who must Sink a Cat in A MySQL Convention', 6, 7, 0.99, 50, 13.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (813, 'SMOOCHY CONTROL', 'A Thrilling Documentary of a Husband And a Feminist who must Face a Mad Scientist in Ancient China', 15, 7, 0.99, 184, 18.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (814, 'SNATCH SLIPPER', 'A Insightful Panorama of a Woman And a Feminist who must Defeat a Forensic Psychologist in Berlin', 5, 6, 4.99, 110, 15.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (815, 'SNATCHERS MONTEZUMA', 'A Boring Epistle of a Sumo Wrestler And a Woman who must Escape a Man in The Canadian Rockies', 4, 4, 2.99, 74, 14.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (816, 'SNOWMAN ROLLERCOASTER', 'A Fateful Display of a Lumberjack And a Girl who must Succumb a Mad Cow in A Manhattan Penthouse', 2, 3, 0.99, 62, 27.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (817, 'SOLDIERS EVOLUTION', 'A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station', 14, 7, 4.99, 185, 27.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (818, 'SOMETHING DUCK', 'A Boring Character Study of a Car And a Husband who must Outgun a Frisbee in The First Manned Space Station', 7, 4, 4.99, 180, 17.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (819, 'SONG HEDWIG', 'A Amazing Documentary of a Man And a Husband who must Confront a Squirrel in A MySQL Convention', 12, 3, 0.99, 165, 29.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (820, 'SONS INTERVIEW', 'A Taut Character Study of a Explorer And a Mad Cow who must Battle a Hunter in Ancient China', 2, 3, 2.99, 184, 11.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (821, 'SORORITY QUEEN', 'A Fast-Paced Display of a Squirrel And a Composer who must Fight a Forensic Psychologist in A Jet Boat', 9, 6, 0.99, 184, 17.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (822, 'SOUP WISDOM', 'A Fast-Paced Display of a Robot And a Butler who must Defeat a Butler in A MySQL Convention', 8, 6, 0.99, 169, 12.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (823, 'SOUTH WAIT', 'A Amazing Documentary of a Car And a Robot who must Escape a Lumberjack in An Abandoned Amusement Park', 1, 4, 2.99, 143, 21.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (824, 'SPARTACUS CHEAPER', 'A Thrilling Panorama of a Pastry Chef And a Secret Agent who must Overcome a Student in A Manhattan Penthouse', 8, 4, 4.99, 52, 19.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (825, 'SPEAKEASY DATE', 'A Lacklusture Drama of a Forensic Psychologist And a Car who must Redeem a Man in A Manhattan Penthouse', 1, 6, 2.99, 165, 22.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (826, 'SPEED SUIT', 'A Brilliant Display of a Frisbee And a Mad Scientist who must Succumb a Robot in Ancient China', 16, 7, 4.99, 124, 19.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (827, 'SPICE SORORITY', 'A Fateful Display of a Pioneer And a Hunter who must Defeat a Husband in An Abandoned Mine Shaft', 7, 5, 4.99, 141, 22.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (828, 'SPIKING ELEMENT', 'A Lacklusture Epistle of a Dentist And a Technical Writer who must Find a Dog in A Monastery', 4, 7, 2.99, 79, 12.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (829, 'SPINAL ROCKY', 'A Lacklusture Epistle of a Sumo Wrestler And a Squirrel who must Defeat a Explorer in California', 8, 7, 2.99, 138, 12.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (830, 'SPIRIT FLINTSTONES', 'A Brilliant Yarn of a Cat And a Car who must Confront a Explorer in Ancient Japan', 11, 7, 0.99, 149, 23.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (831, 'SPIRITED CASUALTIES', 'A Taut Story of a Waitress And a Man who must Face a Car in A Baloon Factory', 14, 5, 0.99, 138, 20.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (832, 'SPLASH GUMP', 'A Taut Saga of a Crocodile And a Boat who must Conquer a Hunter in A Shark Tank', 8, 5, 0.99, 175, 16.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (833, 'SPLENDOR PATTON', 'A Taut Story of a Dog And a Explorer who must Find a Astronaut in Berlin', 3, 5, 0.99, 134, 20.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (834, 'SPOILERS HELLFIGHTERS', 'A Fanciful Story of a Technical Writer And a Squirrel who must Defeat a Dog in The Gulf of Mexico', 6, 4, 0.99, 151, 26.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (835, 'SPY MILE', 'A Thrilling Documentary of a Feminist And a Feminist who must Confront a Feminist in A Baloon', 10, 6, 2.99, 112, 13.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (836, 'SQUAD FISH', 'A Fast-Paced Display of a Pastry Chef And a Dog who must Kill a Teacher in Berlin', 15, 3, 2.99, 136, 14.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (837, 'STAGE WORLD', 'A Lacklusture Panorama of a Woman And a Frisbee who must Chase a Crocodile in A Jet Boat', 5, 4, 2.99, 85, 19.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (838, 'STAGECOACH ARMAGEDDON', 'A Touching Display of a Pioneer And a Butler who must Chase a Car in California', 1, 5, 4.99, 112, 25.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (839, 'STALLION SUNDANCE', 'A Fast-Paced Tale of a Car And a Dog who must Outgun a A Shark in Australia', 14, 5, 0.99, 130, 23.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (840, 'STAMPEDE DISTURBING', 'A Unbelieveable Tale of a Woman And a Lumberjack who must Fight a Frisbee in A U-Boat', 10, 5, 0.99, 75, 26.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (841, 'STAR OPERATION', 'A Insightful Character Study of a Girl And a Car who must Pursue a Mad Cow in A Shark Tank', 15, 5, 2.99, 181, 9.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (842, 'STATE WASTELAND', 'A Beautiful Display of a Cat And a Pastry Chef who must Outrace a Mad Cow in A Jet Boat', 10, 4, 2.99, 113, 13.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (843, 'STEEL SANTA', 'A Fast-Paced Yarn of a Composer And a Frisbee who must Face a Moose in Nigeria', 4, 4, 4.99, 143, 15.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (844, 'STEERS ARMAGEDDON', 'A Stunning Character Study of a Car And a Girl who must Succumb a Car in A MySQL Convention', 15, 6, 4.99, 140, 16.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (845, 'STEPMOM DREAM', 'A Touching Epistle of a Crocodile And a Teacher who must Build a Forensic Psychologist in A MySQL Convention', 9, 7, 4.99, 48, 9.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (846, 'STING PERSONAL', 'A Fanciful Drama of a Frisbee And a Dog who must Fight a Madman in A Jet Boat', 13, 3, 4.99, 93, 9.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (847, 'STOCK GLASS', 'A Boring Epistle of a Crocodile And a Lumberjack who must Outgun a Moose in Ancient China', 13, 7, 2.99, 160, 10.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (848, 'STONE FIRE', 'A Intrepid Drama of a Astronaut And a Crocodile who must Find a Boat in Soviet Georgia', 16, 3, 0.99, 94, 19.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (849, 'STORM HAPPINESS', 'A Insightful Drama of a Feminist And a A Shark who must Vanquish a Boat in A Shark Tank', 2, 6, 0.99, 57, 28.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (850, 'STORY SIDE', 'A Lacklusture Saga of a Boy And a Cat who must Sink a Dentist in An Abandoned Mine Shaft', 1, 7, 0.99, 163, 27.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (851, 'STRAIGHT HOURS', 'A Boring Panorama of a Secret Agent And a Girl who must Sink a Waitress in The Outback', 15, 3, 0.99, 151, 19.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (852, 'STRANGELOVE DESIRE', 'A Awe-Inspiring Panorama of a Lumberjack And a Waitress who must Defeat a Crocodile in An Abandoned Amusement Park', 3, 4, 0.99, 103, 27.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (853, 'STRANGER STRANGERS', 'A Awe-Inspiring Yarn of a Womanizer And a Explorer who must Fight a Woman in The First Manned Space Station', 3, 3, 4.99, 139, 12.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (854, 'STRANGERS GRAFFITI', 'A Brilliant Character Study of a Secret Agent And a Man who must Find a Cat in The Gulf of Mexico', 11, 4, 4.99, 119, 22.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (855, 'STREAK RIDGEMONT', 'A Astounding Character Study of a Hunter And a Waitress who must Sink a Man in New Orleans', 6, 7, 0.99, 132, 28.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (856, 'STREETCAR INTENTIONS', 'A Insightful Character Study of a Waitress And a Crocodile who must Sink a Waitress in The Gulf of Mexico', 11, 5, 4.99, 73, 11.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (857, 'STRICTLY SCARFACE', 'A Touching Reflection of a Crocodile And a Dog who must Chase a Hunter in An Abandoned Fun House', 5, 3, 2.99, 144, 24.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (858, 'SUBMARINE BED', 'A Amazing Display of a Car And a Monkey who must Fight a Teacher in Soviet Georgia', 5, 5, 4.99, 127, 21.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (859, 'SUGAR WONKA', 'A Touching Story of a Dentist And a Database Administrator who must Conquer a Astronaut in An Abandoned Amusement Park', 2, 3, 4.99, 114, 20.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (860, 'SUICIDES SILENCE', 'A Emotional Character Study of a Car And a Girl who must Face a Composer in A U-Boat', 14, 4, 4.99, 93, 13.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (861, 'SUIT WALLS', 'A Touching Panorama of a Lumberjack And a Frisbee who must Build a Dog in Australia', 10, 3, 4.99, 111, 12.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (862, 'SUMMER SCARFACE', 'A Emotional Panorama of a Lumberjack And a Hunter who must Meet a Girl in A Shark Tank', 4, 5, 0.99, 53, 25.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (863, 'SUN CONFESSIONS', 'A Beautiful Display of a Mad Cow And a Dog who must Redeem a Waitress in An Abandoned Amusement Park', 14, 5, 0.99, 141, 9.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (864, 'SUNDANCE INVASION', 'A Epic Drama of a Lumberjack And a Explorer who must Confront a Hunter in A Baloon Factory', 3, 5, 0.99, 92, 21.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (865, 'SUNRISE LEAGUE', 'A Beautiful Epistle of a Madman And a Butler who must Face a Crocodile in A Manhattan Penthouse', 2, 3, 4.99, 135, 19.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (866, 'SUNSET RACER', 'A Awe-Inspiring Reflection of a Astronaut And a A Shark who must Defeat a Forensic Psychologist in California', 8, 6, 0.99, 48, 28.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (867, 'SUPER WYOMING', 'A Action-Packed Saga of a Pastry Chef And a Explorer who must Discover a A Shark in The Outback', 8, 5, 4.99, 58, 10.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (868, 'SUPERFLY TRIP', 'A Beautiful Saga of a Lumberjack And a Teacher who must Build a Technical Writer in An Abandoned Fun House', 16, 5, 0.99, 114, 27.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (869, 'SUSPECTS QUILLS', 'A Emotional Epistle of a Pioneer And a Crocodile who must Battle a Man in A Manhattan Penthouse', 1, 4, 2.99, 47, 22.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (870, 'SWARM GOLD', 'A Insightful Panorama of a Crocodile And a Boat who must Conquer a Sumo Wrestler in A MySQL Convention', 11, 4, 0.99, 123, 12.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (871, 'SWEDEN SHINING', 'A Taut Documentary of a Car And a Robot who must Conquer a Boy in The Canadian Rockies', 5, 6, 4.99, 176, 19.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (872, 'SWEET BROTHERHOOD', 'A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Chase a Forensic Psychologist in A Baloon', 16, 3, 2.99, 185, 27.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (873, 'SWEETHEARTS SUSPECTS', 'A Brilliant Character Study of a Frisbee And a Sumo Wrestler who must Confront a Woman in The Gulf of Mexico', 3, 3, 0.99, 108, 13.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (874, 'TADPOLE PARK', 'A Beautiful Tale of a Frisbee And a Moose who must Vanquish a Dog in An Abandoned Amusement Park', 4, 6, 2.99, 155, 13.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (875, 'TALENTED HOMICIDE', 'A Lacklusture Panorama of a Dentist And a Forensic Psychologist who must Outrace a Pioneer in A U-Boat', 15, 6, 0.99, 173, 9.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (876, 'TARZAN VIDEOTAPE', 'A Fast-Paced Display of a Lumberjack And a Mad Scientist who must Succumb a Sumo Wrestler in The Sahara Desert', 11, 3, 2.99, 91, 11.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (877, 'TAXI KICK', 'A Amazing Epistle of a Girl And a Woman who must Outrace a Waitress in Soviet Georgia', 12, 4, 0.99, 64, 23.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (878, 'TEEN APOLLO', 'A Awe-Inspiring Drama of a Dog And a Man who must Escape a Robot in A Shark Tank', 16, 3, 4.99, 74, 25.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (879, 'TELEGRAPH VOYAGE', 'A Fateful Yarn of a Husband And a Dog who must Battle a Waitress in A Jet Boat', 12, 3, 4.99, 148, 20.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (880, 'TELEMARK HEARTBREAKERS', 'A Action-Packed Panorama of a Technical Writer And a Man who must Build a Forensic Psychologist in A Manhattan Penthouse', 2, 6, 2.99, 152, 9.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (881, 'TEMPLE ATTRACTION', 'A Action-Packed Saga of a Forensic Psychologist And a Woman who must Battle a Womanizer in Soviet Georgia', 11, 5, 4.99, 71, 13.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (882, 'TENENBAUMS COMMAND', 'A Taut Display of a Pioneer And a Man who must Reach a Girl in The Gulf of Mexico', 7, 4, 0.99, 99, 24.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (883, 'TEQUILA PAST', 'A Action-Packed Panorama of a Mad Scientist And a Robot who must Challenge a Student in Nigeria', 3, 6, 4.99, 53, 17.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (884, 'TERMINATOR CLUB', 'A Touching Story of a Crocodile And a Girl who must Sink a Man in The Gulf of Mexico', 12, 5, 4.99, 88, 11.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (885, 'TEXAS WATCH', 'A Awe-Inspiring Yarn of a Student And a Teacher who must Fight a Teacher in An Abandoned Amusement Park', 11, 7, 0.99, 179, 22.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (886, 'THEORY MERMAID', 'A Fateful Yarn of a Composer And a Monkey who must Vanquish a Womanizer in The First Manned Space Station', 2, 5, 0.99, 184, 9.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (887, 'THIEF PELICAN', 'A Touching Documentary of a Madman And a Mad Scientist who must Outrace a Feminist in An Abandoned Mine Shaft', 2, 5, 4.99, 135, 28.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (888, 'THIN SAGEBRUSH', 'A Emotional Drama of a Husband And a Lumberjack who must Build a Cat in Ancient India', 6, 5, 4.99, 53, 9.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (889, 'TIES HUNGER', 'A Insightful Saga of a Astronaut And a Explorer who must Pursue a Mad Scientist in A U-Boat', 3, 3, 4.99, 111, 28.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (890, 'TIGHTS DAWN', 'A Thrilling Epistle of a Boat And a Secret Agent who must Face a Boy in A Baloon', 15, 5, 0.99, 172, 14.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (891, 'TIMBERLAND SKY', 'A Boring Display of a Man And a Dog who must Redeem a Girl in A U-Boat', 4, 3, 0.99, 69, 13.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (892, 'TITANIC BOONDOCK', 'A Brilliant Reflection of a Feminist And a Dog who must Fight a Boy in A Baloon Factory', 2, 3, 4.99, 104, 18.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (893, 'TITANS JERK', 'A Unbelieveable Panorama of a Feminist And a Sumo Wrestler who must Challenge a Technical Writer in Ancient China', 14, 4, 4.99, 91, 11.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (894, 'TOMATOES HELLFIGHTERS', 'A Thoughtful Epistle of a Madman And a Astronaut who must Overcome a Monkey in A Shark Tank', 16, 6, 0.99, 68, 23.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (895, 'TOMORROW HUSTLER', 'A Thoughtful Story of a Moose And a Husband who must Face a Secret Agent in The Sahara Desert', 4, 3, 2.99, 142, 21.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (896, 'TOOTSIE PILOT', 'A Awe-Inspiring Documentary of a Womanizer And a Pastry Chef who must Kill a Lumberjack in Berlin', 3, 3, 0.99, 157, 10.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (897, 'TORQUE BOUND', 'A Emotional Display of a Crocodile And a Husband who must Reach a Man in Ancient Japan', 7, 3, 4.99, 179, 27.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (898, 'TOURIST PELICAN', 'A Boring Story of a Butler And a Astronaut who must Outrace a Pioneer in Australia', 15, 4, 4.99, 152, 18.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (899, 'TOWERS HURRICANE', 'A Fateful Display of a Monkey And a Car who must Sink a Husband in A MySQL Convention', 4, 7, 0.99, 144, 14.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (900, 'TOWN ARK', 'A Awe-Inspiring Documentary of a Moose And a Madman who must Meet a Dog in An Abandoned Mine Shaft', 9, 6, 2.99, 136, 17.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (901, 'TRACY CIDER', 'A Touching Reflection of a Database Administrator And a Madman who must Build a Lumberjack in Nigeria', 2, 3, 0.99, 142, 29.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (902, 'TRADING PINOCCHIO', 'A Emotional Character Study of a Student And a Explorer who must Discover a Frisbee in The First Manned Space Station', 15, 6, 4.99, 170, 22.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (903, 'TRAFFIC HOBBIT', 'A Amazing Epistle of a Squirrel And a Lumberjack who must Succumb a Database Administrator in A U-Boat', 16, 5, 4.99, 139, 13.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (904, 'TRAIN BUNCH', 'A Thrilling Character Study of a Robot And a Squirrel who must Face a Dog in Ancient India', 11, 3, 4.99, 71, 26.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (905, 'TRAINSPOTTING STRANGERS', 'A Fast-Paced Drama of a Pioneer And a Mad Cow who must Challenge a Madman in Ancient Japan', 5, 7, 4.99, 132, 10.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (906, 'TRAMP OTHERS', 'A Brilliant Display of a Composer And a Cat who must Succumb a A Shark in Ancient India', 5, 4, 0.99, 171, 27.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (907, 'TRANSLATION SUMMER', 'A Touching Reflection of a Man And a Monkey who must Pursue a Womanizer in A MySQL Convention', 7, 4, 0.99, 168, 10.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (908, 'TRAP GUYS', 'A Unbelieveable Story of a Boy And a Mad Cow who must Challenge a Database Administrator in The Sahara Desert', 9, 3, 4.99, 110, 11.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (909, 'TREASURE COMMAND', 'A Emotional Saga of a Car And a Madman who must Discover a Pioneer in California', 11, 3, 0.99, 102, 28.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (910, 'TREATMENT JEKYLL', 'A Boring Story of a Teacher And a Student who must Outgun a Cat in An Abandoned Mine Shaft', 7, 3, 0.99, 87, 19.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (911, 'TRIP NEWTON', 'A Fanciful Character Study of a Lumberjack And a Car who must Discover a Cat in An Abandoned Amusement Park', 1, 7, 4.99, 64, 14.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (912, 'TROJAN TOMORROW', 'A Astounding Panorama of a Husband And a Sumo Wrestler who must Pursue a Boat in Ancient India', 14, 3, 2.99, 52, 9.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (913, 'TROOPERS METAL', 'A Fanciful Drama of a Monkey And a Feminist who must Sink a Man in Berlin', 13, 3, 0.99, 115, 20.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (914, 'TROUBLE DATE', 'A Lacklusture Panorama of a Forensic Psychologist And a Woman who must Kill a Explorer in Ancient Japan', 16, 6, 2.99, 61, 13.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (915, 'TRUMAN CRAZY', 'A Thrilling Epistle of a Moose And a Boy who must Meet a Database Administrator in A Monastery', 1, 7, 4.99, 92, 9.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (916, 'TURN STAR', 'A Stunning Tale of a Man And a Monkey who must Chase a Student in New Orleans', 2, 3, 2.99, 80, 10.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (917, 'TUXEDO MILE', 'A Boring Drama of a Man And a Forensic Psychologist who must Face a Frisbee in Ancient India', 15, 3, 2.99, 152, 24.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (918, 'TWISTED PIRATES', 'A Touching Display of a Frisbee And a Boat who must Kill a Girl in A MySQL Convention', 3, 4, 4.99, 152, 23.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (919, 'TYCOON GATHERING', 'A Emotional Display of a Husband And a A Shark who must Succumb a Madman in A Manhattan Penthouse', 10, 3, 4.99, 82, 17.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (920, 'UNBREAKABLE KARATE', 'A Amazing Character Study of a Robot And a Student who must Chase a Robot in Australia', 13, 3, 0.99, 62, 16.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (921, 'UNCUT SUICIDES', 'A Intrepid Yarn of a Explorer And a Pastry Chef who must Pursue a Mad Cow in A U-Boat', 12, 7, 2.99, 172, 29.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (922, 'UNDEFEATED DALMATIONS', 'A Unbelieveable Display of a Crocodile And a Feminist who must Overcome a Moose in An Abandoned Amusement Park', 11, 7, 4.99, 107, 22.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (923, 'UNFAITHFUL KILL', 'A Taut Documentary of a Waitress And a Mad Scientist who must Battle a Technical Writer in New Orleans', 7, 7, 2.99, 78, 12.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (924, 'UNFORGIVEN ZOOLANDER', 'A Taut Epistle of a Monkey And a Sumo Wrestler who must Vanquish a A Shark in A Baloon Factory', 14, 7, 0.99, 129, 15.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (925, 'UNITED PILOT', 'A Fast-Paced Reflection of a Cat And a Mad Cow who must Fight a Car in The Sahara Desert', 6, 3, 0.99, 164, 27.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (926, 'UNTOUCHABLES SUNRISE', 'A Amazing Documentary of a Woman And a Astronaut who must Outrace a Teacher in An Abandoned Fun House', 6, 5, 2.99, 120, 11.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (927, 'UPRISING UPTOWN', 'A Fanciful Reflection of a Boy And a Butler who must Pursue a Woman in Berlin', 1, 6, 2.99, 174, 16.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (928, 'UPTOWN YOUNG', 'A Fateful Documentary of a Dog And a Hunter who must Pursue a Teacher in An Abandoned Amusement Park', 3, 5, 2.99, 84, 16.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (929, 'USUAL UNTOUCHABLES', 'A Touching Display of a Explorer And a Lumberjack who must Fight a Forensic Psychologist in A Shark Tank', 9, 5, 4.99, 128, 21.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (930, 'VACATION BOONDOCK', 'A Fanciful Character Study of a Secret Agent And a Mad Scientist who must Reach a Teacher in Australia', 14, 4, 2.99, 145, 23.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (931, 'VALENTINE VANISHING', 'A Thrilling Display of a Husband And a Butler who must Reach a Pastry Chef in California', 16, 7, 0.99, 48, 9.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (932, 'VALLEY PACKER', 'A Astounding Documentary of a Astronaut And a Boy who must Outrace a Sumo Wrestler in Berlin', 5, 3, 0.99, 73, 21.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (933, 'VAMPIRE WHALE', 'A Epic Story of a Lumberjack And a Monkey who must Confront a Pioneer in A MySQL Convention', 13, 4, 4.99, 126, 11.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (934, 'VANILLA DAY', 'A Fast-Paced Saga of a Girl And a Forensic Psychologist who must Redeem a Girl in Nigeria', 10, 7, 4.99, 122, 20.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (935, 'VANISHED GARDEN', 'A Intrepid Character Study of a Squirrel And a A Shark who must Kill a Lumberjack in California', 13, 5, 0.99, 142, 17.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (936, 'VANISHING ROCKY', 'A Brilliant Reflection of a Man And a Woman who must Conquer a Pioneer in A MySQL Convention', 12, 3, 2.99, 123, 21.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (937, 'VARSITY TRIP', 'A Action-Packed Character Study of a Astronaut And a Explorer who must Reach a Monkey in A MySQL Convention', 13, 7, 2.99, 85, 14.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (938, 'VELVET TERMINATOR', 'A Lacklusture Tale of a Pastry Chef And a Technical Writer who must Confront a Crocodile in An Abandoned Amusement Park', 5, 3, 4.99, 173, 14.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (939, 'VERTIGO NORTHWEST', 'A Unbelieveable Display of a Mad Scientist And a Mad Scientist who must Outgun a Mad Cow in Ancient Japan', 5, 4, 2.99, 90, 17.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (940, 'VICTORY ACADEMY', 'A Insightful Epistle of a Mad Scientist And a Explorer who must Challenge a Cat in The Sahara Desert', 15, 6, 0.99, 64, 19.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (941, 'VIDEOTAPE ARSENIC', 'A Lacklusture Display of a Girl And a Astronaut who must Succumb a Student in Australia', 10, 4, 4.99, 145, 10.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (942, 'VIETNAM SMOOCHY', 'A Lacklusture Display of a Butler And a Man who must Sink a Explorer in Soviet Georgia', 7, 7, 0.99, 174, 27.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (943, 'VILLAIN DESPERATE', 'A Boring Yarn of a Pioneer And a Feminist who must Redeem a Cat in An Abandoned Amusement Park', 6, 4, 4.99, 76, 27.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (944, 'VIRGIN DAISY', 'A Awe-Inspiring Documentary of a Robot And a Mad Scientist who must Reach a Database Administrator in A Shark Tank', 7, 6, 4.99, 179, 29.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (945, 'VIRGINIAN PLUTO', 'A Emotional Panorama of a Dentist And a Crocodile who must Meet a Boy in Berlin', 6, 5, 0.99, 164, 22.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (946, 'VIRTUAL SPOILERS', 'A Fateful Tale of a Database Administrator And a Squirrel who must Discover a Student in Soviet Georgia', 8, 3, 4.99, 144, 14.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (947, 'VISION TORQUE', 'A Thoughtful Documentary of a Dog And a Man who must Sink a Man in A Shark Tank', 9, 5, 0.99, 59, 16.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (948, 'VOICE PEACH', 'A Amazing Panorama of a Pioneer And a Student who must Overcome a Mad Scientist in A Manhattan Penthouse', 13, 6, 0.99, 139, 22.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (949, 'VOLCANO TEXAS', 'A Awe-Inspiring Yarn of a Hunter And a Feminist who must Challenge a Dentist in The Outback', 10, 6, 0.99, 157, 27.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (950, 'VOLUME HOUSE', 'A Boring Tale of a Dog And a Woman who must Meet a Dentist in California', 4, 7, 4.99, 132, 12.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (951, 'VOYAGE LEGALLY', 'A Epic Tale of a Squirrel And a Hunter who must Conquer a Boy in An Abandoned Mine Shaft', 4, 6, 0.99, 78, 28.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (952, 'WAGON JAWS', 'A Intrepid Drama of a Moose And a Boat who must Kill a Explorer in A Manhattan Penthouse', 6, 7, 2.99, 152, 17.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (953, 'WAIT CIDER', 'A Intrepid Epistle of a Woman And a Forensic Psychologist who must Succumb a Astronaut in A Manhattan Penthouse', 2, 3, 0.99, 112, 9.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (954, 'WAKE JAWS', 'A Beautiful Saga of a Feminist And a Composer who must Challenge a Moose in Berlin', 13, 7, 4.99, 73, 18.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (955, 'WALLS ARTIST', 'A Insightful Panorama of a Teacher And a Teacher who must Overcome a Mad Cow in An Abandoned Fun House', 3, 7, 4.99, 135, 19.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (956, 'WANDA CHAMBER', 'A Insightful Drama of a A Shark And a Pioneer who must Find a Womanizer in The Outback', 10, 7, 4.99, 107, 23.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (957, 'WAR NOTTING', 'A Boring Drama of a Teacher And a Sumo Wrestler who must Challenge a Secret Agent in The Canadian Rockies', 9, 7, 4.99, 80, 26.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (958, 'WARDROBE PHANTOM', 'A Action-Packed Display of a Mad Cow And a Astronaut who must Kill a Car in Ancient India', 7, 6, 2.99, 178, 19.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (959, 'WARLOCK WEREWOLF', 'A Astounding Yarn of a Pioneer And a Crocodile who must Defeat a A Shark in The Outback', 3, 6, 2.99, 83, 10.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (960, 'WARS PLUTO', 'A Taut Reflection of a Teacher And a Database Administrator who must Chase a Madman in The Sahara Desert', 6, 5, 2.99, 128, 15.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (961, 'WASH HEAVENLY', 'A Awe-Inspiring Reflection of a Cat And a Pioneer who must Escape a Hunter in Ancient China', 9, 7, 4.99, 161, 22.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (962, 'WASTELAND DIVINE', 'A Fanciful Story of a Database Administrator And a Womanizer who must Fight a Database Administrator in Ancient China', 4, 7, 2.99, 85, 18.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (963, 'WATCH TRACY', 'A Fast-Paced Yarn of a Dog And a Frisbee who must Conquer a Hunter in Nigeria', 2, 5, 0.99, 78, 12.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (964, 'WATERFRONT DELIVERANCE', 'A Unbelieveable Documentary of a Dentist And a Technical Writer who must Build a Womanizer in Nigeria', 1, 4, 4.99, 61, 17.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (965, 'WATERSHIP FRONTIER', 'A Emotional Yarn of a Boat And a Crocodile who must Meet a Moose in Soviet Georgia', 11, 6, 0.99, 112, 28.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (966, 'WEDDING APOLLO', 'A Action-Packed Tale of a Student And a Waitress who must Conquer a Lumberjack in An Abandoned Mine Shaft', 6, 3, 0.99, 70, 14.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (967, 'WEEKEND PERSONAL', 'A Fast-Paced Documentary of a Car And a Butler who must Find a Frisbee in A Jet Boat', 14, 5, 2.99, 134, 26.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (968, 'WEREWOLF LOLA', 'A Fanciful Story of a Man And a Sumo Wrestler who must Outrace a Student in A Monastery', 1, 6, 4.99, 79, 19.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (969, 'WEST LION', 'A Intrepid Drama of a Butler And a Lumberjack who must Challenge a Database Administrator in A Manhattan Penthouse', 7, 4, 4.99, 159, 29.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (970, 'WESTWARD SEABISCUIT', 'A Lacklusture Tale of a Butler And a Husband who must Face a Boy in Ancient China', 4, 7, 0.99, 52, 11.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (971, 'WHALE BIKINI', 'A Intrepid Story of a Pastry Chef And a Database Administrator who must Kill a Feminist in A MySQL Convention', 9, 4, 4.99, 109, 11.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (972, 'WHISPERER GIANT', 'A Intrepid Story of a Dentist And a Hunter who must Confront a Monkey in Ancient Japan', 14, 4, 4.99, 59, 24.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (973, 'WIFE TURN', 'A Awe-Inspiring Epistle of a Teacher And a Feminist who must Confront a Pioneer in Ancient Japan', 6, 3, 4.99, 183, 27.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (974, 'WILD APOLLO', 'A Beautiful Story of a Monkey And a Sumo Wrestler who must Conquer a A Shark in A MySQL Convention', 13, 4, 0.99, 181, 24.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (975, 'WILLOW TRACY', 'A Brilliant Panorama of a Boat And a Astronaut who must Challenge a Teacher in A Manhattan Penthouse', 8, 6, 2.99, 137, 22.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (976, 'WIND PHANTOM', 'A Touching Saga of a Madman And a Forensic Psychologist who must Build a Sumo Wrestler in An Abandoned Mine Shaft', 10, 6, 0.99, 111, 12.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (977, 'WINDOW SIDE', 'A Astounding Character Study of a Womanizer And a Hunter who must Escape a Robot in A Monastery', 16, 3, 2.99, 85, 25.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (978, 'WISDOM WORKER', 'A Unbelieveable Saga of a Forensic Psychologist And a Student who must Face a Squirrel in The First Manned Space Station', 5, 3, 0.99, 98, 12.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (979, 'WITCHES PANIC', 'A Awe-Inspiring Drama of a Secret Agent And a Hunter who must Fight a Moose in Nigeria', 7, 6, 4.99, 100, 10.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (980, 'WIZARD COLDBLOODED', 'A Lacklusture Display of a Robot And a Girl who must Defeat a Sumo Wrestler in A MySQL Convention', 12, 4, 4.99, 75, 12.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (981, 'WOLVES DESIRE', 'A Fast-Paced Drama of a Squirrel And a Robot who must Succumb a Technical Writer in A Manhattan Penthouse', 16, 7, 0.99, 55, 13.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (982, 'WOMEN DORADO', 'A Insightful Documentary of a Waitress And a Butler who must Vanquish a Composer in Australia', 1, 4, 0.99, 126, 23.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (983, 'WON DARES', 'A Unbelieveable Documentary of a Teacher And a Monkey who must Defeat a Explorer in A U-Boat', 12, 7, 2.99, 105, 18.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (984, 'WONDERFUL DROP', 'A Boring Panorama of a Woman And a Madman who must Overcome a Butler in A U-Boat', 9, 3, 2.99, 126, 20.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (985, 'WONDERLAND CHRISTMAS', 'A Awe-Inspiring Character Study of a Waitress And a Car who must Pursue a Mad Scientist in The First Manned Space Station', 14, 4, 4.99, 111, 19.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (986, 'WONKA SEA', 'A Brilliant Saga of a Boat And a Mad Scientist who must Meet a Moose in Ancient India', 2, 6, 2.99, 85, 24.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (987, 'WORDS HUNTER', 'A Action-Packed Reflection of a Composer And a Mad Scientist who must Face a Pioneer in A MySQL Convention', 12, 3, 2.99, 116, 13.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (988, 'WORKER TARZAN', 'A Action-Packed Yarn of a Secret Agent And a Technical Writer who must Battle a Sumo Wrestler in The First Manned Space Station', 16, 7, 2.99, 139, 26.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (989, 'WORKING MICROCOSMOS', 'A Stunning Epistle of a Dentist And a Dog who must Kill a Madman in Ancient China', 16, 4, 4.99, 74, 22.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (990, 'WORLD LEATHERNECKS', 'A Unbelieveable Tale of a Pioneer And a Astronaut who must Overcome a Robot in An Abandoned Amusement Park', 11, 3, 0.99, 171, 13.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (991, 'WORST BANGER', 'A Thrilling Drama of a Madman And a Dentist who must Conquer a Boy in The Outback', 1, 4, 2.99, 185, 26.99, 'PG'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (992, 'WRATH MILE', 'A Intrepid Reflection of a Technical Writer And a Hunter who must Defeat a Sumo Wrestler in A Monastery', 6, 5, 0.99, 176, 17.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (993, 'WRONG BEHAVIOR', 'A Emotional Saga of a Crocodile And a Sumo Wrestler who must Discover a Mad Cow in New Orleans', 3, 6, 2.99, 178, 10.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (994, 'WYOMING STORM', 'A Awe-Inspiring Panorama of a Robot And a Boat who must Overcome a Feminist in A U-Boat', 13, 6, 4.99, 100, 29.99, 'PG-13'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (995, 'YENTL IDAHO', 'A Amazing Display of a Robot And a Astronaut who must Fight a Womanizer in Berlin', 11, 5, 4.99, 86, 11.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (996, 'YOUNG LANGUAGE', 'A Unbelieveable Yarn of a Boat And a Database Administrator who must Meet a Boy in The First Manned Space Station', 6, 6, 0.99, 183, 9.99, 'G'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (997, 'YOUTH KICK', 'A Touching Drama of a Teacher And a Cat who must Challenge a Technical Writer in A U-Boat', 12, 4, 0.99, 179, 14.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (998, 'ZHIVAGO CORE', 'A Fateful Yarn of a Composer And a Man who must Face a Boy in The Canadian Rockies', 11, 6, 0.99, 105, 10.99, 'NC-17'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (999, 'ZOOLANDER FICTION', 'A Fateful Reflection of a Waitress And a Boat who must Discover a Sumo Wrestler in Ancient China', 3, 5, 2.99, 101, 28.99, 'R'); INSERT INTO films (id, title, description, category_id, rental_duration, rental_rate, length, replacement_cost, rating) VALUES (1000, 'ZORRO ARK', 'A Intrepid Panorama of a Mad Scientist And a Boy who must Redeem a Boy in A Monastery', 5, 3, 4.99, 50, 18.99, 'NC-17'); -- -- TOC entry 1669 (class 0 OID 60399) -- Dependencies: 1229 -- Data for Name: inventory_items; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO inventory_items (id, film_id, store_id) VALUES (1, 1, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2, 1, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3, 1, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4, 1, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (5, 1, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (6, 1, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (7, 1, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (8, 1, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (9, 2, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (10, 2, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (11, 2, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (12, 3, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (13, 3, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (14, 3, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (15, 3, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (16, 4, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (17, 4, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (18, 4, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (19, 4, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (20, 4, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (21, 4, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (22, 4, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (23, 5, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (24, 5, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (25, 5, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (26, 6, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (27, 6, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (28, 6, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (29, 6, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (30, 6, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (31, 6, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (32, 7, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (33, 7, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (34, 7, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (35, 7, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (36, 7, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (37, 8, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (38, 8, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (39, 8, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (40, 8, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (41, 9, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (42, 9, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (43, 9, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (44, 9, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (45, 9, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (46, 10, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (47, 10, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (48, 10, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (49, 10, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (50, 10, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (51, 10, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (52, 10, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (53, 11, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (54, 11, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (55, 11, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (56, 11, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (57, 11, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (58, 11, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (59, 11, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (60, 12, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (61, 12, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (62, 12, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (63, 12, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (64, 12, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (65, 12, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (66, 12, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (67, 13, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (68, 13, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (69, 13, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (70, 13, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (71, 15, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (72, 15, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (73, 15, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (74, 15, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (75, 15, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (76, 15, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (77, 16, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (78, 16, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (79, 16, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (80, 16, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (81, 17, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (82, 17, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (83, 17, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (84, 17, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (85, 17, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (86, 17, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (87, 18, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (88, 18, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (89, 18, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (90, 18, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (91, 18, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (92, 18, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (93, 19, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (94, 19, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (95, 19, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (96, 19, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (97, 19, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (98, 19, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (99, 20, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (100, 20, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (101, 20, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (102, 21, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (103, 21, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (104, 21, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (105, 21, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (106, 21, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (107, 21, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (108, 22, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (109, 22, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (110, 22, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (111, 22, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (112, 22, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (113, 22, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (114, 22, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (115, 23, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (116, 23, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (117, 23, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (118, 23, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (119, 23, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (120, 24, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (121, 24, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (122, 24, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (123, 24, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (124, 25, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (125, 25, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (126, 25, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (127, 25, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (128, 25, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (129, 25, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (130, 26, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (131, 26, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (132, 26, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (133, 26, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (134, 26, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (135, 27, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (136, 27, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (137, 27, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (138, 27, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (139, 28, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (140, 28, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (141, 28, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (142, 29, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (143, 29, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (144, 30, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (145, 30, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (146, 31, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (147, 31, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (148, 31, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (149, 31, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (150, 31, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (151, 31, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (152, 31, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (153, 31, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (154, 32, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (155, 32, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (156, 34, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (157, 34, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (158, 34, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (159, 34, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (160, 35, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (161, 35, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (162, 35, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (163, 35, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (164, 35, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (165, 35, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (166, 35, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (167, 37, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (168, 37, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (169, 37, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (170, 37, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (171, 37, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (172, 37, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (173, 37, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (174, 39, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (175, 39, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (176, 39, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (177, 39, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (178, 39, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (179, 39, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (180, 39, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (181, 40, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (182, 40, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (183, 40, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (184, 40, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (185, 42, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (186, 42, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (187, 42, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (188, 42, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (189, 43, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (190, 43, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (191, 43, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (192, 43, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (193, 43, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (194, 43, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (195, 43, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (196, 44, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (197, 44, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (198, 44, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (199, 44, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (200, 44, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (201, 45, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (202, 45, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (203, 45, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (204, 45, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (205, 45, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (206, 45, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (207, 46, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (208, 46, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (209, 46, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (210, 47, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (211, 47, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (212, 48, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (213, 48, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (214, 48, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (215, 48, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (216, 49, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (217, 49, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (218, 49, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (219, 49, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (220, 49, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (221, 49, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (222, 50, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (223, 50, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (224, 50, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (225, 50, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (226, 50, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (227, 51, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (228, 51, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (229, 51, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (230, 51, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (231, 51, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (232, 51, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (233, 52, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (234, 52, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (235, 53, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (236, 53, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (237, 54, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (238, 54, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (239, 54, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (240, 54, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (241, 54, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (242, 55, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (243, 55, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (244, 55, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (245, 55, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (246, 55, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (247, 55, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (248, 56, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (249, 56, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (250, 56, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (251, 56, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (252, 56, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (253, 57, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (254, 57, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (255, 57, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (256, 57, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (257, 57, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (258, 57, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (259, 57, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (260, 58, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (261, 58, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (262, 58, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (263, 58, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (264, 59, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (265, 59, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (266, 59, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (267, 59, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (268, 59, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (269, 60, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (270, 60, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (271, 60, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (272, 61, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (273, 61, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (274, 61, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (275, 61, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (276, 61, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (277, 61, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (278, 62, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (279, 62, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (280, 63, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (281, 63, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (282, 63, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (283, 63, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (284, 64, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (285, 64, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (286, 64, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (287, 65, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (288, 65, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (289, 65, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (290, 65, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (291, 66, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (292, 66, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (293, 66, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (294, 67, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (295, 67, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (296, 67, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (297, 67, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (298, 67, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (299, 67, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (300, 68, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (301, 68, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (302, 68, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (303, 68, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (304, 69, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (305, 69, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (306, 69, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (307, 69, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (308, 69, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (309, 69, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (310, 69, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (311, 69, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (312, 70, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (313, 70, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (314, 70, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (315, 70, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (316, 71, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (317, 71, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (318, 71, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (319, 71, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (320, 72, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (321, 72, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (322, 72, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (323, 72, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (324, 72, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (325, 72, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (326, 73, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (327, 73, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (328, 73, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (329, 73, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (330, 73, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (331, 73, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (332, 73, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (333, 73, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (334, 74, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (335, 74, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (336, 74, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (337, 74, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (338, 74, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (339, 75, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (340, 75, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (341, 75, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (342, 76, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (343, 76, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (344, 76, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (345, 77, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (346, 77, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (347, 77, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (348, 77, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (349, 77, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (350, 77, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (351, 78, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (352, 78, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (353, 78, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (354, 78, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (355, 78, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (356, 78, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (357, 78, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (358, 79, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (359, 79, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (360, 79, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (361, 79, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (362, 79, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (363, 79, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (364, 80, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (365, 80, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (366, 80, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (367, 80, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (368, 81, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (369, 81, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (370, 81, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (371, 81, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (372, 82, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (373, 82, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (374, 83, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (375, 83, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (376, 83, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (377, 83, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (378, 83, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (379, 84, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (380, 84, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (381, 84, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (382, 84, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (383, 85, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (384, 85, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (385, 85, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (386, 85, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (387, 86, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (388, 86, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (389, 86, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (390, 86, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (391, 86, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (392, 86, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (393, 86, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (394, 86, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (395, 88, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (396, 88, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (397, 88, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (398, 88, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (399, 89, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (400, 89, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (401, 89, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (402, 89, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (403, 89, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (404, 89, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (405, 90, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (406, 90, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (407, 90, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (408, 90, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (409, 90, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (410, 90, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (411, 91, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (412, 91, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (413, 91, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (414, 91, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (415, 91, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (416, 91, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (417, 91, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (418, 91, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (419, 92, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (420, 92, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (421, 92, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (422, 92, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (423, 93, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (424, 93, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (425, 93, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (426, 94, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (427, 94, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (428, 95, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (429, 95, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (430, 95, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (431, 95, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (432, 95, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (433, 96, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (434, 96, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (435, 96, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (436, 97, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (437, 97, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (438, 97, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (439, 97, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (440, 97, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (441, 97, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (442, 98, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (443, 98, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (444, 98, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (445, 99, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (446, 99, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (447, 99, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (448, 99, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (449, 99, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (450, 99, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (451, 100, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (452, 100, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (453, 100, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (454, 100, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (455, 100, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (456, 100, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (457, 101, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (458, 101, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (459, 101, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (460, 101, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (461, 101, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (462, 101, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (463, 102, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (464, 102, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (465, 103, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (466, 103, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (467, 103, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (468, 103, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (469, 103, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (470, 103, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (471, 103, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (472, 103, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (473, 104, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (474, 104, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (475, 104, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (476, 105, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (477, 105, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (478, 105, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (479, 105, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (480, 105, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (481, 106, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (482, 106, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (483, 107, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (484, 107, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (485, 109, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (486, 109, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (487, 109, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (488, 109, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (489, 109, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (490, 109, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (491, 109, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (492, 109, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (493, 110, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (494, 110, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (495, 110, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (496, 110, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (497, 111, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (498, 111, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (499, 111, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (500, 111, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (501, 112, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (502, 112, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (503, 112, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (504, 112, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (505, 112, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (506, 112, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (507, 112, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (508, 113, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (509, 113, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (510, 113, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (511, 113, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (512, 114, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (513, 114, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (514, 114, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (515, 114, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (516, 114, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (517, 114, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (518, 114, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (519, 115, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (520, 115, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (521, 115, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (522, 115, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (523, 115, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (524, 115, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (525, 115, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (526, 116, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (527, 116, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (528, 116, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (529, 116, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (530, 116, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (531, 116, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (532, 117, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (533, 117, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (534, 117, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (535, 117, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (536, 117, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (537, 117, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (538, 118, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (539, 118, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (540, 118, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (541, 118, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (542, 118, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (543, 118, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (544, 119, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (545, 119, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (546, 119, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (547, 119, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (548, 119, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (549, 119, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (550, 119, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (551, 120, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (552, 120, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (553, 120, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (554, 121, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (555, 121, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (556, 121, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (557, 121, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (558, 121, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (559, 121, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (560, 122, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (561, 122, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (562, 122, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (563, 122, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (564, 122, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (565, 122, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (566, 122, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (567, 123, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (568, 123, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (569, 123, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (570, 123, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (571, 123, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (572, 124, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (573, 124, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (574, 124, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (575, 125, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (576, 125, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (577, 126, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (578, 126, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (579, 126, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (580, 127, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (581, 127, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (582, 127, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (583, 127, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (584, 127, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (585, 127, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (586, 127, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (587, 127, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (588, 129, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (589, 129, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (590, 129, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (591, 129, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (592, 129, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (593, 129, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (594, 130, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (595, 130, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (596, 130, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (597, 130, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (598, 130, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (599, 130, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (600, 131, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (601, 131, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (602, 131, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (603, 131, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (604, 131, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (605, 131, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (606, 132, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (607, 132, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (608, 132, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (609, 132, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (610, 132, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (611, 132, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (612, 133, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (613, 133, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (614, 133, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (615, 133, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (616, 134, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (617, 134, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (618, 134, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (619, 135, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (620, 135, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (621, 135, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (622, 135, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (623, 135, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (624, 135, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (625, 135, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (626, 136, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (627, 136, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (628, 136, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (629, 137, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (630, 137, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (631, 137, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (632, 137, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (633, 138, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (634, 138, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (635, 138, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (636, 138, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (637, 138, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (638, 139, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (639, 139, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (640, 139, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (641, 139, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (642, 139, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (643, 139, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (644, 140, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (645, 140, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (646, 140, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (647, 140, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (648, 140, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (649, 141, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (650, 141, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (651, 141, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (652, 141, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (653, 141, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (654, 142, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (655, 142, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (656, 142, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (657, 142, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (658, 142, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (659, 143, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (660, 143, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (661, 143, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (662, 143, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (663, 143, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (664, 143, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (665, 143, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (666, 145, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (667, 145, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (668, 145, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (669, 146, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (670, 146, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (671, 146, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (672, 147, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (673, 147, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (674, 147, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (675, 147, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (676, 147, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (677, 147, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (678, 149, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (679, 149, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (680, 149, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (681, 149, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (682, 149, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (683, 149, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (684, 150, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (685, 150, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (686, 150, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (687, 150, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (688, 150, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (689, 150, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (690, 151, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (691, 151, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (692, 151, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (693, 151, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (694, 152, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (695, 152, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (696, 152, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (697, 152, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (698, 153, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (699, 153, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (700, 153, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (701, 153, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (702, 154, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (703, 154, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (704, 154, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (705, 154, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (706, 154, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (707, 154, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (708, 154, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (709, 155, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (710, 155, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (711, 155, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (712, 155, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (713, 155, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (714, 156, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (715, 156, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (716, 157, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (717, 157, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (718, 157, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (719, 158, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (720, 158, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (721, 158, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (722, 158, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (723, 158, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (724, 159, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (725, 159, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (726, 159, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (727, 159, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (728, 159, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (729, 159, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (730, 159, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (731, 160, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (732, 160, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (733, 160, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (734, 160, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (735, 160, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (736, 161, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (737, 161, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (738, 162, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (739, 162, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (740, 162, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (741, 162, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (742, 162, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (743, 162, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (744, 162, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (745, 163, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (746, 163, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (747, 163, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (748, 164, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (749, 164, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (750, 164, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (751, 164, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (752, 164, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (753, 165, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (754, 165, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (755, 165, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (756, 165, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (757, 165, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (758, 166, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (759, 166, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (760, 166, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (761, 166, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (762, 166, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (763, 166, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (764, 167, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (765, 167, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (766, 167, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (767, 167, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (768, 167, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (769, 167, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (770, 167, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (771, 168, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (772, 168, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (773, 169, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (774, 169, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (775, 169, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (776, 169, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (777, 170, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (778, 170, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (779, 170, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (780, 170, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (781, 170, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (782, 170, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (783, 172, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (784, 172, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (785, 172, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (786, 172, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (787, 172, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (788, 172, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (789, 172, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (790, 173, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (791, 173, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (792, 173, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (793, 173, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (794, 173, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (795, 174, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (796, 174, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (797, 174, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (798, 174, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (799, 174, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (800, 174, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (801, 174, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (802, 174, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (803, 175, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (804, 175, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (805, 175, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (806, 175, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (807, 175, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (808, 176, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (809, 176, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (810, 176, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (811, 176, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (812, 176, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (813, 176, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (814, 177, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (815, 177, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (816, 177, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (817, 178, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (818, 178, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (819, 179, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (820, 179, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (821, 179, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (822, 179, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (823, 180, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (824, 180, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (825, 181, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (826, 181, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (827, 181, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (828, 181, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (829, 181, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (830, 181, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (831, 181, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (832, 182, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (833, 182, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (834, 183, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (835, 183, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (836, 183, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (837, 183, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (838, 183, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (839, 183, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (840, 184, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (841, 184, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (842, 184, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (843, 184, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (844, 184, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (845, 185, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (846, 185, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (847, 186, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (848, 186, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (849, 186, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (850, 186, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (851, 187, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (852, 187, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (853, 187, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (854, 188, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (855, 188, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (856, 188, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (857, 189, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (858, 189, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (859, 189, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (860, 189, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (861, 189, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (862, 189, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (863, 190, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (864, 190, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (865, 190, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (866, 190, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (867, 191, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (868, 191, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (869, 191, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (870, 191, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (871, 191, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (872, 191, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (873, 193, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (874, 193, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (875, 193, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (876, 193, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (877, 193, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (878, 193, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (879, 193, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (880, 193, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (881, 194, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (882, 194, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (883, 194, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (884, 194, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (885, 196, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (886, 196, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (887, 197, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (888, 197, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (889, 199, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (890, 199, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (891, 199, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (892, 199, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (893, 199, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (894, 199, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (895, 199, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (896, 199, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (897, 200, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (898, 200, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (899, 200, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (900, 200, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (901, 200, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (902, 200, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (903, 200, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (904, 200, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (905, 201, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (906, 201, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (907, 201, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (908, 201, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (909, 202, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (910, 202, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (911, 202, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (912, 203, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (913, 203, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (914, 203, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (915, 203, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (916, 204, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (917, 204, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (918, 204, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (919, 204, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (920, 204, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (921, 204, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (922, 205, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (923, 205, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (924, 205, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (925, 205, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (926, 206, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (927, 206, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (928, 206, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (929, 206, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (930, 206, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (931, 206, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (932, 206, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (933, 206, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (934, 207, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (935, 207, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (936, 207, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (937, 207, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (938, 208, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (939, 208, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (940, 208, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (941, 209, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (942, 209, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (943, 209, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (944, 209, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (945, 210, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (946, 210, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (947, 210, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (948, 211, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (949, 211, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (950, 212, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (951, 212, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (952, 212, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (953, 212, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (954, 212, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (955, 213, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (956, 213, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (957, 213, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (958, 213, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (959, 214, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (960, 214, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (961, 214, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (962, 214, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (963, 215, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (964, 215, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (965, 215, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (966, 215, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (967, 215, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (968, 215, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (969, 216, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (970, 216, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (971, 216, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (972, 216, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (973, 216, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (974, 218, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (975, 218, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (976, 218, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (977, 218, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (978, 218, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (979, 218, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (980, 218, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (981, 219, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (982, 219, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (983, 219, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (984, 219, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (985, 220, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (986, 220, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (987, 220, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (988, 220, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (989, 220, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (990, 220, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (991, 220, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (992, 220, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (993, 222, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (994, 222, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (995, 222, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (996, 222, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (997, 222, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (998, 222, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (999, 223, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1000, 223, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1001, 224, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1002, 224, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1003, 225, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1004, 225, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1005, 225, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1006, 226, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1007, 226, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1008, 226, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1009, 226, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1010, 226, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1011, 227, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1012, 227, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1013, 227, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1014, 227, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1015, 227, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1016, 228, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1017, 228, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1018, 228, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1019, 228, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1020, 228, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1021, 228, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1022, 228, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1023, 229, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1024, 229, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1025, 229, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1026, 229, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1027, 230, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1028, 230, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1029, 231, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1030, 231, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1031, 231, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1032, 231, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1033, 231, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1034, 231, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1035, 231, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1036, 231, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1037, 232, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1038, 232, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1039, 232, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1040, 232, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1041, 232, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1042, 233, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1043, 233, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1044, 233, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1045, 233, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1046, 233, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1047, 233, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1048, 234, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1049, 234, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1050, 234, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1051, 234, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1052, 234, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1053, 234, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1054, 234, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1055, 235, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1056, 235, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1057, 235, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1058, 235, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1059, 235, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1060, 235, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1061, 236, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1062, 236, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1063, 236, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1064, 236, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1065, 237, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1066, 237, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1067, 238, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1068, 238, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1069, 239, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1070, 239, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1071, 239, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1072, 239, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1073, 239, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1074, 239, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1075, 239, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1076, 239, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1077, 240, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1078, 240, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1079, 240, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1080, 241, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1081, 241, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1082, 241, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1083, 241, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1084, 242, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1085, 242, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1086, 242, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1087, 242, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1088, 242, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1089, 243, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1090, 243, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1091, 243, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1092, 243, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1093, 243, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1094, 243, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1095, 244, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1096, 244, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1097, 244, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1098, 244, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1099, 244, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1100, 244, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1101, 244, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1102, 245, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1103, 245, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1104, 245, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1105, 245, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1106, 245, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1107, 245, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1108, 245, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1109, 246, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1110, 246, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1111, 246, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1112, 247, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1113, 247, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1114, 247, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1115, 247, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1116, 247, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1117, 247, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1118, 247, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1119, 248, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1120, 248, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1121, 249, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1122, 249, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1123, 249, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1124, 249, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1125, 249, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1126, 249, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1127, 250, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1128, 250, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1129, 250, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1130, 250, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1131, 251, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1132, 251, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1133, 251, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1134, 251, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1135, 251, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1136, 252, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1137, 252, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1138, 252, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1139, 252, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1140, 252, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1141, 252, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1142, 253, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1143, 253, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1144, 253, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1145, 253, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1146, 253, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1147, 253, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1148, 254, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1149, 254, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1150, 254, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1151, 254, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1152, 254, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1153, 255, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1154, 255, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1155, 255, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1156, 255, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1157, 255, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1158, 255, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1159, 256, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1160, 256, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1161, 256, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1162, 257, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1163, 257, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1164, 257, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1165, 258, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1166, 258, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1167, 258, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1168, 258, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1169, 259, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1170, 259, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1171, 260, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1172, 260, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1173, 260, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1174, 260, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1175, 261, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1176, 261, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1177, 262, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1178, 262, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1179, 263, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1180, 263, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1181, 263, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1182, 263, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1183, 263, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1184, 263, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1185, 263, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1186, 264, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1187, 264, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1188, 265, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1189, 265, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1190, 265, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1191, 265, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1192, 266, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1193, 266, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1194, 266, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1195, 266, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1196, 266, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1197, 266, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1198, 266, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1199, 266, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1200, 267, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1201, 267, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1202, 267, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1203, 267, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1204, 267, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1205, 267, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1206, 268, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1207, 268, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1208, 269, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1209, 269, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1210, 269, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1211, 269, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1212, 269, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1213, 269, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1214, 270, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1215, 270, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1216, 270, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1217, 270, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1218, 270, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1219, 270, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1220, 270, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1221, 271, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1222, 271, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1223, 271, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1224, 271, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1225, 271, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1226, 272, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1227, 272, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1228, 272, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1229, 272, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1230, 273, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1231, 273, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1232, 273, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1233, 273, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1234, 273, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1235, 273, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1236, 273, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1237, 274, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1238, 274, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1239, 274, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1240, 274, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1241, 274, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1242, 274, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1243, 274, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1244, 275, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1245, 275, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1246, 275, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1247, 275, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1248, 275, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1249, 276, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1250, 276, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1251, 276, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1252, 276, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1253, 277, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1254, 277, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1255, 277, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1256, 278, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1257, 278, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1258, 279, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1259, 279, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1260, 280, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1261, 280, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1262, 280, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1263, 280, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1264, 280, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1265, 280, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1266, 281, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1267, 281, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1268, 281, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1269, 281, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1270, 281, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1271, 281, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1272, 282, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1273, 282, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1274, 282, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1275, 282, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1276, 282, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1277, 282, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1278, 283, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1279, 283, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1280, 283, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1281, 284, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1282, 284, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1283, 284, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1284, 284, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1285, 284, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1286, 284, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1287, 284, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1288, 285, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1289, 285, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1290, 285, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1291, 285, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1292, 285, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1293, 285, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1294, 285, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1295, 286, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1296, 286, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1297, 286, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1298, 286, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1299, 286, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1300, 287, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1301, 287, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1302, 287, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1303, 287, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1304, 288, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1305, 288, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1306, 288, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1307, 288, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1308, 288, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1309, 288, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1310, 289, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1311, 289, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1312, 290, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1313, 290, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1314, 290, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1315, 291, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1316, 291, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1317, 291, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1318, 291, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1319, 292, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1320, 292, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1321, 292, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1322, 292, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1323, 292, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1324, 292, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1325, 293, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1326, 293, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1327, 293, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1328, 293, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1329, 293, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1330, 294, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1331, 294, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1332, 294, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1333, 294, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1334, 294, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1335, 295, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1336, 295, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1337, 295, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1338, 295, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1339, 295, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1340, 295, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1341, 295, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1342, 295, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1343, 296, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1344, 296, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1345, 296, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1346, 296, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1347, 297, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1348, 297, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1349, 298, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1350, 298, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1351, 298, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1352, 298, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1353, 298, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1354, 299, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1355, 299, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1356, 299, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1357, 299, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1358, 300, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1359, 300, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1360, 300, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1361, 300, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1362, 300, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1363, 300, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1364, 301, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1365, 301, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1366, 301, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1367, 301, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1368, 301, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1369, 301, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1370, 301, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1371, 301, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1372, 302, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1373, 302, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1374, 302, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1375, 302, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1376, 302, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1377, 302, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1378, 303, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1379, 303, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1380, 303, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1381, 303, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1382, 303, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1383, 303, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1384, 304, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1385, 304, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1386, 304, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1387, 304, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1388, 304, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1389, 304, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1390, 305, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1391, 305, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1392, 305, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1393, 305, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1394, 305, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1395, 305, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1396, 305, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1397, 306, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1398, 306, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1399, 306, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1400, 307, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1401, 307, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1402, 307, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1403, 307, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1404, 307, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1405, 307, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1406, 308, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1407, 308, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1408, 308, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1409, 308, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1410, 309, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1411, 309, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1412, 309, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1413, 309, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1414, 309, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1415, 309, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1416, 310, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1417, 310, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1418, 311, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1419, 311, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1420, 311, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1421, 311, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1422, 311, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1423, 311, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1424, 311, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1425, 312, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1426, 312, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1427, 312, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1428, 313, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1429, 313, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1430, 313, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1431, 313, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1432, 313, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1433, 313, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1434, 314, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1435, 314, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1436, 314, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1437, 314, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1438, 314, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1439, 314, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1440, 315, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1441, 315, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1442, 315, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1443, 316, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1444, 316, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1445, 317, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1446, 317, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1447, 317, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1448, 317, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1449, 317, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1450, 317, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1451, 317, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1452, 319, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1453, 319, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1454, 319, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1455, 319, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1456, 319, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1457, 319, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1458, 319, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1459, 320, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1460, 320, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1461, 320, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1462, 320, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1463, 320, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1464, 320, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1465, 320, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1466, 321, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1467, 321, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1468, 321, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1469, 321, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1470, 322, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1471, 322, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1472, 322, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1473, 322, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1474, 322, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1475, 322, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1476, 323, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1477, 323, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1478, 323, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1479, 323, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1480, 324, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1481, 324, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1482, 324, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1483, 324, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1484, 324, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1485, 326, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1486, 326, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1487, 326, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1488, 326, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1489, 326, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1490, 326, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1491, 327, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1492, 327, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1493, 327, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1494, 327, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1495, 327, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1496, 327, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1497, 328, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1498, 328, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1499, 328, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1500, 328, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1501, 329, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1502, 329, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1503, 329, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1504, 329, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1505, 329, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1506, 329, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1507, 330, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1508, 330, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1509, 330, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1510, 330, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1511, 330, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1512, 330, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1513, 330, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1514, 331, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1515, 331, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1516, 331, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1517, 331, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1518, 331, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1519, 331, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1520, 331, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1521, 331, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1522, 333, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1523, 333, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1524, 333, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1525, 333, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1526, 334, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1527, 334, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1528, 334, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1529, 334, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1530, 334, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1531, 334, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1532, 335, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1533, 335, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1534, 336, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1535, 336, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1536, 336, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1537, 336, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1538, 336, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1539, 337, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1540, 337, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1541, 337, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1542, 337, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1543, 338, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1544, 338, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1545, 338, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1546, 339, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1547, 339, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1548, 339, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1549, 340, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1550, 340, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1551, 341, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1552, 341, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1553, 341, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1554, 341, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1555, 341, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1556, 341, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1557, 341, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1558, 341, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1559, 342, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1560, 342, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1561, 342, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1562, 342, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1563, 343, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1564, 343, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1565, 344, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1566, 344, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1567, 344, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1568, 344, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1569, 344, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1570, 345, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1571, 345, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1572, 345, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1573, 345, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1574, 345, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1575, 346, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1576, 346, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1577, 346, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1578, 346, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1579, 346, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1580, 346, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1581, 347, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1582, 347, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1583, 347, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1584, 347, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1585, 348, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1586, 348, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1587, 348, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1588, 348, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1589, 349, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1590, 349, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1591, 349, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1592, 349, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1593, 349, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1594, 349, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1595, 349, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1596, 350, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1597, 350, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1598, 350, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1599, 350, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1600, 350, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1601, 350, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1602, 350, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1603, 350, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1604, 351, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1605, 351, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1606, 351, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1607, 351, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1608, 351, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1609, 351, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1610, 352, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1611, 352, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1612, 352, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1613, 352, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1614, 353, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1615, 353, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1616, 353, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1617, 353, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1618, 353, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1619, 353, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1620, 354, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1621, 354, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1622, 354, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1623, 354, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1624, 354, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1625, 355, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1626, 355, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1627, 356, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1628, 356, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1629, 356, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1630, 356, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1631, 356, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1632, 356, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1633, 356, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1634, 356, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1635, 357, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1636, 357, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1637, 357, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1638, 357, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1639, 358, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1640, 358, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1641, 358, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1642, 358, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1643, 358, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1644, 358, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1645, 358, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1646, 358, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1647, 360, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1648, 360, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1649, 360, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1650, 360, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1651, 361, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1652, 361, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1653, 361, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1654, 361, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1655, 361, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1656, 361, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1657, 361, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1658, 361, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1659, 362, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1660, 362, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1661, 363, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1662, 363, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1663, 363, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1664, 363, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1665, 363, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1666, 363, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1667, 364, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1668, 364, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1669, 364, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1670, 365, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1671, 365, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1672, 365, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1673, 365, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1674, 366, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1675, 366, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1676, 366, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1677, 366, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1678, 366, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1679, 366, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1680, 366, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1681, 367, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1682, 367, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1683, 367, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1684, 367, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1685, 367, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1686, 367, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1687, 367, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1688, 368, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1689, 368, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1690, 369, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1691, 369, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1692, 369, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1693, 369, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1694, 369, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1695, 369, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1696, 369, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1697, 369, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1698, 370, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1699, 370, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1700, 370, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1701, 370, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1702, 370, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1703, 371, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1704, 371, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1705, 371, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1706, 372, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1707, 372, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1708, 373, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1709, 373, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1710, 373, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1711, 373, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1712, 373, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1713, 374, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1714, 374, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1715, 374, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1716, 374, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1717, 374, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1718, 374, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1719, 374, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1720, 375, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1721, 375, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1722, 376, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1723, 376, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1724, 376, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1725, 376, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1726, 376, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1727, 376, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1728, 376, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1729, 377, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1730, 377, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1731, 377, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1732, 377, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1733, 377, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1734, 377, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1735, 378, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1736, 378, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1737, 378, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1738, 378, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1739, 378, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1740, 378, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1741, 378, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1742, 378, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1743, 379, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1744, 379, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1745, 379, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1746, 379, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1747, 380, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1748, 380, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1749, 380, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1750, 380, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1751, 380, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1752, 381, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1753, 381, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1754, 381, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1755, 381, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1756, 381, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1757, 382, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1758, 382, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1759, 382, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1760, 382, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1761, 382, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1762, 382, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1763, 382, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1764, 382, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1765, 383, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1766, 383, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1767, 383, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1768, 383, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1769, 383, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1770, 384, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1771, 384, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1772, 384, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1773, 385, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1774, 385, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1775, 385, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1776, 385, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1777, 385, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1778, 387, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1779, 387, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1780, 387, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1781, 387, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1782, 387, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1783, 387, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1784, 388, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1785, 388, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1786, 388, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1787, 388, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1788, 388, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1789, 388, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1790, 389, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1791, 389, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1792, 389, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1793, 389, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1794, 390, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1795, 390, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1796, 390, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1797, 391, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1798, 391, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1799, 391, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1800, 391, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1801, 391, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1802, 391, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1803, 391, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1804, 392, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1805, 392, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1806, 392, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1807, 392, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1808, 392, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1809, 392, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1810, 393, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1811, 393, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1812, 394, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1813, 394, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1814, 394, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1815, 394, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1816, 395, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1817, 395, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1818, 395, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1819, 395, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1820, 395, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1821, 395, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1822, 396, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1823, 396, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1824, 396, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1825, 396, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1826, 397, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1827, 397, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1828, 397, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1829, 397, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1830, 397, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1831, 397, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1832, 397, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1833, 398, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1834, 398, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1835, 398, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1836, 398, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1837, 399, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1838, 399, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1839, 400, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1840, 400, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1841, 401, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1842, 401, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1843, 402, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1844, 402, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1845, 402, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1846, 402, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1847, 402, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1848, 402, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1849, 403, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1850, 403, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1851, 403, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1852, 403, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1853, 403, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1854, 403, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1855, 403, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1856, 403, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1857, 405, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1858, 405, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1859, 406, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1860, 406, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1861, 406, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1862, 406, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1863, 406, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1864, 406, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1865, 407, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1866, 407, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1867, 408, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1868, 408, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1869, 408, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1870, 408, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1871, 408, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1872, 408, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1873, 408, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1874, 409, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1875, 409, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1876, 409, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1877, 409, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1878, 409, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1879, 409, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1880, 409, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1881, 410, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1882, 410, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1883, 410, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1884, 410, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1885, 410, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1886, 411, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1887, 411, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1888, 412, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1889, 412, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1890, 412, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1891, 412, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1892, 412, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1893, 412, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1894, 412, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1895, 412, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1896, 413, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1897, 413, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1898, 413, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1899, 414, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1900, 414, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1901, 414, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1902, 414, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1903, 414, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1904, 414, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1905, 415, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1906, 415, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1907, 415, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1908, 415, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1909, 415, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1910, 415, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1911, 416, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1912, 416, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1913, 416, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1914, 416, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1915, 416, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1916, 416, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1917, 417, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1918, 417, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1919, 417, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1920, 417, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1921, 417, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1922, 417, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1923, 418, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1924, 418, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1925, 418, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1926, 418, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1927, 418, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1928, 418, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1929, 418, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1930, 418, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1931, 420, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1932, 420, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1933, 420, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1934, 420, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1935, 420, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1936, 421, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1937, 421, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1938, 421, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1939, 421, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1940, 422, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1941, 422, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1942, 423, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1943, 423, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1944, 423, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1945, 423, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1946, 424, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1947, 424, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1948, 424, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1949, 424, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1950, 424, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1951, 425, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1952, 425, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1953, 426, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1954, 426, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1955, 426, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1956, 427, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1957, 427, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1958, 427, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1959, 427, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1960, 428, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1961, 428, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1962, 428, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1963, 428, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1964, 428, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1965, 428, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1966, 429, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1967, 429, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1968, 429, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1969, 429, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1970, 429, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1971, 429, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1972, 430, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1973, 430, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1974, 430, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1975, 430, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1976, 431, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1977, 431, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1978, 431, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1979, 432, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1980, 432, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1981, 432, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1982, 432, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1983, 432, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1984, 433, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1985, 433, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1986, 433, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1987, 433, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1988, 433, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1989, 433, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1990, 434, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1991, 434, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1992, 434, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1993, 434, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1994, 434, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1995, 434, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1996, 434, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1997, 434, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1998, 435, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (1999, 435, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2000, 436, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2001, 436, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2002, 436, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2003, 436, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2004, 436, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2005, 436, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2006, 437, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2007, 437, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2008, 437, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2009, 437, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2010, 437, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2011, 437, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2012, 438, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2013, 438, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2014, 438, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2015, 438, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2016, 438, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2017, 439, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2018, 439, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2019, 439, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2020, 439, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2021, 439, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2022, 439, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2023, 440, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2024, 440, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2025, 440, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2026, 440, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2027, 441, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2028, 441, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2029, 442, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2030, 442, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2031, 442, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2032, 443, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2033, 443, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2034, 443, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2035, 443, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2036, 443, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2037, 443, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2038, 443, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2039, 444, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2040, 444, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2041, 444, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2042, 444, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2043, 444, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2044, 444, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2045, 444, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2046, 444, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2047, 445, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2048, 445, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2049, 445, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2050, 445, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2051, 445, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2052, 445, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2053, 446, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2054, 446, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2055, 446, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2056, 446, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2057, 447, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2058, 447, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2059, 447, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2060, 447, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2061, 447, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2062, 447, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2063, 447, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2064, 448, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2065, 448, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2066, 448, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2067, 448, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2068, 448, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2069, 449, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2070, 449, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2071, 449, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2072, 449, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2073, 450, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2074, 450, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2075, 450, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2076, 450, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2077, 450, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2078, 450, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2079, 450, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2080, 451, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2081, 451, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2082, 451, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2083, 451, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2084, 451, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2085, 452, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2086, 452, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2087, 452, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2088, 452, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2089, 453, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2090, 453, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2091, 453, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2092, 453, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2093, 453, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2094, 454, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2095, 454, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2096, 455, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2097, 455, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2098, 455, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2099, 455, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2100, 456, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2101, 456, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2102, 456, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2103, 456, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2104, 456, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2105, 456, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2106, 457, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2107, 457, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2108, 457, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2109, 457, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2110, 457, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2111, 457, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2112, 458, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2113, 458, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2114, 458, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2115, 458, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2116, 458, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2117, 458, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2118, 459, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2119, 459, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2120, 460, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2121, 460, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2122, 460, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2123, 460, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2124, 460, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2125, 460, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2126, 460, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2127, 460, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2128, 461, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2129, 461, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2130, 461, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2131, 461, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2132, 461, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2133, 461, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2134, 462, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2135, 462, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2136, 462, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2137, 462, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2138, 462, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2139, 463, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2140, 463, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2141, 463, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2142, 463, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2143, 463, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2144, 464, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2145, 464, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2146, 464, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2147, 464, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2148, 464, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2149, 464, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2150, 464, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2151, 465, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2152, 465, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2153, 465, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2154, 465, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2155, 465, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2156, 466, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2157, 466, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2158, 467, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2159, 467, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2160, 467, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2161, 467, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2162, 467, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2163, 467, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2164, 467, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2165, 468, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2166, 468, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2167, 468, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2168, 468, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2169, 468, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2170, 468, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2171, 468, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2172, 468, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2173, 469, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2174, 469, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2175, 469, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2176, 470, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2177, 470, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2178, 471, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2179, 471, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2180, 471, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2181, 471, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2182, 471, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2183, 471, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2184, 471, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2185, 472, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2186, 472, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2187, 473, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2188, 473, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2189, 473, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2190, 473, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2191, 473, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2192, 474, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2193, 474, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2194, 474, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2195, 474, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2196, 475, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2197, 475, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2198, 476, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2199, 476, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2200, 476, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2201, 476, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2202, 476, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2203, 476, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2204, 476, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2205, 477, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2206, 477, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2207, 477, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2208, 478, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2209, 478, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2210, 478, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2211, 478, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2212, 478, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2213, 479, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2214, 479, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2215, 479, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2216, 479, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2217, 479, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2218, 480, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2219, 480, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2220, 480, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2221, 480, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2222, 481, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2223, 481, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2224, 481, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2225, 481, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2226, 481, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2227, 481, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2228, 482, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2229, 482, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2230, 482, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2231, 483, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2232, 483, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2233, 483, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2234, 483, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2235, 483, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2236, 484, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2237, 484, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2238, 484, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2239, 484, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2240, 484, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2241, 484, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2242, 484, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2243, 485, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2244, 485, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2245, 485, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2246, 486, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2247, 486, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2248, 486, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2249, 486, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2250, 486, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2251, 486, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2252, 487, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2253, 487, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2254, 487, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2255, 488, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2256, 488, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2257, 488, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2258, 488, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2259, 488, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2260, 489, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2261, 489, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2262, 489, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2263, 489, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2264, 489, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2265, 489, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2266, 489, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2267, 489, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2268, 490, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2269, 490, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2270, 491, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2271, 491, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2272, 491, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2273, 491, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2274, 491, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2275, 491, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2276, 492, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2277, 492, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2278, 493, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2279, 493, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2280, 493, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2281, 494, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2282, 494, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2283, 494, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2284, 494, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2285, 494, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2286, 494, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2287, 496, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2288, 496, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2289, 496, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2290, 496, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2291, 496, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2292, 498, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2293, 498, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2294, 499, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2295, 499, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2296, 500, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2297, 500, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2298, 500, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2299, 500, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2300, 500, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2301, 500, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2302, 500, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2303, 500, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2304, 501, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2305, 501, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2306, 501, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2307, 501, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2308, 501, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2309, 502, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2310, 502, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2311, 502, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2312, 502, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2313, 502, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2314, 502, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2315, 502, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2316, 503, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2317, 503, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2318, 503, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2319, 504, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2320, 504, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2321, 504, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2322, 504, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2323, 504, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2324, 504, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2325, 505, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2326, 505, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2327, 505, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2328, 505, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2329, 506, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2330, 506, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2331, 506, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2332, 506, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2333, 506, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2334, 506, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2335, 507, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2336, 507, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2337, 508, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2338, 508, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2339, 508, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2340, 509, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2341, 509, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2342, 509, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2343, 510, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2344, 510, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2345, 510, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2346, 510, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2347, 511, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2348, 511, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2349, 511, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2350, 511, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2351, 511, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2352, 512, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2353, 512, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2354, 512, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2355, 512, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2356, 512, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2357, 512, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2358, 513, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2359, 513, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2360, 514, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2361, 514, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2362, 514, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2363, 514, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2364, 514, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2365, 514, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2366, 515, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2367, 515, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2368, 516, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2369, 516, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2370, 516, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2371, 517, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2372, 517, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2373, 518, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2374, 518, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2375, 518, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2376, 518, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2377, 518, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2378, 518, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2379, 519, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2380, 519, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2381, 519, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2382, 519, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2383, 520, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2384, 520, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2385, 521, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2386, 521, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2387, 521, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2388, 521, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2389, 521, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2390, 521, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2391, 521, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2392, 522, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2393, 522, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2394, 523, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2395, 523, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2396, 524, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2397, 524, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2398, 524, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2399, 524, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2400, 524, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2401, 524, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2402, 525, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2403, 525, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2404, 525, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2405, 525, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2406, 525, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2407, 525, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2408, 525, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2409, 525, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2410, 526, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2411, 526, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2412, 526, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2413, 526, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2414, 527, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2415, 527, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2416, 527, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2417, 527, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2418, 527, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2419, 527, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2420, 528, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2421, 528, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2422, 528, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2423, 529, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2424, 529, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2425, 529, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2426, 529, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2427, 530, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2428, 530, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2429, 530, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2430, 531, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2431, 531, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2432, 531, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2433, 531, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2434, 531, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2435, 531, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2436, 531, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2437, 531, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2438, 532, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2439, 532, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2440, 532, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2441, 532, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2442, 533, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2443, 533, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2444, 533, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2445, 534, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2446, 534, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2447, 534, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2448, 534, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2449, 534, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2450, 535, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2451, 535, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2452, 535, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2453, 535, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2454, 536, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2455, 536, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2456, 536, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2457, 536, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2458, 536, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2459, 537, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2460, 537, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2461, 537, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2462, 538, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2463, 538, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2464, 538, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2465, 539, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2466, 539, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2467, 540, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2468, 540, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2469, 540, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2470, 541, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2471, 541, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2472, 542, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2473, 542, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2474, 542, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2475, 542, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2476, 542, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2477, 542, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2478, 543, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2479, 543, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2480, 544, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2481, 544, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2482, 544, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2483, 544, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2484, 545, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2485, 545, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2486, 545, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2487, 545, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2488, 545, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2489, 545, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2490, 546, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2491, 546, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2492, 546, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2493, 546, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2494, 547, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2495, 547, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2496, 548, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2497, 548, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2498, 549, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2499, 549, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2500, 549, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2501, 549, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2502, 550, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2503, 550, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2504, 550, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2505, 551, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2506, 551, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2507, 551, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2508, 551, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2509, 551, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2510, 551, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2511, 552, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2512, 552, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2513, 552, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2514, 552, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2515, 553, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2516, 553, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2517, 553, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2518, 554, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2519, 554, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2520, 554, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2521, 554, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2522, 554, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2523, 554, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2524, 554, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2525, 555, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2526, 555, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2527, 555, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2528, 555, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2529, 555, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2530, 555, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2531, 555, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2532, 556, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2533, 556, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2534, 556, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2535, 556, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2536, 556, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2537, 556, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2538, 556, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2539, 557, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2540, 557, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2541, 557, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2542, 557, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2543, 557, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2544, 558, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2545, 558, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2546, 559, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2547, 559, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2548, 559, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2549, 559, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2550, 559, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2551, 559, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2552, 559, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2553, 559, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2554, 560, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2555, 560, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2556, 560, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2557, 560, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2558, 560, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2559, 561, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2560, 561, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2561, 561, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2562, 561, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2563, 562, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2564, 562, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2565, 562, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2566, 562, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2567, 562, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2568, 562, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2569, 563, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2570, 563, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2571, 563, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2572, 563, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2573, 563, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2574, 563, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2575, 563, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2576, 564, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2577, 564, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2578, 564, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2579, 565, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2580, 565, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2581, 566, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2582, 566, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2583, 567, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2584, 567, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2585, 567, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2586, 567, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2587, 568, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2588, 568, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2589, 568, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2590, 568, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2591, 569, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2592, 569, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2593, 570, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2594, 570, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2595, 570, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2596, 570, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2597, 570, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2598, 571, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2599, 571, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2600, 571, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2601, 571, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2602, 571, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2603, 571, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2604, 572, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2605, 572, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2606, 572, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2607, 572, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2608, 572, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2609, 572, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2610, 572, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2611, 572, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2612, 573, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2613, 573, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2614, 573, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2615, 573, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2616, 574, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2617, 574, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2618, 574, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2619, 574, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2620, 574, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2621, 575, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2622, 575, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2623, 575, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2624, 575, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2625, 575, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2626, 575, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2627, 576, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2628, 576, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2629, 576, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2630, 577, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2631, 577, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2632, 577, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2633, 578, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2634, 578, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2635, 578, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2636, 578, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2637, 578, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2638, 579, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2639, 579, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2640, 579, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2641, 579, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2642, 579, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2643, 579, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2644, 579, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2645, 580, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2646, 580, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2647, 580, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2648, 580, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2649, 580, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2650, 580, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2651, 581, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2652, 581, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2653, 581, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2654, 582, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2655, 582, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2656, 583, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2657, 583, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2658, 583, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2659, 583, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2660, 583, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2661, 584, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2662, 584, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2663, 585, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2664, 585, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2665, 585, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2666, 585, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2667, 586, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2668, 586, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2669, 586, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2670, 586, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2671, 586, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2672, 586, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2673, 586, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2674, 586, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2675, 587, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2676, 587, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2677, 587, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2678, 588, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2679, 588, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2680, 588, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2681, 588, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2682, 589, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2683, 589, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2684, 589, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2685, 589, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2686, 590, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2687, 590, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2688, 590, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2689, 590, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2690, 590, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2691, 590, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2692, 590, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2693, 591, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2694, 591, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2695, 591, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2696, 592, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2697, 592, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2698, 592, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2699, 592, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2700, 593, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2701, 593, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2702, 593, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2703, 593, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2704, 594, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2705, 594, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2706, 594, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2707, 595, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2708, 595, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2709, 595, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2710, 595, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2711, 595, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2712, 595, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2713, 595, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2714, 595, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2715, 596, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2716, 596, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2717, 596, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2718, 596, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2719, 596, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2720, 596, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2721, 597, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2722, 597, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2723, 597, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2724, 597, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2725, 598, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2726, 598, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2727, 598, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2728, 598, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2729, 599, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2730, 599, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2731, 599, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2732, 599, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2733, 599, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2734, 600, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2735, 600, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2736, 600, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2737, 600, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2738, 601, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2739, 601, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2740, 601, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2741, 601, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2742, 601, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2743, 602, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2744, 602, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2745, 602, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2746, 602, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2747, 602, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2748, 603, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2749, 603, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2750, 603, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2751, 603, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2752, 603, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2753, 603, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2754, 604, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2755, 604, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2756, 604, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2757, 605, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2758, 605, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2759, 606, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2760, 606, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2761, 606, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2762, 606, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2763, 606, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2764, 606, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2765, 608, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2766, 608, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2767, 608, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2768, 608, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2769, 608, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2770, 608, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2771, 609, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2772, 609, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2773, 609, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2774, 609, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2775, 609, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2776, 609, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2777, 609, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2778, 609, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2779, 610, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2780, 610, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2781, 610, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2782, 610, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2783, 610, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2784, 611, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2785, 611, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2786, 611, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2787, 611, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2788, 611, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2789, 611, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2790, 612, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2791, 612, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2792, 613, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2793, 613, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2794, 614, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2795, 614, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2796, 614, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2797, 614, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2798, 614, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2799, 614, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2800, 615, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2801, 615, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2802, 615, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2803, 615, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2804, 616, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2805, 616, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2806, 616, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2807, 616, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2808, 616, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2809, 616, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2810, 617, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2811, 617, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2812, 617, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2813, 618, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2814, 618, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2815, 618, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2816, 618, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2817, 619, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2818, 619, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2819, 619, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2820, 619, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2821, 619, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2822, 619, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2823, 620, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2824, 620, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2825, 620, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2826, 620, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2827, 620, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2828, 621, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2829, 621, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2830, 621, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2831, 621, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2832, 621, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2833, 621, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2834, 621, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2835, 621, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2836, 622, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2837, 622, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2838, 623, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2839, 623, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2840, 623, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2841, 623, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2842, 623, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2843, 624, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2844, 624, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2845, 624, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2846, 624, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2847, 624, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2848, 624, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2849, 624, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2850, 625, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2851, 625, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2852, 625, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2853, 625, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2854, 625, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2855, 625, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2856, 625, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2857, 626, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2858, 626, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2859, 626, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2860, 626, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2861, 627, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2862, 627, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2863, 627, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2864, 628, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2865, 628, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2866, 628, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2867, 628, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2868, 628, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2869, 629, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2870, 629, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2871, 629, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2872, 629, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2873, 630, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2874, 630, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2875, 630, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2876, 631, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2877, 631, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2878, 631, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2879, 631, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2880, 631, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2881, 632, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2882, 632, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2883, 632, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2884, 633, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2885, 633, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2886, 633, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2887, 634, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2888, 634, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2889, 634, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2890, 634, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2891, 635, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2892, 635, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2893, 636, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2894, 636, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2895, 636, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2896, 637, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2897, 637, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2898, 637, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2899, 637, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2900, 637, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2901, 638, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2902, 638, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2903, 638, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2904, 638, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2905, 638, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2906, 638, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2907, 638, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2908, 638, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2909, 639, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2910, 639, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2911, 639, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2912, 640, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2913, 640, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2914, 640, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2915, 641, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2916, 641, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2917, 641, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2918, 641, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2919, 641, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2920, 641, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2921, 641, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2922, 643, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2923, 643, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2924, 643, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2925, 643, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2926, 643, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2927, 643, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2928, 644, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2929, 644, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2930, 644, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2931, 644, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2932, 644, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2933, 644, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2934, 644, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2935, 645, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2936, 645, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2937, 645, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2938, 645, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2939, 645, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2940, 645, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2941, 646, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2942, 646, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2943, 646, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2944, 646, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2945, 646, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2946, 647, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2947, 647, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2948, 647, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2949, 647, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2950, 647, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2951, 647, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2952, 648, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2953, 648, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2954, 648, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2955, 648, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2956, 648, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2957, 648, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2958, 649, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2959, 649, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2960, 649, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2961, 649, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2962, 649, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2963, 649, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2964, 650, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2965, 650, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2966, 650, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2967, 650, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2968, 650, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2969, 650, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2970, 651, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2971, 651, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2972, 651, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2973, 651, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2974, 651, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2975, 651, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2976, 652, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2977, 652, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2978, 652, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2979, 652, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2980, 653, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2981, 653, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2982, 654, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2983, 654, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2984, 654, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2985, 654, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2986, 655, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2987, 655, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2988, 655, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2989, 655, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2990, 655, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2991, 655, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2992, 656, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2993, 656, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2994, 657, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2995, 657, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2996, 657, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2997, 657, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2998, 657, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (2999, 657, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3000, 658, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3001, 658, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3002, 658, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3003, 658, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3004, 659, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3005, 659, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3006, 660, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3007, 660, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3008, 660, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3009, 660, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3010, 661, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3011, 661, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3012, 661, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3013, 661, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3014, 662, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3015, 662, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3016, 662, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3017, 662, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3018, 663, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3019, 663, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3020, 663, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3021, 663, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3022, 663, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3023, 664, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3024, 664, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3025, 664, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3026, 664, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3027, 664, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3028, 665, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3029, 665, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3030, 665, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3031, 665, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3032, 665, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3033, 665, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3034, 665, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3035, 666, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3036, 666, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3037, 666, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3038, 666, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3039, 666, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3040, 667, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3041, 667, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3042, 667, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3043, 667, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3044, 668, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3045, 668, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3046, 668, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3047, 668, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3048, 668, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3049, 670, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3050, 670, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3051, 670, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3052, 670, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3053, 670, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3054, 670, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3055, 670, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3056, 672, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3057, 672, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3058, 672, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3059, 672, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3060, 672, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3061, 672, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3062, 673, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3063, 673, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3064, 673, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3065, 673, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3066, 674, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3067, 674, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3068, 674, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3069, 675, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3070, 675, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3071, 676, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3072, 676, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3073, 676, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3074, 676, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3075, 676, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3076, 676, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3077, 677, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3078, 677, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3079, 677, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3080, 677, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3081, 677, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3082, 677, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3083, 677, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3084, 678, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3085, 678, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3086, 678, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3087, 678, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3088, 679, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3089, 679, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3090, 679, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3091, 679, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3092, 680, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3093, 680, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3094, 680, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3095, 680, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3096, 680, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3097, 680, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3098, 681, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3099, 681, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3100, 681, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3101, 681, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3102, 681, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3103, 681, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3104, 682, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3105, 682, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3106, 682, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3107, 683, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3108, 683, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3109, 683, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3110, 683, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3111, 683, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3112, 683, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3113, 683, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3114, 683, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3115, 684, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3116, 684, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3117, 685, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3118, 685, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3119, 686, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3120, 686, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3121, 686, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3122, 686, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3123, 687, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3124, 687, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3125, 687, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3126, 687, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3127, 687, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3128, 687, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3129, 687, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3130, 688, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3131, 688, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3132, 688, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3133, 688, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3134, 689, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3135, 689, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3136, 689, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3137, 689, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3138, 689, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3139, 689, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3140, 690, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3141, 690, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3142, 690, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3143, 690, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3144, 690, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3145, 690, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3146, 691, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3147, 691, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3148, 691, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3149, 691, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3150, 691, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3151, 692, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3152, 692, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3153, 692, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3154, 693, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3155, 693, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3156, 693, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3157, 693, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3158, 693, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3159, 694, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3160, 694, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3161, 694, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3162, 694, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3163, 694, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3164, 694, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3165, 695, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3166, 695, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3167, 696, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3168, 696, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3169, 696, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3170, 696, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3171, 696, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3172, 697, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3173, 697, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3174, 697, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3175, 697, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3176, 697, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3177, 697, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3178, 697, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3179, 697, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3180, 698, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3181, 698, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3182, 698, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3183, 698, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3184, 698, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3185, 698, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3186, 698, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3187, 699, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3188, 699, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3189, 700, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3190, 700, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3191, 700, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3192, 702, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3193, 702, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3194, 702, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3195, 702, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3196, 702, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3197, 702, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3198, 702, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3199, 702, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3200, 703, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3201, 703, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3202, 704, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3203, 704, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3204, 704, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3205, 704, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3206, 704, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3207, 705, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3208, 705, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3209, 705, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3210, 705, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3211, 706, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3212, 706, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3213, 706, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3214, 706, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3215, 706, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3216, 706, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3217, 707, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3218, 707, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3219, 707, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3220, 707, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3221, 707, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3222, 707, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3223, 708, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3224, 708, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3225, 708, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3226, 708, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3227, 709, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3228, 709, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3229, 709, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3230, 709, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3231, 709, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3232, 709, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3233, 710, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3234, 710, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3235, 710, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3236, 710, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3237, 710, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3238, 710, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3239, 711, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3240, 711, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3241, 711, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3242, 711, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3243, 714, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3244, 714, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3245, 714, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3246, 715, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3247, 715, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3248, 715, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3249, 715, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3250, 715, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3251, 715, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3252, 715, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3253, 716, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3254, 716, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3255, 716, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3256, 716, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3257, 716, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3258, 717, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3259, 717, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3260, 717, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3261, 717, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3262, 718, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3263, 718, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3264, 719, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3265, 719, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3266, 720, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3267, 720, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3268, 720, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3269, 720, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3270, 720, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3271, 720, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3272, 720, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3273, 721, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3274, 721, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3275, 722, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3276, 722, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3277, 722, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3278, 722, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3279, 723, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3280, 723, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3281, 723, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3282, 723, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3283, 723, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3284, 723, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3285, 723, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3286, 724, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3287, 724, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3288, 724, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3289, 724, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3290, 724, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3291, 724, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3292, 725, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3293, 725, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3294, 725, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3295, 725, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3296, 725, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3297, 725, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3298, 726, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3299, 726, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3300, 726, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3301, 727, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3302, 727, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3303, 727, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3304, 727, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3305, 727, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3306, 728, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3307, 728, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3308, 728, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3309, 728, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3310, 728, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3311, 729, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3312, 729, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3313, 729, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3314, 729, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3315, 730, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3316, 730, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3317, 730, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3318, 730, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3319, 730, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3320, 730, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3321, 730, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3322, 730, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3323, 731, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3324, 731, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3325, 731, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3326, 732, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3327, 732, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3328, 732, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3329, 732, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3330, 733, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3331, 733, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3332, 733, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3333, 733, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3334, 733, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3335, 733, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3336, 733, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3337, 734, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3338, 734, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3339, 734, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3340, 734, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3341, 734, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3342, 734, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3343, 735, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3344, 735, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3345, 735, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3346, 735, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3347, 735, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3348, 735, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3349, 735, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3350, 736, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3351, 736, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3352, 736, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3353, 736, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3354, 737, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3355, 737, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3356, 737, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3357, 737, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3358, 737, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3359, 737, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3360, 738, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3361, 738, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3362, 738, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3363, 738, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3364, 738, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3365, 738, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3366, 738, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3367, 738, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3368, 739, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3369, 739, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3370, 739, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3371, 739, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3372, 739, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3373, 740, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3374, 740, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3375, 740, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3376, 741, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3377, 741, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3378, 741, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3379, 741, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3380, 741, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3381, 741, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3382, 743, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3383, 743, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3384, 743, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3385, 743, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3386, 743, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3387, 743, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3388, 744, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3389, 744, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3390, 744, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3391, 744, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3392, 744, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3393, 745, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3394, 745, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3395, 745, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3396, 745, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3397, 745, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3398, 745, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3399, 745, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3400, 745, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3401, 746, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3402, 746, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3403, 746, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3404, 746, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3405, 746, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3406, 747, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3407, 747, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3408, 747, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3409, 747, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3410, 747, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3411, 748, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3412, 748, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3413, 748, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3414, 748, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3415, 748, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3416, 748, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3417, 748, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3418, 748, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3419, 749, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3420, 749, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3421, 749, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3422, 749, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3423, 750, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3424, 750, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3425, 750, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3426, 751, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3427, 751, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3428, 752, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3429, 752, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3430, 752, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3431, 753, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3432, 753, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3433, 753, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3434, 753, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3435, 753, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3436, 753, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3437, 753, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3438, 753, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3439, 754, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3440, 754, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3441, 755, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3442, 755, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3443, 755, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3444, 755, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3445, 755, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3446, 755, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3447, 755, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3448, 756, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3449, 756, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3450, 756, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3451, 757, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3452, 757, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3453, 757, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3454, 757, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3455, 757, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3456, 758, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3457, 758, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3458, 758, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3459, 759, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3460, 759, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3461, 759, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3462, 759, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3463, 759, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3464, 759, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3465, 760, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3466, 760, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3467, 760, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3468, 760, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3469, 760, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3470, 760, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3471, 760, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3472, 761, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3473, 761, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3474, 761, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3475, 762, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3476, 762, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3477, 762, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3478, 762, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3479, 763, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3480, 763, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3481, 763, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3482, 763, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3483, 763, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3484, 764, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3485, 764, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3486, 764, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3487, 764, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3488, 764, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3489, 764, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3490, 764, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3491, 764, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3492, 765, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3493, 765, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3494, 765, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3495, 765, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3496, 766, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3497, 766, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3498, 766, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3499, 767, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3500, 767, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3501, 767, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3502, 767, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3503, 767, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3504, 767, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3505, 767, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3506, 767, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3507, 768, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3508, 768, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3509, 768, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3510, 768, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3511, 768, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3512, 768, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3513, 769, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3514, 769, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3515, 770, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3516, 770, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3517, 770, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3518, 771, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3519, 771, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3520, 771, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3521, 771, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3522, 771, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3523, 771, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3524, 771, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3525, 772, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3526, 772, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3527, 772, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3528, 772, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3529, 772, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3530, 772, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3531, 773, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3532, 773, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3533, 773, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3534, 773, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3535, 773, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3536, 773, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3537, 773, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3538, 773, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3539, 774, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3540, 774, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3541, 774, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3542, 774, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3543, 775, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3544, 775, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3545, 775, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3546, 775, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3547, 775, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3548, 776, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3549, 776, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3550, 776, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3551, 776, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3552, 776, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3553, 777, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3554, 777, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3555, 777, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3556, 777, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3557, 777, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3558, 777, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3559, 778, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3560, 778, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3561, 778, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3562, 778, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3563, 778, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3564, 778, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3565, 779, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3566, 779, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3567, 780, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3568, 780, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3569, 780, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3570, 781, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3571, 781, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3572, 782, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3573, 782, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3574, 782, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3575, 782, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3576, 782, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3577, 782, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3578, 783, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3579, 783, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3580, 783, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3581, 783, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3582, 784, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3583, 784, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3584, 784, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3585, 784, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3586, 784, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3587, 784, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3588, 785, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3589, 785, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3590, 785, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3591, 785, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3592, 785, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3593, 785, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3594, 786, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3595, 786, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3596, 786, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3597, 786, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3598, 786, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3599, 786, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3600, 786, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3601, 787, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3602, 787, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3603, 787, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3604, 788, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3605, 788, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3606, 788, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3607, 788, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3608, 789, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3609, 789, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3610, 789, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3611, 789, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3612, 789, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3613, 789, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3614, 789, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3615, 789, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3616, 790, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3617, 790, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3618, 790, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3619, 790, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3620, 790, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3621, 790, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3622, 790, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3623, 791, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3624, 791, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3625, 791, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3626, 791, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3627, 791, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3628, 791, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3629, 792, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3630, 792, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3631, 792, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3632, 793, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3633, 793, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3634, 793, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3635, 793, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3636, 794, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3637, 794, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3638, 794, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3639, 794, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3640, 795, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3641, 795, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3642, 795, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3643, 795, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3644, 796, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3645, 796, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3646, 796, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3647, 796, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3648, 796, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3649, 797, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3650, 797, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3651, 797, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3652, 797, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3653, 797, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3654, 798, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3655, 798, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3656, 798, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3657, 798, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3658, 799, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3659, 799, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3660, 800, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3661, 800, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3662, 800, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3663, 800, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3664, 800, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3665, 800, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3666, 803, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3667, 803, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3668, 803, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3669, 803, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3670, 803, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3671, 803, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3672, 804, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3673, 804, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3674, 804, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3675, 804, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3676, 804, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3677, 804, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3678, 804, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3679, 805, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3680, 805, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3681, 805, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3682, 805, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3683, 805, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3684, 806, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3685, 806, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3686, 806, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3687, 806, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3688, 806, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3689, 807, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3690, 807, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3691, 807, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3692, 807, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3693, 807, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3694, 808, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3695, 808, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3696, 809, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3697, 809, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3698, 809, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3699, 809, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3700, 810, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3701, 810, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3702, 810, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3703, 810, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3704, 810, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3705, 810, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3706, 810, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3707, 811, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3708, 811, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3709, 811, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3710, 812, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3711, 812, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3712, 812, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3713, 812, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3714, 812, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3715, 812, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3716, 813, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3717, 813, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3718, 813, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3719, 813, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3720, 814, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3721, 814, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3722, 814, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3723, 814, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3724, 814, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3725, 814, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3726, 814, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3727, 815, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3728, 815, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3729, 815, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3730, 816, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3731, 816, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3732, 816, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3733, 816, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3734, 816, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3735, 816, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3736, 816, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3737, 817, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3738, 817, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3739, 818, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3740, 818, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3741, 818, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3742, 818, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3743, 818, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3744, 819, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3745, 819, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3746, 819, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3747, 820, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3748, 820, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3749, 820, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3750, 820, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3751, 820, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3752, 820, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3753, 821, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3754, 821, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3755, 821, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3756, 821, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3757, 822, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3758, 822, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3759, 823, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3760, 823, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3761, 823, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3762, 823, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3763, 823, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3764, 823, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3765, 823, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3766, 824, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3767, 824, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3768, 824, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3769, 824, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3770, 825, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3771, 825, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3772, 825, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3773, 826, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3774, 826, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3775, 827, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3776, 827, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3777, 827, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3778, 827, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3779, 827, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3780, 827, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3781, 828, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3782, 828, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3783, 828, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3784, 828, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3785, 829, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3786, 829, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3787, 829, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3788, 829, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3789, 829, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3790, 830, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3791, 830, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3792, 830, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3793, 830, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3794, 831, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3795, 831, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3796, 831, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3797, 832, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3798, 832, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3799, 832, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3800, 832, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3801, 833, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3802, 833, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3803, 833, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3804, 833, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3805, 833, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3806, 833, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3807, 833, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3808, 834, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3809, 834, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3810, 834, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3811, 835, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3812, 835, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3813, 835, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3814, 835, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3815, 835, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3816, 835, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3817, 835, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3818, 835, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3819, 836, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3820, 836, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3821, 836, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3822, 837, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3823, 837, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3824, 837, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3825, 838, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3826, 838, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3827, 838, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3828, 838, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3829, 838, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3830, 838, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3831, 839, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3832, 839, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3833, 840, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3834, 840, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3835, 840, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3836, 840, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3837, 841, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3838, 841, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3839, 841, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3840, 841, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3841, 841, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3842, 841, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3843, 841, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3844, 842, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3845, 842, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3846, 842, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3847, 842, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3848, 843, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3849, 843, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3850, 843, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3851, 843, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3852, 843, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3853, 843, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3854, 843, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3855, 844, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3856, 844, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3857, 844, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3858, 844, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3859, 845, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3860, 845, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3861, 845, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3862, 845, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3863, 845, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3864, 845, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3865, 845, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3866, 846, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3867, 846, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3868, 846, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3869, 846, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3870, 846, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3871, 846, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3872, 846, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3873, 846, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3874, 847, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3875, 847, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3876, 847, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3877, 847, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3878, 848, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3879, 848, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3880, 848, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3881, 849, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3882, 849, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3883, 849, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3884, 849, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3885, 849, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3886, 849, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3887, 849, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3888, 849, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3889, 850, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3890, 850, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3891, 850, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3892, 850, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3893, 850, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3894, 850, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3895, 850, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3896, 851, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3897, 851, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3898, 851, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3899, 851, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3900, 851, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3901, 851, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3902, 852, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3903, 852, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3904, 852, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3905, 852, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3906, 852, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3907, 852, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3908, 852, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3909, 853, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3910, 853, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3911, 853, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3912, 854, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3913, 854, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3914, 854, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3915, 854, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3916, 855, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3917, 855, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3918, 855, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3919, 855, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3920, 856, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3921, 856, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3922, 856, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3923, 856, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3924, 856, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3925, 856, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3926, 856, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3927, 856, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3928, 857, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3929, 857, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3930, 857, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3931, 857, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3932, 857, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3933, 857, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3934, 857, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3935, 858, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3936, 858, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3937, 858, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3938, 858, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3939, 859, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3940, 859, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3941, 859, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3942, 859, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3943, 859, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3944, 859, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3945, 861, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3946, 861, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3947, 861, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3948, 861, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3949, 861, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3950, 861, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3951, 862, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3952, 862, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3953, 862, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3954, 862, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3955, 862, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3956, 863, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3957, 863, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3958, 863, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3959, 863, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3960, 863, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3961, 863, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3962, 863, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3963, 864, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3964, 864, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3965, 864, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3966, 864, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3967, 864, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3968, 864, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3969, 865, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3970, 865, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3971, 865, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3972, 865, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3973, 865, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3974, 865, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3975, 866, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3976, 866, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3977, 867, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3978, 867, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3979, 867, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3980, 867, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3981, 868, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3982, 868, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3983, 868, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3984, 869, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3985, 869, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3986, 869, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3987, 869, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3988, 869, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3989, 869, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3990, 869, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3991, 870, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3992, 870, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3993, 870, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3994, 870, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3995, 870, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3996, 870, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3997, 870, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3998, 870, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (3999, 871, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4000, 871, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4001, 871, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4002, 871, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4003, 871, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4004, 872, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4005, 872, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4006, 872, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4007, 873, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4008, 873, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4009, 873, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4010, 873, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4011, 873, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4012, 873, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4013, 873, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4014, 873, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4015, 875, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4016, 875, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4017, 875, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4018, 875, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4019, 875, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4020, 875, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4021, 875, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4022, 876, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4023, 876, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4024, 877, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4025, 877, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4026, 877, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4027, 877, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4028, 877, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4029, 878, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4030, 878, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4031, 878, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4032, 878, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4033, 879, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4034, 879, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4035, 879, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4036, 879, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4037, 879, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4038, 879, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4039, 879, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4040, 880, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4041, 880, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4042, 880, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4043, 880, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4044, 880, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4045, 880, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4046, 880, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4047, 880, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4048, 881, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4049, 881, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4050, 881, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4051, 881, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4052, 882, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4053, 882, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4054, 882, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4055, 882, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4056, 883, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4057, 883, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4058, 884, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4059, 884, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4060, 884, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4061, 885, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4062, 885, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4063, 886, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4064, 886, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4065, 886, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4066, 886, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4067, 887, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4068, 887, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4069, 887, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4070, 887, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4071, 887, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4072, 887, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4073, 888, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4074, 888, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4075, 888, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4076, 888, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4077, 889, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4078, 889, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4079, 889, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4080, 890, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4081, 890, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4082, 890, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4083, 890, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4084, 890, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4085, 890, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4086, 890, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4087, 891, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4088, 891, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4089, 891, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4090, 891, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4091, 891, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4092, 891, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4093, 891, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4094, 892, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4095, 892, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4096, 892, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4097, 892, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4098, 892, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4099, 892, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4100, 892, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4101, 893, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4102, 893, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4103, 893, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4104, 893, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4105, 893, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4106, 893, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4107, 893, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4108, 893, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4109, 894, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4110, 894, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4111, 894, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4112, 894, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4113, 894, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4114, 895, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4115, 895, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4116, 895, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4117, 895, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4118, 895, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4119, 895, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4120, 895, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4121, 896, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4122, 896, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4123, 896, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4124, 896, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4125, 897, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4126, 897, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4127, 897, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4128, 897, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4129, 897, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4130, 897, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4131, 897, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4132, 897, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4133, 898, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4134, 898, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4135, 898, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4136, 898, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4137, 898, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4138, 899, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4139, 899, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4140, 899, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4141, 900, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4142, 900, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4143, 900, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4144, 900, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4145, 901, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4146, 901, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4147, 901, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4148, 901, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4149, 901, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4150, 901, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4151, 901, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4152, 902, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4153, 902, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4154, 902, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4155, 902, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4156, 902, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4157, 902, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4158, 902, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4159, 903, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4160, 903, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4161, 904, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4162, 904, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4163, 905, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4164, 905, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4165, 905, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4166, 906, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4167, 906, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4168, 906, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4169, 906, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4170, 906, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4171, 907, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4172, 907, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4173, 907, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4174, 907, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4175, 908, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4176, 908, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4177, 908, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4178, 908, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4179, 910, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4180, 910, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4181, 911, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4182, 911, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4183, 911, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4184, 911, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4185, 911, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4186, 911, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4187, 911, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4188, 911, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4189, 912, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4190, 912, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4191, 912, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4192, 912, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4193, 912, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4194, 912, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4195, 913, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4196, 913, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4197, 913, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4198, 913, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4199, 913, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4200, 913, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4201, 914, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4202, 914, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4203, 914, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4204, 914, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4205, 914, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4206, 914, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4207, 915, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4208, 915, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4209, 915, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4210, 915, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4211, 915, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4212, 915, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4213, 916, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4214, 916, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4215, 916, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4216, 916, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4217, 917, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4218, 917, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4219, 917, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4220, 917, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4221, 917, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4222, 918, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4223, 918, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4224, 918, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4225, 918, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4226, 919, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4227, 919, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4228, 919, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4229, 919, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4230, 920, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4231, 920, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4232, 920, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4233, 920, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4234, 920, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4235, 921, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4236, 921, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4237, 921, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4238, 921, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4239, 922, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4240, 922, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4241, 922, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4242, 922, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4243, 922, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4244, 922, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4245, 922, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4246, 923, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4247, 923, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4248, 923, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4249, 924, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4250, 924, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4251, 924, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4252, 924, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4253, 924, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4254, 925, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4255, 925, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4256, 925, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4257, 925, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4258, 925, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4259, 926, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4260, 926, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4261, 927, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4262, 927, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4263, 927, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4264, 927, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4265, 928, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4266, 928, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4267, 928, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4268, 929, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4269, 929, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4270, 929, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4271, 929, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4272, 930, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4273, 930, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4274, 930, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4275, 930, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4276, 930, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4277, 930, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4278, 931, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4279, 931, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4280, 931, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4281, 932, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4282, 932, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4283, 932, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4284, 932, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4285, 933, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4286, 933, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4287, 933, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4288, 934, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4289, 934, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4290, 934, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4291, 935, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4292, 935, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4293, 936, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4294, 936, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4295, 936, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4296, 936, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4297, 936, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4298, 936, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4299, 937, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4300, 937, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4301, 937, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4302, 937, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4303, 937, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4304, 938, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4305, 938, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4306, 938, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4307, 938, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4308, 938, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4309, 938, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4310, 939, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4311, 939, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4312, 939, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4313, 939, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4314, 940, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4315, 940, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4316, 940, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4317, 941, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4318, 941, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4319, 941, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4320, 941, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4321, 941, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4322, 941, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4323, 941, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4324, 942, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4325, 942, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4326, 942, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4327, 942, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4328, 944, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4329, 944, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4330, 944, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4331, 944, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4332, 944, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4333, 945, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4334, 945, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4335, 945, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4336, 945, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4337, 945, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4338, 945, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4339, 945, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4340, 945, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4341, 946, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4342, 946, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4343, 946, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4344, 946, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4345, 947, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4346, 947, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4347, 948, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4348, 948, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4349, 948, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4350, 948, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4351, 948, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4352, 948, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4353, 949, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4354, 949, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4355, 949, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4356, 949, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4357, 949, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4358, 949, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4359, 951, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4360, 951, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4361, 951, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4362, 951, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4363, 951, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4364, 951, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4365, 951, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4366, 952, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4367, 952, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4368, 952, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4369, 953, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4370, 953, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4371, 953, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4372, 953, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4373, 953, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4374, 953, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4375, 956, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4376, 956, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4377, 956, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4378, 956, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4379, 957, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4380, 957, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4381, 957, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4382, 957, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4383, 957, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4384, 958, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4385, 958, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4386, 958, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4387, 958, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4388, 958, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4389, 958, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4390, 959, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4391, 959, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4392, 960, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4393, 960, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4394, 960, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4395, 961, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4396, 961, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4397, 961, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4398, 961, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4399, 961, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4400, 962, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4401, 962, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4402, 962, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4403, 962, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4404, 963, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4405, 963, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4406, 963, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4407, 963, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4408, 963, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4409, 964, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4410, 964, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4411, 964, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4412, 964, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4413, 964, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4414, 965, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4415, 965, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4416, 966, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4417, 966, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4418, 966, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4419, 966, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4420, 966, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4421, 966, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4422, 967, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4423, 967, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4424, 967, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4425, 967, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4426, 967, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4427, 968, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4428, 968, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4429, 968, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4430, 969, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4431, 969, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4432, 969, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4433, 969, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4434, 970, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4435, 970, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4436, 970, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4437, 970, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4438, 970, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4439, 970, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4440, 970, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4441, 971, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4442, 971, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4443, 971, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4444, 971, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4445, 972, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4446, 972, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4447, 972, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4448, 972, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4449, 972, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4450, 972, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4451, 973, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4452, 973, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4453, 973, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4454, 973, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4455, 973, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4456, 973, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4457, 973, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4458, 973, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4459, 974, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4460, 974, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4461, 975, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4462, 975, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4463, 975, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4464, 975, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4465, 975, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4466, 976, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4467, 976, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4468, 976, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4469, 976, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4470, 976, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4471, 976, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4472, 977, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4473, 977, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4474, 977, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4475, 978, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4476, 978, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4477, 978, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4478, 979, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4479, 979, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4480, 979, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4481, 979, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4482, 979, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4483, 979, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4484, 979, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4485, 980, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4486, 980, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4487, 980, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4488, 980, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4489, 980, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4490, 981, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4491, 981, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4492, 981, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4493, 981, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4494, 981, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4495, 981, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4496, 982, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4497, 982, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4498, 982, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4499, 982, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4500, 982, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4501, 982, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4502, 982, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4503, 983, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4504, 983, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4505, 983, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4506, 984, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4507, 984, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4508, 985, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4509, 985, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4510, 985, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4511, 985, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4512, 985, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4513, 985, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4514, 985, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4515, 986, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4516, 986, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4517, 986, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4518, 986, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4519, 986, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4520, 986, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4521, 987, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4522, 987, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4523, 987, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4524, 987, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4525, 988, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4526, 988, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4527, 988, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4528, 988, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4529, 988, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4530, 989, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4531, 989, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4532, 989, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4533, 989, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4534, 989, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4535, 989, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4536, 990, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4537, 990, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4538, 991, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4539, 991, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4540, 991, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4541, 991, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4542, 991, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4543, 992, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4544, 992, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4545, 992, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4546, 992, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4547, 993, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4548, 993, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4549, 993, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4550, 993, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4551, 993, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4552, 993, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4553, 993, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4554, 994, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4555, 994, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4556, 994, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4557, 995, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4558, 995, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4559, 995, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4560, 995, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4561, 995, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4562, 995, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4563, 996, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4564, 996, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4565, 997, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4566, 997, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4567, 998, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4568, 998, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4569, 999, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4570, 999, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4571, 999, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4572, 999, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4573, 999, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4574, 1000, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4575, 1000, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4576, 1000, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4577, 1000, 1); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4578, 1000, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4579, 1000, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4580, 1000, 2); INSERT INTO inventory_items (id, film_id, store_id) VALUES (4581, 1000, 2); -- -- TOC entry 1670 (class 0 OID 60404) -- Dependencies: 1231 -- Data for Name: payments; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1, 1, 1, 2.99, '2005-05-25 11:30:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2, 1, 1, 0.99, '2005-05-28 10:35:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3, 1, 1, 5.99, '2005-06-15 00:54:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4, 1, 2, 0.99, '2005-06-15 18:02:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5, 1, 1, 9.99, '2005-06-15 21:08:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (6, 1, 1, 4.99, '2005-06-16 15:18:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (7, 1, 2, 4.99, '2005-06-18 08:41:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (8, 1, 1, 0.99, '2005-06-18 13:33:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (9, 1, 2, 3.99, '2005-06-21 06:24:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (10, 1, 2, 5.99, '2005-07-08 03:17:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (11, 1, 1, 5.99, '2005-07-08 07:33:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (12, 1, 1, 4.99, '2005-07-09 13:24:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (13, 1, 2, 4.99, '2005-07-09 16:38:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (14, 1, 2, 7.99, '2005-07-11 10:13:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (15, 1, 1, 2.99, '2005-07-27 11:31:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (16, 1, 1, 4.99, '2005-07-28 09:04:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (17, 1, 1, 4.99, '2005-07-28 16:18:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (18, 1, 2, 0.99, '2005-07-28 17:33:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (19, 1, 2, 0.99, '2005-07-28 19:20:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (20, 1, 1, 2.99, '2005-07-29 03:58:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (21, 1, 2, 2.99, '2005-07-31 02:42:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (22, 1, 2, 4.99, '2005-08-01 08:51:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (23, 1, 1, 3.99, '2005-08-02 15:36:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (24, 1, 1, 0.99, '2005-08-02 18:01:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (25, 1, 2, 4.99, '2005-08-17 12:37:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (26, 1, 2, 0.99, '2005-08-18 03:57:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (27, 1, 1, 0.99, '2005-08-19 09:55:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (28, 1, 2, 2.99, '2005-08-19 13:56:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (29, 1, 1, 0.99, '2005-08-21 23:33:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (30, 1, 2, 1.99, '2005-08-22 01:27:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (31, 1, 2, 2.99, '2005-08-22 19:41:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (32, 1, 2, 5.99, '2005-08-22 20:03:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (33, 2, 2, 4.99, '2005-05-27 00:09:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (34, 2, 2, 2.99, '2005-06-17 20:54:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (35, 2, 1, 2.99, '2005-07-10 06:31:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (36, 2, 1, 6.99, '2005-07-10 12:38:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (37, 2, 1, 4.99, '2005-07-27 14:30:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (38, 2, 1, 5.99, '2005-07-27 15:23:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (39, 2, 1, 5.99, '2005-07-27 18:40:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (40, 2, 2, 5.99, '2005-07-29 00:12:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (41, 2, 1, 2.99, '2005-07-29 12:56:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (42, 2, 2, 5.99, '2005-07-29 17:14:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (43, 2, 1, 4.99, '2005-07-30 06:06:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (44, 2, 1, 10.99, '2005-07-30 13:47:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (45, 2, 2, 0.99, '2005-07-30 14:14:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (46, 2, 2, 6.99, '2005-07-30 16:21:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (47, 2, 2, 6.99, '2005-07-30 22:39:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (48, 2, 1, 2.99, '2005-07-31 21:58:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (49, 2, 2, 0.99, '2005-08-01 09:45:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (50, 2, 1, 0.99, '2005-08-02 02:10:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (51, 2, 2, 5.99, '2005-08-02 07:41:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (52, 2, 1, 6.99, '2005-08-02 10:43:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (53, 2, 1, 2.99, '2005-08-02 13:44:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (54, 2, 2, 2.99, '2005-08-17 03:52:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (55, 2, 2, 2.99, '2005-08-19 06:26:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (56, 2, 1, 4.99, '2005-08-21 13:24:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (57, 2, 2, 5.99, '2005-08-21 22:41:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (58, 2, 1, 4.99, '2005-08-22 13:53:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (59, 2, 1, 4.99, '2005-08-23 17:39:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (60, 3, 1, 1.99, '2005-05-27 17:17:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (61, 3, 1, 2.99, '2005-05-29 22:43:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (62, 3, 1, 8.99, '2005-06-16 01:34:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (63, 3, 1, 6.99, '2005-06-16 15:19:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (64, 3, 1, 6.99, '2005-06-17 05:15:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (65, 3, 2, 2.99, '2005-06-19 08:34:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (66, 3, 1, 4.99, '2005-07-07 10:23:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (67, 3, 2, 4.99, '2005-07-08 12:47:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (68, 3, 1, 5.99, '2005-07-27 04:54:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (69, 3, 2, 10.99, '2005-07-27 20:23:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (70, 3, 1, 7.99, '2005-07-28 03:59:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (71, 3, 1, 6.99, '2005-07-28 04:46:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (72, 3, 2, 4.99, '2005-07-28 11:46:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (73, 3, 1, 4.99, '2005-07-28 18:17:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (74, 3, 2, 2.99, '2005-07-29 11:07:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (75, 3, 1, 1.99, '2005-07-30 13:31:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (76, 3, 1, 3.99, '2005-07-30 21:45:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (77, 3, 2, 2.99, '2005-07-31 03:27:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (78, 3, 2, 4.99, '2005-07-31 11:32:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (79, 3, 1, 5.99, '2005-08-01 14:19:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (80, 3, 2, 4.99, '2005-08-18 14:49:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (81, 3, 2, 8.99, '2005-08-19 22:18:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (82, 3, 2, 2.99, '2005-08-20 06:14:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (83, 3, 2, 8.99, '2005-08-21 20:50:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (84, 3, 2, 0.99, '2005-08-22 09:37:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (85, 3, 2, 2.99, '2005-08-23 07:10:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (86, 4, 1, 4.99, '2005-06-15 09:31:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (87, 4, 2, 0.99, '2005-06-16 08:08:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (88, 4, 1, 2.99, '2005-06-16 14:01:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (89, 4, 1, 0.99, '2005-06-16 15:51:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (90, 4, 2, 0.99, '2005-06-17 14:31:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (91, 4, 1, 5.99, '2005-06-19 09:39:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (92, 4, 2, 2.99, '2005-07-28 02:10:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (93, 4, 2, 2.99, '2005-07-28 04:37:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (94, 4, 1, 3.99, '2005-07-29 18:44:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (95, 4, 2, 5.99, '2005-07-30 08:46:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (96, 4, 2, 5.99, '2005-07-30 18:58:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (97, 4, 1, 0.99, '2005-08-02 07:09:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (98, 4, 2, 2.99, '2005-08-02 08:20:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (99, 4, 2, 4.99, '2005-08-17 00:28:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (100, 4, 1, 2.99, '2005-08-18 00:14:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (101, 4, 2, 8.99, '2005-08-18 05:14:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (102, 4, 2, 1.99, '2005-08-19 02:19:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (103, 4, 2, 2.99, '2005-08-20 09:32:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (104, 4, 2, 6.99, '2005-08-20 12:55:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (105, 4, 1, 4.99, '2005-08-21 04:53:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (106, 4, 1, 2.99, '2005-08-22 13:58:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (107, 4, 1, 1.99, '2005-08-23 07:43:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (108, 5, 1, 0.99, '2005-05-29 07:25:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (109, 5, 2, 6.99, '2005-05-31 11:15:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (110, 5, 2, 1.99, '2005-05-31 19:46:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (111, 5, 1, 3.99, '2005-06-15 22:03:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (112, 5, 2, 2.99, '2005-06-16 08:01:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (113, 5, 1, 4.99, '2005-06-17 15:56:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (114, 5, 1, 2.99, '2005-06-19 04:20:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (115, 5, 1, 4.99, '2005-06-20 18:38:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (116, 5, 1, 4.99, '2005-07-06 09:11:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (117, 5, 1, 2.99, '2005-07-08 20:04:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (118, 5, 2, 4.99, '2005-07-09 01:57:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (119, 5, 2, 5.99, '2005-07-09 07:13:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (120, 5, 1, 1.99, '2005-07-09 08:51:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (121, 5, 2, 0.99, '2005-07-10 11:09:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (122, 5, 2, 8.99, '2005-07-11 03:17:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (123, 5, 2, 3.99, '2005-07-12 11:27:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (124, 5, 2, 4.99, '2005-07-12 12:16:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (125, 5, 2, 0.99, '2005-07-27 12:37:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (126, 5, 1, 0.99, '2005-07-28 01:50:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (127, 5, 2, 3.99, '2005-07-28 08:43:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (128, 5, 2, 2.99, '2005-07-29 01:11:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (129, 5, 1, 1.99, '2005-07-30 04:14:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (130, 5, 1, 4.99, '2005-07-30 23:52:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (131, 5, 2, 3.99, '2005-07-31 14:00:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (132, 5, 1, 4.99, '2005-08-01 14:48:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (133, 5, 1, 0.99, '2005-08-01 15:27:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (134, 5, 2, 4.99, '2005-08-02 04:56:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (135, 5, 1, 4.99, '2005-08-02 10:50:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (136, 5, 1, 3.99, '2005-08-17 16:28:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (137, 5, 1, 9.99, '2005-08-18 00:10:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (138, 5, 1, 2.99, '2005-08-19 00:24:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (139, 5, 1, 1.99, '2005-08-19 09:45:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (140, 5, 2, 0.99, '2005-08-19 15:21:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (141, 5, 1, 0.99, '2005-08-20 15:16:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (142, 5, 1, 6.99, '2005-08-20 22:13:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (143, 5, 2, 6.99, '2005-08-21 11:31:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (144, 5, 2, 2.99, '2005-08-21 14:02:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (145, 5, 1, 0.99, '2005-08-22 17:37:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (146, 6, 1, 4.99, '2005-05-25 08:43:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (147, 6, 2, 2.99, '2005-05-28 11:09:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (148, 6, 2, 0.99, '2005-05-30 11:25:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (149, 6, 2, 3.99, '2005-06-16 03:41:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (150, 6, 1, 2.99, '2005-06-16 23:44:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (151, 6, 1, 0.99, '2005-06-17 09:19:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (152, 6, 2, 0.99, '2005-06-18 12:03:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (153, 6, 2, 0.99, '2005-07-06 23:14:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (154, 6, 1, 2.99, '2005-07-07 14:53:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (155, 6, 2, 0.99, '2005-07-10 03:03:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (156, 6, 2, 5.99, '2005-07-11 12:39:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (157, 6, 2, 7.99, '2005-07-11 15:01:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (158, 6, 2, 0.99, '2005-07-12 12:18:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (159, 6, 2, 2.99, '2005-07-27 05:03:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (160, 6, 1, 2.99, '2005-07-27 06:38:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (161, 6, 1, 0.99, '2005-07-28 18:47:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (162, 6, 1, 2.99, '2005-08-01 03:13:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (163, 6, 1, 2.99, '2005-08-02 05:36:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (164, 6, 1, 3.99, '2005-08-02 18:55:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (165, 6, 2, 6.99, '2005-08-17 02:29:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (166, 6, 1, 0.99, '2005-08-17 08:12:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (167, 6, 2, 0.99, '2005-08-17 13:39:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (168, 6, 1, 2.99, '2005-08-18 04:05:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (169, 6, 1, 6.99, '2005-08-20 00:18:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (170, 6, 1, 7.99, '2005-08-21 08:22:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (171, 6, 1, 4.99, '2005-08-21 09:49:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (172, 6, 2, 2.99, '2005-08-22 12:49:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (173, 6, 1, 5.99, '2005-08-23 02:51:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (174, 6, 1, 0.99, '2005-08-23 06:41:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (175, 7, 1, 5.99, '2005-05-25 06:04:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (176, 7, 1, 0.99, '2005-05-25 19:30:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (177, 7, 1, 2.99, '2005-05-29 09:27:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (178, 7, 1, 4.99, '2005-05-30 21:07:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (179, 7, 2, 5.99, '2005-05-31 08:44:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (180, 7, 2, 0.99, '2005-06-16 21:06:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (181, 7, 2, 2.99, '2005-06-18 05:03:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (182, 7, 1, 0.99, '2005-06-19 14:00:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (183, 7, 1, 4.99, '2005-06-20 01:50:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (184, 7, 2, 0.99, '2005-06-20 10:11:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (185, 7, 2, 5.99, '2005-07-06 07:09:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (186, 7, 1, 2.99, '2005-07-07 13:22:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (187, 7, 1, 5.99, '2005-07-08 16:16:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (188, 7, 1, 4.99, '2005-07-08 18:47:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (189, 7, 2, 8.99, '2005-07-09 21:52:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (190, 7, 1, 7.99, '2005-07-10 21:35:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (191, 7, 1, 1.99, '2005-07-11 10:36:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (192, 7, 2, 2.99, '2005-07-11 17:30:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (193, 7, 2, 3.99, '2005-07-12 15:17:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (194, 7, 1, 5.99, '2005-07-29 07:02:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (195, 7, 1, 7.99, '2005-07-31 04:30:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (196, 7, 2, 6.99, '2005-08-01 04:57:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (197, 7, 2, 5.99, '2005-08-01 08:19:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (198, 7, 1, 4.99, '2005-08-01 11:39:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (199, 7, 2, 4.99, '2005-08-01 15:52:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (200, 7, 1, 3.99, '2005-08-02 04:40:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (201, 7, 2, 7.99, '2005-08-17 00:51:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (202, 7, 1, 8.99, '2005-08-18 07:57:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (203, 7, 1, 2.99, '2005-08-18 21:55:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (204, 7, 2, 2.99, '2005-08-19 21:23:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (205, 7, 1, 2.99, '2005-08-20 01:06:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (206, 7, 1, 0.99, '2005-08-20 05:53:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (207, 7, 1, 5.99, '2005-08-21 04:49:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (208, 7, 2, 7.99, '2005-08-22 15:28:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (209, 8, 2, 6.99, '2005-05-30 03:43:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (210, 8, 2, 2.99, '2005-06-15 09:59:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (211, 8, 2, 5.99, '2005-06-17 18:21:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (212, 8, 2, 4.99, '2005-06-20 17:57:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (213, 8, 1, 5.99, '2005-07-05 23:01:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (214, 8, 1, 0.99, '2005-07-07 00:09:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (215, 8, 1, 2.99, '2005-07-07 10:02:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (216, 8, 2, 3.99, '2005-07-07 21:47:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (217, 8, 1, 3.99, '2005-07-08 02:17:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (218, 8, 2, 2.99, '2005-07-09 15:40:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (219, 8, 1, 2.99, '2005-07-09 17:13:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (220, 8, 2, 4.99, '2005-07-11 21:39:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (221, 8, 2, 0.99, '2005-07-12 10:43:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (222, 8, 1, 1.99, '2005-07-29 21:42:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (223, 8, 1, 2.99, '2005-07-31 04:54:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (224, 8, 1, 0.99, '2005-07-31 22:08:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (225, 8, 1, 2.99, '2005-08-01 13:05:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (226, 8, 1, 9.99, '2005-08-02 13:04:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (227, 8, 1, 2.99, '2005-08-02 14:42:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (228, 8, 2, 2.99, '2005-08-18 17:16:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (229, 8, 2, 0.99, '2005-08-21 01:07:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (230, 8, 2, 7.99, '2005-08-22 22:09:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (231, 8, 1, 2.99, '2005-08-23 13:05:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (232, 8, 2, 4.99, '2005-08-23 14:31:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (233, 9, 1, 4.99, '2005-05-27 05:01:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (234, 9, 1, 0.99, '2005-05-30 05:48:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (235, 9, 2, 4.99, '2005-05-31 10:13:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (236, 9, 2, 7.99, '2005-06-20 19:59:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (237, 9, 2, 4.99, '2005-06-21 04:08:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (238, 9, 2, 2.99, '2005-07-07 23:37:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (239, 9, 1, 0.99, '2005-07-08 13:59:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (240, 9, 1, 1.99, '2005-07-08 16:35:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (241, 9, 2, 2.99, '2005-07-10 07:45:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (242, 9, 2, 4.99, '2005-07-11 02:08:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (243, 9, 2, 5.99, '2005-07-11 10:17:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (244, 9, 1, 0.99, '2005-07-28 00:15:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (245, 9, 2, 2.99, '2005-07-28 07:51:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (246, 9, 2, 4.99, '2005-07-30 06:34:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (247, 9, 2, 0.99, '2005-08-01 09:11:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (248, 9, 2, 4.99, '2005-08-01 09:14:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (249, 9, 1, 5.99, '2005-08-02 19:00:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (250, 9, 2, 0.99, '2005-08-17 01:11:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (251, 9, 1, 2.99, '2005-08-18 03:08:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (252, 9, 2, 2.99, '2005-08-18 05:58:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (253, 9, 2, 4.99, '2005-08-18 18:48:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (254, 9, 1, 7.99, '2005-08-21 13:53:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (255, 9, 2, 4.99, '2005-08-23 14:52:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (256, 10, 1, 4.99, '2005-05-31 19:36:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (257, 10, 2, 4.99, '2005-06-16 20:21:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (258, 10, 1, 4.99, '2005-06-17 11:11:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (259, 10, 1, 3.99, '2005-06-18 03:26:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (260, 10, 1, 0.99, '2005-06-19 20:01:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (261, 10, 1, 0.99, '2005-06-20 00:00:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (262, 10, 1, 3.99, '2005-07-06 14:13:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (263, 10, 2, 4.99, '2005-07-07 03:06:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (264, 10, 2, 1.99, '2005-07-07 14:14:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (265, 10, 1, 7.99, '2005-07-09 03:12:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (266, 10, 2, 2.99, '2005-07-09 04:53:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (267, 10, 1, 0.99, '2005-07-09 21:58:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (268, 10, 2, 2.99, '2005-07-10 20:41:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (269, 10, 1, 2.99, '2005-07-28 05:21:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (270, 10, 1, 6.99, '2005-07-28 15:10:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (271, 10, 2, 4.99, '2005-07-28 22:34:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (272, 10, 2, 4.99, '2005-07-31 15:27:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (273, 10, 2, 8.99, '2005-08-01 17:09:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (274, 10, 2, 2.99, '2005-08-02 14:55:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (275, 10, 2, 0.99, '2005-08-02 19:13:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (276, 10, 2, 2.99, '2005-08-17 20:11:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (277, 10, 2, 2.99, '2005-08-18 09:19:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (278, 10, 1, 4.99, '2005-08-19 19:23:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (279, 10, 2, 2.99, '2005-08-20 16:43:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (280, 10, 2, 5.99, '2005-08-22 21:59:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (281, 11, 2, 6.99, '2005-05-30 22:59:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (282, 11, 2, 6.99, '2005-06-15 20:53:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (283, 11, 2, 7.99, '2005-06-17 07:26:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (284, 11, 1, 0.99, '2005-06-20 23:49:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (285, 11, 1, 2.99, '2005-07-08 07:19:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (286, 11, 1, 4.99, '2005-07-08 22:43:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (287, 11, 1, 5.99, '2005-07-10 16:44:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (288, 11, 1, 6.99, '2005-07-11 09:09:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (289, 11, 2, 4.99, '2005-07-27 13:13:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (290, 11, 1, 4.99, '2005-07-28 15:32:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (291, 11, 1, 2.99, '2005-07-28 18:43:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (292, 11, 2, 1.99, '2005-07-29 07:38:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (293, 11, 1, 0.99, '2005-07-29 17:33:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (294, 11, 1, 9.99, '2005-07-30 03:17:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (295, 11, 1, 6.99, '2005-07-30 16:08:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (296, 11, 1, 4.99, '2005-08-01 22:41:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (297, 11, 1, 6.99, '2005-08-02 10:14:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (298, 11, 2, 0.99, '2005-08-16 23:06:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (299, 11, 2, 0.99, '2005-08-17 04:52:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (300, 11, 2, 5.99, '2005-08-17 19:32:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (301, 11, 2, 0.99, '2005-08-20 05:07:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (302, 11, 2, 4.99, '2005-08-20 12:17:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (303, 11, 1, 0.99, '2005-08-22 12:42:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (304, 11, 2, 2.99, '2005-08-22 17:46:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (305, 12, 2, 4.99, '2005-05-30 23:08:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (306, 12, 2, 4.99, '2005-05-31 11:10:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (307, 12, 1, 5.99, '2005-06-16 17:02:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (308, 12, 2, 5.99, '2005-06-18 18:11:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (309, 12, 1, 5.99, '2005-06-18 23:07:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (310, 12, 2, 4.99, '2005-06-19 08:11:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (311, 12, 2, 2.99, '2005-06-20 19:33:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (312, 12, 1, 0.99, '2005-06-21 16:31:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (313, 12, 2, 3.99, '2005-07-06 17:57:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (314, 12, 2, 0.99, '2005-07-09 05:00:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (315, 12, 1, 0.99, '2005-07-09 05:06:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (316, 12, 2, 0.99, '2005-07-09 07:02:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (317, 12, 2, 3.99, '2005-07-09 13:20:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (318, 12, 1, 2.99, '2005-07-12 15:55:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (319, 12, 2, 0.99, '2005-07-27 01:44:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (320, 12, 2, 0.99, '2005-07-27 11:50:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (321, 12, 2, 0.99, '2005-07-30 04:34:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (322, 12, 2, 4.99, '2005-07-30 11:26:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (323, 12, 1, 5.99, '2005-07-30 13:49:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (324, 12, 2, 5.99, '2005-07-31 04:42:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (325, 12, 1, 5.99, '2005-07-31 07:45:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (326, 12, 1, 10.99, '2005-08-01 06:50:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (327, 12, 2, 0.99, '2005-08-16 22:52:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (328, 12, 2, 4.99, '2005-08-18 16:58:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (329, 12, 2, 0.99, '2005-08-20 02:37:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (330, 12, 2, 2.99, '2005-08-20 15:58:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (331, 12, 2, 4.99, '2005-08-21 05:19:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (332, 12, 1, 0.99, '2005-08-23 20:28:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (333, 13, 1, 2.99, '2005-06-17 06:54:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (334, 13, 2, 4.99, '2005-06-18 02:24:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (335, 13, 1, 2.99, '2005-06-20 06:26:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (336, 13, 2, 8.99, '2005-06-20 12:45:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (337, 13, 1, 2.99, '2005-07-06 21:39:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (338, 13, 1, 8.99, '2005-07-11 07:43:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (339, 13, 2, 2.99, '2005-07-12 05:45:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (340, 13, 2, 0.99, '2005-07-12 20:13:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (341, 13, 1, 2.99, '2005-07-12 21:30:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (342, 13, 1, 2.99, '2005-07-28 11:49:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (343, 13, 2, 2.99, '2005-07-29 01:38:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (344, 13, 2, 11.99, '2005-07-29 22:37:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (345, 13, 2, 9.99, '2005-07-30 14:38:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (346, 13, 2, 0.99, '2005-07-30 21:29:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (347, 13, 1, 0.99, '2005-07-31 06:12:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (348, 13, 2, 7.99, '2005-07-31 08:58:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (349, 13, 2, 4.99, '2005-07-31 17:48:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (350, 13, 1, 4.99, '2005-08-02 14:58:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (351, 13, 2, 0.99, '2005-08-02 16:05:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (352, 13, 2, 5.99, '2005-08-17 09:44:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (353, 13, 2, 7.99, '2005-08-19 04:31:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (354, 13, 1, 4.99, '2005-08-19 10:49:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (355, 13, 1, 0.99, '2005-08-19 15:25:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (356, 13, 2, 0.99, '2005-08-20 00:33:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (357, 13, 2, 9.99, '2005-08-21 05:44:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (358, 13, 1, 7.99, '2005-08-21 15:44:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (359, 13, 1, 4.99, '2005-08-22 20:51:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (360, 14, 2, 0.99, '2005-05-26 00:37:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (361, 14, 1, 9.99, '2005-05-27 04:34:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (362, 14, 1, 5.99, '2005-05-28 04:25:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (363, 14, 1, 2.99, '2005-05-28 22:04:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (364, 14, 2, 0.99, '2005-05-29 20:24:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (365, 14, 1, 4.99, '2005-06-15 13:32:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (366, 14, 1, 2.99, '2005-07-06 10:21:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (367, 14, 1, 0.99, '2005-07-08 23:00:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (368, 14, 2, 0.99, '2005-07-09 06:37:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (369, 14, 2, 7.99, '2005-07-09 16:10:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (370, 14, 2, 4.99, '2005-07-09 19:14:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (371, 14, 1, 7.99, '2005-07-10 03:29:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (372, 14, 1, 6.99, '2005-07-28 16:23:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (373, 14, 2, 0.99, '2005-07-28 16:45:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (374, 14, 2, 3.99, '2005-07-29 11:11:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (375, 14, 2, 4.99, '2005-07-29 22:46:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (376, 14, 2, 4.99, '2005-07-30 21:36:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (377, 14, 2, 2.99, '2005-07-31 03:21:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (378, 14, 1, 2.99, '2005-08-01 05:23:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (379, 14, 1, 6.99, '2005-08-01 11:55:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (380, 14, 2, 4.99, '2005-08-02 22:18:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (381, 14, 1, 3.99, '2005-08-17 00:27:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (382, 14, 2, 2.99, '2005-08-18 19:16:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (383, 14, 1, 4.99, '2005-08-20 11:20:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (384, 14, 1, 4.99, '2005-08-20 12:04:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (385, 14, 2, 6.99, '2005-08-22 08:43:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (386, 14, 2, 0.99, '2005-08-22 22:08:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (387, 14, 1, 0.99, '2005-08-23 22:25:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (388, 15, 1, 2.99, '2005-06-18 21:26:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (389, 15, 2, 5.99, '2005-06-20 05:15:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (390, 15, 1, 0.99, '2005-06-20 22:52:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (391, 15, 2, 7.99, '2005-07-06 02:29:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (392, 15, 1, 5.99, '2005-07-07 07:26:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (393, 15, 2, 2.99, '2005-07-10 11:02:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (394, 15, 1, 2.99, '2005-07-11 00:14:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (395, 15, 2, 4.99, '2005-07-27 05:15:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (396, 15, 2, 0.99, '2005-07-28 22:50:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (397, 15, 2, 6.99, '2005-07-29 13:36:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (398, 15, 1, 4.99, '2005-07-30 02:13:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (399, 15, 2, 2.99, '2005-07-31 17:22:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (400, 15, 1, 2.99, '2005-08-02 08:44:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (401, 15, 1, 2.99, '2005-08-02 09:29:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (402, 15, 1, 2.99, '2005-08-02 15:48:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (403, 15, 2, 2.99, '2005-08-02 17:09:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (404, 15, 2, 7.99, '2005-08-17 16:20:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (405, 15, 1, 2.99, '2005-08-18 04:39:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (406, 15, 1, 2.99, '2005-08-18 14:46:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (407, 15, 1, 2.99, '2005-08-18 18:00:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (408, 15, 2, 8.99, '2005-08-19 20:18:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (409, 15, 1, 5.99, '2005-08-19 22:03:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (410, 15, 2, 5.99, '2005-08-20 02:00:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (411, 15, 2, 4.99, '2005-08-20 03:41:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (412, 15, 2, 3.99, '2005-08-20 08:34:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (413, 15, 1, 2.99, '2005-08-20 12:33:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (414, 15, 2, 0.99, '2005-08-20 18:42:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (415, 15, 2, 0.99, '2005-08-21 16:31:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (416, 15, 1, 4.99, '2005-08-21 23:53:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (417, 15, 1, 8.99, '2005-08-22 03:23:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (418, 15, 2, 0.99, '2005-08-22 15:36:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (419, 15, 2, 4.99, '2005-08-23 17:12:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (420, 16, 1, 3.99, '2005-05-27 03:07:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (421, 16, 1, 2.99, '2005-05-28 13:33:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (422, 16, 1, 0.99, '2005-05-30 07:10:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (423, 16, 1, 2.99, '2005-05-31 02:53:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (424, 16, 1, 6.99, '2005-06-17 07:04:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (425, 16, 1, 7.99, '2005-06-17 07:50:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (426, 16, 1, 1.99, '2005-06-18 04:56:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (427, 16, 2, 7.99, '2005-06-20 07:10:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (428, 16, 2, 0.99, '2005-06-21 11:16:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (429, 16, 1, 0.99, '2005-07-06 02:23:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (430, 16, 1, 2.99, '2005-07-07 12:11:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (431, 16, 2, 3.99, '2005-07-07 14:24:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (432, 16, 2, 4.99, '2005-07-08 02:45:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (433, 16, 2, 4.99, '2005-07-11 06:40:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (434, 16, 2, 0.99, '2005-07-27 19:39:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (435, 16, 1, 2.99, '2005-07-27 22:03:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (436, 16, 2, 5.99, '2005-07-29 07:45:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (437, 16, 1, 0.99, '2005-07-30 11:12:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (438, 16, 2, 5.99, '2005-07-31 03:54:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (439, 16, 1, 2.99, '2005-08-01 17:53:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (440, 16, 2, 2.99, '2005-08-01 19:15:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (441, 16, 2, 0.99, '2005-08-02 15:50:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (442, 16, 1, 2.99, '2005-08-17 22:53:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (443, 16, 2, 4.99, '2005-08-18 07:41:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (444, 16, 2, 7.99, '2005-08-18 15:39:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (445, 16, 2, 4.99, '2005-08-19 13:08:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (446, 16, 1, 4.99, '2005-08-19 22:01:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (447, 16, 2, 6.99, '2005-08-20 01:10:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (448, 16, 1, 8.99, '2005-08-21 14:45:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (449, 17, 2, 2.99, '2005-05-26 19:44:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (450, 17, 2, 2.99, '2005-05-28 11:19:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (451, 17, 1, 4.99, '2005-05-30 06:41:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (452, 17, 1, 5.99, '2005-06-18 00:17:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (453, 17, 1, 8.99, '2005-06-19 12:29:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (454, 17, 2, 5.99, '2005-06-21 05:06:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (455, 17, 1, 3.99, '2005-07-10 10:46:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (456, 17, 1, 3.99, '2005-07-10 19:25:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (457, 17, 2, 1.99, '2005-07-12 20:52:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (458, 17, 2, 8.99, '2005-07-28 17:45:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (459, 17, 2, 2.99, '2005-07-28 23:37:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (460, 17, 2, 8.99, '2005-07-30 08:30:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (461, 17, 2, 2.99, '2005-07-30 10:11:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (462, 17, 2, 8.99, '2005-07-30 19:23:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (463, 17, 2, 0.99, '2005-07-30 23:43:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (464, 17, 1, 4.99, '2005-08-17 18:26:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (465, 17, 1, 2.99, '2005-08-20 10:24:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (466, 17, 1, 2.99, '2005-08-20 21:43:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (467, 17, 2, 2.99, '2005-08-21 08:15:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (468, 17, 2, 2.99, '2005-08-21 08:42:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (469, 17, 1, 5.99, '2005-08-23 12:41:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (470, 18, 2, 2.99, '2005-05-25 06:44:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (471, 18, 1, 4.99, '2005-05-25 19:27:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (472, 18, 2, 4.99, '2005-05-29 01:32:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (473, 18, 2, 5.99, '2005-06-15 19:30:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (474, 18, 1, 4.99, '2005-06-16 19:23:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (475, 18, 1, 5.99, '2005-06-17 19:52:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (476, 18, 2, 8.99, '2005-06-20 09:02:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (477, 18, 1, 3.99, '2005-07-08 10:15:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (478, 18, 2, 3.99, '2005-07-08 12:46:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (479, 18, 1, 3.99, '2005-07-08 21:44:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (480, 18, 2, 2.99, '2005-07-11 08:15:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (481, 18, 1, 0.99, '2005-07-12 19:20:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (482, 18, 1, 2.99, '2005-07-28 19:27:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (483, 18, 1, 4.99, '2005-07-29 11:18:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (484, 18, 2, 4.99, '2005-07-30 06:18:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (485, 18, 2, 4.99, '2005-07-30 09:13:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (486, 18, 1, 4.99, '2005-08-01 17:32:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (487, 18, 1, 1.99, '2005-08-01 19:05:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (488, 18, 2, 4.99, '2005-08-02 08:03:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (489, 18, 1, 4.99, '2005-08-02 20:22:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (490, 18, 1, 0.99, '2005-08-18 06:51:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (491, 18, 1, 0.99, '2005-08-20 01:29:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (492, 19, 1, 0.99, '2005-05-25 01:10:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (493, 19, 2, 9.99, '2005-05-25 18:43:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (494, 19, 1, 6.99, '2005-05-26 04:26:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (495, 19, 2, 2.99, '2005-05-27 03:22:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (496, 19, 1, 2.99, '2005-05-28 13:11:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (497, 19, 2, 2.99, '2005-05-29 01:59:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (498, 19, 2, 2.99, '2005-06-19 10:42:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (499, 19, 2, 2.99, '2005-06-19 22:55:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (500, 19, 1, 2.99, '2005-06-21 17:38:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (501, 19, 1, 4.99, '2005-07-06 02:24:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (502, 19, 1, 4.99, '2005-07-12 02:57:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (503, 19, 1, 5.99, '2005-07-30 11:06:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (504, 19, 2, 0.99, '2005-07-30 14:29:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (505, 19, 1, 4.99, '2005-07-31 05:31:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (506, 19, 2, 9.99, '2005-07-31 20:01:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (507, 19, 2, 7.99, '2005-07-31 23:40:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (508, 19, 1, 8.99, '2005-08-16 23:27:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (509, 19, 2, 5.99, '2005-08-17 14:10:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (510, 19, 1, 9.99, '2005-08-18 02:31:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (511, 19, 1, 2.99, '2005-08-18 07:40:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (512, 19, 1, 8.99, '2005-08-20 09:53:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (513, 19, 1, 8.99, '2005-08-20 12:46:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (514, 19, 2, 4.99, '2005-08-21 00:33:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (515, 19, 1, 2.99, '2005-08-22 09:57:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (516, 19, 1, 0.99, '2005-08-23 03:46:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (517, 20, 2, 2.99, '2005-05-26 07:27:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (518, 20, 2, 6.99, '2005-05-28 00:54:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (519, 20, 1, 1.99, '2005-05-28 07:16:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (520, 20, 2, 0.99, '2005-06-16 02:33:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (521, 20, 1, 3.99, '2005-06-17 21:16:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (522, 20, 1, 4.99, '2005-06-18 11:46:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (523, 20, 1, 4.99, '2005-06-21 11:21:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (524, 20, 1, 3.99, '2005-07-07 00:48:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (525, 20, 1, 2.99, '2005-07-07 21:39:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (526, 20, 2, 2.99, '2005-07-10 11:03:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (527, 20, 2, 2.99, '2005-07-11 15:10:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (528, 20, 1, 6.99, '2005-07-11 15:53:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (529, 20, 1, 4.99, '2005-07-27 09:31:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (530, 20, 2, 5.99, '2005-07-28 10:06:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (531, 20, 1, 2.99, '2005-07-28 19:45:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (532, 20, 1, 4.99, '2005-07-30 07:55:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (533, 20, 2, 3.99, '2005-07-30 22:53:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (534, 20, 2, 4.99, '2005-08-01 03:33:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (535, 20, 1, 7.99, '2005-08-01 14:59:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (536, 20, 1, 1.99, '2005-08-02 03:30:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (537, 20, 1, 0.99, '2005-08-17 12:27:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (538, 20, 1, 0.99, '2005-08-18 01:28:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (539, 20, 1, 4.99, '2005-08-19 08:48:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (540, 20, 1, 4.99, '2005-08-19 12:26:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (541, 20, 2, 2.99, '2005-08-19 19:25:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (542, 20, 2, 2.99, '2005-08-21 18:03:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (543, 20, 1, 6.99, '2005-08-22 10:19:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (544, 20, 1, 1.99, '2005-08-22 14:37:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (545, 20, 1, 0.99, '2005-08-22 17:53:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (546, 20, 1, 2.99, '2005-08-23 01:10:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (547, 21, 2, 3.99, '2005-05-26 15:42:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (548, 21, 2, 3.99, '2005-05-27 20:11:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (549, 21, 2, 0.99, '2005-05-28 10:15:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (550, 21, 2, 7.99, '2005-06-18 04:08:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (551, 21, 2, 4.99, '2005-06-18 06:13:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (552, 21, 2, 2.99, '2005-06-18 15:37:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (553, 21, 1, 4.99, '2005-06-19 21:14:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (554, 21, 1, 10.99, '2005-06-21 01:04:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (555, 21, 1, 4.99, '2005-07-09 06:42:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (556, 21, 1, 3.99, '2005-07-10 13:27:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (557, 21, 1, 2.99, '2005-07-10 23:43:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (558, 21, 2, 1.99, '2005-07-26 23:28:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (559, 21, 2, 0.99, '2005-07-28 14:56:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (560, 21, 1, 6.99, '2005-07-28 22:56:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (561, 21, 2, 2.99, '2005-07-29 23:49:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (562, 21, 1, 0.99, '2005-07-30 10:45:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (563, 21, 1, 5.99, '2005-07-31 07:29:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (564, 21, 2, 4.99, '2005-08-01 13:23:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (565, 21, 1, 0.99, '2005-08-01 19:28:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (566, 21, 2, 0.99, '2005-08-02 07:10:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (567, 21, 2, 0.99, '2005-08-17 17:53:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (568, 21, 1, 2.99, '2005-08-17 23:34:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (569, 21, 2, 4.99, '2005-08-18 19:07:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (570, 21, 1, 6.99, '2005-08-18 23:34:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (571, 21, 2, 2.99, '2005-08-19 21:37:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (572, 21, 1, 4.99, '2005-08-19 22:09:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (573, 21, 1, 4.99, '2005-08-19 22:43:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (574, 21, 1, 8.99, '2005-08-20 00:50:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (575, 21, 2, 9.99, '2005-08-20 09:26:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (576, 21, 1, 4.99, '2005-08-20 10:48:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (577, 21, 2, 8.99, '2005-08-20 23:24:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (578, 21, 2, 2.99, '2005-08-21 02:51:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (579, 21, 2, 2.99, '2005-08-21 12:10:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (580, 21, 1, 4.99, '2005-08-22 03:20:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (581, 21, 1, 2.99, '2005-08-22 05:42:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (582, 22, 2, 4.99, '2005-05-27 07:49:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (583, 22, 1, 4.99, '2005-05-28 08:31:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (584, 22, 2, 8.99, '2005-05-29 21:07:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (585, 22, 1, 2.99, '2005-06-21 17:18:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (586, 22, 1, 2.99, '2005-07-07 12:00:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (587, 22, 2, 6.99, '2005-07-09 15:23:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (588, 22, 1, 2.99, '2005-07-10 15:48:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (589, 22, 1, 4.99, '2005-07-27 04:42:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (590, 22, 1, 7.99, '2005-07-28 04:02:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (591, 22, 2, 0.99, '2005-07-30 20:38:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (592, 22, 1, 4.99, '2005-07-31 03:01:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (593, 22, 2, 5.99, '2005-08-17 19:54:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (594, 22, 2, 2.99, '2005-08-17 23:22:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (595, 22, 1, 4.99, '2005-08-18 02:57:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (596, 22, 1, 0.99, '2005-08-19 00:42:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (597, 22, 2, 9.99, '2005-08-19 09:43:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (598, 22, 2, 2.99, '2005-08-20 22:18:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (599, 22, 1, 6.99, '2005-08-21 16:24:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (600, 22, 1, 7.99, '2005-08-22 13:18:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (601, 22, 2, 6.99, '2005-08-23 06:03:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (602, 22, 1, 4.99, '2005-08-23 08:48:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (603, 22, 1, 4.99, '2005-08-23 14:06:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (604, 23, 2, 8.99, '2005-05-25 21:20:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (605, 23, 2, 2.99, '2005-05-28 20:15:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (606, 23, 1, 0.99, '2005-05-31 12:03:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (607, 23, 1, 1.99, '2005-06-19 16:44:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (608, 23, 1, 0.99, '2005-06-19 20:50:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (609, 23, 2, 5.99, '2005-06-20 10:48:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (610, 23, 1, 4.99, '2005-06-20 13:19:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (611, 23, 1, 2.99, '2005-06-21 21:49:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (612, 23, 1, 3.99, '2005-07-06 11:43:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (613, 23, 2, 2.99, '2005-07-06 13:53:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (614, 23, 1, 2.99, '2005-07-08 18:43:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (615, 23, 1, 2.99, '2005-07-11 12:43:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (616, 23, 2, 2.99, '2005-07-11 14:20:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (617, 23, 1, 5.99, '2005-07-12 22:30:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (618, 23, 1, 7.99, '2005-07-27 07:18:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (619, 23, 1, 2.99, '2005-07-28 15:33:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (620, 23, 2, 0.99, '2005-07-29 17:41:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (621, 23, 2, 5.99, '2005-07-30 12:55:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (622, 23, 1, 9.99, '2005-07-30 14:26:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (623, 23, 2, 3.99, '2005-07-31 08:25:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (624, 23, 1, 6.99, '2005-07-31 21:50:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (625, 23, 1, 2.99, '2005-08-02 01:29:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (626, 23, 1, 2.99, '2005-08-16 23:04:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (627, 23, 2, 2.99, '2005-08-19 18:31:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (628, 23, 1, 4.99, '2005-08-19 20:00:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (629, 23, 2, 6.99, '2005-08-19 23:25:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (630, 23, 1, 0.99, '2005-08-20 02:21:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (631, 23, 1, 0.99, '2005-08-20 04:12:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (632, 23, 1, 2.99, '2005-08-21 13:42:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (633, 23, 2, 2.99, '2005-08-23 03:52:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (634, 24, 2, 6.99, '2005-05-31 01:02:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (635, 24, 2, 2.99, '2005-05-31 10:22:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (636, 24, 2, 2.99, '2005-06-16 14:39:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (637, 24, 2, 2.99, '2005-06-17 16:27:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (638, 24, 2, 4.99, '2005-06-17 20:16:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (639, 24, 1, 5.99, '2005-06-18 19:28:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (640, 24, 2, 7.99, '2005-06-20 07:33:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (641, 24, 2, 7.99, '2005-07-06 07:32:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (642, 24, 2, 2.99, '2005-07-07 20:29:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (643, 24, 1, 0.99, '2005-07-09 16:00:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (644, 24, 1, 0.99, '2005-07-10 07:09:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (645, 24, 2, 4.99, '2005-07-12 19:46:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (646, 24, 2, 1.99, '2005-07-27 11:22:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (647, 24, 1, 4.99, '2005-07-30 03:15:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (648, 24, 1, 0.99, '2005-07-31 08:31:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (649, 24, 2, 0.99, '2005-07-31 15:08:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (650, 24, 2, 2.99, '2005-08-01 10:38:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (651, 24, 1, 2.99, '2005-08-02 12:09:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (652, 24, 1, 2.99, '2005-08-17 00:57:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (653, 24, 1, 8.99, '2005-08-18 00:53:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (654, 24, 1, 2.99, '2005-08-18 22:22:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (655, 24, 2, 1.99, '2005-08-19 07:34:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (656, 24, 1, 4.99, '2005-08-19 09:40:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (657, 24, 1, 0.99, '2005-08-19 16:45:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (658, 24, 1, 4.99, '2005-08-22 21:28:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (659, 25, 1, 7.99, '2005-05-25 14:31:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (660, 25, 1, 2.99, '2005-05-31 04:50:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (661, 25, 2, 4.99, '2005-06-15 12:17:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (662, 25, 2, 2.99, '2005-06-15 14:09:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (663, 25, 1, 6.99, '2005-06-16 17:13:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (664, 25, 2, 8.99, '2005-06-19 08:23:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (665, 25, 2, 4.99, '2005-06-20 02:41:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (666, 25, 1, 4.99, '2005-06-21 20:53:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (667, 25, 1, 2.99, '2005-07-07 15:26:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (668, 25, 1, 0.99, '2005-07-07 17:50:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (669, 25, 2, 2.99, '2005-07-07 21:31:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (670, 25, 1, 2.99, '2005-07-10 19:19:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (671, 25, 1, 4.99, '2005-07-12 11:06:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (672, 25, 1, 2.99, '2005-07-12 22:02:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (673, 25, 1, 2.99, '2005-07-29 15:40:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (674, 25, 2, 0.99, '2005-07-30 00:15:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (675, 25, 2, 8.99, '2005-07-30 10:12:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (676, 25, 1, 2.99, '2005-07-30 17:56:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (677, 25, 2, 2.99, '2005-07-31 14:59:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (678, 25, 2, 2.99, '2005-07-31 20:49:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (679, 25, 1, 5.99, '2005-08-01 04:49:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (680, 25, 2, 2.99, '2005-08-02 00:12:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (681, 25, 2, 2.99, '2005-08-02 02:05:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (682, 25, 1, 0.99, '2005-08-17 04:48:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (683, 25, 2, 0.99, '2005-08-19 04:48:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (684, 25, 1, 4.99, '2005-08-21 03:38:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (685, 25, 2, 4.99, '2005-08-21 05:13:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (686, 25, 1, 0.99, '2005-08-23 02:57:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (687, 25, 2, 5.99, '2005-08-23 20:00:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (688, 26, 1, 2.99, '2005-05-29 16:59:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (689, 26, 1, 2.99, '2005-05-31 14:33:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (690, 26, 1, 5.99, '2005-06-15 18:53:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (691, 26, 2, 4.99, '2005-06-16 14:01:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (692, 26, 1, 9.99, '2005-06-17 18:14:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (693, 26, 2, 3.99, '2005-06-18 17:07:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (694, 26, 2, 6.99, '2005-06-18 17:25:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (695, 26, 1, 4.99, '2005-06-19 01:27:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (696, 26, 2, 4.99, '2005-06-19 16:21:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (697, 26, 1, 2.99, '2005-07-07 04:32:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (698, 26, 2, 4.99, '2005-07-07 14:42:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (699, 26, 1, 4.99, '2005-07-07 20:41:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (700, 26, 1, 0.99, '2005-07-07 21:28:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (701, 26, 1, 6.99, '2005-07-07 22:39:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (702, 26, 1, 3.99, '2005-07-08 03:43:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (703, 26, 2, 6.99, '2005-07-08 09:09:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (704, 26, 1, 2.99, '2005-07-09 21:32:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (705, 26, 1, 1.99, '2005-07-11 09:19:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (706, 26, 1, 2.99, '2005-07-11 14:53:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (707, 26, 1, 0.99, '2005-07-27 13:55:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (708, 26, 2, 4.99, '2005-07-29 00:33:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (709, 26, 2, 0.99, '2005-07-30 23:31:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (710, 26, 1, 3.99, '2005-08-01 06:42:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (711, 26, 2, 3.99, '2005-08-02 04:48:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (712, 26, 2, 2.99, '2005-08-02 16:04:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (713, 26, 2, 0.99, '2005-08-02 17:00:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (714, 26, 2, 5.99, '2005-08-17 08:54:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (715, 26, 1, 4.99, '2005-08-19 11:25:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (716, 26, 1, 4.99, '2005-08-21 03:24:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (717, 26, 1, 8.99, '2005-08-21 03:37:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (718, 26, 1, 1.99, '2005-08-21 17:51:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (719, 26, 2, 7.99, '2005-08-21 20:12:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (720, 26, 2, 2.99, '2005-08-22 22:34:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (721, 26, 2, 7.99, '2005-08-23 11:16:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (722, 27, 1, 2.99, '2005-05-29 16:03:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (723, 27, 1, 4.99, '2005-06-15 10:11:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (724, 27, 2, 4.99, '2005-06-15 21:17:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (725, 27, 2, 2.99, '2005-06-16 13:05:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (726, 27, 2, 3.99, '2005-06-17 08:59:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (727, 27, 2, 2.99, '2005-06-18 23:48:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (728, 27, 1, 4.99, '2005-06-19 20:03:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (729, 27, 1, 1.99, '2005-06-20 12:28:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (730, 27, 2, 3.99, '2005-06-21 17:22:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (731, 27, 2, 0.99, '2005-07-07 02:52:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (732, 27, 2, 5.99, '2005-07-08 02:34:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (733, 27, 1, 0.99, '2005-07-10 03:01:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (734, 27, 2, 4.99, '2005-07-10 11:45:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (735, 27, 1, 0.99, '2005-07-11 07:36:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (736, 27, 2, 5.99, '2005-07-12 05:26:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (737, 27, 2, 4.99, '2005-07-12 11:13:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (738, 27, 1, 1.99, '2005-07-28 12:13:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (739, 27, 2, 0.99, '2005-07-30 14:06:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (740, 27, 2, 5.99, '2005-07-31 05:12:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (741, 27, 1, 7.99, '2005-07-31 06:34:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (742, 27, 2, 4.99, '2005-07-31 14:39:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (743, 27, 2, 7.99, '2005-08-01 21:51:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (744, 27, 2, 4.99, '2005-08-02 00:00:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (745, 27, 2, 0.99, '2005-08-02 13:12:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (746, 27, 1, 8.99, '2005-08-17 05:25:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (747, 27, 2, 6.99, '2005-08-17 08:48:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (748, 27, 2, 5.99, '2005-08-17 19:52:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (749, 27, 2, 0.99, '2005-08-18 11:28:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (750, 27, 2, 2.99, '2005-08-18 13:57:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (751, 27, 2, 4.99, '2005-08-20 13:13:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (752, 27, 1, 0.99, '2005-08-22 10:00:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (753, 28, 1, 2.99, '2005-05-27 10:37:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (754, 28, 2, 2.99, '2005-05-30 04:19:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (755, 28, 2, 2.99, '2005-06-15 04:58:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (756, 28, 1, 4.99, '2005-06-16 01:24:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (757, 28, 1, 3.99, '2005-06-18 08:18:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (758, 28, 2, 0.99, '2005-06-19 06:30:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (759, 28, 2, 0.99, '2005-06-21 02:25:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (760, 28, 1, 0.99, '2005-07-06 16:38:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (761, 28, 1, 0.99, '2005-07-08 11:45:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (762, 28, 2, 4.99, '2005-07-08 22:58:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (763, 28, 1, 2.99, '2005-07-10 07:21:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (764, 28, 2, 5.99, '2005-07-10 15:49:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (765, 28, 1, 0.99, '2005-07-11 02:49:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (766, 28, 2, 0.99, '2005-07-12 01:37:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (767, 28, 1, 9.99, '2005-07-27 23:07:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (768, 28, 2, 4.99, '2005-07-29 08:18:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (769, 28, 1, 2.99, '2005-07-30 01:07:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (770, 28, 1, 2.99, '2005-07-31 01:44:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (771, 28, 1, 4.99, '2005-07-31 03:22:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (772, 28, 2, 4.99, '2005-07-31 07:40:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (773, 28, 1, 2.99, '2005-07-31 21:14:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (774, 28, 1, 6.99, '2005-08-01 03:48:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (775, 28, 2, 2.99, '2005-08-02 20:32:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (776, 28, 2, 3.99, '2005-08-17 13:44:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (777, 28, 1, 2.99, '2005-08-18 01:54:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (778, 28, 1, 0.99, '2005-08-18 07:44:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (779, 28, 2, 2.99, '2005-08-18 20:59:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (780, 28, 1, 2.99, '2005-08-19 05:37:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (781, 28, 1, 4.99, '2005-08-20 12:11:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (782, 28, 2, 2.99, '2005-08-21 15:34:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (783, 28, 2, 4.99, '2005-08-23 00:48:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (784, 28, 2, 2.99, '2005-08-23 02:08:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (785, 29, 1, 1.99, '2005-05-26 06:52:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (786, 29, 2, 0.99, '2005-06-19 10:38:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (787, 29, 2, 0.99, '2005-06-19 11:42:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (788, 29, 1, 7.99, '2005-06-19 13:33:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (789, 29, 1, 2.99, '2005-06-19 15:42:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (790, 29, 2, 2.99, '2005-06-19 19:18:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (791, 29, 2, 2.99, '2005-06-20 04:16:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (792, 29, 2, 2.99, '2005-06-21 08:49:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (793, 29, 2, 6.99, '2005-07-07 14:24:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (794, 29, 1, 0.99, '2005-07-07 17:36:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (795, 29, 2, 0.99, '2005-07-08 03:40:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (796, 29, 1, 10.99, '2005-07-09 21:55:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (797, 29, 2, 1.99, '2005-07-10 17:59:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (798, 29, 2, 3.99, '2005-07-27 10:12:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (799, 29, 1, 6.99, '2005-07-27 18:18:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (800, 29, 1, 0.99, '2005-07-27 18:27:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (801, 29, 2, 2.99, '2005-07-29 15:50:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (802, 29, 2, 4.99, '2005-07-30 19:50:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (803, 29, 2, 4.99, '2005-07-31 15:48:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (804, 29, 1, 5.99, '2005-08-01 12:36:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (805, 29, 2, 1.99, '2005-08-02 01:30:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (806, 29, 1, 4.99, '2005-08-02 07:29:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (807, 29, 2, 2.99, '2005-08-17 17:34:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (808, 29, 1, 4.99, '2005-08-18 12:48:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (809, 29, 1, 2.99, '2005-08-18 13:20:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (810, 29, 1, 6.99, '2005-08-18 15:20:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (811, 29, 2, 6.99, '2005-08-18 17:16:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (812, 29, 2, 2.99, '2005-08-19 13:50:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (813, 29, 1, 0.99, '2005-08-19 23:36:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (814, 29, 1, 2.99, '2005-08-20 12:03:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (815, 29, 1, 3.99, '2005-08-20 14:00:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (816, 29, 1, 0.99, '2005-08-21 03:01:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (817, 29, 1, 4.99, '2005-08-21 21:01:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (818, 29, 2, 7.99, '2005-08-22 07:35:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (819, 29, 2, 5.99, '2005-08-22 07:53:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (820, 29, 1, 0.99, '2005-08-23 05:35:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (821, 30, 2, 1.99, '2005-06-17 02:39:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (822, 30, 2, 2.99, '2005-06-17 04:25:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (823, 30, 2, 4.99, '2005-06-17 22:59:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (824, 30, 1, 2.99, '2005-06-19 15:10:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (825, 30, 2, 4.99, '2005-07-06 22:23:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (826, 30, 1, 2.99, '2005-07-08 00:21:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (827, 30, 1, 2.99, '2005-07-08 09:13:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (828, 30, 2, 5.99, '2005-07-09 02:34:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (829, 30, 1, 9.99, '2005-07-09 06:44:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (830, 30, 1, 0.99, '2005-07-09 15:14:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (831, 30, 2, 7.99, '2005-07-11 00:08:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (832, 30, 2, 0.99, '2005-07-11 15:02:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (833, 30, 2, 2.99, '2005-07-11 21:06:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (834, 30, 2, 2.99, '2005-07-27 16:03:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (835, 30, 2, 4.99, '2005-07-28 06:45:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (836, 30, 1, 4.99, '2005-07-28 16:12:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (837, 30, 1, 4.99, '2005-07-28 16:32:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (838, 30, 1, 4.99, '2005-07-28 18:09:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (839, 30, 2, 2.99, '2005-07-29 14:37:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (840, 30, 1, 2.99, '2005-07-30 16:55:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (841, 30, 1, 0.99, '2005-07-31 02:04:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (842, 30, 2, 0.99, '2005-07-31 05:33:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (843, 30, 1, 2.99, '2005-07-31 17:40:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (844, 30, 2, 6.99, '2005-08-01 01:57:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (845, 30, 1, 2.99, '2005-08-18 03:27:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (846, 30, 1, 2.99, '2005-08-18 14:29:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (847, 30, 2, 0.99, '2005-08-18 22:58:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (848, 30, 1, 0.99, '2005-08-19 23:35:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (849, 30, 1, 4.99, '2005-08-20 08:50:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (850, 30, 1, 0.99, '2005-08-21 08:37:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (851, 30, 1, 2.99, '2005-08-21 17:18:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (852, 30, 2, 4.99, '2005-08-22 10:39:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (853, 30, 1, 4.99, '2005-08-23 04:17:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (854, 30, 1, 2.99, '2005-08-23 15:17:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (855, 31, 1, 4.99, '2005-06-16 10:05:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (856, 31, 2, 1.99, '2005-06-16 23:20:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (857, 31, 1, 0.99, '2005-06-18 03:57:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (858, 31, 1, 6.99, '2005-06-18 11:35:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (859, 31, 2, 7.99, '2005-06-18 15:49:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (860, 31, 1, 0.99, '2005-06-18 18:34:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (861, 31, 2, 0.99, '2005-06-19 01:20:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (862, 31, 2, 4.99, '2005-06-19 10:06:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (863, 31, 2, 2.99, '2005-06-20 18:05:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (864, 31, 2, 1.99, '2005-06-20 22:19:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (865, 31, 1, 0.99, '2005-06-21 00:38:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (866, 31, 1, 4.99, '2005-07-06 10:12:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (867, 31, 2, 4.99, '2005-07-06 22:45:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (868, 31, 2, 6.99, '2005-07-07 07:15:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (869, 31, 2, 9.99, '2005-07-08 13:24:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (870, 31, 1, 3.99, '2005-07-11 12:34:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (871, 31, 1, 4.99, '2005-07-12 06:26:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (872, 31, 2, 1.99, '2005-07-27 01:23:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (873, 31, 2, 3.99, '2005-07-27 06:47:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (874, 31, 2, 2.99, '2005-07-27 08:09:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (875, 31, 1, 2.99, '2005-07-27 18:49:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (876, 31, 2, 0.99, '2005-07-30 04:53:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (877, 31, 2, 4.99, '2005-08-17 22:17:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (878, 31, 2, 0.99, '2005-08-18 08:26:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (879, 31, 1, 6.99, '2005-08-23 09:37:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (880, 31, 1, 6.99, '2005-08-23 14:58:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (881, 32, 1, 4.99, '2005-05-27 23:00:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (882, 32, 1, 4.99, '2005-05-29 17:52:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (883, 32, 2, 4.99, '2005-05-31 09:12:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (884, 32, 1, 6.99, '2005-06-17 03:53:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (885, 32, 1, 0.99, '2005-06-17 23:39:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (886, 32, 2, 5.99, '2005-06-19 08:22:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (887, 32, 1, 1.99, '2005-06-20 02:02:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (888, 32, 2, 2.99, '2005-07-06 00:11:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (889, 32, 1, 2.99, '2005-07-07 22:48:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (890, 32, 2, 2.99, '2005-07-08 15:33:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (891, 32, 2, 0.99, '2005-07-08 20:37:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (892, 32, 1, 9.99, '2005-07-09 15:57:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (893, 32, 1, 0.99, '2005-07-10 13:13:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (894, 32, 1, 2.99, '2005-07-10 23:22:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (895, 32, 1, 3.99, '2005-07-11 07:58:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (896, 32, 1, 2.99, '2005-07-12 00:49:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (897, 32, 1, 6.99, '2005-07-27 04:34:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (898, 32, 1, 5.99, '2005-07-27 23:23:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (899, 32, 2, 2.99, '2005-07-28 07:26:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (900, 32, 2, 5.99, '2005-07-29 05:52:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (901, 32, 1, 2.99, '2005-07-29 07:46:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (902, 32, 1, 2.99, '2005-07-30 01:42:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (903, 32, 1, 4.99, '2005-08-02 09:22:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (904, 32, 2, 4.99, '2005-08-17 12:54:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (905, 32, 1, 9.99, '2005-08-18 09:50:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (906, 32, 1, 8.99, '2005-08-20 10:31:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (907, 32, 1, 1.99, '2005-08-20 17:16:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (908, 32, 2, 0.99, '2005-08-20 23:18:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (909, 32, 2, 5.99, '2005-08-21 16:32:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (910, 33, 2, 2.99, '2005-05-26 02:28:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (911, 33, 1, 10.99, '2005-06-15 09:46:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (912, 33, 2, 8.99, '2005-06-20 22:21:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (913, 33, 2, 5.99, '2005-07-07 06:01:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (914, 33, 2, 0.99, '2005-07-09 20:49:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (915, 33, 1, 4.99, '2005-07-10 11:14:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (916, 33, 2, 0.99, '2005-07-11 16:36:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (917, 33, 1, 4.99, '2005-07-28 14:53:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (918, 33, 1, 4.99, '2005-07-30 06:31:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (919, 33, 2, 4.99, '2005-07-30 08:17:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (920, 33, 1, 1.99, '2005-07-30 14:26:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (921, 33, 2, 2.99, '2005-08-01 04:59:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (922, 33, 2, 4.99, '2005-08-02 00:27:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (923, 33, 1, 0.99, '2005-08-18 04:46:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (924, 33, 1, 7.99, '2005-08-19 16:25:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (925, 33, 1, 2.99, '2005-08-20 14:50:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (926, 33, 2, 7.99, '2005-08-20 18:11:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (927, 33, 2, 0.99, '2005-08-20 20:12:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (928, 33, 2, 0.99, '2005-08-21 18:29:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (929, 33, 1, 5.99, '2005-08-22 11:43:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (930, 33, 1, 2.99, '2005-08-22 12:28:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (931, 34, 2, 4.99, '2005-06-17 04:29:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (932, 34, 1, 5.99, '2005-06-18 05:29:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (933, 34, 1, 0.99, '2005-06-20 20:35:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (934, 34, 2, 3.99, '2005-07-06 00:24:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (935, 34, 1, 2.99, '2005-07-06 20:09:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (936, 34, 1, 4.99, '2005-07-09 10:22:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (937, 34, 2, 4.99, '2005-07-10 06:49:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (938, 34, 2, 5.99, '2005-07-10 21:32:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (939, 34, 1, 2.99, '2005-07-27 02:15:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (940, 34, 2, 2.99, '2005-07-27 06:09:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (941, 34, 2, 0.99, '2005-07-27 21:20:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (942, 34, 2, 3.99, '2005-07-30 11:17:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (943, 34, 1, 0.99, '2005-08-01 11:52:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (944, 34, 2, 4.99, '2005-08-01 14:58:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (945, 34, 1, 0.99, '2005-08-02 08:05:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (946, 34, 1, 2.99, '2005-08-16 23:18:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (947, 34, 1, 4.99, '2005-08-17 07:15:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (948, 34, 2, 2.99, '2005-08-18 04:57:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (949, 34, 1, 2.99, '2005-08-18 16:42:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (950, 34, 2, 0.99, '2005-08-18 18:36:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (951, 34, 1, 4.99, '2005-08-19 21:21:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (952, 34, 2, 2.99, '2005-08-20 17:55:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (953, 34, 2, 5.99, '2005-08-21 20:32:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (954, 34, 1, 7.99, '2005-08-21 20:54:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (955, 35, 2, 3.99, '2005-05-25 06:05:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (956, 35, 1, 6.99, '2005-05-27 15:34:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (957, 35, 2, 0.99, '2005-06-16 04:09:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (958, 35, 1, 2.99, '2005-06-17 10:47:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (959, 35, 2, 4.99, '2005-06-18 03:50:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (960, 35, 1, 0.99, '2005-06-18 03:52:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (961, 35, 2, 2.99, '2005-06-19 16:15:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (962, 35, 1, 4.99, '2005-06-20 17:53:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (963, 35, 1, 2.99, '2005-07-06 05:03:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (964, 35, 2, 4.99, '2005-07-07 06:14:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (965, 35, 2, 0.99, '2005-07-09 00:48:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (966, 35, 1, 2.99, '2005-07-09 01:46:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (967, 35, 1, 0.99, '2005-07-09 16:34:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (968, 35, 1, 5.99, '2005-07-10 21:26:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (969, 35, 2, 0.99, '2005-07-10 23:47:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (970, 35, 2, 5.99, '2005-07-11 09:13:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (971, 35, 2, 4.99, '2005-07-11 22:44:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (972, 35, 1, 4.99, '2005-07-12 05:39:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (973, 35, 1, 4.99, '2005-07-12 05:56:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (974, 35, 1, 4.99, '2005-07-27 06:54:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (975, 35, 1, 6.99, '2005-07-29 22:20:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (976, 35, 1, 5.99, '2005-07-30 04:03:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (977, 35, 2, 2.99, '2005-07-30 06:07:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (978, 35, 2, 6.99, '2005-07-31 02:59:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (979, 35, 2, 1.99, '2005-08-02 15:32:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (980, 35, 2, 7.99, '2005-08-02 20:59:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (981, 35, 1, 4.99, '2005-08-17 04:50:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (982, 35, 2, 4.99, '2005-08-17 21:02:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (983, 35, 1, 2.99, '2005-08-20 10:31:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (984, 35, 2, 0.99, '2005-08-21 00:53:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (985, 35, 2, 2.99, '2005-08-21 01:31:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (986, 35, 2, 4.99, '2005-08-21 22:25:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (987, 36, 1, 0.99, '2005-05-27 04:53:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (988, 36, 1, 0.99, '2005-05-29 04:35:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (989, 36, 2, 0.99, '2005-06-19 16:05:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (990, 36, 2, 0.99, '2005-07-07 08:15:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (991, 36, 1, 4.99, '2005-07-08 04:58:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (992, 36, 2, 4.99, '2005-07-08 14:54:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (993, 36, 1, 0.99, '2005-07-09 20:07:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (994, 36, 2, 0.99, '2005-07-11 02:37:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (995, 36, 1, 6.99, '2005-07-27 09:06:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (996, 36, 2, 0.99, '2005-07-28 01:35:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (997, 36, 2, 6.99, '2005-07-28 11:59:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (998, 36, 2, 0.99, '2005-07-28 18:35:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (999, 36, 2, 2.99, '2005-07-29 05:52:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1000, 36, 2, 4.99, '2005-07-30 03:20:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1001, 36, 1, 2.99, '2005-07-30 18:52:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1002, 36, 1, 0.99, '2005-07-31 11:11:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1003, 36, 1, 2.99, '2005-08-01 11:53:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1004, 36, 2, 2.99, '2005-08-01 20:25:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1005, 36, 2, 0.99, '2005-08-02 03:48:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1006, 36, 2, 6.99, '2005-08-02 03:56:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1007, 36, 2, 4.99, '2005-08-17 04:00:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1008, 36, 2, 4.99, '2005-08-17 12:06:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1009, 36, 2, 2.99, '2005-08-20 04:31:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1010, 36, 2, 1.99, '2005-08-20 04:34:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1011, 36, 2, 4.99, '2005-08-20 08:30:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1012, 36, 2, 9.99, '2005-08-21 19:15:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1013, 36, 1, 4.99, '2005-08-23 08:42:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1014, 37, 2, 0.99, '2005-05-25 03:21:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1015, 37, 2, 2.99, '2005-05-30 11:58:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1016, 37, 2, 4.99, '2005-06-16 04:44:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1017, 37, 1, 1.99, '2005-06-16 21:08:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1018, 37, 2, 3.99, '2005-06-17 00:43:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1019, 37, 2, 7.99, '2005-07-05 22:56:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1020, 37, 1, 5.99, '2005-07-06 11:40:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1021, 37, 2, 5.99, '2005-07-09 21:02:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1022, 37, 1, 0.99, '2005-07-28 12:45:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1023, 37, 1, 9.99, '2005-07-29 06:54:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1024, 37, 2, 5.99, '2005-07-31 02:36:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1025, 37, 2, 2.99, '2005-08-01 12:22:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1026, 37, 1, 3.99, '2005-08-02 10:39:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1027, 37, 1, 7.99, '2005-08-19 09:21:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1028, 37, 1, 4.99, '2005-08-19 12:55:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1029, 37, 2, 0.99, '2005-08-20 00:00:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1030, 37, 2, 3.99, '2005-08-20 01:33:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1031, 37, 2, 8.99, '2005-08-20 21:19:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1032, 37, 1, 0.99, '2005-08-20 23:42:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1033, 37, 1, 2.99, '2005-08-21 15:15:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1034, 37, 1, 3.99, '2005-08-22 09:03:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1035, 37, 2, 0.99, '2005-08-23 17:32:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1036, 37, 1, 0.99, '2005-08-23 22:08:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1037, 38, 2, 2.99, '2005-06-15 05:55:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1038, 38, 2, 1.99, '2005-06-19 02:49:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1039, 38, 2, 1.99, '2005-06-19 06:48:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1040, 38, 1, 4.99, '2005-06-20 10:00:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1041, 38, 2, 3.99, '2005-06-21 15:12:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1042, 38, 2, 5.99, '2005-07-07 11:23:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1043, 38, 2, 1.99, '2005-07-07 12:42:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1044, 38, 1, 4.99, '2005-07-07 16:36:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1045, 38, 2, 4.99, '2005-07-08 09:14:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1046, 38, 1, 2.99, '2005-07-09 14:31:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1047, 38, 1, 2.99, '2005-07-09 22:46:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1048, 38, 1, 2.99, '2005-07-10 16:10:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1049, 38, 1, 5.99, '2005-07-12 19:59:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1050, 38, 1, 0.99, '2005-07-27 00:10:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1051, 38, 1, 4.99, '2005-07-27 07:23:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1052, 38, 2, 5.99, '2005-07-27 07:36:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1053, 38, 2, 5.99, '2005-07-27 13:33:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1054, 38, 1, 0.99, '2005-07-28 07:28:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1055, 38, 2, 3.99, '2005-07-30 02:08:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1056, 38, 1, 0.99, '2005-07-30 13:11:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1057, 38, 2, 0.99, '2005-07-30 15:25:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1058, 38, 1, 4.99, '2005-07-31 04:21:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1059, 38, 1, 2.99, '2005-07-31 21:08:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1060, 38, 1, 6.99, '2005-08-01 11:53:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1061, 38, 2, 3.99, '2005-08-02 06:15:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1062, 38, 2, 2.99, '2005-08-02 17:13:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1063, 38, 2, 4.99, '2005-08-17 12:20:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1064, 38, 2, 0.99, '2005-08-17 22:28:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1065, 38, 1, 1.99, '2005-08-18 01:45:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1066, 38, 1, 4.99, '2005-08-21 16:03:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1067, 38, 2, 2.99, '2005-08-21 18:48:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1068, 38, 1, 6.99, '2005-08-22 00:25:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1069, 38, 1, 2.99, '2005-08-23 09:02:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1070, 38, 1, 5.99, '2005-08-23 11:55:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1071, 39, 2, 5.99, '2005-06-16 07:49:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1072, 39, 1, 4.99, '2005-06-17 04:51:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1073, 39, 2, 0.99, '2005-06-17 21:14:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1074, 39, 2, 4.99, '2005-06-18 18:35:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1075, 39, 1, 4.99, '2005-06-19 08:49:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1076, 39, 1, 4.99, '2005-06-20 01:06:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1077, 39, 2, 5.99, '2005-07-07 22:06:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1078, 39, 1, 8.99, '2005-07-08 11:07:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1079, 39, 1, 6.99, '2005-07-08 12:10:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1080, 39, 1, 7.99, '2005-07-08 12:54:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1081, 39, 1, 4.99, '2005-07-09 22:22:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1082, 39, 2, 2.99, '2005-07-10 01:12:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1083, 39, 2, 2.99, '2005-07-11 03:21:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1084, 39, 1, 6.99, '2005-07-29 03:18:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1085, 39, 2, 1.99, '2005-07-29 05:11:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1086, 39, 2, 7.99, '2005-07-29 18:03:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1087, 39, 1, 2.99, '2005-07-29 21:29:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1088, 39, 1, 1.99, '2005-07-30 21:24:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1089, 39, 1, 4.99, '2005-07-31 06:00:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1090, 39, 2, 4.99, '2005-07-31 19:15:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1091, 39, 2, 0.99, '2005-07-31 21:36:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1092, 39, 1, 4.99, '2005-08-01 02:39:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1093, 39, 2, 4.99, '2005-08-01 03:09:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1094, 39, 2, 0.99, '2005-08-01 15:34:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1095, 39, 1, 9.99, '2005-08-01 15:44:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1096, 39, 1, 0.99, '2005-08-18 04:26:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1097, 39, 1, 4.99, '2005-08-18 11:25:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1098, 39, 2, 7.99, '2005-08-19 11:01:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1099, 39, 1, 5.99, '2005-08-22 12:51:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1100, 40, 1, 4.99, '2005-05-25 21:19:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1101, 40, 2, 7.99, '2005-06-18 20:28:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1102, 40, 2, 2.99, '2005-06-20 02:33:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1103, 40, 1, 4.99, '2005-06-20 09:12:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1104, 40, 2, 0.99, '2005-06-21 18:39:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1105, 40, 1, 1.99, '2005-07-09 01:17:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1106, 40, 2, 2.99, '2005-07-10 13:38:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1107, 40, 1, 5.99, '2005-07-10 18:40:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1108, 40, 1, 0.99, '2005-07-12 03:15:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1109, 40, 2, 0.99, '2005-07-28 03:11:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1110, 40, 2, 0.99, '2005-07-28 16:15:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1111, 40, 1, 3.99, '2005-07-28 21:32:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1112, 40, 1, 8.99, '2005-07-30 06:59:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1113, 40, 1, 4.99, '2005-07-31 07:29:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1114, 40, 2, 6.99, '2005-07-31 16:07:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1115, 40, 1, 1.99, '2005-07-31 16:53:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1116, 40, 2, 2.99, '2005-08-01 08:58:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1117, 40, 2, 0.99, '2005-08-17 16:08:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1118, 40, 1, 3.99, '2005-08-17 17:11:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1119, 40, 1, 9.99, '2005-08-18 09:11:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1120, 40, 1, 2.99, '2005-08-19 03:16:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1121, 40, 1, 6.99, '2005-08-19 13:07:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1122, 40, 2, 0.99, '2005-08-19 21:31:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1123, 40, 1, 5.99, '2005-08-20 14:23:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1124, 40, 1, 2.99, '2005-08-20 17:58:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1125, 40, 2, 6.99, '2005-08-21 06:01:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1126, 40, 2, 2.99, '2005-08-22 16:06:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1127, 41, 2, 4.99, '2005-06-19 03:24:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1128, 41, 2, 7.99, '2005-06-21 03:10:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1129, 41, 1, 2.99, '2005-07-06 15:52:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1130, 41, 1, 9.99, '2005-07-07 15:56:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1131, 41, 2, 4.99, '2005-07-08 04:06:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1132, 41, 2, 2.99, '2005-07-08 05:49:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1133, 41, 1, 4.99, '2005-07-27 00:40:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1134, 41, 2, 4.99, '2005-07-27 07:15:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1135, 41, 2, 1.99, '2005-07-27 20:57:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1136, 41, 1, 6.99, '2005-07-28 15:25:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1137, 41, 2, 0.99, '2005-07-28 18:34:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1138, 41, 1, 6.99, '2005-07-28 20:01:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1139, 41, 1, 2.99, '2005-07-28 23:59:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1140, 41, 2, 2.99, '2005-07-29 17:30:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1141, 41, 1, 5.99, '2005-07-30 16:59:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1142, 41, 2, 2.99, '2005-07-31 19:27:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1143, 41, 1, 7.99, '2005-07-31 23:27:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1144, 41, 1, 4.99, '2005-08-01 10:45:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1145, 41, 1, 5.99, '2005-08-02 00:00:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1146, 41, 1, 2.99, '2005-08-18 00:10:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1147, 41, 1, 3.99, '2005-08-18 01:08:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1148, 41, 2, 0.99, '2005-08-19 01:07:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1149, 41, 1, 7.99, '2005-08-21 15:29:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1150, 41, 1, 4.99, '2005-08-23 16:08:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1151, 41, 1, 2.99, '2005-08-23 16:31:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1152, 42, 2, 5.99, '2005-05-28 17:46:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1153, 42, 2, 0.99, '2005-06-16 00:49:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1154, 42, 2, 2.99, '2005-06-17 15:27:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1155, 42, 1, 3.99, '2005-06-17 23:57:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1156, 42, 2, 4.99, '2005-06-18 08:27:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1157, 42, 2, 2.99, '2005-07-07 21:09:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1158, 42, 2, 4.99, '2005-07-09 10:50:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1159, 42, 2, 5.99, '2005-07-10 01:15:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1160, 42, 2, 3.99, '2005-07-10 07:18:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1161, 42, 1, 2.99, '2005-07-11 10:59:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1162, 42, 1, 2.99, '2005-07-12 16:52:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1163, 42, 1, 0.99, '2005-07-26 22:52:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1164, 42, 2, 3.99, '2005-07-27 16:25:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1165, 42, 2, 0.99, '2005-07-28 16:51:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1166, 42, 2, 6.99, '2005-07-28 18:32:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1167, 42, 1, 2.99, '2005-07-28 21:23:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1168, 42, 2, 3.99, '2005-07-29 09:10:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1169, 42, 1, 2.99, '2005-07-29 20:36:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1170, 42, 2, 3.99, '2005-07-29 23:30:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1171, 42, 1, 3.99, '2005-07-30 01:42:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1172, 42, 1, 6.99, '2005-07-31 19:23:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1173, 42, 1, 2.99, '2005-08-01 05:18:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1174, 42, 1, 2.99, '2005-08-01 23:47:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1175, 42, 1, 5.99, '2005-08-02 02:54:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1176, 42, 1, 4.99, '2005-08-18 12:25:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1177, 42, 2, 2.99, '2005-08-18 13:05:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1178, 42, 2, 4.99, '2005-08-19 20:50:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1179, 42, 1, 7.99, '2005-08-21 12:50:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1180, 42, 2, 0.99, '2005-08-22 23:24:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1181, 42, 1, 2.99, '2005-08-23 00:42:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1182, 43, 2, 4.99, '2005-05-25 20:26:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1183, 43, 2, 4.99, '2005-05-28 20:08:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1184, 43, 1, 4.99, '2005-06-16 01:28:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1185, 43, 2, 1.99, '2005-07-06 09:25:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1186, 43, 2, 2.99, '2005-07-08 02:07:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1187, 43, 1, 4.99, '2005-07-09 09:00:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1188, 43, 1, 4.99, '2005-07-09 19:59:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1189, 43, 1, 2.99, '2005-07-10 16:34:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1190, 43, 2, 4.99, '2005-07-10 22:40:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1191, 43, 2, 3.99, '2005-07-12 01:36:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1192, 43, 2, 0.99, '2005-07-12 12:01:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1193, 43, 1, 4.99, '2005-07-27 14:32:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1194, 43, 1, 4.99, '2005-07-28 10:08:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1195, 43, 1, 4.99, '2005-07-29 05:25:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1196, 43, 2, 4.99, '2005-07-30 12:43:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1197, 43, 2, 4.99, '2005-08-17 09:11:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1198, 43, 2, 2.99, '2005-08-21 05:29:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1199, 43, 1, 4.99, '2005-08-21 19:19:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1200, 43, 2, 4.99, '2005-08-22 01:54:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1201, 43, 2, 4.99, '2005-08-22 10:13:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1202, 43, 2, 4.99, '2005-08-22 14:27:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1203, 43, 2, 2.99, '2005-08-23 08:14:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1204, 43, 2, 0.99, '2005-08-23 12:25:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1205, 43, 2, 6.99, '2005-08-23 14:23:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1206, 43, 2, 2.99, '2005-08-23 18:51:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1207, 44, 2, 0.99, '2005-05-25 03:47:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1208, 44, 1, 4.99, '2005-05-25 16:50:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1209, 44, 1, 2.99, '2005-05-27 13:57:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1210, 44, 2, 0.99, '2005-05-29 05:28:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1211, 44, 1, 2.99, '2005-05-30 10:19:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1212, 44, 2, 3.99, '2005-06-15 21:56:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1213, 44, 2, 2.99, '2005-06-18 14:25:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1214, 44, 2, 3.99, '2005-06-19 19:40:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1215, 44, 2, 4.99, '2005-06-20 00:01:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1216, 44, 1, 0.99, '2005-07-07 20:59:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1217, 44, 2, 9.99, '2005-07-08 12:44:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1218, 44, 2, 3.99, '2005-07-10 03:01:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1219, 44, 2, 8.99, '2005-07-10 14:08:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1220, 44, 1, 6.99, '2005-07-10 17:32:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1221, 44, 2, 4.99, '2005-07-10 20:46:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1222, 44, 2, 0.99, '2005-07-27 20:51:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1223, 44, 1, 6.99, '2005-07-27 21:13:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1224, 44, 2, 4.99, '2005-07-29 20:05:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1225, 44, 1, 4.99, '2005-07-29 23:58:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1226, 44, 1, 2.99, '2005-08-02 17:53:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1227, 44, 1, 3.99, '2005-08-18 07:16:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1228, 44, 1, 4.99, '2005-08-18 13:17:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1229, 44, 2, 6.99, '2005-08-19 00:16:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1230, 44, 1, 4.99, '2005-08-19 07:06:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1231, 44, 2, 4.99, '2005-08-19 23:21:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1232, 44, 1, 2.99, '2005-08-22 10:14:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1233, 45, 2, 2.99, '2005-05-26 17:32:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1234, 45, 2, 4.99, '2005-06-16 20:41:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1235, 45, 1, 2.99, '2005-06-17 09:45:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1236, 45, 2, 4.99, '2005-06-19 14:55:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1237, 45, 1, 3.99, '2005-06-21 15:11:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1238, 45, 2, 0.99, '2005-06-21 20:39:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1239, 45, 1, 0.99, '2005-07-08 18:27:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1240, 45, 2, 6.99, '2005-07-09 10:07:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1241, 45, 1, 7.99, '2005-07-09 20:11:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1242, 45, 2, 0.99, '2005-07-10 06:31:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1243, 45, 2, 0.99, '2005-07-11 01:24:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1244, 45, 2, 2.99, '2005-07-11 01:27:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1245, 45, 1, 9.99, '2005-07-27 00:15:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1246, 45, 2, 2.99, '2005-07-27 17:39:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1247, 45, 1, 3.99, '2005-07-28 13:47:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1248, 45, 1, 2.99, '2005-08-01 11:22:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1249, 45, 1, 6.99, '2005-08-02 00:33:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1250, 45, 1, 8.99, '2005-08-02 05:04:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1251, 45, 2, 4.99, '2005-08-02 05:51:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1252, 45, 2, 2.99, '2005-08-02 22:28:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1253, 45, 2, 3.99, '2005-08-02 22:35:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1254, 45, 1, 2.99, '2005-08-17 08:09:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1255, 45, 2, 3.99, '2005-08-19 20:18:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1256, 45, 2, 4.99, '2005-08-19 22:05:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1257, 45, 2, 6.99, '2005-08-21 16:52:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1258, 45, 2, 10.99, '2005-08-23 14:47:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1259, 45, 1, 7.99, '2005-08-23 22:13:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1260, 46, 2, 2.99, '2005-05-27 12:57:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1261, 46, 2, 4.99, '2005-05-27 16:40:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1262, 46, 2, 2.99, '2005-05-30 14:47:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1263, 46, 1, 4.99, '2005-06-14 23:17:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1264, 46, 1, 4.99, '2005-06-15 03:18:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1265, 46, 1, 0.99, '2005-06-17 22:05:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1266, 46, 1, 2.99, '2005-06-18 02:10:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1267, 46, 1, 8.99, '2005-06-20 07:33:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1268, 46, 2, 4.99, '2005-06-20 08:06:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1269, 46, 2, 4.99, '2005-06-21 19:36:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1270, 46, 1, 2.99, '2005-07-06 17:03:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1271, 46, 1, 4.99, '2005-07-06 20:18:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1272, 46, 2, 4.99, '2005-07-10 09:47:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1273, 46, 2, 0.99, '2005-07-27 14:11:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1274, 46, 2, 3.99, '2005-07-28 20:53:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1275, 46, 2, 8.99, '2005-07-30 06:36:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1276, 46, 2, 2.99, '2005-07-31 11:13:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1277, 46, 2, 2.99, '2005-07-31 20:16:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1278, 46, 2, 4.99, '2005-08-01 08:30:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1279, 46, 1, 4.99, '2005-08-01 22:22:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1280, 46, 1, 5.99, '2005-08-01 23:13:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1281, 46, 2, 0.99, '2005-08-17 07:49:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1282, 46, 2, 4.99, '2005-08-17 22:32:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1283, 46, 2, 2.99, '2005-08-18 03:25:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1284, 46, 2, 4.99, '2005-08-18 04:49:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1285, 46, 2, 2.99, '2005-08-18 05:30:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1286, 46, 2, 4.99, '2005-08-18 11:19:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1287, 46, 1, 0.99, '2005-08-19 16:05:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1288, 46, 2, 4.99, '2005-08-21 02:10:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1289, 46, 2, 6.99, '2005-08-21 15:08:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1290, 46, 1, 4.99, '2005-08-22 05:54:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1291, 46, 1, 2.99, '2005-08-23 00:31:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1292, 46, 1, 0.99, '2005-08-23 10:35:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1293, 46, 2, 5.99, '2005-08-23 12:47:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1294, 47, 1, 3.99, '2005-05-26 03:46:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1295, 47, 2, 4.99, '2005-05-26 08:04:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1296, 47, 1, 6.99, '2005-05-26 20:57:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1297, 47, 1, 4.99, '2005-06-17 03:17:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1298, 47, 2, 6.99, '2005-06-18 08:34:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1299, 47, 1, 5.99, '2005-06-21 08:29:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1300, 47, 2, 4.99, '2005-07-06 06:36:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1301, 47, 2, 5.99, '2005-07-07 04:29:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1302, 47, 1, 0.99, '2005-07-09 09:31:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1303, 47, 2, 9.99, '2005-07-11 09:31:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1304, 47, 1, 0.99, '2005-07-11 10:16:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1305, 47, 2, 3.99, '2005-07-11 19:30:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1306, 47, 2, 4.99, '2005-07-28 21:09:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1307, 47, 2, 6.99, '2005-07-29 06:25:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1308, 47, 2, 3.99, '2005-07-29 23:52:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1309, 47, 1, 4.99, '2005-07-30 15:07:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1310, 47, 2, 0.99, '2005-08-02 08:59:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1311, 47, 1, 5.99, '2005-08-02 22:09:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1312, 47, 1, 7.99, '2005-08-18 02:35:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1313, 47, 1, 7.99, '2005-08-18 04:41:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1314, 47, 2, 0.99, '2005-08-21 10:25:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1315, 47, 2, 2.99, '2005-08-23 15:39:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1316, 48, 1, 0.99, '2005-05-25 10:52:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1317, 48, 1, 2.99, '2005-05-26 20:48:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1318, 48, 2, 4.99, '2005-05-27 11:02:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1319, 48, 1, 9.99, '2005-06-16 12:18:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1320, 48, 1, 0.99, '2005-06-19 20:29:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1321, 48, 1, 4.99, '2005-07-06 12:43:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1322, 48, 1, 2.99, '2005-07-07 19:52:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1323, 48, 1, 6.99, '2005-07-09 08:22:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1324, 48, 2, 3.99, '2005-07-12 03:05:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1325, 48, 1, 2.99, '2005-07-28 12:01:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1326, 48, 2, 6.99, '2005-07-29 17:39:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1327, 48, 1, 7.99, '2005-07-30 20:18:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1328, 48, 2, 7.99, '2005-07-31 09:10:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1329, 48, 2, 2.99, '2005-08-01 03:22:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1330, 48, 2, 1.99, '2005-08-21 12:21:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1331, 48, 2, 2.99, '2005-08-21 15:22:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1332, 48, 2, 3.99, '2005-08-22 17:27:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1333, 49, 1, 1.99, '2005-05-25 16:32:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1334, 49, 2, 3.99, '2005-05-26 12:30:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1335, 49, 1, 2.99, '2005-05-30 01:17:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1336, 49, 1, 4.99, '2005-05-31 01:57:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1337, 49, 1, 0.99, '2005-06-14 23:16:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1338, 49, 1, 9.99, '2005-06-15 04:44:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1339, 49, 2, 0.99, '2005-06-16 12:11:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1340, 49, 2, 6.99, '2005-06-16 18:52:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1341, 49, 1, 4.99, '2005-06-21 02:46:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1342, 49, 2, 4.99, '2005-07-06 03:36:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1343, 49, 1, 0.99, '2005-07-06 05:47:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1344, 49, 2, 2.99, '2005-07-10 00:09:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1345, 49, 1, 4.99, '2005-07-11 12:49:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1346, 49, 2, 6.99, '2005-07-11 16:26:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1347, 49, 2, 7.99, '2005-07-12 04:06:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1348, 49, 2, 4.99, '2005-07-12 15:14:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1349, 49, 1, 4.99, '2005-07-27 09:16:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1350, 49, 2, 8.99, '2005-07-28 05:33:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1351, 49, 1, 10.99, '2005-07-29 11:15:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1352, 49, 2, 0.99, '2005-07-30 05:06:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1353, 49, 1, 4.99, '2005-07-31 12:50:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1354, 49, 1, 4.99, '2005-07-31 22:13:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1355, 49, 2, 0.99, '2005-08-01 03:05:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1356, 49, 1, 2.99, '2005-08-01 14:10:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1357, 49, 1, 2.99, '2005-08-01 22:43:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1358, 49, 2, 5.99, '2005-08-21 03:00:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1359, 49, 1, 6.99, '2005-08-21 18:35:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1360, 49, 1, 2.99, '2005-08-21 20:02:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1361, 50, 2, 4.99, '2005-05-29 11:32:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1362, 50, 1, 4.99, '2005-05-29 16:44:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1363, 50, 2, 4.99, '2005-05-30 10:25:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1364, 50, 2, 4.99, '2005-05-31 03:52:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1365, 50, 1, 4.99, '2005-05-31 19:19:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1366, 50, 1, 2.99, '2005-06-15 03:38:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1367, 50, 2, 4.99, '2005-06-16 19:27:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1368, 50, 2, 0.99, '2005-06-20 09:32:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1369, 50, 1, 2.99, '2005-06-20 21:55:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1370, 50, 1, 2.99, '2005-07-07 08:40:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1371, 50, 1, 4.99, '2005-07-09 15:14:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1372, 50, 2, 4.99, '2005-07-10 06:43:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1373, 50, 2, 9.99, '2005-07-10 08:48:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1374, 50, 2, 6.99, '2005-07-10 21:58:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1375, 50, 1, 0.99, '2005-07-12 09:37:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1376, 50, 2, 8.99, '2005-07-12 11:36:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1377, 50, 1, 4.99, '2005-07-27 15:46:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1378, 50, 1, 0.99, '2005-07-28 18:26:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1379, 50, 2, 0.99, '2005-07-29 01:11:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1380, 50, 1, 5.99, '2005-07-29 13:50:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1381, 50, 1, 0.99, '2005-07-30 12:02:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1382, 50, 2, 4.99, '2005-07-31 03:59:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1383, 50, 1, 10.99, '2005-07-31 07:09:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1384, 50, 1, 2.99, '2005-07-31 19:07:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1385, 50, 1, 0.99, '2005-07-31 23:21:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1386, 50, 2, 6.99, '2005-07-31 23:57:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1387, 50, 1, 4.99, '2005-08-01 02:58:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1388, 50, 2, 7.99, '2005-08-01 10:20:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1389, 50, 2, 3.99, '2005-08-02 06:27:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1390, 50, 1, 6.99, '2005-08-18 23:25:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1391, 50, 1, 7.99, '2005-08-19 12:24:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1392, 50, 1, 4.99, '2005-08-20 22:17:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1393, 50, 2, 2.99, '2005-08-22 13:36:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1394, 50, 2, 6.99, '2005-08-22 22:49:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1395, 50, 1, 4.99, '2005-08-23 21:25:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1396, 51, 2, 4.99, '2005-05-25 19:37:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1397, 51, 2, 4.99, '2005-05-28 21:01:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1398, 51, 2, 4.99, '2005-05-31 03:48:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1399, 51, 2, 1.99, '2005-06-15 14:48:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1400, 51, 2, 0.99, '2005-06-15 21:11:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1401, 51, 2, 9.99, '2005-07-06 01:02:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1402, 51, 2, 2.99, '2005-07-09 12:30:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1403, 51, 1, 5.99, '2005-07-09 15:48:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1404, 51, 2, 7.99, '2005-07-09 23:19:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1405, 51, 1, 4.99, '2005-07-10 05:07:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1406, 51, 1, 5.99, '2005-07-27 09:13:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1407, 51, 2, 6.99, '2005-07-27 16:07:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1408, 51, 2, 5.99, '2005-07-28 01:08:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1409, 51, 1, 4.99, '2005-07-29 09:05:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1410, 51, 1, 0.99, '2005-07-29 16:44:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1411, 51, 1, 0.99, '2005-07-30 00:16:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1412, 51, 2, 0.99, '2005-07-31 05:46:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1413, 51, 1, 4.99, '2005-08-01 02:20:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1414, 51, 1, 2.99, '2005-08-01 21:14:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1415, 51, 2, 0.99, '2005-08-02 01:12:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1416, 51, 2, 2.99, '2005-08-02 15:38:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1417, 51, 1, 4.99, '2005-08-17 06:39:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1418, 51, 2, 6.99, '2005-08-17 09:07:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1419, 51, 1, 0.99, '2005-08-18 01:36:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1420, 51, 1, 4.99, '2005-08-18 21:43:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1421, 51, 2, 2.99, '2005-08-19 10:51:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1422, 51, 1, 2.99, '2005-08-19 18:54:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1423, 51, 1, 0.99, '2005-08-20 15:06:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1424, 51, 1, 2.99, '2005-08-20 15:23:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1425, 51, 1, 6.99, '2005-08-21 04:49:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1426, 51, 1, 4.99, '2005-08-21 14:47:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1427, 51, 1, 4.99, '2005-08-21 18:07:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1428, 51, 2, 4.99, '2005-08-22 04:31:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1429, 52, 2, 0.99, '2005-05-30 05:36:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1430, 52, 2, 4.99, '2005-06-15 01:38:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1431, 52, 2, 0.99, '2005-06-18 03:54:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1432, 52, 1, 2.99, '2005-06-19 23:47:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1433, 52, 2, 4.99, '2005-06-21 00:02:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1434, 52, 2, 1.99, '2005-07-06 23:46:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1435, 52, 1, 0.99, '2005-07-09 15:58:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1436, 52, 1, 3.99, '2005-07-09 16:04:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1437, 52, 1, 2.99, '2005-07-10 05:08:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1438, 52, 1, 7.99, '2005-07-11 22:29:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1439, 52, 2, 0.99, '2005-07-27 12:12:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1440, 52, 2, 5.99, '2005-07-27 17:40:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1441, 52, 2, 4.99, '2005-07-28 00:56:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1442, 52, 2, 4.99, '2005-07-29 16:17:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1443, 52, 2, 4.99, '2005-07-30 06:03:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1444, 52, 2, 3.99, '2005-07-31 09:18:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1445, 52, 2, 4.99, '2005-07-31 10:53:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1446, 52, 1, 0.99, '2005-08-01 14:12:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1447, 52, 1, 0.99, '2005-08-01 15:37:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1448, 52, 2, 0.99, '2005-08-02 07:08:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1449, 52, 2, 3.99, '2005-08-17 08:24:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1450, 52, 1, 4.99, '2005-08-17 18:49:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1451, 52, 1, 2.99, '2005-08-18 02:12:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1452, 52, 1, 0.99, '2005-08-18 13:42:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1453, 52, 1, 5.99, '2005-08-19 10:39:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1454, 52, 1, 2.99, '2005-08-22 01:18:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1455, 52, 1, 5.99, '2005-08-22 01:21:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1456, 52, 2, 6.99, '2005-08-22 06:35:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1457, 52, 2, 5.99, '2005-08-23 17:00:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1458, 53, 2, 3.99, '2005-05-25 14:13:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1459, 53, 2, 2.99, '2005-05-27 09:23:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1460, 53, 1, 0.99, '2005-05-29 09:55:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1461, 53, 1, 5.99, '2005-05-29 14:41:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1462, 53, 1, 9.99, '2005-05-30 02:01:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1463, 53, 1, 2.99, '2005-05-31 15:04:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1464, 53, 1, 0.99, '2005-06-17 09:10:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1465, 53, 1, 2.99, '2005-06-18 15:26:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1466, 53, 1, 2.99, '2005-06-20 02:49:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1467, 53, 1, 2.99, '2005-06-20 19:47:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1468, 53, 1, 0.99, '2005-06-21 03:01:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1469, 53, 1, 2.99, '2005-07-06 04:37:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1470, 53, 2, 4.99, '2005-07-06 19:12:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1471, 53, 1, 2.99, '2005-07-09 10:14:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1472, 53, 1, 2.99, '2005-07-27 18:51:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1473, 53, 2, 4.99, '2005-07-28 03:52:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1474, 53, 1, 4.99, '2005-07-30 18:13:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1475, 53, 2, 7.99, '2005-07-31 15:13:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1476, 53, 2, 3.99, '2005-08-01 14:14:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1477, 53, 1, 2.99, '2005-08-17 05:13:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1478, 53, 1, 5.99, '2005-08-17 20:59:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1479, 53, 2, 2.99, '2005-08-18 15:49:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1480, 53, 1, 5.99, '2005-08-19 09:25:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1481, 53, 2, 2.99, '2005-08-20 12:16:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1482, 53, 2, 2.99, '2005-08-20 22:32:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1483, 53, 1, 0.99, '2005-08-21 00:11:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1484, 53, 1, 5.99, '2005-08-21 01:15:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1485, 53, 1, 4.99, '2005-08-21 01:57:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1486, 53, 2, 4.99, '2005-08-21 19:59:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1487, 53, 2, 0.99, '2005-08-22 01:09:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1488, 54, 2, 4.99, '2005-05-26 07:03:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1489, 54, 1, 4.99, '2005-05-27 18:11:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1490, 54, 1, 3.99, '2005-05-28 07:10:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1491, 54, 1, 4.99, '2005-06-16 02:19:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1492, 54, 2, 2.99, '2005-06-16 03:22:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1493, 54, 1, 6.99, '2005-06-18 09:55:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1494, 54, 2, 4.99, '2005-06-19 09:57:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1495, 54, 2, 4.99, '2005-07-08 09:51:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1496, 54, 2, 1.99, '2005-07-09 04:05:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1497, 54, 2, 2.99, '2005-07-10 21:59:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1498, 54, 1, 2.99, '2005-07-11 01:06:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1499, 54, 1, 7.99, '2005-07-11 19:39:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1500, 54, 2, 2.99, '2005-07-12 05:22:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1501, 54, 1, 0.99, '2005-07-12 18:03:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1502, 54, 2, 4.99, '2005-07-30 04:44:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1503, 54, 1, 5.99, '2005-08-01 10:27:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1504, 54, 1, 5.99, '2005-08-02 00:47:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1505, 54, 1, 4.99, '2005-08-02 03:33:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1506, 54, 1, 4.99, '2005-08-02 10:55:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1507, 54, 1, 2.99, '2005-08-17 15:03:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1508, 54, 1, 2.99, '2005-08-18 13:48:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1509, 54, 1, 5.99, '2005-08-18 23:35:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1510, 54, 1, 4.99, '2005-08-19 00:51:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1511, 54, 1, 0.99, '2005-08-19 02:57:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1512, 54, 1, 2.99, '2005-08-19 19:16:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1513, 54, 1, 0.99, '2005-08-20 15:41:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1514, 54, 2, 4.99, '2005-08-21 04:34:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1515, 54, 1, 10.99, '2005-08-22 17:20:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1516, 54, 2, 4.99, '2005-08-23 05:20:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1517, 55, 1, 4.99, '2005-05-28 08:31:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1518, 55, 1, 9.99, '2005-05-31 03:46:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1519, 55, 1, 0.99, '2005-05-31 06:49:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1520, 55, 1, 2.99, '2005-06-16 21:53:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1521, 55, 1, 2.99, '2005-06-17 15:56:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1522, 55, 1, 2.99, '2005-06-20 02:54:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1523, 55, 2, 4.99, '2005-06-20 08:09:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1524, 55, 2, 4.99, '2005-06-20 20:34:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1525, 55, 1, 4.99, '2005-07-08 10:15:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1526, 55, 2, 7.99, '2005-07-11 18:32:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1527, 55, 2, 4.99, '2005-07-27 03:33:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1528, 55, 2, 6.99, '2005-07-29 02:04:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1529, 55, 2, 2.99, '2005-07-30 16:34:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1530, 55, 2, 5.99, '2005-07-31 03:28:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1531, 55, 1, 2.99, '2005-07-31 10:55:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1532, 55, 1, 1.99, '2005-08-02 14:49:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1533, 55, 1, 4.99, '2005-08-18 23:37:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1534, 55, 1, 4.99, '2005-08-19 00:40:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1535, 55, 1, 1.99, '2005-08-19 06:43:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1536, 55, 1, 6.99, '2005-08-19 20:25:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1537, 55, 1, 2.99, '2005-08-21 19:51:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1538, 55, 2, 4.99, '2005-08-22 19:37:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1539, 56, 1, 3.99, '2005-05-25 21:21:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1540, 56, 2, 5.99, '2005-05-27 04:01:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1541, 56, 2, 2.99, '2005-05-28 00:43:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1542, 56, 2, 6.99, '2005-05-28 10:12:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1543, 56, 1, 6.99, '2005-06-16 20:09:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1544, 56, 1, 0.99, '2005-06-17 21:40:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1545, 56, 2, 4.99, '2005-06-18 21:26:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1546, 56, 1, 0.99, '2005-06-20 08:59:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1547, 56, 1, 7.99, '2005-07-06 10:57:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1548, 56, 2, 2.99, '2005-07-06 13:19:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1549, 56, 2, 3.99, '2005-07-07 06:10:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1550, 56, 1, 4.99, '2005-07-08 11:41:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1551, 56, 2, 4.99, '2005-07-09 08:05:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1552, 56, 2, 2.99, '2005-07-27 15:49:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1553, 56, 2, 7.99, '2005-07-28 03:41:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1554, 56, 2, 0.99, '2005-07-28 12:49:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1555, 56, 2, 0.99, '2005-07-29 02:00:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1556, 56, 2, 6.99, '2005-08-01 05:49:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1557, 56, 2, 0.99, '2005-08-01 17:26:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1558, 56, 1, 4.99, '2005-08-02 03:20:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1559, 56, 1, 5.99, '2005-08-02 17:45:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1560, 56, 1, 4.99, '2005-08-17 05:11:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1561, 56, 1, 1.99, '2005-08-18 14:06:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1562, 56, 2, 4.99, '2005-08-18 21:07:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1563, 56, 2, 8.99, '2005-08-20 04:17:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1564, 56, 2, 5.99, '2005-08-20 11:43:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1565, 56, 1, 3.99, '2005-08-21 07:03:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1566, 56, 1, 0.99, '2005-08-21 15:16:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1567, 56, 1, 7.99, '2005-08-23 10:23:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1568, 56, 1, 4.99, '2005-08-23 10:56:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1569, 57, 2, 9.99, '2005-05-26 00:41:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1570, 57, 1, 4.99, '2005-05-30 15:20:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1571, 57, 1, 5.99, '2005-06-17 15:34:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1572, 57, 1, 0.99, '2005-06-17 19:15:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1573, 57, 2, 4.99, '2005-06-18 13:11:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1574, 57, 1, 7.99, '2005-06-20 03:31:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1575, 57, 2, 0.99, '2005-06-21 11:55:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1576, 57, 1, 4.99, '2005-07-06 11:16:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1577, 57, 1, 4.99, '2005-07-07 12:37:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1578, 57, 2, 4.99, '2005-07-09 04:28:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1579, 57, 2, 0.99, '2005-07-10 09:40:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1580, 57, 1, 2.99, '2005-07-10 23:12:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1581, 57, 1, 4.99, '2005-07-12 01:50:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1582, 57, 2, 1.99, '2005-07-12 02:42:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1583, 57, 1, 4.99, '2005-07-12 10:51:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1584, 57, 1, 5.99, '2005-07-29 00:48:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1585, 57, 1, 0.99, '2005-07-30 08:18:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1586, 57, 2, 0.99, '2005-07-30 10:07:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1587, 57, 1, 1.99, '2005-07-30 12:59:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1588, 57, 1, 0.99, '2005-07-31 07:34:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1589, 57, 2, 2.99, '2005-07-31 11:28:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1590, 57, 1, 4.99, '2005-07-31 23:27:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1591, 57, 1, 5.99, '2005-08-19 04:59:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1592, 57, 2, 0.99, '2005-08-19 13:29:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1593, 57, 1, 0.99, '2005-08-20 10:51:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1594, 57, 2, 9.99, '2005-08-20 17:13:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1595, 57, 1, 0.99, '2005-08-23 05:26:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1596, 57, 2, 9.99, '2005-08-23 16:24:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1597, 58, 1, 0.99, '2005-05-26 11:31:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1598, 58, 2, 7.99, '2005-05-26 17:16:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1599, 58, 1, 0.99, '2005-05-29 11:09:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1600, 58, 2, 4.99, '2005-06-18 01:33:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1601, 58, 2, 0.99, '2005-06-19 02:14:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1602, 58, 1, 0.99, '2005-06-20 03:04:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1603, 58, 1, 4.99, '2005-07-06 09:30:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1604, 58, 1, 4.99, '2005-07-07 07:53:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1605, 58, 2, 1.99, '2005-07-09 21:39:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1606, 58, 1, 9.99, '2005-07-27 03:52:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1607, 58, 2, 4.99, '2005-07-27 19:32:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1608, 58, 1, 0.99, '2005-07-29 23:34:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1609, 58, 2, 2.99, '2005-07-31 02:22:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1610, 58, 1, 2.99, '2005-07-31 18:48:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1611, 58, 2, 4.99, '2005-07-31 19:39:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1612, 58, 1, 4.99, '2005-08-01 02:47:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1613, 58, 1, 0.99, '2005-08-01 17:00:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1614, 58, 1, 6.99, '2005-08-02 19:44:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1615, 58, 2, 8.99, '2005-08-18 05:08:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1616, 58, 2, 6.99, '2005-08-19 14:34:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1617, 58, 1, 3.99, '2005-08-19 15:14:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1618, 58, 1, 2.99, '2005-08-20 17:15:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1619, 58, 2, 4.99, '2005-08-20 18:52:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1620, 58, 1, 5.99, '2005-08-21 07:29:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1621, 58, 2, 6.99, '2005-08-21 19:49:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1622, 58, 2, 4.99, '2005-08-22 07:47:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1623, 58, 2, 0.99, '2005-08-22 20:28:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1624, 59, 1, 4.99, '2005-05-26 08:34:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1625, 59, 2, 2.99, '2005-05-30 16:10:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1626, 59, 1, 5.99, '2005-05-31 21:42:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1627, 59, 1, 2.99, '2005-06-15 07:29:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1628, 59, 1, 3.99, '2005-06-16 15:29:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1629, 59, 1, 3.99, '2005-06-20 04:13:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1630, 59, 2, 2.99, '2005-07-07 08:36:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1631, 59, 1, 4.99, '2005-07-07 20:46:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1632, 59, 1, 4.99, '2005-07-08 08:38:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1633, 59, 2, 3.99, '2005-07-08 20:06:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1634, 59, 1, 8.99, '2005-07-09 10:39:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1635, 59, 1, 3.99, '2005-07-09 11:15:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1636, 59, 1, 4.99, '2005-07-10 16:34:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1637, 59, 2, 4.99, '2005-07-28 14:45:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1638, 59, 2, 4.99, '2005-07-29 14:45:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1639, 59, 1, 8.99, '2005-07-30 22:56:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1640, 59, 2, 6.99, '2005-07-31 02:45:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1641, 59, 1, 4.99, '2005-08-02 18:48:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1642, 59, 2, 5.99, '2005-08-19 01:42:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1643, 59, 1, 2.99, '2005-08-19 18:08:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1644, 59, 1, 2.99, '2005-08-20 05:10:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1645, 59, 2, 4.99, '2005-08-20 16:57:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1646, 59, 1, 5.99, '2005-08-21 01:53:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1647, 59, 1, 5.99, '2005-08-22 07:12:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1648, 59, 1, 5.99, '2005-08-22 18:48:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1649, 59, 2, 4.99, '2005-08-23 12:15:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1650, 59, 2, 2.99, '2005-08-23 17:33:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1651, 60, 2, 4.99, '2005-05-26 23:37:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1652, 60, 2, 1.99, '2005-05-29 03:05:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1653, 60, 1, 2.99, '2005-05-30 13:24:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1654, 60, 2, 4.99, '2005-06-15 21:18:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1655, 60, 1, 4.99, '2005-06-18 15:42:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1656, 60, 2, 2.99, '2005-07-05 22:57:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1657, 60, 2, 2.99, '2005-07-06 16:49:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1658, 60, 1, 5.99, '2005-07-11 16:46:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1659, 60, 1, 0.99, '2005-07-27 03:55:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1660, 60, 2, 3.99, '2005-07-27 13:57:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1661, 60, 1, 0.99, '2005-07-27 19:56:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1662, 60, 2, 4.99, '2005-07-30 18:36:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1663, 60, 1, 4.99, '2005-07-31 09:31:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1664, 60, 2, 0.99, '2005-08-01 17:28:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1665, 60, 1, 4.99, '2005-08-02 07:58:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1666, 60, 1, 8.99, '2005-08-02 19:12:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1667, 60, 1, 1.99, '2005-08-17 22:16:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1668, 60, 1, 4.99, '2005-08-18 12:48:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1669, 60, 2, 7.99, '2005-08-18 17:16:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1670, 60, 2, 4.99, '2005-08-21 22:38:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1671, 60, 1, 2.99, '2005-08-22 11:39:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1672, 60, 1, 2.99, '2005-08-22 20:15:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1673, 60, 2, 5.99, '2005-08-23 07:07:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1674, 60, 2, 0.99, '2005-08-23 07:30:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1675, 60, 1, 2.99, '2005-08-23 08:28:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1676, 61, 2, 0.99, '2005-05-31 22:47:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1677, 61, 1, 7.99, '2005-07-27 02:50:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1678, 61, 1, 1.99, '2005-07-27 04:01:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1679, 61, 1, 6.99, '2005-07-28 16:11:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1680, 61, 2, 4.99, '2005-07-28 17:37:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1681, 61, 2, 3.99, '2005-07-29 15:02:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1682, 61, 1, 6.99, '2005-07-31 03:29:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1683, 61, 1, 0.99, '2005-08-01 12:46:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1684, 61, 1, 2.99, '2005-08-02 18:16:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1685, 61, 1, 9.99, '2005-08-17 21:50:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1686, 61, 1, 0.99, '2005-08-20 00:18:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1687, 61, 1, 0.99, '2005-08-20 13:57:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1688, 61, 2, 6.99, '2005-08-22 11:34:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1689, 61, 2, 1.99, '2005-08-23 09:35:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1690, 62, 1, 0.99, '2005-05-30 06:54:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1691, 62, 1, 4.99, '2005-05-30 15:36:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1692, 62, 1, 6.99, '2005-06-15 04:59:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1693, 62, 2, 0.99, '2005-06-15 21:25:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1694, 62, 2, 0.99, '2005-06-16 04:52:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1695, 62, 1, 4.99, '2005-06-20 11:13:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1696, 62, 1, 5.99, '2005-06-20 12:17:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1697, 62, 1, 0.99, '2005-06-21 06:32:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1698, 62, 1, 3.99, '2005-06-21 09:04:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1699, 62, 1, 2.99, '2005-07-06 16:35:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1700, 62, 2, 4.99, '2005-07-07 09:10:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1701, 62, 2, 2.99, '2005-07-09 15:16:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1702, 62, 2, 4.99, '2005-07-29 05:08:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1703, 62, 1, 0.99, '2005-07-31 20:07:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1704, 62, 2, 2.99, '2005-08-01 22:46:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1705, 62, 2, 5.99, '2005-08-02 15:22:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1706, 62, 1, 0.99, '2005-08-17 18:23:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1707, 62, 2, 8.99, '2005-08-20 02:27:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1708, 62, 1, 1.99, '2005-08-21 16:50:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1709, 62, 2, 2.99, '2005-08-21 17:34:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1710, 62, 1, 4.99, '2005-08-22 01:20:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1711, 62, 1, 6.99, '2005-08-23 01:15:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1712, 62, 1, 0.99, '2005-08-23 06:11:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1713, 63, 2, 0.99, '2005-06-16 21:30:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1714, 63, 1, 8.99, '2005-07-06 20:34:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1715, 63, 2, 4.99, '2005-07-08 06:16:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1716, 63, 1, 6.99, '2005-07-10 04:15:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1717, 63, 1, 4.99, '2005-07-10 14:10:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1718, 63, 1, 4.99, '2005-07-10 16:34:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1719, 63, 2, 3.99, '2005-07-12 15:48:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1720, 63, 2, 8.99, '2005-07-12 19:22:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1721, 63, 2, 5.99, '2005-07-29 03:26:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1722, 63, 1, 0.99, '2005-07-30 05:09:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1723, 63, 1, 4.99, '2005-07-31 01:47:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1724, 63, 2, 3.99, '2005-07-31 01:57:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1725, 63, 2, 0.99, '2005-07-31 10:47:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1726, 63, 2, 2.99, '2005-07-31 15:28:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1727, 63, 2, 0.99, '2005-07-31 22:19:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1728, 63, 1, 6.99, '2005-08-01 03:38:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1729, 63, 1, 4.99, '2005-08-17 15:37:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1730, 63, 2, 2.99, '2005-08-18 07:12:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1731, 63, 1, 0.99, '2005-08-18 13:39:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1732, 63, 2, 7.99, '2005-08-19 06:04:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1733, 63, 2, 0.99, '2005-08-19 10:38:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1734, 63, 2, 8.99, '2005-08-20 06:51:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1735, 63, 1, 3.99, '2005-08-22 05:38:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1736, 63, 2, 5.99, '2005-08-22 10:24:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1737, 63, 2, 2.99, '2005-08-22 17:30:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1738, 64, 1, 4.99, '2005-05-28 00:39:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1739, 64, 1, 0.99, '2005-05-28 12:05:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1740, 64, 2, 2.99, '2005-05-31 00:46:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1741, 64, 1, 0.99, '2005-06-15 11:51:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1742, 64, 2, 2.99, '2005-06-17 15:42:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1743, 64, 1, 0.99, '2005-07-06 23:14:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1744, 64, 2, 4.99, '2005-07-07 15:38:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1745, 64, 2, 1.99, '2005-07-08 11:04:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1746, 64, 2, 5.99, '2005-07-08 17:19:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1747, 64, 2, 5.99, '2005-07-08 23:54:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1748, 64, 1, 3.99, '2005-07-09 07:07:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1749, 64, 2, 2.99, '2005-07-09 14:46:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1750, 64, 1, 0.99, '2005-07-09 21:21:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1751, 64, 1, 2.99, '2005-07-11 21:35:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1752, 64, 1, 0.99, '2005-07-12 01:06:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1753, 64, 2, 1.99, '2005-07-12 12:45:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1754, 64, 2, 0.99, '2005-07-12 14:30:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1755, 64, 2, 0.99, '2005-07-27 03:27:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1756, 64, 2, 2.99, '2005-07-27 04:27:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1757, 64, 1, 1.99, '2005-07-27 19:08:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1758, 64, 2, 4.99, '2005-07-29 13:04:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1759, 64, 1, 2.99, '2005-07-31 12:01:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1760, 64, 2, 6.99, '2005-07-31 13:49:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1761, 64, 2, 3.99, '2005-07-31 15:04:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1762, 64, 2, 0.99, '2005-08-01 00:12:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1763, 64, 2, 4.99, '2005-08-01 18:51:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1764, 64, 1, 4.99, '2005-08-02 00:54:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1765, 64, 2, 0.99, '2005-08-18 09:43:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1766, 64, 2, 4.99, '2005-08-19 20:01:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1767, 64, 2, 2.99, '2005-08-20 11:50:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1768, 64, 1, 0.99, '2005-08-20 18:44:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1769, 64, 1, 5.99, '2005-08-21 02:59:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1770, 64, 2, 0.99, '2005-08-21 07:59:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1771, 65, 1, 4.99, '2005-05-26 20:33:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1772, 65, 1, 0.99, '2005-05-28 20:23:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1773, 65, 2, 7.99, '2005-06-18 00:08:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1774, 65, 2, 4.99, '2005-06-20 13:06:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1775, 65, 1, 4.99, '2005-07-06 01:32:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1776, 65, 1, 4.99, '2005-07-07 13:33:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1777, 65, 1, 3.99, '2005-07-08 08:42:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1778, 65, 2, 3.99, '2005-07-10 11:39:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1779, 65, 2, 0.99, '2005-07-12 04:23:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1780, 65, 2, 6.99, '2005-07-28 10:25:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1781, 65, 1, 1.99, '2005-07-29 06:00:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1782, 65, 2, 5.99, '2005-07-29 06:27:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1783, 65, 1, 3.99, '2005-07-30 16:12:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1784, 65, 1, 5.99, '2005-08-02 08:08:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1785, 65, 2, 8.99, '2005-08-02 12:48:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1786, 65, 1, 4.99, '2005-08-02 21:35:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1787, 65, 1, 2.99, '2005-08-17 13:16:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1788, 65, 1, 7.99, '2005-08-17 23:02:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1789, 65, 2, 6.99, '2005-08-18 19:59:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1790, 65, 1, 0.99, '2005-08-20 09:07:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1791, 65, 1, 6.99, '2005-08-21 02:04:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1792, 65, 1, 0.99, '2005-08-21 09:08:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1793, 66, 2, 4.99, '2005-05-30 13:08:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1794, 66, 1, 2.99, '2005-06-15 04:34:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1795, 66, 1, 2.99, '2005-06-17 05:08:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1796, 66, 2, 4.99, '2005-06-17 19:29:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1797, 66, 2, 2.99, '2005-06-19 04:20:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1798, 66, 1, 4.99, '2005-06-19 04:36:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1799, 66, 1, 3.99, '2005-06-21 10:04:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1800, 66, 1, 6.99, '2005-06-21 15:19:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1801, 66, 1, 4.99, '2005-07-06 03:33:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1802, 66, 1, 2.99, '2005-07-06 12:42:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1803, 66, 2, 2.99, '2005-07-07 05:31:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1804, 66, 1, 4.99, '2005-07-07 06:38:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1805, 66, 2, 6.99, '2005-07-07 09:23:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1806, 66, 2, 5.99, '2005-07-08 21:20:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1807, 66, 2, 0.99, '2005-07-10 21:12:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1808, 66, 1, 8.99, '2005-07-11 17:12:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1809, 66, 1, 5.99, '2005-07-11 20:21:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1810, 66, 2, 3.99, '2005-07-11 22:46:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1811, 66, 1, 2.99, '2005-07-27 01:12:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1812, 66, 2, 2.99, '2005-07-28 10:18:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1813, 66, 2, 5.99, '2005-07-30 08:30:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1814, 66, 2, 0.99, '2005-08-01 08:13:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1815, 66, 2, 5.99, '2005-08-02 05:48:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1816, 66, 1, 2.99, '2005-08-02 17:46:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1817, 66, 1, 5.99, '2005-08-17 06:15:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1818, 66, 1, 0.99, '2005-08-17 16:42:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1819, 66, 2, 0.99, '2005-08-18 20:20:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1820, 66, 2, 2.99, '2005-08-20 16:05:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1821, 66, 1, 2.99, '2005-08-21 01:31:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1822, 66, 1, 6.99, '2005-08-21 04:37:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1823, 66, 1, 2.99, '2005-08-21 09:04:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1824, 66, 2, 0.99, '2005-08-21 11:29:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1825, 66, 1, 4.99, '2005-08-22 09:01:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1826, 66, 2, 8.99, '2005-08-23 06:23:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1827, 67, 1, 9.99, '2005-05-27 02:22:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1828, 67, 1, 2.99, '2005-05-29 12:20:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1829, 67, 2, 3.99, '2005-06-17 15:57:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1830, 67, 2, 3.99, '2005-06-19 02:08:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1831, 67, 1, 0.99, '2005-06-19 19:44:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1832, 67, 2, 4.99, '2005-06-21 12:08:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1833, 67, 2, 4.99, '2005-07-07 05:47:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1834, 67, 1, 2.99, '2005-07-09 19:52:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1835, 67, 2, 2.99, '2005-07-10 00:58:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1836, 67, 2, 2.99, '2005-07-11 08:34:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1837, 67, 2, 5.99, '2005-07-27 11:48:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1838, 67, 1, 0.99, '2005-07-28 10:57:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1839, 67, 2, 1.99, '2005-07-29 11:32:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1840, 67, 2, 7.99, '2005-07-31 05:33:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1841, 67, 2, 8.99, '2005-08-02 15:10:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1842, 67, 2, 8.99, '2005-08-17 15:15:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1843, 67, 1, 4.99, '2005-08-19 23:37:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1844, 67, 1, 2.99, '2005-08-20 07:52:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1845, 67, 1, 4.99, '2005-08-20 12:21:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1846, 67, 2, 2.99, '2005-08-20 14:19:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1847, 67, 1, 4.99, '2005-08-22 06:46:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1848, 67, 1, 2.99, '2005-08-22 11:19:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1849, 68, 2, 5.99, '2005-06-16 22:04:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1850, 68, 1, 8.99, '2005-06-17 08:50:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1851, 68, 2, 2.99, '2005-06-19 08:53:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1852, 68, 1, 4.99, '2005-06-19 10:53:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1853, 68, 2, 2.99, '2005-06-19 12:44:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1854, 68, 2, 0.99, '2005-07-06 05:11:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1855, 68, 2, 4.99, '2005-07-06 15:05:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1856, 68, 2, 0.99, '2005-07-06 17:41:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1857, 68, 1, 6.99, '2005-07-08 04:48:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1858, 68, 2, 3.99, '2005-07-08 21:56:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1859, 68, 2, 4.99, '2005-07-12 03:42:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1860, 68, 2, 3.99, '2005-07-30 18:03:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1861, 68, 1, 3.99, '2005-07-31 01:25:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1862, 68, 1, 4.99, '2005-07-31 05:33:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1863, 68, 2, 7.99, '2005-07-31 21:13:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1864, 68, 2, 2.99, '2005-08-02 14:28:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1865, 68, 2, 2.99, '2005-08-18 22:22:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1866, 68, 1, 4.99, '2005-08-20 01:05:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1867, 68, 1, 0.99, '2005-08-21 05:25:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1868, 68, 2, 5.99, '2005-08-21 12:36:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1869, 68, 1, 1.99, '2005-08-22 06:07:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1870, 68, 1, 4.99, '2005-08-23 03:36:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1871, 69, 1, 4.99, '2005-05-28 11:49:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1872, 69, 2, 1.99, '2005-05-29 11:38:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1873, 69, 2, 2.99, '2005-06-16 01:57:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1874, 69, 2, 4.99, '2005-06-21 11:56:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1875, 69, 2, 8.99, '2005-07-06 18:39:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1876, 69, 1, 0.99, '2005-07-07 14:27:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1877, 69, 1, 0.99, '2005-07-07 22:28:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1878, 69, 1, 3.99, '2005-07-10 03:38:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1879, 69, 2, 4.99, '2005-07-11 17:37:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1880, 69, 2, 6.99, '2005-07-11 22:07:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1881, 69, 1, 6.99, '2005-07-12 16:30:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1882, 69, 1, 6.99, '2005-07-29 14:57:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1883, 69, 2, 2.99, '2005-07-30 12:28:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1884, 69, 1, 2.99, '2005-07-31 03:58:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1885, 69, 1, 0.99, '2005-07-31 19:57:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1886, 69, 2, 3.99, '2005-08-17 17:00:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1887, 69, 1, 0.99, '2005-08-17 18:33:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1888, 69, 2, 2.99, '2005-08-17 19:20:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1889, 69, 1, 2.99, '2005-08-17 23:20:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1890, 69, 2, 5.99, '2005-08-19 06:37:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1891, 69, 2, 5.99, '2005-08-19 08:13:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1892, 69, 1, 3.99, '2005-08-21 07:45:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1893, 69, 1, 0.99, '2005-08-21 20:31:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1894, 69, 2, 2.99, '2005-08-21 23:43:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1895, 69, 1, 2.99, '2005-08-23 04:25:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1896, 70, 1, 4.99, '2005-05-31 06:24:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1897, 70, 1, 4.99, '2005-06-18 20:32:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1898, 70, 1, 0.99, '2005-07-07 04:13:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1899, 70, 1, 5.99, '2005-07-10 21:57:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1900, 70, 2, 4.99, '2005-07-27 03:06:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1901, 70, 1, 7.99, '2005-07-27 17:10:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1902, 70, 2, 2.99, '2005-07-28 04:32:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1903, 70, 1, 0.99, '2005-07-29 11:12:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1904, 70, 1, 2.99, '2005-07-29 19:07:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1905, 70, 2, 9.99, '2005-08-02 14:24:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1906, 70, 2, 2.99, '2005-08-17 15:35:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1907, 70, 2, 4.99, '2005-08-17 18:56:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1908, 70, 2, 4.99, '2005-08-18 02:48:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1909, 70, 2, 6.99, '2005-08-18 15:49:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1910, 70, 1, 3.99, '2005-08-19 05:56:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1911, 70, 1, 4.99, '2005-08-20 08:44:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1912, 70, 2, 0.99, '2005-08-22 17:46:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1913, 70, 2, 3.99, '2005-08-23 07:06:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1914, 71, 1, 2.99, '2005-05-26 07:11:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1915, 71, 1, 9.99, '2005-05-26 16:27:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1916, 71, 1, 2.99, '2005-06-17 02:38:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1917, 71, 2, 4.99, '2005-06-18 14:44:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1918, 71, 1, 5.99, '2005-06-21 11:05:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1919, 71, 2, 4.99, '2005-07-08 07:45:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1920, 71, 1, 1.99, '2005-07-09 14:55:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1921, 71, 1, 3.99, '2005-07-09 18:09:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1922, 71, 1, 8.99, '2005-07-10 02:48:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1923, 71, 1, 4.99, '2005-07-10 13:21:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1924, 71, 1, 4.99, '2005-07-10 15:46:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1925, 71, 2, 0.99, '2005-07-11 02:08:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1926, 71, 1, 5.99, '2005-07-12 14:22:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1927, 71, 2, 0.99, '2005-07-27 07:26:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1928, 71, 1, 4.99, '2005-07-27 21:55:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1929, 71, 1, 4.99, '2005-07-28 14:19:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1930, 71, 1, 2.99, '2005-07-28 19:46:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1931, 71, 1, 2.99, '2005-07-29 02:30:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1932, 71, 2, 1.99, '2005-07-29 11:51:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1933, 71, 2, 4.99, '2005-07-29 15:41:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1934, 71, 1, 3.99, '2005-07-29 20:31:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1935, 71, 1, 4.99, '2005-07-29 20:47:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1936, 71, 2, 0.99, '2005-07-30 03:32:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1937, 71, 2, 4.99, '2005-08-18 09:57:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1938, 71, 1, 7.99, '2005-08-21 00:44:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1939, 71, 2, 3.99, '2005-08-21 04:57:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1940, 71, 1, 4.99, '2005-08-22 00:15:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1941, 71, 2, 3.99, '2005-08-22 04:32:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1942, 71, 2, 4.99, '2005-08-23 10:25:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1943, 71, 1, 0.99, '2005-08-23 20:44:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1944, 72, 2, 4.99, '2005-05-29 15:08:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1945, 72, 1, 4.99, '2005-05-30 01:17:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1946, 72, 2, 0.99, '2005-05-31 06:45:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1947, 72, 1, 4.99, '2005-06-18 07:46:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1948, 72, 1, 0.99, '2005-07-06 10:12:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1949, 72, 1, 4.99, '2005-07-09 12:06:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1950, 72, 2, 4.99, '2005-07-09 15:42:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1951, 72, 2, 0.99, '2005-07-09 20:59:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1952, 72, 1, 4.99, '2005-07-10 17:09:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1953, 72, 2, 0.99, '2005-07-11 05:11:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1954, 72, 1, 4.99, '2005-07-29 00:08:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1955, 72, 1, 2.99, '2005-07-30 05:58:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1956, 72, 1, 5.99, '2005-07-30 21:05:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1957, 72, 1, 4.99, '2005-07-31 05:46:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1958, 72, 2, 0.99, '2005-08-01 03:07:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1959, 72, 2, 6.99, '2005-08-02 11:58:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1960, 72, 2, 5.99, '2005-08-02 19:52:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1961, 72, 2, 2.99, '2005-08-17 04:27:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1962, 72, 1, 4.99, '2005-08-17 06:08:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1963, 72, 1, 2.99, '2005-08-17 16:21:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1964, 72, 1, 2.99, '2005-08-17 19:50:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1965, 72, 1, 0.99, '2005-08-18 10:59:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1966, 72, 1, 0.99, '2005-08-18 16:17:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1967, 72, 1, 0.99, '2005-08-19 12:53:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1968, 72, 1, 4.99, '2005-08-19 19:55:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1969, 72, 2, 0.99, '2005-08-20 05:59:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1970, 72, 2, 4.99, '2005-08-20 08:05:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1971, 72, 2, 0.99, '2005-08-20 20:59:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1972, 72, 1, 0.99, '2005-08-22 12:16:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1973, 72, 1, 2.99, '2005-08-22 13:57:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1974, 73, 1, 2.99, '2005-05-25 10:15:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1975, 73, 1, 4.99, '2005-05-31 19:12:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1976, 73, 1, 0.99, '2005-06-16 10:20:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1977, 73, 1, 4.99, '2005-06-20 05:20:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1978, 73, 2, 2.99, '2005-07-07 18:01:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1979, 73, 2, 4.99, '2005-07-08 16:22:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1980, 73, 1, 4.99, '2005-07-09 02:09:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1981, 73, 2, 9.99, '2005-07-12 03:47:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1982, 73, 2, 2.99, '2005-07-12 10:39:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1983, 73, 2, 4.99, '2005-07-27 23:24:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1984, 73, 1, 4.99, '2005-07-28 03:11:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1985, 73, 2, 4.99, '2005-07-29 05:27:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1986, 73, 1, 2.99, '2005-07-30 13:03:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1987, 73, 1, 2.99, '2005-07-31 10:01:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1988, 73, 2, 4.99, '2005-08-01 08:47:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1989, 73, 2, 4.99, '2005-08-02 08:08:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1990, 73, 1, 0.99, '2005-08-02 09:55:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1991, 73, 1, 4.99, '2005-08-02 17:21:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1992, 73, 2, 3.99, '2005-08-17 03:41:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1993, 73, 1, 4.99, '2005-08-18 05:08:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1994, 73, 1, 2.99, '2005-08-19 11:16:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1995, 73, 2, 4.99, '2005-08-20 15:34:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1996, 73, 2, 0.99, '2005-08-23 09:02:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1997, 73, 1, 2.99, '2005-08-23 20:47:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1998, 74, 1, 6.99, '2005-05-31 16:37:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (1999, 74, 1, 1.99, '2005-06-18 22:56:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2000, 74, 2, 0.99, '2005-06-19 00:11:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2001, 74, 2, 1.99, '2005-06-20 11:12:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2002, 74, 1, 7.99, '2005-06-21 20:40:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2003, 74, 1, 3.99, '2005-07-06 15:35:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2004, 74, 1, 2.99, '2005-07-10 02:13:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2005, 74, 1, 2.99, '2005-07-10 05:04:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2006, 74, 1, 4.99, '2005-07-10 21:30:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2007, 74, 2, 7.99, '2005-07-11 14:40:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2008, 74, 2, 2.99, '2005-07-12 01:36:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2009, 74, 1, 6.99, '2005-07-27 12:56:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2010, 74, 1, 5.99, '2005-07-29 21:09:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2011, 74, 1, 4.99, '2005-07-30 09:06:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2012, 74, 2, 3.99, '2005-07-31 19:14:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2013, 74, 2, 0.99, '2005-08-01 15:27:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2014, 74, 2, 3.99, '2005-08-18 08:07:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2015, 74, 2, 3.99, '2005-08-18 12:25:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2016, 74, 1, 0.99, '2005-08-19 20:03:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2017, 74, 1, 0.99, '2005-08-20 02:41:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2018, 74, 2, 1.99, '2005-08-20 05:29:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2019, 74, 2, 5.99, '2005-08-20 10:56:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2020, 74, 1, 4.99, '2005-08-22 19:17:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2021, 74, 1, 4.99, '2005-08-22 20:27:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2022, 74, 1, 0.99, '2005-08-23 02:39:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2023, 74, 1, 4.99, '2005-08-23 11:56:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2024, 74, 2, 0.99, '2005-08-23 22:26:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2025, 75, 1, 4.99, '2005-05-26 04:46:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2026, 75, 2, 0.99, '2005-05-26 16:19:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2027, 75, 1, 4.99, '2005-06-17 06:00:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2028, 75, 1, 7.99, '2005-06-17 23:39:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2029, 75, 2, 4.99, '2005-06-19 15:56:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2030, 75, 2, 6.99, '2005-06-20 13:50:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2031, 75, 2, 4.99, '2005-06-21 01:00:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2032, 75, 2, 0.99, '2005-07-06 10:46:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2033, 75, 1, 2.99, '2005-07-07 10:17:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2034, 75, 2, 0.99, '2005-07-08 02:36:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2035, 75, 1, 5.99, '2005-07-08 08:57:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2036, 75, 2, 2.99, '2005-07-09 14:05:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2037, 75, 1, 0.99, '2005-07-11 03:51:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2038, 75, 1, 3.99, '2005-07-11 05:51:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2039, 75, 1, 0.99, '2005-07-12 02:09:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2040, 75, 1, 0.99, '2005-07-12 04:33:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2041, 75, 1, 2.99, '2005-07-12 19:33:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2042, 75, 1, 2.99, '2005-07-27 03:36:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2043, 75, 2, 4.99, '2005-07-27 18:27:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2044, 75, 2, 0.99, '2005-07-28 09:10:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2045, 75, 1, 2.99, '2005-07-28 11:01:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2046, 75, 2, 1.99, '2005-07-28 23:11:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2047, 75, 1, 6.99, '2005-07-29 22:22:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2048, 75, 1, 5.99, '2005-07-30 11:31:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2049, 75, 1, 4.99, '2005-07-30 21:44:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2050, 75, 1, 4.99, '2005-07-30 23:59:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2051, 75, 1, 9.99, '2005-07-31 10:15:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2052, 75, 2, 5.99, '2005-08-01 16:28:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2053, 75, 1, 3.99, '2005-08-01 19:14:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2054, 75, 1, 4.99, '2005-08-02 00:27:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2055, 75, 2, 0.99, '2005-08-02 16:45:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2056, 75, 1, 2.99, '2005-08-17 18:56:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2057, 75, 2, 0.99, '2005-08-18 03:26:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2058, 75, 1, 1.99, '2005-08-18 06:59:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2059, 75, 1, 5.99, '2005-08-18 09:49:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2060, 75, 2, 4.99, '2005-08-18 10:24:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2061, 75, 1, 0.99, '2005-08-18 19:10:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2062, 75, 2, 2.99, '2005-08-20 03:30:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2063, 75, 1, 2.99, '2005-08-21 13:53:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2064, 75, 2, 2.99, '2005-08-22 15:58:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2065, 75, 1, 5.99, '2005-08-23 18:23:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2066, 76, 1, 1.99, '2005-05-28 10:44:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2067, 76, 1, 0.99, '2005-05-30 12:15:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2068, 76, 2, 0.99, '2005-06-15 21:27:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2069, 76, 1, 6.99, '2005-06-16 20:04:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2070, 76, 1, 0.99, '2005-06-17 19:47:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2071, 76, 2, 1.99, '2005-06-18 15:51:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2072, 76, 2, 0.99, '2005-06-20 02:22:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2073, 76, 2, 0.99, '2005-06-21 17:05:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2074, 76, 1, 4.99, '2005-07-07 06:20:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2075, 76, 1, 0.99, '2005-07-10 03:48:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2076, 76, 2, 0.99, '2005-07-12 16:34:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2077, 76, 2, 6.99, '2005-07-29 00:57:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2078, 76, 1, 2.99, '2005-07-29 04:59:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2079, 76, 2, 3.99, '2005-07-29 06:28:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2080, 76, 2, 0.99, '2005-07-30 02:38:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2081, 76, 1, 2.99, '2005-07-30 16:59:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2082, 76, 2, 0.99, '2005-07-31 20:09:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2083, 76, 2, 4.99, '2005-08-01 21:56:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2084, 76, 1, 7.99, '2005-08-02 10:27:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2085, 76, 1, 3.99, '2005-08-20 09:21:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2086, 76, 1, 2.99, '2005-08-21 19:01:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2087, 76, 2, 4.99, '2005-08-22 15:21:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2088, 76, 1, 10.99, '2005-08-23 05:17:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2089, 77, 1, 2.99, '2005-05-26 23:52:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2090, 77, 1, 1.99, '2005-05-27 15:15:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2091, 77, 2, 2.99, '2005-05-28 08:54:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2092, 77, 1, 0.99, '2005-05-28 12:03:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2093, 77, 1, 5.99, '2005-05-29 11:07:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2094, 77, 1, 4.99, '2005-06-16 14:11:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2095, 77, 2, 3.99, '2005-06-18 12:54:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2096, 77, 2, 8.99, '2005-06-18 19:29:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2097, 77, 1, 2.99, '2005-06-20 20:36:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2098, 77, 2, 0.99, '2005-06-21 02:48:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2099, 77, 2, 0.99, '2005-07-08 22:05:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2100, 77, 2, 0.99, '2005-07-11 10:21:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2101, 77, 2, 2.99, '2005-07-11 22:19:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2102, 77, 1, 3.99, '2005-07-27 16:25:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2103, 77, 1, 0.99, '2005-07-28 04:24:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2104, 77, 1, 4.99, '2005-07-30 03:01:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2105, 77, 2, 0.99, '2005-07-31 11:23:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2106, 77, 1, 4.99, '2005-08-01 00:09:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2107, 77, 2, 2.99, '2005-08-02 00:52:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2108, 77, 2, 0.99, '2005-08-02 01:16:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2109, 77, 1, 0.99, '2005-08-02 04:41:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2110, 77, 2, 2.99, '2005-08-02 21:48:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2111, 77, 1, 7.99, '2005-08-17 10:00:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2112, 77, 1, 6.99, '2005-08-17 21:31:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2113, 77, 2, 1.99, '2005-08-18 06:43:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2114, 77, 2, 9.99, '2005-08-20 11:17:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2115, 77, 1, 4.99, '2005-08-21 15:10:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2116, 77, 2, 2.99, '2005-08-22 21:34:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2117, 78, 2, 2.99, '2005-06-18 02:19:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2118, 78, 2, 6.99, '2005-06-20 06:05:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2119, 78, 1, 7.99, '2005-06-21 03:12:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2120, 78, 2, 4.99, '2005-07-06 04:39:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2121, 78, 2, 5.99, '2005-07-07 12:41:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2122, 78, 1, 2.99, '2005-07-08 08:24:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2123, 78, 2, 0.99, '2005-07-08 15:51:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2124, 78, 1, 1.99, '2005-07-09 05:20:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2125, 78, 1, 0.99, '2005-07-10 05:05:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2126, 78, 2, 0.99, '2005-07-11 01:36:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2127, 78, 2, 4.99, '2005-07-11 20:04:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2128, 78, 2, 1.99, '2005-07-27 08:57:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2129, 78, 1, 4.99, '2005-07-28 05:50:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2130, 78, 1, 3.99, '2005-07-28 12:13:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2131, 78, 2, 6.99, '2005-07-28 13:34:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2132, 78, 1, 4.99, '2005-07-30 01:59:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2133, 78, 2, 5.99, '2005-07-30 07:31:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2134, 78, 2, 3.99, '2005-08-01 05:30:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2135, 78, 1, 2.99, '2005-08-01 14:11:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2136, 78, 1, 7.99, '2005-08-01 23:22:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2137, 78, 2, 10.99, '2005-08-02 03:16:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2138, 78, 2, 8.99, '2005-08-18 12:10:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2139, 78, 2, 4.99, '2005-08-18 18:53:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2140, 78, 1, 5.99, '2005-08-19 11:55:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2141, 78, 1, 0.99, '2005-08-19 23:29:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2142, 78, 2, 5.99, '2005-08-20 12:21:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2143, 78, 2, 2.99, '2005-08-21 18:10:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2144, 78, 1, 0.99, '2005-08-21 21:29:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2145, 78, 1, 2.99, '2005-08-22 01:08:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2146, 78, 1, 7.99, '2005-08-22 02:51:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2147, 78, 1, 2.99, '2005-08-23 22:18:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2148, 79, 2, 4.99, '2005-05-30 00:28:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2149, 79, 2, 2.99, '2005-05-30 02:36:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2150, 79, 1, 2.99, '2005-05-30 12:27:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2151, 79, 2, 4.99, '2005-06-20 16:17:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2152, 79, 1, 2.99, '2005-06-20 22:35:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2153, 79, 2, 0.99, '2005-07-06 07:17:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2154, 79, 2, 2.99, '2005-07-06 12:11:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2155, 79, 1, 4.99, '2005-07-07 03:34:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2156, 79, 1, 4.99, '2005-07-08 03:27:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2157, 79, 1, 4.99, '2005-07-08 13:22:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2158, 79, 1, 2.99, '2005-07-09 10:56:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2159, 79, 2, 2.99, '2005-07-10 03:08:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2160, 79, 2, 5.99, '2005-07-11 10:12:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2161, 79, 2, 9.99, '2005-07-27 09:35:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2162, 79, 1, 2.99, '2005-07-29 23:21:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2163, 79, 1, 1.99, '2005-07-31 11:29:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2164, 79, 2, 6.99, '2005-07-31 12:28:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2165, 79, 2, 0.99, '2005-07-31 17:22:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2166, 79, 1, 2.99, '2005-08-01 17:14:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2167, 79, 2, 4.99, '2005-08-17 04:45:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2168, 79, 1, 4.99, '2005-08-18 17:26:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2169, 79, 2, 2.99, '2005-08-19 08:22:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2170, 79, 1, 0.99, '2005-08-21 03:14:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2171, 80, 2, 2.99, '2005-06-19 05:48:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2172, 80, 2, 8.99, '2005-06-19 19:29:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2173, 80, 1, 3.99, '2005-06-21 13:08:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2174, 80, 2, 4.99, '2005-07-06 06:05:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2175, 80, 1, 8.99, '2005-07-07 14:36:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2176, 80, 1, 3.99, '2005-07-07 16:33:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2177, 80, 1, 5.99, '2005-07-08 11:03:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2178, 80, 1, 3.99, '2005-07-09 20:48:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2179, 80, 2, 4.99, '2005-07-09 22:23:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2180, 80, 1, 5.99, '2005-07-11 12:16:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2181, 80, 1, 6.99, '2005-07-11 23:35:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2182, 80, 2, 1.99, '2005-07-12 13:07:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2183, 80, 2, 0.99, '2005-07-27 22:19:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2184, 80, 1, 5.99, '2005-07-29 09:38:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2185, 80, 1, 6.99, '2005-07-30 00:26:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2186, 80, 2, 0.99, '2005-08-01 04:29:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2187, 80, 1, 6.99, '2005-08-01 16:38:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2188, 80, 1, 8.99, '2005-08-01 18:05:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2189, 80, 1, 5.99, '2005-08-02 08:08:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2190, 80, 2, 0.99, '2005-08-17 13:08:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2191, 80, 2, 1.99, '2005-08-17 13:30:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2192, 80, 2, 2.99, '2005-08-18 11:21:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2193, 80, 1, 2.99, '2005-08-18 11:41:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2194, 80, 2, 4.99, '2005-08-19 20:51:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2195, 80, 2, 0.99, '2005-08-19 22:05:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2196, 80, 1, 4.99, '2005-08-20 10:07:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2197, 80, 1, 0.99, '2005-08-20 14:44:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2198, 80, 1, 0.99, '2005-08-22 04:56:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2199, 80, 2, 8.99, '2005-08-23 08:27:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2200, 80, 2, 5.99, '2005-08-23 21:13:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2201, 81, 2, 0.99, '2005-05-26 20:01:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2202, 81, 1, 1.99, '2005-06-19 14:26:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2203, 81, 1, 5.99, '2005-06-19 23:11:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2204, 81, 2, 4.99, '2005-06-21 02:20:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2205, 81, 1, 2.99, '2005-07-06 18:31:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2206, 81, 2, 9.99, '2005-07-09 00:34:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2207, 81, 2, 0.99, '2005-07-09 23:06:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2208, 81, 2, 4.99, '2005-07-27 06:23:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2209, 81, 1, 0.99, '2005-07-28 04:22:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2210, 81, 1, 3.99, '2005-07-30 22:20:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2211, 81, 1, 0.99, '2005-08-01 09:17:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2212, 81, 1, 5.99, '2005-08-17 13:04:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2213, 81, 1, 4.99, '2005-08-18 01:28:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2214, 81, 1, 5.99, '2005-08-20 13:26:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2215, 81, 2, 4.99, '2005-08-21 01:35:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2216, 81, 2, 3.99, '2005-08-21 19:09:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2217, 81, 1, 7.99, '2005-08-21 23:02:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2218, 81, 1, 5.99, '2005-08-22 17:18:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2219, 81, 1, 4.99, '2005-08-23 06:41:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2220, 81, 1, 4.99, '2005-08-23 15:08:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2221, 81, 2, 2.99, '2005-08-23 16:07:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2222, 81, 2, 1.99, '2005-08-23 16:45:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2223, 82, 2, 2.99, '2005-05-25 23:59:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2224, 82, 2, 8.99, '2005-05-26 19:47:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2225, 82, 1, 0.99, '2005-06-15 18:38:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2226, 82, 1, 0.99, '2005-06-16 03:21:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2227, 82, 2, 8.99, '2005-06-18 23:29:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2228, 82, 1, 8.99, '2005-06-19 20:13:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2229, 82, 1, 0.99, '2005-06-21 09:55:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2230, 82, 1, 2.99, '2005-07-06 09:16:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2231, 82, 2, 6.99, '2005-07-08 06:46:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2232, 82, 2, 4.99, '2005-07-10 12:15:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2233, 82, 2, 6.99, '2005-07-11 05:12:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2234, 82, 1, 6.99, '2005-07-12 13:10:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2235, 82, 1, 9.99, '2005-07-28 05:04:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2236, 82, 2, 0.99, '2005-07-28 10:19:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2237, 82, 2, 4.99, '2005-07-29 08:53:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2238, 82, 1, 3.99, '2005-07-30 15:13:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2239, 82, 2, 8.99, '2005-07-30 16:45:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2240, 82, 1, 6.99, '2005-07-30 21:54:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2241, 82, 2, 4.99, '2005-08-02 07:59:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2242, 82, 2, 5.99, '2005-08-17 06:41:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2243, 82, 2, 3.99, '2005-08-18 11:55:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2244, 82, 2, 0.99, '2005-08-19 08:31:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2245, 82, 2, 6.99, '2005-08-20 14:33:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2246, 82, 2, 4.99, '2005-08-21 11:26:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2247, 82, 2, 0.99, '2005-08-21 14:58:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2248, 82, 2, 4.99, '2005-08-22 04:15:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2249, 82, 1, 3.99, '2005-08-23 03:12:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2250, 83, 2, 0.99, '2005-05-26 10:14:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2251, 83, 1, 0.99, '2005-05-30 16:06:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2252, 83, 2, 2.99, '2005-05-30 23:11:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2253, 83, 2, 5.99, '2005-06-15 13:13:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2254, 83, 1, 5.99, '2005-06-16 05:12:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2255, 83, 2, 3.99, '2005-06-16 07:06:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2256, 83, 1, 4.99, '2005-06-21 02:23:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2257, 83, 2, 6.99, '2005-07-06 11:10:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2258, 83, 1, 2.99, '2005-07-06 12:35:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2259, 83, 2, 0.99, '2005-07-09 11:57:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2260, 83, 1, 6.99, '2005-07-09 19:36:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2261, 83, 1, 2.99, '2005-07-11 11:51:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2262, 83, 1, 2.99, '2005-07-12 19:56:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2263, 83, 1, 0.99, '2005-07-28 04:42:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2264, 83, 1, 4.99, '2005-07-29 18:23:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2265, 83, 1, 1.99, '2005-07-31 13:17:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2266, 83, 1, 0.99, '2005-08-02 19:25:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2267, 83, 2, 4.99, '2005-08-17 01:27:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2268, 83, 2, 5.99, '2005-08-17 01:28:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2269, 83, 2, 4.99, '2005-08-17 10:27:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2270, 83, 2, 4.99, '2005-08-18 04:11:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2271, 83, 1, 5.99, '2005-08-19 07:08:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2272, 83, 2, 4.99, '2005-08-20 15:13:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2273, 83, 2, 4.99, '2005-08-23 02:33:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2274, 83, 2, 5.99, '2005-08-23 11:52:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2275, 84, 1, 0.99, '2005-05-27 13:57:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2276, 84, 1, 6.99, '2005-05-29 08:28:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2277, 84, 2, 4.99, '2005-05-29 23:24:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2278, 84, 2, 0.99, '2005-06-15 01:37:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2279, 84, 1, 4.99, '2005-06-15 10:42:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2280, 84, 1, 0.99, '2005-06-16 21:16:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2281, 84, 2, 5.99, '2005-06-17 11:57:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2282, 84, 1, 0.99, '2005-06-17 14:31:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2283, 84, 1, 0.99, '2005-06-18 16:53:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2284, 84, 1, 6.99, '2005-07-07 05:06:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2285, 84, 1, 6.99, '2005-07-08 18:11:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2286, 84, 1, 5.99, '2005-07-09 12:02:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2287, 84, 1, 0.99, '2005-07-09 12:56:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2288, 84, 1, 5.99, '2005-07-11 00:05:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2289, 84, 1, 2.99, '2005-07-11 15:25:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2290, 84, 1, 9.99, '2005-07-11 23:27:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2291, 84, 1, 2.99, '2005-07-28 09:42:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2292, 84, 1, 4.99, '2005-07-28 15:37:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2293, 84, 2, 8.99, '2005-07-29 15:04:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2294, 84, 1, 2.99, '2005-07-30 07:50:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2295, 84, 1, 4.99, '2005-07-31 06:41:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2296, 84, 1, 0.99, '2005-08-01 12:24:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2297, 84, 1, 2.99, '2005-08-02 00:27:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2298, 84, 2, 4.99, '2005-08-02 12:31:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2299, 84, 1, 3.99, '2005-08-02 19:57:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2300, 84, 1, 7.99, '2005-08-02 21:00:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2301, 84, 1, 0.99, '2005-08-17 15:29:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2302, 84, 2, 4.99, '2005-08-17 17:24:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2303, 84, 2, 4.99, '2005-08-18 07:55:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2304, 84, 1, 2.99, '2005-08-19 11:27:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2305, 84, 2, 5.99, '2005-08-21 08:29:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2306, 84, 1, 4.99, '2005-08-22 15:57:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2307, 84, 2, 2.99, '2005-08-22 18:16:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2308, 85, 1, 9.99, '2005-05-29 00:54:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2309, 85, 1, 4.99, '2005-05-30 10:38:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2310, 85, 2, 1.99, '2005-06-16 12:06:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2311, 85, 1, 5.99, '2005-06-17 21:02:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2312, 85, 2, 0.99, '2005-06-19 18:53:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2313, 85, 1, 4.99, '2005-06-20 21:29:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2314, 85, 1, 1.99, '2005-06-21 07:52:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2315, 85, 1, 3.99, '2005-06-21 17:06:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2316, 85, 1, 0.99, '2005-07-07 23:29:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2317, 85, 1, 2.99, '2005-07-08 11:50:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2318, 85, 1, 4.99, '2005-07-09 03:57:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2319, 85, 2, 0.99, '2005-07-10 01:18:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2320, 85, 1, 0.99, '2005-07-28 11:31:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2321, 85, 1, 7.99, '2005-07-30 21:16:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2322, 85, 1, 4.99, '2005-07-31 16:03:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2323, 85, 1, 2.99, '2005-07-31 17:14:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2324, 85, 1, 4.99, '2005-08-01 04:56:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2325, 85, 2, 0.99, '2005-08-01 12:44:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2326, 85, 1, 8.99, '2005-08-02 07:03:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2327, 85, 1, 0.99, '2005-08-17 20:19:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2328, 85, 1, 4.99, '2005-08-18 11:21:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2329, 85, 2, 3.99, '2005-08-20 10:08:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2330, 85, 2, 0.99, '2005-08-20 10:25:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2331, 86, 1, 1.99, '2005-05-25 09:35:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2332, 86, 1, 4.99, '2005-06-16 08:35:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2333, 86, 1, 0.99, '2005-06-16 21:43:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2334, 86, 2, 2.99, '2005-06-17 06:13:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2335, 86, 1, 4.99, '2005-06-17 21:41:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2336, 86, 1, 4.99, '2005-06-19 00:16:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2337, 86, 1, 0.99, '2005-06-21 00:43:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2338, 86, 2, 4.99, '2005-06-21 05:07:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2339, 86, 2, 0.99, '2005-07-06 05:37:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2340, 86, 1, 4.99, '2005-07-06 21:35:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2341, 86, 1, 2.99, '2005-07-07 13:05:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2342, 86, 1, 9.99, '2005-07-08 05:34:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2343, 86, 1, 0.99, '2005-07-09 15:25:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2344, 86, 2, 8.99, '2005-07-10 12:27:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2345, 86, 1, 7.99, '2005-07-12 20:15:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2346, 86, 1, 2.99, '2005-07-27 10:01:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2347, 86, 2, 10.99, '2005-07-28 10:21:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2348, 86, 1, 5.99, '2005-07-29 21:26:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2349, 86, 2, 2.99, '2005-07-29 23:24:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2350, 86, 1, 4.99, '2005-07-30 19:11:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2351, 86, 1, 8.99, '2005-08-01 02:39:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2352, 86, 1, 4.99, '2005-08-01 12:21:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2353, 86, 2, 6.99, '2005-08-01 13:58:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2354, 86, 1, 0.99, '2005-08-17 16:05:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2355, 86, 1, 2.99, '2005-08-18 02:09:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2356, 86, 2, 3.99, '2005-08-19 02:54:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2357, 86, 1, 4.99, '2005-08-19 20:09:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2358, 86, 1, 4.99, '2005-08-20 03:30:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2359, 86, 2, 2.99, '2005-08-20 15:11:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2360, 86, 2, 1.99, '2005-08-21 01:29:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2361, 86, 2, 4.99, '2005-08-22 11:49:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2362, 86, 2, 1.99, '2005-08-23 10:57:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2363, 86, 1, 5.99, '2005-08-23 18:45:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2364, 87, 1, 4.99, '2005-05-27 19:27:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2365, 87, 1, 2.99, '2005-05-28 22:11:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2366, 87, 2, 4.99, '2005-06-16 04:12:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2367, 87, 1, 2.99, '2005-06-17 04:45:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2368, 87, 1, 2.99, '2005-06-18 16:50:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2369, 87, 1, 4.99, '2005-06-19 00:03:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2370, 87, 1, 9.99, '2005-06-20 18:25:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2371, 87, 2, 7.99, '2005-07-09 05:33:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2372, 87, 2, 3.99, '2005-07-10 05:56:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2373, 87, 2, 4.99, '2005-07-10 09:49:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2374, 87, 2, 4.99, '2005-07-12 09:58:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2375, 87, 2, 2.99, '2005-07-27 23:38:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2376, 87, 1, 7.99, '2005-07-28 22:33:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2377, 87, 2, 5.99, '2005-07-29 02:02:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2378, 87, 2, 4.99, '2005-07-29 03:52:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2379, 87, 1, 0.99, '2005-07-30 07:20:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2380, 87, 2, 2.99, '2005-07-30 18:17:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2381, 87, 1, 8.99, '2005-07-30 18:44:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2382, 87, 2, 4.99, '2005-08-01 00:48:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2383, 87, 1, 4.99, '2005-08-01 06:42:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2384, 87, 1, 0.99, '2005-08-18 03:14:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2385, 87, 2, 8.99, '2005-08-18 04:11:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2386, 87, 1, 5.99, '2005-08-18 04:17:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2387, 87, 2, 4.99, '2005-08-18 21:28:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2388, 87, 1, 4.99, '2005-08-19 10:46:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2389, 87, 2, 0.99, '2005-08-20 01:09:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2390, 87, 1, 0.99, '2005-08-20 16:16:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2391, 87, 2, 10.99, '2005-08-20 21:13:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2392, 87, 1, 2.99, '2005-08-21 16:25:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2393, 87, 1, 2.99, '2005-08-23 16:32:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2394, 87, 2, 4.99, '2005-08-23 16:58:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2395, 88, 1, 2.99, '2005-05-25 04:36:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2396, 88, 2, 2.99, '2005-06-15 18:30:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2397, 88, 2, 7.99, '2005-06-18 21:22:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2398, 88, 1, 2.99, '2005-06-20 01:09:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2399, 88, 1, 0.99, '2005-07-06 01:01:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2400, 88, 1, 0.99, '2005-07-06 06:01:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2401, 88, 2, 5.99, '2005-07-06 09:02:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2402, 88, 2, 5.99, '2005-07-06 16:43:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2403, 88, 1, 1.99, '2005-07-12 10:39:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2404, 88, 2, 4.99, '2005-07-12 22:29:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2405, 88, 2, 5.99, '2005-07-27 04:42:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2406, 88, 1, 8.99, '2005-07-28 00:34:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2407, 88, 1, 2.99, '2005-07-29 02:43:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2408, 88, 2, 2.99, '2005-07-29 10:20:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2409, 88, 1, 2.99, '2005-07-29 16:43:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2410, 88, 1, 0.99, '2005-08-01 08:22:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2411, 88, 2, 6.99, '2005-08-02 06:36:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2412, 88, 2, 2.99, '2005-08-21 00:28:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2413, 88, 1, 5.99, '2005-08-22 01:32:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2414, 88, 1, 3.99, '2005-08-22 11:48:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2415, 88, 1, 4.99, '2005-08-23 17:13:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2416, 89, 1, 2.99, '2005-05-25 23:34:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2417, 89, 1, 0.99, '2005-05-28 12:08:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2418, 89, 1, 5.99, '2005-05-29 08:30:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2419, 89, 1, 8.99, '2005-06-15 06:05:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2420, 89, 1, 7.99, '2005-06-15 16:45:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2421, 89, 1, 4.99, '2005-06-17 08:06:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2422, 89, 1, 0.99, '2005-06-19 00:45:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2423, 89, 2, 7.99, '2005-06-19 21:44:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2424, 89, 1, 4.99, '2005-07-07 08:50:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2425, 89, 2, 0.99, '2005-07-08 01:22:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2426, 89, 2, 8.99, '2005-07-08 15:01:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2427, 89, 1, 7.99, '2005-07-09 08:09:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2428, 89, 2, 2.99, '2005-07-09 21:31:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2429, 89, 2, 2.99, '2005-07-09 23:54:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2430, 89, 1, 2.99, '2005-07-12 15:55:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2431, 89, 2, 7.99, '2005-07-27 15:15:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2432, 89, 2, 4.99, '2005-07-28 04:57:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2433, 89, 1, 4.99, '2005-07-28 15:00:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2434, 89, 2, 2.99, '2005-07-28 15:11:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2435, 89, 2, 2.99, '2005-07-28 17:26:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2436, 89, 2, 0.99, '2005-07-30 04:06:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2437, 89, 2, 2.99, '2005-07-30 17:32:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2438, 89, 2, 2.99, '2005-07-31 05:43:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2439, 89, 2, 0.99, '2005-07-31 09:46:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2440, 89, 2, 4.99, '2005-07-31 23:17:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2441, 89, 2, 4.99, '2005-08-01 22:25:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2442, 89, 2, 3.99, '2005-08-02 07:56:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2443, 89, 1, 3.99, '2005-08-17 23:14:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2444, 89, 1, 2.99, '2005-08-18 10:34:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2445, 89, 1, 2.99, '2005-08-18 22:52:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2446, 89, 1, 2.99, '2005-08-20 13:42:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2447, 89, 2, 2.99, '2005-08-23 15:38:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2448, 90, 1, 0.99, '2005-06-17 13:24:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2449, 90, 1, 6.99, '2005-06-19 05:02:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2450, 90, 2, 0.99, '2005-06-20 19:09:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2451, 90, 2, 3.99, '2005-07-06 11:30:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2452, 90, 1, 4.99, '2005-07-07 20:06:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2453, 90, 1, 0.99, '2005-07-09 14:26:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2454, 90, 1, 3.99, '2005-07-10 02:42:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2455, 90, 1, 5.99, '2005-07-27 03:06:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2456, 90, 2, 1.99, '2005-07-27 03:50:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2457, 90, 2, 5.99, '2005-07-27 17:21:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2458, 90, 2, 6.99, '2005-07-28 13:01:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2459, 90, 1, 2.99, '2005-07-28 15:55:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2460, 90, 2, 0.99, '2005-07-29 06:40:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2461, 90, 2, 9.99, '2005-07-30 00:08:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2462, 90, 2, 2.99, '2005-07-30 18:02:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2463, 90, 2, 7.99, '2005-08-01 00:52:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2464, 90, 2, 4.99, '2005-08-01 19:07:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2465, 90, 2, 4.99, '2005-08-01 23:28:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2466, 90, 1, 4.99, '2005-08-02 13:02:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2467, 90, 1, 0.99, '2005-08-16 23:54:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2468, 90, 1, 0.99, '2005-08-17 19:48:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2469, 90, 1, 2.99, '2005-08-19 00:15:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2470, 90, 2, 4.99, '2005-08-19 09:31:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2471, 90, 2, 1.99, '2005-08-21 17:57:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2472, 90, 1, 4.99, '2005-08-22 00:57:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2473, 90, 1, 0.99, '2005-08-22 10:29:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2474, 90, 2, 0.99, '2005-08-22 16:58:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2475, 90, 2, 7.99, '2005-08-23 09:16:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2476, 91, 1, 5.99, '2005-05-26 09:17:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2477, 91, 2, 4.99, '2005-06-15 09:34:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2478, 91, 1, 3.99, '2005-06-18 19:38:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2479, 91, 1, 0.99, '2005-06-20 03:16:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2480, 91, 1, 2.99, '2005-06-21 14:07:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2481, 91, 2, 0.99, '2005-07-06 15:06:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2482, 91, 1, 2.99, '2005-07-07 06:25:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2483, 91, 1, 4.99, '2005-07-07 13:48:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2484, 91, 1, 4.99, '2005-07-07 17:52:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2485, 91, 2, 4.99, '2005-07-08 10:16:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2486, 91, 1, 4.99, '2005-07-09 02:28:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2487, 91, 2, 1.99, '2005-07-09 10:19:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2488, 91, 1, 0.99, '2005-07-10 09:56:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2489, 91, 2, 4.99, '2005-07-11 05:06:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2490, 91, 2, 2.99, '2005-07-11 10:59:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2491, 91, 2, 2.99, '2005-07-12 19:54:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2492, 91, 2, 0.99, '2005-07-27 06:56:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2493, 91, 2, 0.99, '2005-07-28 01:12:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2494, 91, 2, 4.99, '2005-07-28 13:53:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2495, 91, 2, 0.99, '2005-07-29 03:34:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2496, 91, 1, 0.99, '2005-07-30 00:14:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2497, 91, 1, 2.99, '2005-07-30 13:36:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2498, 91, 1, 4.99, '2005-07-30 20:07:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2499, 91, 2, 5.99, '2005-07-31 05:17:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2500, 91, 2, 4.99, '2005-07-31 17:59:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2501, 91, 2, 0.99, '2005-08-02 19:45:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2502, 91, 2, 0.99, '2005-08-19 02:04:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2503, 91, 2, 4.99, '2005-08-19 04:07:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2504, 91, 2, 4.99, '2005-08-19 15:47:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2505, 91, 1, 4.99, '2005-08-19 19:04:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2506, 91, 1, 0.99, '2005-08-21 01:43:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2507, 91, 1, 2.99, '2005-08-22 04:09:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2508, 91, 1, 1.99, '2005-08-22 12:47:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2509, 91, 1, 4.99, '2005-08-22 20:56:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2510, 91, 2, 1.99, '2005-08-23 10:35:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2511, 91, 2, 4.99, '2005-08-23 16:50:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2512, 92, 1, 5.99, '2005-05-26 16:22:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2513, 92, 2, 4.99, '2005-05-27 19:50:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2514, 92, 2, 4.99, '2005-06-17 17:17:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2515, 92, 1, 0.99, '2005-06-19 00:41:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2516, 92, 2, 8.99, '2005-06-19 15:59:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2517, 92, 1, 8.99, '2005-07-06 04:59:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2518, 92, 2, 7.99, '2005-07-06 10:52:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2519, 92, 1, 2.99, '2005-07-07 19:31:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2520, 92, 2, 4.99, '2005-07-08 17:52:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2521, 92, 1, 5.99, '2005-07-10 00:23:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2522, 92, 1, 7.99, '2005-07-10 05:30:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2523, 92, 2, 6.99, '2005-07-10 14:22:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2524, 92, 2, 2.99, '2005-07-10 21:32:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2525, 92, 2, 0.99, '2005-07-11 09:50:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2526, 92, 2, 6.99, '2005-07-11 16:19:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2527, 92, 2, 4.99, '2005-07-27 04:03:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2528, 92, 2, 1.99, '2005-07-28 08:46:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2529, 92, 2, 4.99, '2005-07-29 09:04:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2530, 92, 2, 4.99, '2005-07-30 02:56:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2531, 92, 1, 4.99, '2005-07-30 13:57:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2532, 92, 2, 4.99, '2005-08-02 11:52:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2533, 92, 2, 2.99, '2005-08-02 13:33:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2534, 92, 1, 4.99, '2005-08-17 13:24:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2535, 92, 1, 5.99, '2005-08-19 08:07:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2536, 92, 2, 0.99, '2005-08-20 01:40:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2537, 92, 1, 2.99, '2005-08-20 06:41:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2538, 92, 2, 0.99, '2005-08-22 00:44:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2539, 92, 2, 4.99, '2005-08-22 07:53:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2540, 93, 2, 2.99, '2005-05-25 19:07:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2541, 93, 2, 6.99, '2005-05-27 15:19:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2542, 93, 1, 4.99, '2005-05-31 03:41:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2543, 93, 2, 4.99, '2005-06-18 05:21:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2544, 93, 2, 0.99, '2005-06-20 17:33:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2545, 93, 2, 2.99, '2005-07-08 13:12:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2546, 93, 2, 4.99, '2005-07-09 07:29:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2547, 93, 2, 4.99, '2005-07-11 17:00:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2548, 93, 2, 4.99, '2005-07-12 06:56:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2549, 93, 1, 2.99, '2005-07-27 12:50:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2550, 93, 2, 0.99, '2005-07-29 00:16:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2551, 93, 2, 5.99, '2005-08-02 14:18:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2552, 93, 1, 4.99, '2005-08-18 20:43:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2553, 93, 1, 2.99, '2005-08-20 04:09:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2554, 93, 1, 2.99, '2005-08-20 16:11:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2555, 93, 2, 8.99, '2005-08-20 17:58:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2556, 93, 2, 4.99, '2005-08-20 19:32:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2557, 93, 2, 0.99, '2005-08-21 03:40:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2558, 93, 1, 4.99, '2005-08-21 08:31:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2559, 93, 2, 5.99, '2005-08-22 20:23:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2560, 93, 1, 2.99, '2005-08-23 07:30:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2561, 93, 1, 0.99, '2005-08-23 10:04:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2562, 93, 2, 1.99, '2005-08-23 17:48:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2563, 94, 2, 2.99, '2005-05-25 21:10:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2564, 94, 2, 4.99, '2005-05-28 17:19:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2565, 94, 1, 2.99, '2005-06-15 03:14:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2566, 94, 1, 4.99, '2005-06-15 14:25:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2567, 94, 1, 3.99, '2005-06-16 15:49:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2568, 94, 2, 4.99, '2005-06-19 08:06:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2569, 94, 1, 2.99, '2005-06-19 20:04:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2570, 94, 1, 0.99, '2005-07-07 03:22:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2571, 94, 1, 8.99, '2005-07-07 15:37:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2572, 94, 1, 4.99, '2005-07-10 11:07:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2573, 94, 2, 4.99, '2005-07-11 00:04:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2574, 94, 2, 2.99, '2005-07-28 07:59:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2575, 94, 2, 0.99, '2005-07-28 14:16:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2576, 94, 1, 4.99, '2005-07-31 03:50:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2577, 94, 1, 2.99, '2005-08-18 06:16:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2578, 94, 2, 5.99, '2005-08-20 12:13:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2579, 94, 2, 1.99, '2005-08-22 00:51:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2580, 94, 1, 4.99, '2005-08-22 03:06:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2581, 94, 1, 0.99, '2005-08-22 07:13:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2582, 94, 2, 4.99, '2005-08-22 21:59:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2583, 94, 1, 0.99, '2005-08-23 10:00:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2584, 95, 2, 4.99, '2005-05-28 00:09:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2585, 95, 2, 2.99, '2005-06-15 00:12:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2586, 95, 2, 1.99, '2005-06-15 06:52:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2587, 95, 2, 2.99, '2005-06-20 13:20:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2588, 95, 2, 0.99, '2005-06-21 18:12:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2589, 95, 2, 1.99, '2005-07-06 06:43:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2590, 95, 2, 4.99, '2005-07-06 23:58:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2591, 95, 1, 5.99, '2005-07-08 18:08:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2592, 95, 1, 5.99, '2005-07-27 10:29:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2593, 95, 1, 4.99, '2005-07-27 19:02:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2594, 95, 2, 6.99, '2005-07-30 13:21:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2595, 95, 1, 6.99, '2005-07-31 07:13:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2596, 95, 1, 4.99, '2005-07-31 15:51:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2597, 95, 2, 0.99, '2005-07-31 21:44:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2598, 95, 1, 0.99, '2005-08-01 09:02:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2599, 95, 2, 5.99, '2005-08-18 07:32:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2600, 95, 1, 7.99, '2005-08-20 02:32:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2601, 95, 1, 4.99, '2005-08-21 03:51:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2602, 96, 2, 3.99, '2005-06-15 07:11:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2603, 96, 2, 7.99, '2005-06-15 17:25:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2604, 96, 2, 0.99, '2005-06-15 18:37:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2605, 96, 2, 0.99, '2005-06-18 14:37:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2606, 96, 2, 5.99, '2005-06-20 07:59:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2607, 96, 2, 0.99, '2005-06-21 07:58:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2608, 96, 1, 0.99, '2005-06-21 22:00:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2609, 96, 1, 2.99, '2005-07-06 11:06:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2610, 96, 1, 2.99, '2005-07-06 12:01:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2611, 96, 1, 4.99, '2005-07-08 23:35:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2612, 96, 1, 0.99, '2005-07-10 03:12:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2613, 96, 2, 4.99, '2005-07-10 08:42:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2614, 96, 1, 2.99, '2005-07-10 09:44:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2615, 96, 1, 4.99, '2005-07-28 19:31:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2616, 96, 2, 6.99, '2005-07-29 07:23:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2617, 96, 1, 3.99, '2005-07-30 08:33:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2618, 96, 2, 4.99, '2005-07-30 17:05:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2619, 96, 1, 3.99, '2005-07-31 06:09:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2620, 96, 2, 4.99, '2005-07-31 18:40:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2621, 96, 2, 4.99, '2005-08-17 14:02:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2622, 96, 2, 3.99, '2005-08-17 18:16:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2623, 96, 1, 4.99, '2005-08-18 02:09:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2624, 96, 2, 4.99, '2005-08-18 13:48:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2625, 96, 1, 0.99, '2005-08-20 02:28:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2626, 96, 1, 4.99, '2005-08-20 14:48:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2627, 96, 2, 3.99, '2005-08-21 12:50:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2628, 96, 1, 4.99, '2005-08-23 20:24:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2629, 97, 2, 2.99, '2005-06-17 17:14:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2630, 97, 2, 4.99, '2005-06-19 18:49:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2631, 97, 1, 0.99, '2005-06-21 21:45:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2632, 97, 1, 2.99, '2005-07-06 01:47:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2633, 97, 1, 0.99, '2005-07-06 03:02:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2634, 97, 1, 4.99, '2005-07-06 15:33:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2635, 97, 2, 4.99, '2005-07-07 17:34:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2636, 97, 1, 4.99, '2005-07-08 02:28:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2637, 97, 1, 4.99, '2005-07-09 22:24:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2638, 97, 1, 0.99, '2005-07-12 04:56:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2639, 97, 1, 0.99, '2005-07-12 13:48:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2640, 97, 2, 5.99, '2005-07-27 08:15:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2641, 97, 1, 0.99, '2005-07-28 12:08:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2642, 97, 1, 2.99, '2005-07-29 07:25:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2643, 97, 1, 4.99, '2005-07-31 03:19:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2644, 97, 1, 2.99, '2005-08-01 22:53:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2645, 97, 1, 4.99, '2005-08-21 08:08:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2646, 97, 1, 0.99, '2005-08-22 08:20:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2647, 98, 1, 3.99, '2005-05-26 08:48:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2648, 98, 2, 3.99, '2005-06-15 13:53:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2649, 98, 2, 5.99, '2005-06-16 05:11:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2650, 98, 1, 4.99, '2005-06-18 02:36:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2651, 98, 2, 0.99, '2005-06-18 19:02:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2652, 98, 1, 4.99, '2005-06-19 06:09:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2653, 98, 2, 4.99, '2005-06-21 15:47:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2654, 98, 2, 7.99, '2005-07-06 09:22:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2655, 98, 2, 4.99, '2005-07-08 04:25:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2656, 98, 2, 2.99, '2005-07-26 23:47:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2657, 98, 1, 3.99, '2005-07-27 05:56:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2658, 98, 2, 0.99, '2005-07-27 21:18:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2659, 98, 2, 5.99, '2005-07-29 03:56:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2660, 98, 2, 4.99, '2005-07-29 13:53:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2661, 98, 2, 5.99, '2005-07-29 22:14:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2662, 98, 2, 2.99, '2005-07-31 09:22:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2663, 98, 2, 3.99, '2005-08-01 18:15:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2664, 98, 2, 2.99, '2005-08-02 02:24:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2665, 98, 2, 0.99, '2005-08-02 05:05:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2666, 98, 1, 2.99, '2005-08-02 11:48:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2667, 98, 2, 5.99, '2005-08-17 04:33:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2668, 98, 1, 2.99, '2005-08-17 08:22:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2669, 98, 1, 5.99, '2005-08-18 02:50:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2670, 98, 2, 1.99, '2005-08-21 12:48:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2671, 98, 2, 7.99, '2005-08-23 03:58:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2672, 99, 1, 0.99, '2005-05-30 03:54:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2673, 99, 1, 4.99, '2005-06-17 01:13:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2674, 99, 1, 2.99, '2005-06-18 14:10:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2675, 99, 2, 6.99, '2005-07-06 13:52:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2676, 99, 2, 2.99, '2005-07-07 09:44:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2677, 99, 1, 4.99, '2005-07-07 18:50:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2678, 99, 1, 0.99, '2005-07-08 06:26:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2679, 99, 2, 4.99, '2005-07-08 16:51:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2680, 99, 1, 2.99, '2005-07-08 23:14:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2681, 99, 2, 2.99, '2005-07-09 02:51:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2682, 99, 2, 2.99, '2005-07-10 12:19:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2683, 99, 1, 2.99, '2005-07-11 17:06:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2684, 99, 1, 3.99, '2005-07-11 21:28:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2685, 99, 2, 4.99, '2005-07-12 11:21:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2686, 99, 1, 4.99, '2005-07-27 03:11:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2687, 99, 1, 0.99, '2005-07-28 17:27:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2688, 99, 1, 7.99, '2005-07-29 00:34:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2689, 99, 2, 0.99, '2005-07-29 09:53:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2690, 99, 1, 7.99, '2005-08-01 06:42:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2691, 99, 1, 1.99, '2005-08-01 09:15:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2692, 99, 1, 4.99, '2005-08-02 14:07:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2693, 99, 2, 0.99, '2005-08-17 02:46:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2694, 99, 2, 0.99, '2005-08-18 08:26:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2695, 99, 2, 8.99, '2005-08-19 02:50:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2696, 100, 1, 0.99, '2005-05-25 10:26:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2697, 100, 1, 4.99, '2005-06-15 03:23:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2698, 100, 2, 3.99, '2005-06-15 12:24:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2699, 100, 1, 2.99, '2005-06-15 18:17:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2700, 100, 2, 6.99, '2005-06-21 22:43:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2701, 100, 1, 5.99, '2005-07-06 05:23:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2702, 100, 1, 8.99, '2005-07-06 15:01:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2703, 100, 1, 2.99, '2005-07-07 11:35:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2704, 100, 1, 8.99, '2005-07-08 23:54:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2705, 100, 2, 6.99, '2005-07-09 00:26:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2706, 100, 1, 4.99, '2005-07-09 13:11:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2707, 100, 1, 6.99, '2005-07-09 18:07:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2708, 100, 1, 4.99, '2005-07-12 11:08:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2709, 100, 1, 4.99, '2005-07-28 08:27:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2710, 100, 2, 1.99, '2005-07-28 12:02:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2711, 100, 1, 0.99, '2005-07-28 23:14:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2712, 100, 1, 5.99, '2005-07-30 06:57:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2713, 100, 1, 4.99, '2005-07-30 15:04:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2714, 100, 1, 0.99, '2005-08-02 09:32:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2715, 100, 2, 4.99, '2005-08-02 17:15:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2716, 100, 1, 0.99, '2005-08-18 19:02:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2717, 100, 1, 0.99, '2005-08-22 08:55:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2718, 100, 2, 0.99, '2005-08-22 14:43:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2719, 100, 1, 3.99, '2005-08-22 17:50:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2720, 101, 2, 9.99, '2005-05-27 21:13:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2721, 101, 2, 2.99, '2005-07-09 00:02:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2722, 101, 1, 2.99, '2005-07-09 06:16:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2723, 101, 2, 5.99, '2005-07-09 07:40:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2724, 101, 1, 2.99, '2005-07-09 10:49:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2725, 101, 1, 2.99, '2005-07-10 12:40:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2726, 101, 1, 5.99, '2005-07-12 00:12:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2727, 101, 2, 5.99, '2005-07-27 05:38:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2728, 101, 1, 8.99, '2005-07-28 10:08:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2729, 101, 2, 0.99, '2005-07-29 03:00:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2730, 101, 1, 1.99, '2005-07-29 22:24:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2731, 101, 2, 4.99, '2005-07-29 22:39:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2732, 101, 2, 6.99, '2005-07-31 16:19:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2733, 101, 2, 0.99, '2005-08-01 01:09:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2734, 101, 2, 6.99, '2005-08-01 02:39:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2735, 101, 1, 0.99, '2005-08-01 07:38:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2736, 101, 2, 4.99, '2005-08-17 17:23:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2737, 101, 1, 0.99, '2005-08-18 00:01:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2738, 101, 1, 2.99, '2005-08-18 01:08:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2739, 101, 2, 4.99, '2005-08-18 11:57:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2740, 101, 1, 1.99, '2005-08-19 21:20:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2741, 101, 1, 0.99, '2005-08-21 13:31:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2742, 101, 1, 3.99, '2005-08-21 15:36:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2743, 101, 1, 2.99, '2005-08-22 12:01:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2744, 102, 2, 4.99, '2005-05-26 14:01:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2745, 102, 1, 0.99, '2005-05-27 06:43:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2746, 102, 2, 1.99, '2005-05-28 09:01:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2747, 102, 1, 2.99, '2005-06-15 03:21:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2748, 102, 1, 8.99, '2005-06-18 17:21:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2749, 102, 2, 1.99, '2005-07-06 00:58:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2750, 102, 2, 1.99, '2005-07-06 06:27:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2751, 102, 1, 4.99, '2005-07-06 08:23:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2752, 102, 2, 6.99, '2005-07-07 05:45:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2753, 102, 1, 3.99, '2005-07-08 15:48:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2754, 102, 2, 6.99, '2005-07-09 01:06:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2755, 102, 1, 5.99, '2005-07-09 01:32:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2756, 102, 2, 4.99, '2005-07-09 06:48:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2757, 102, 1, 5.99, '2005-07-10 00:54:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2758, 102, 1, 2.99, '2005-07-10 10:59:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2759, 102, 2, 5.99, '2005-07-12 00:14:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2760, 102, 1, 0.99, '2005-07-27 05:55:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2761, 102, 2, 0.99, '2005-07-27 10:32:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2762, 102, 2, 6.99, '2005-07-27 17:42:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2763, 102, 2, 0.99, '2005-07-28 22:30:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2764, 102, 1, 5.99, '2005-07-29 15:36:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2765, 102, 1, 3.99, '2005-07-30 10:50:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2766, 102, 1, 2.99, '2005-07-30 12:26:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2767, 102, 2, 0.99, '2005-07-30 16:18:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2768, 102, 1, 2.99, '2005-07-31 04:15:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2769, 102, 1, 4.99, '2005-07-31 10:10:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2770, 102, 1, 1.99, '2005-08-01 23:39:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2771, 102, 2, 4.99, '2005-08-02 08:07:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2772, 102, 2, 4.99, '2005-08-02 11:00:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2773, 102, 2, 4.99, '2005-08-18 12:56:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2774, 102, 2, 9.99, '2005-08-19 22:57:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2775, 102, 2, 1.99, '2005-08-22 10:06:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2776, 102, 2, 3.99, '2005-08-23 21:59:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2777, 103, 1, 7.99, '2005-05-26 12:40:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2778, 103, 2, 9.99, '2005-05-28 20:23:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2779, 103, 1, 4.99, '2005-06-15 16:22:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2780, 103, 2, 0.99, '2005-06-17 20:28:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2781, 103, 1, 0.99, '2005-06-18 01:50:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2782, 103, 2, 0.99, '2005-06-19 14:57:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2783, 103, 2, 6.99, '2005-07-06 12:19:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2784, 103, 2, 4.99, '2005-07-06 16:51:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2785, 103, 1, 6.99, '2005-07-07 03:02:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2786, 103, 1, 2.99, '2005-07-07 11:53:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2787, 103, 1, 1.99, '2005-07-07 19:24:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2788, 103, 2, 4.99, '2005-07-08 19:23:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2789, 103, 2, 4.99, '2005-07-09 09:00:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2790, 103, 1, 5.99, '2005-07-12 04:17:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2791, 103, 1, 6.99, '2005-07-12 12:44:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2792, 103, 1, 2.99, '2005-07-26 23:44:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2793, 103, 2, 0.99, '2005-07-27 13:00:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2794, 103, 2, 6.99, '2005-07-27 19:04:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2795, 103, 2, 0.99, '2005-07-29 03:01:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2796, 103, 2, 4.99, '2005-07-29 10:10:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2797, 103, 1, 4.99, '2005-07-30 19:42:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2798, 103, 1, 7.99, '2005-08-19 05:40:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2799, 103, 2, 0.99, '2005-08-20 08:33:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2800, 103, 2, 2.99, '2005-08-20 22:39:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2801, 103, 1, 4.99, '2005-08-21 06:58:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2802, 103, 2, 8.99, '2005-08-22 23:13:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2803, 103, 2, 5.99, '2005-08-23 01:13:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2804, 103, 2, 3.99, '2005-08-23 01:22:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2805, 103, 2, 5.99, '2005-08-23 06:25:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2806, 103, 1, 0.99, '2005-08-23 09:27:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2807, 103, 2, 8.99, '2005-08-23 22:43:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2808, 104, 2, 10.99, '2005-05-26 02:26:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2809, 104, 1, 3.99, '2005-05-29 19:08:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2810, 104, 2, 3.99, '2005-06-15 08:41:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2811, 104, 2, 0.99, '2005-06-17 19:31:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2812, 104, 2, 0.99, '2005-06-20 04:43:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2813, 104, 1, 2.99, '2005-06-21 05:24:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2814, 104, 2, 4.99, '2005-07-07 00:56:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2815, 104, 2, 6.99, '2005-07-07 22:56:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2816, 104, 1, 4.99, '2005-07-08 02:53:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2817, 104, 2, 7.99, '2005-07-08 03:26:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2818, 104, 2, 2.99, '2005-07-08 21:32:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2819, 104, 2, 1.99, '2005-07-09 18:54:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2820, 104, 1, 2.99, '2005-07-27 05:22:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2821, 104, 2, 1.99, '2005-07-29 06:47:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2822, 104, 2, 3.99, '2005-07-30 08:24:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2823, 104, 2, 5.99, '2005-07-31 17:32:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2824, 104, 1, 2.99, '2005-08-17 07:12:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2825, 104, 1, 3.99, '2005-08-18 11:17:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2826, 104, 2, 0.99, '2005-08-19 07:45:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2827, 104, 2, 1.99, '2005-08-19 08:02:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2828, 104, 1, 4.99, '2005-08-19 13:59:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2829, 104, 2, 3.99, '2005-08-19 22:41:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2830, 104, 2, 3.99, '2005-08-21 04:43:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2831, 104, 1, 0.99, '2005-08-22 15:52:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2832, 105, 1, 8.99, '2005-05-27 01:18:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2833, 105, 1, 7.99, '2005-05-27 21:36:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2834, 105, 1, 2.99, '2005-05-27 23:40:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2835, 105, 2, 6.99, '2005-05-29 14:17:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2836, 105, 1, 3.99, '2005-06-16 19:49:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2837, 105, 2, 3.99, '2005-06-17 10:49:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2838, 105, 1, 3.99, '2005-06-19 09:08:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2839, 105, 1, 4.99, '2005-07-09 14:06:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2840, 105, 2, 4.99, '2005-07-09 21:14:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2841, 105, 1, 2.99, '2005-07-10 02:45:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2842, 105, 2, 4.99, '2005-07-10 08:41:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2843, 105, 2, 4.99, '2005-07-12 04:57:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2844, 105, 1, 2.99, '2005-07-27 17:47:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2845, 105, 1, 2.99, '2005-07-30 04:22:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2846, 105, 1, 3.99, '2005-07-30 09:43:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2847, 105, 2, 5.99, '2005-07-30 12:37:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2848, 105, 1, 9.99, '2005-07-30 12:56:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2849, 105, 2, 4.99, '2005-08-01 11:37:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2850, 105, 2, 0.99, '2005-08-18 02:44:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2851, 105, 2, 2.99, '2005-08-19 04:03:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2852, 105, 2, 6.99, '2005-08-19 09:40:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2853, 105, 1, 2.99, '2005-08-20 11:17:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2854, 105, 2, 0.99, '2005-08-20 22:03:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2855, 105, 2, 4.99, '2005-08-23 07:24:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2856, 105, 1, 4.99, '2005-08-23 09:48:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2857, 105, 1, 2.99, '2005-08-23 14:27:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2858, 106, 2, 3.99, '2005-05-28 07:53:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2859, 106, 1, 0.99, '2005-05-31 22:37:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2860, 106, 1, 4.99, '2005-06-18 07:56:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2861, 106, 1, 4.99, '2005-06-20 11:18:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2862, 106, 2, 4.99, '2005-07-07 12:43:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2863, 106, 2, 2.99, '2005-07-07 14:52:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2864, 106, 1, 3.99, '2005-07-08 10:04:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2865, 106, 1, 3.99, '2005-07-09 22:24:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2866, 106, 1, 0.99, '2005-07-27 01:04:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2867, 106, 2, 3.99, '2005-07-27 09:44:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2868, 106, 2, 4.99, '2005-07-27 19:25:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2869, 106, 1, 4.99, '2005-07-28 19:14:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2870, 106, 2, 2.99, '2005-07-30 07:45:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2871, 106, 1, 7.99, '2005-07-31 09:16:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2872, 106, 2, 8.99, '2005-08-01 01:03:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2873, 106, 2, 2.99, '2005-08-01 01:43:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2874, 106, 1, 8.99, '2005-08-01 09:01:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2875, 106, 2, 0.99, '2005-08-02 20:16:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2876, 106, 1, 7.99, '2005-08-18 00:36:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2877, 106, 2, 2.99, '2005-08-19 02:02:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2878, 106, 2, 2.99, '2005-08-21 11:31:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2879, 106, 2, 0.99, '2005-08-22 05:08:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2880, 106, 2, 6.99, '2005-08-22 14:27:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2881, 107, 2, 5.99, '2005-05-26 03:11:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2882, 107, 2, 5.99, '2005-05-31 03:45:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2883, 107, 1, 2.99, '2005-06-15 05:07:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2884, 107, 1, 6.99, '2005-06-19 13:11:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2885, 107, 1, 4.99, '2005-06-19 23:20:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2886, 107, 2, 3.99, '2005-06-20 02:34:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2887, 107, 2, 3.99, '2005-06-20 12:02:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2888, 107, 1, 0.99, '2005-06-20 18:19:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2889, 107, 2, 0.99, '2005-06-20 22:24:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2890, 107, 1, 6.99, '2005-07-06 15:43:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2891, 107, 1, 4.99, '2005-07-09 16:02:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2892, 107, 1, 2.99, '2005-07-10 03:55:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2893, 107, 2, 3.99, '2005-07-10 14:45:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2894, 107, 2, 2.99, '2005-07-11 08:22:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2895, 107, 1, 0.99, '2005-07-11 08:25:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2896, 107, 2, 5.99, '2005-07-12 17:54:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2897, 107, 2, 6.99, '2005-07-26 23:11:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2898, 107, 1, 4.99, '2005-07-27 18:02:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2899, 107, 2, 7.99, '2005-07-27 23:41:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2900, 107, 1, 4.99, '2005-07-28 21:11:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2901, 107, 2, 1.99, '2005-07-29 17:13:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2902, 107, 2, 2.99, '2005-07-30 11:00:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2903, 107, 2, 2.99, '2005-07-30 18:28:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2904, 107, 1, 4.99, '2005-08-01 01:40:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2905, 107, 1, 0.99, '2005-08-19 10:16:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2906, 107, 2, 4.99, '2005-08-19 21:07:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2907, 107, 2, 6.99, '2005-08-20 02:18:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2908, 107, 2, 4.99, '2005-08-21 16:22:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2909, 107, 2, 0.99, '2005-08-23 02:33:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2910, 107, 1, 3.99, '2005-08-23 05:01:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2911, 108, 1, 4.99, '2005-05-25 17:54:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2912, 108, 2, 0.99, '2005-05-31 07:47:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2913, 108, 2, 4.99, '2005-06-15 14:45:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2914, 108, 2, 2.99, '2005-06-15 18:13:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2915, 108, 1, 8.99, '2005-06-17 15:47:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2916, 108, 2, 2.99, '2005-06-18 02:27:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2917, 108, 1, 4.99, '2005-06-20 18:04:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2918, 108, 1, 0.99, '2005-07-06 18:15:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2919, 108, 1, 2.99, '2005-07-07 05:11:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2920, 108, 2, 1.99, '2005-07-07 16:57:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2921, 108, 1, 4.99, '2005-07-08 09:32:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2922, 108, 1, 0.99, '2005-07-08 14:20:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2923, 108, 1, 6.99, '2005-07-09 14:34:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2924, 108, 2, 5.99, '2005-07-10 07:53:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2925, 108, 1, 4.99, '2005-07-10 15:11:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2926, 108, 1, 0.99, '2005-07-12 19:04:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2927, 108, 1, 5.99, '2005-07-29 04:06:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2928, 108, 2, 4.99, '2005-07-29 12:18:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2929, 108, 1, 4.99, '2005-07-29 23:10:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2930, 108, 1, 4.99, '2005-07-31 09:24:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2931, 108, 1, 5.99, '2005-08-02 16:07:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2932, 108, 1, 6.99, '2005-08-02 20:33:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2933, 108, 1, 2.99, '2005-08-17 09:41:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2934, 108, 2, 2.99, '2005-08-18 15:51:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2935, 108, 2, 6.99, '2005-08-18 17:36:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2936, 108, 1, 2.99, '2005-08-20 11:18:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2937, 108, 2, 3.99, '2005-08-21 18:51:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2938, 108, 1, 4.99, '2005-08-22 19:33:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2939, 108, 1, 8.99, '2005-08-23 04:52:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2940, 108, 1, 2.99, '2005-08-23 20:45:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2941, 109, 2, 5.99, '2005-05-26 07:27:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2942, 109, 1, 0.99, '2005-05-27 10:26:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2943, 109, 2, 3.99, '2005-05-28 15:58:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2944, 109, 1, 0.99, '2005-05-29 02:10:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2945, 109, 2, 7.99, '2005-05-31 08:27:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2946, 109, 1, 4.99, '2005-05-31 14:36:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2947, 109, 1, 2.99, '2005-05-31 16:07:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2948, 109, 2, 2.99, '2005-06-16 04:28:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2949, 109, 1, 3.99, '2005-06-17 04:16:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2950, 109, 2, 6.99, '2005-06-18 01:51:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2951, 109, 2, 5.99, '2005-06-19 12:12:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2952, 109, 2, 5.99, '2005-06-20 15:01:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2953, 109, 1, 4.99, '2005-07-08 21:43:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2954, 109, 2, 2.99, '2005-07-09 02:32:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2955, 109, 2, 2.99, '2005-07-09 15:26:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2956, 109, 1, 6.99, '2005-07-12 22:32:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2957, 109, 1, 0.99, '2005-07-27 07:01:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2958, 109, 1, 3.99, '2005-07-28 15:15:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2959, 109, 2, 0.99, '2005-07-30 13:39:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2960, 109, 1, 2.99, '2005-07-31 13:25:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2961, 109, 1, 0.99, '2005-08-01 02:09:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2962, 109, 1, 3.99, '2005-08-02 01:12:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2963, 109, 2, 6.99, '2005-08-17 23:52:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2964, 109, 1, 3.99, '2005-08-19 17:27:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2965, 109, 2, 7.99, '2005-08-22 23:10:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2966, 109, 2, 2.99, '2005-08-23 09:23:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2967, 110, 2, 7.99, '2005-05-28 03:10:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2968, 110, 1, 1.99, '2005-05-28 06:21:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2969, 110, 2, 8.99, '2005-06-16 00:32:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2970, 110, 1, 4.99, '2005-07-06 04:27:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2971, 110, 2, 2.99, '2005-07-07 17:44:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2972, 110, 2, 4.99, '2005-07-08 17:46:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2973, 110, 1, 4.99, '2005-07-11 10:08:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2974, 110, 2, 0.99, '2005-07-27 19:07:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2975, 110, 1, 0.99, '2005-07-27 21:43:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2976, 110, 1, 2.99, '2005-07-27 22:40:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2977, 110, 1, 7.99, '2005-08-17 04:54:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2978, 110, 1, 3.99, '2005-08-18 15:52:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2979, 110, 2, 2.99, '2005-08-20 10:05:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2980, 110, 1, 2.99, '2005-08-22 22:28:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2981, 111, 2, 2.99, '2005-05-28 02:06:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2982, 111, 2, 6.99, '2005-06-16 05:14:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2983, 111, 1, 2.99, '2005-06-17 09:30:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2984, 111, 1, 1.99, '2005-06-17 11:30:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2985, 111, 2, 4.99, '2005-06-18 08:17:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2986, 111, 2, 2.99, '2005-06-20 15:53:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2987, 111, 1, 2.99, '2005-06-21 10:01:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2988, 111, 1, 1.99, '2005-07-05 23:25:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2989, 111, 1, 3.99, '2005-07-06 02:33:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2990, 111, 2, 9.99, '2005-07-06 22:19:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2991, 111, 2, 4.99, '2005-07-07 14:05:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2992, 111, 2, 0.99, '2005-07-07 15:36:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2993, 111, 1, 2.99, '2005-07-12 21:25:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2994, 111, 1, 0.99, '2005-07-29 10:20:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2995, 111, 1, 0.99, '2005-07-31 15:24:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2996, 111, 2, 2.99, '2005-07-31 18:50:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2997, 111, 1, 4.99, '2005-08-01 14:30:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2998, 111, 1, 4.99, '2005-08-02 03:28:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (2999, 111, 1, 4.99, '2005-08-02 04:41:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3000, 111, 2, 2.99, '2005-08-02 13:27:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3001, 111, 2, 3.99, '2005-08-18 02:08:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3002, 111, 1, 2.99, '2005-08-19 16:48:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3003, 111, 2, 5.99, '2005-08-20 02:50:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3004, 111, 1, 0.99, '2005-08-22 06:12:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3005, 111, 2, 6.99, '2005-08-22 15:26:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3006, 111, 2, 2.99, '2005-08-23 04:15:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3007, 112, 1, 0.99, '2005-05-27 11:47:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3008, 112, 2, 2.99, '2005-05-29 02:26:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3009, 112, 2, 4.99, '2005-06-16 23:05:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3010, 112, 1, 2.99, '2005-06-17 06:50:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3011, 112, 1, 4.99, '2005-06-18 01:38:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3012, 112, 1, 2.99, '2005-06-20 11:10:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3013, 112, 1, 4.99, '2005-07-09 17:40:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3014, 112, 2, 2.99, '2005-07-09 19:18:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3015, 112, 1, 2.99, '2005-07-12 05:03:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3016, 112, 2, 4.99, '2005-07-28 03:30:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3017, 112, 2, 4.99, '2005-07-28 06:31:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3018, 112, 1, 4.99, '2005-07-30 13:13:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3019, 112, 2, 6.99, '2005-07-30 17:19:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3020, 112, 1, 4.99, '2005-07-31 03:53:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3021, 112, 2, 5.99, '2005-07-31 11:59:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3022, 112, 1, 3.99, '2005-07-31 14:48:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3023, 112, 2, 2.99, '2005-07-31 18:49:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3024, 112, 1, 5.99, '2005-08-01 14:18:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3025, 112, 2, 2.99, '2005-08-02 05:29:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3026, 112, 2, 7.99, '2005-08-17 03:08:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3027, 112, 2, 4.99, '2005-08-17 05:20:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3028, 112, 2, 3.99, '2005-08-17 13:56:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3029, 112, 2, 8.99, '2005-08-20 06:20:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3030, 112, 2, 2.99, '2005-08-20 15:18:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3031, 112, 1, 5.99, '2005-08-20 22:08:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3032, 112, 1, 0.99, '2005-08-21 09:14:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3033, 112, 1, 4.99, '2005-08-22 19:45:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3034, 112, 1, 0.99, '2005-08-23 09:08:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3035, 112, 1, 8.99, '2005-08-23 09:46:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3036, 112, 2, 2.99, '2005-08-23 12:47:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3037, 113, 2, 0.99, '2005-05-28 02:52:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3038, 113, 1, 0.99, '2005-05-29 13:35:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3039, 113, 1, 4.99, '2005-06-17 16:46:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3040, 113, 1, 2.99, '2005-06-18 06:48:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3041, 113, 2, 2.99, '2005-06-19 18:29:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3042, 113, 2, 0.99, '2005-06-20 10:04:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3043, 113, 2, 8.99, '2005-06-20 18:28:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3044, 113, 1, 6.99, '2005-06-20 21:21:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3045, 113, 1, 5.99, '2005-07-06 07:55:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3046, 113, 1, 2.99, '2005-07-07 18:31:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3047, 113, 2, 2.99, '2005-07-09 10:23:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3048, 113, 2, 2.99, '2005-07-09 16:34:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3049, 113, 1, 4.99, '2005-07-10 07:31:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3050, 113, 2, 5.99, '2005-07-10 13:31:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3051, 113, 2, 0.99, '2005-07-11 02:18:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3052, 113, 2, 0.99, '2005-07-12 18:58:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3053, 113, 2, 5.99, '2005-07-27 18:52:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3054, 113, 1, 2.99, '2005-07-27 23:23:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3055, 113, 1, 6.99, '2005-07-30 13:20:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3056, 113, 2, 4.99, '2005-08-01 00:00:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3057, 113, 1, 0.99, '2005-08-01 06:30:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3058, 113, 2, 1.99, '2005-08-01 13:48:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3059, 113, 1, 7.99, '2005-08-17 05:11:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3060, 113, 1, 5.99, '2005-08-17 14:11:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3061, 113, 1, 5.99, '2005-08-18 08:57:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3062, 113, 2, 3.99, '2005-08-19 01:04:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3063, 113, 1, 2.99, '2005-08-19 22:22:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3064, 113, 2, 1.99, '2005-08-23 06:31:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3065, 113, 2, 2.99, '2005-08-23 13:18:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3066, 114, 2, 4.99, '2005-05-26 07:59:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3067, 114, 1, 4.99, '2005-05-26 14:52:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3068, 114, 1, 2.99, '2005-05-30 07:14:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3069, 114, 2, 2.99, '2005-06-17 15:36:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3070, 114, 2, 7.99, '2005-06-19 12:13:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3071, 114, 2, 2.99, '2005-06-20 16:06:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3072, 114, 1, 5.99, '2005-06-20 20:14:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3073, 114, 2, 4.99, '2005-07-05 23:23:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3074, 114, 2, 2.99, '2005-07-06 20:38:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3075, 114, 2, 0.99, '2005-07-07 02:13:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3076, 114, 1, 0.99, '2005-07-09 20:41:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3077, 114, 1, 4.99, '2005-07-10 05:43:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3078, 114, 2, 2.99, '2005-07-10 05:44:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3079, 114, 2, 2.99, '2005-07-11 11:31:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3080, 114, 1, 4.99, '2005-07-12 14:59:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3081, 114, 1, 2.99, '2005-07-27 13:19:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3082, 114, 2, 2.99, '2005-07-27 18:47:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3083, 114, 2, 2.99, '2005-07-27 22:33:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3084, 114, 2, 5.99, '2005-07-28 12:39:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3085, 114, 2, 4.99, '2005-07-29 09:05:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3086, 114, 2, 10.99, '2005-07-29 12:32:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3087, 114, 1, 4.99, '2005-07-31 08:24:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3088, 114, 2, 4.99, '2005-08-17 00:59:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3089, 114, 1, 0.99, '2005-08-18 06:41:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3090, 114, 1, 4.99, '2005-08-18 13:17:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3091, 114, 1, 6.99, '2005-08-18 19:51:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3092, 114, 1, 6.99, '2005-08-20 00:45:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3093, 114, 2, 5.99, '2005-08-21 02:43:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3094, 114, 1, 4.99, '2005-08-22 03:14:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3095, 114, 1, 0.99, '2005-08-23 02:04:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3096, 114, 2, 2.99, '2005-08-23 03:45:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3097, 114, 1, 3.99, '2005-08-23 08:19:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3098, 114, 2, 0.99, '2005-08-23 22:42:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3099, 115, 1, 0.99, '2005-05-30 11:20:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3100, 115, 2, 0.99, '2005-05-30 22:15:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3101, 115, 1, 2.99, '2005-05-31 14:20:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3102, 115, 2, 0.99, '2005-06-15 13:37:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3103, 115, 1, 2.99, '2005-06-15 23:07:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3104, 115, 1, 6.99, '2005-06-21 06:41:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3105, 115, 2, 0.99, '2005-07-06 02:06:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3106, 115, 2, 0.99, '2005-07-06 06:06:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3107, 115, 2, 1.99, '2005-07-08 16:06:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3108, 115, 1, 4.99, '2005-07-09 13:24:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3109, 115, 2, 2.99, '2005-07-11 05:08:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3110, 115, 2, 2.99, '2005-07-11 07:31:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3111, 115, 1, 0.99, '2005-07-11 21:35:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3112, 115, 2, 5.99, '2005-07-12 06:04:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3113, 115, 2, 6.99, '2005-07-12 16:49:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3114, 115, 1, 1.99, '2005-07-27 14:45:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3115, 115, 2, 4.99, '2005-07-27 18:50:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3116, 115, 1, 4.99, '2005-07-28 14:23:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3117, 115, 2, 4.99, '2005-07-29 12:42:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3118, 115, 1, 0.99, '2005-07-31 02:54:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3119, 115, 1, 3.99, '2005-07-31 18:25:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3120, 115, 1, 4.99, '2005-08-01 10:03:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3121, 115, 2, 2.99, '2005-08-01 16:08:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3122, 115, 1, 0.99, '2005-08-02 02:11:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3123, 115, 2, 2.99, '2005-08-17 15:11:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3124, 115, 1, 0.99, '2005-08-18 07:55:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3125, 115, 2, 2.99, '2005-08-19 09:39:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3126, 115, 2, 0.99, '2005-08-20 19:02:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3127, 115, 2, 6.99, '2005-08-22 15:30:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3128, 115, 2, 0.99, '2005-08-23 00:57:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3129, 116, 1, 4.99, '2005-05-31 08:04:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3130, 116, 2, 0.99, '2005-06-15 11:36:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3131, 116, 2, 0.99, '2005-06-16 00:46:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3132, 116, 2, 4.99, '2005-06-16 17:50:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3133, 116, 1, 4.99, '2005-06-17 05:19:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3134, 116, 1, 4.99, '2005-06-19 09:24:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3135, 116, 2, 3.99, '2005-06-19 23:21:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3136, 116, 2, 6.99, '2005-07-06 19:47:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3137, 116, 2, 2.99, '2005-07-06 21:16:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3138, 116, 2, 0.99, '2005-07-07 02:19:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3139, 116, 1, 4.99, '2005-07-08 13:23:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3140, 116, 1, 2.99, '2005-07-09 09:22:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3141, 116, 2, 4.99, '2005-07-12 05:12:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3142, 116, 1, 0.99, '2005-07-27 10:13:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3143, 116, 1, 5.99, '2005-07-28 06:35:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3144, 116, 1, 6.99, '2005-07-30 14:07:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3145, 116, 1, 3.99, '2005-07-31 02:23:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3146, 116, 1, 1.99, '2005-08-01 02:38:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3147, 116, 1, 1.99, '2005-08-01 22:09:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3148, 116, 2, 4.99, '2005-08-02 05:19:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3149, 116, 2, 2.99, '2005-08-18 08:20:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3150, 116, 2, 7.99, '2005-08-19 12:54:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3151, 116, 1, 0.99, '2005-08-19 21:19:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3152, 116, 1, 0.99, '2005-08-20 01:04:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3153, 116, 2, 6.99, '2005-08-20 11:56:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3154, 116, 1, 11.99, '2005-08-21 23:34:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3155, 116, 2, 2.99, '2005-08-22 04:44:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3156, 117, 1, 0.99, '2005-05-29 02:18:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3157, 117, 2, 0.99, '2005-05-31 16:00:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3158, 117, 1, 2.99, '2005-06-16 17:18:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3159, 117, 2, 2.99, '2005-06-21 01:38:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3160, 117, 2, 5.99, '2005-07-10 00:45:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3161, 117, 2, 0.99, '2005-07-10 08:21:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3162, 117, 1, 9.99, '2005-07-11 05:52:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3163, 117, 2, 6.99, '2005-07-12 00:48:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3164, 117, 1, 2.99, '2005-07-29 16:19:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3165, 117, 2, 2.99, '2005-08-01 12:58:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3166, 117, 2, 4.99, '2005-08-01 13:00:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3167, 117, 1, 3.99, '2005-08-02 21:47:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3168, 117, 1, 2.99, '2005-08-18 00:06:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3169, 117, 1, 2.99, '2005-08-18 07:02:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3170, 117, 1, 6.99, '2005-08-18 15:37:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3171, 117, 2, 4.99, '2005-08-18 17:24:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3172, 117, 1, 0.99, '2005-08-22 00:23:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3173, 117, 2, 2.99, '2005-08-22 02:26:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3174, 117, 1, 2.99, '2005-08-23 00:26:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3175, 118, 1, 5.99, '2005-05-27 05:39:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3176, 118, 1, 4.99, '2005-06-16 17:59:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3177, 118, 2, 0.99, '2005-06-18 03:12:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3178, 118, 2, 4.99, '2005-06-21 04:15:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3179, 118, 2, 0.99, '2005-07-08 23:47:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3180, 118, 1, 1.99, '2005-07-10 16:29:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3181, 118, 1, 0.99, '2005-07-11 21:41:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3182, 118, 2, 1.99, '2005-07-12 03:33:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3183, 118, 1, 2.99, '2005-07-27 08:49:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3184, 118, 2, 4.99, '2005-07-28 09:31:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3185, 118, 1, 4.99, '2005-07-28 13:32:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3186, 118, 2, 3.99, '2005-07-29 03:35:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3187, 118, 1, 7.99, '2005-07-29 19:22:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3188, 118, 1, 4.99, '2005-07-30 00:22:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3189, 118, 1, 1.99, '2005-07-31 19:04:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3190, 118, 2, 2.99, '2005-08-18 14:09:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3191, 118, 1, 6.99, '2005-08-19 14:33:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3192, 118, 1, 5.99, '2005-08-21 10:23:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3193, 118, 2, 7.99, '2005-08-21 17:35:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3194, 118, 1, 2.99, '2005-08-22 05:15:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3195, 118, 1, 0.99, '2005-08-23 11:33:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3196, 119, 2, 0.99, '2005-05-25 09:41:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3197, 119, 1, 5.99, '2005-05-26 11:51:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3198, 119, 1, 6.99, '2005-05-28 06:40:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3199, 119, 1, 7.99, '2005-06-15 00:36:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3200, 119, 2, 2.99, '2005-06-17 11:48:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3201, 119, 1, 5.99, '2005-06-21 14:34:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3202, 119, 2, 8.99, '2005-07-08 18:18:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3203, 119, 2, 5.99, '2005-07-09 09:39:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3204, 119, 1, 0.99, '2005-07-09 14:22:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3205, 119, 1, 7.99, '2005-07-11 05:07:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3206, 119, 1, 0.99, '2005-07-11 19:15:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3207, 119, 1, 4.99, '2005-07-28 20:17:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3208, 119, 1, 5.99, '2005-07-28 22:21:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3209, 119, 2, 4.99, '2005-07-29 03:08:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3210, 119, 1, 2.99, '2005-07-30 06:00:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3211, 119, 2, 0.99, '2005-07-31 20:47:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3212, 119, 1, 3.99, '2005-08-01 06:09:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3213, 119, 1, 2.99, '2005-08-01 12:49:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3214, 119, 2, 4.99, '2005-08-01 17:30:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3215, 119, 2, 2.99, '2005-08-02 18:16:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3216, 119, 1, 5.99, '2005-08-17 00:04:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3217, 119, 2, 2.99, '2005-08-18 15:38:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3218, 119, 1, 3.99, '2005-08-18 16:56:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3219, 119, 2, 6.99, '2005-08-19 01:57:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3220, 119, 1, 4.99, '2005-08-20 05:26:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3221, 119, 1, 3.99, '2005-08-21 08:54:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3222, 119, 1, 2.99, '2005-08-21 10:01:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3223, 119, 1, 6.99, '2005-08-21 19:11:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3224, 119, 2, 0.99, '2005-08-21 19:42:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3225, 119, 2, 4.99, '2005-08-22 12:21:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3226, 119, 1, 3.99, '2005-08-22 13:06:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3227, 119, 1, 6.99, '2005-08-22 15:23:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3228, 119, 1, 2.99, '2005-08-23 15:38:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3229, 119, 2, 3.99, '2005-08-23 21:52:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3230, 120, 2, 7.99, '2005-05-25 09:47:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3231, 120, 2, 0.99, '2005-05-28 05:36:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3232, 120, 2, 3.99, '2005-06-15 14:49:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3233, 120, 1, 4.99, '2005-06-16 21:34:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3234, 120, 1, 2.99, '2005-06-17 06:54:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3235, 120, 1, 4.99, '2005-06-17 23:57:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3236, 120, 1, 9.99, '2005-06-19 19:18:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3237, 120, 1, 2.99, '2005-06-20 19:18:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3238, 120, 2, 5.99, '2005-07-07 00:07:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3239, 120, 1, 3.99, '2005-07-07 14:39:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3240, 120, 2, 0.99, '2005-07-07 18:47:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3241, 120, 1, 9.99, '2005-07-08 10:05:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3242, 120, 2, 1.99, '2005-07-08 22:42:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3243, 120, 2, 1.99, '2005-07-09 15:13:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3244, 120, 2, 0.99, '2005-07-12 03:18:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3245, 120, 1, 4.99, '2005-07-27 01:00:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3246, 120, 1, 0.99, '2005-07-28 16:49:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3247, 120, 1, 1.99, '2005-07-29 19:18:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3248, 120, 1, 6.99, '2005-07-30 04:54:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3249, 120, 2, 6.99, '2005-07-31 14:39:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3250, 120, 2, 0.99, '2005-07-31 23:09:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3251, 120, 2, 4.99, '2005-08-01 18:18:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3252, 120, 1, 3.99, '2005-08-02 03:08:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3253, 120, 1, 0.99, '2005-08-02 09:15:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3254, 120, 1, 2.99, '2005-08-19 13:36:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3255, 120, 1, 7.99, '2005-08-19 21:31:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3256, 120, 1, 2.99, '2005-08-20 20:07:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3257, 120, 2, 4.99, '2005-08-21 02:24:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3258, 120, 1, 4.99, '2005-08-21 05:34:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3259, 120, 1, 9.99, '2005-08-21 12:48:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3260, 120, 1, 6.99, '2005-08-22 06:49:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3261, 120, 2, 4.99, '2005-08-23 13:36:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3262, 121, 2, 4.99, '2005-05-26 09:24:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3263, 121, 2, 2.99, '2005-06-16 08:16:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3264, 121, 2, 1.99, '2005-06-16 22:45:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3265, 121, 2, 0.99, '2005-07-10 08:14:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3266, 121, 2, 4.99, '2005-07-12 16:18:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3267, 121, 2, 0.99, '2005-07-27 05:42:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3268, 121, 1, 0.99, '2005-07-27 08:23:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3269, 121, 1, 2.99, '2005-07-27 12:45:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3270, 121, 2, 6.99, '2005-07-29 05:16:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3271, 121, 1, 1.99, '2005-07-29 20:46:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3272, 121, 1, 2.99, '2005-07-30 00:15:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3273, 121, 2, 8.99, '2005-07-30 04:00:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3274, 121, 1, 5.99, '2005-08-01 09:17:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3275, 121, 1, 8.99, '2005-08-17 07:46:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3276, 121, 2, 1.99, '2005-08-18 03:37:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3277, 121, 1, 3.99, '2005-08-18 10:24:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3278, 121, 1, 1.99, '2005-08-18 22:04:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3279, 121, 1, 5.99, '2005-08-19 03:28:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3280, 121, 2, 0.99, '2005-08-19 03:46:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3281, 121, 2, 7.99, '2005-08-21 01:59:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3282, 121, 1, 4.99, '2005-08-21 03:11:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3283, 121, 2, 9.99, '2005-08-21 11:02:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3284, 121, 2, 2.99, '2005-08-21 12:52:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3285, 121, 2, 7.99, '2005-08-22 12:24:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3286, 121, 2, 0.99, '2005-08-22 21:58:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3287, 121, 1, 4.99, '2005-08-23 19:24:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3288, 121, 1, 2.99, '2005-08-23 22:20:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3289, 122, 2, 0.99, '2005-05-30 01:43:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3290, 122, 1, 4.99, '2005-05-31 19:15:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3291, 122, 1, 0.99, '2005-06-15 03:01:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3292, 122, 1, 7.99, '2005-06-15 18:55:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3293, 122, 1, 3.99, '2005-06-18 04:28:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3294, 122, 1, 0.99, '2005-06-18 05:11:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3295, 122, 2, 4.99, '2005-06-18 21:10:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3296, 122, 1, 4.99, '2005-06-19 05:43:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3297, 122, 1, 1.99, '2005-06-19 21:41:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3298, 122, 2, 2.99, '2005-07-06 13:44:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3299, 122, 1, 4.99, '2005-07-06 23:25:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3300, 122, 1, 7.99, '2005-07-07 13:23:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3301, 122, 1, 4.99, '2005-07-08 05:23:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3302, 122, 1, 6.99, '2005-07-09 12:54:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3303, 122, 2, 0.99, '2005-07-11 14:02:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3304, 122, 1, 0.99, '2005-07-11 23:57:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3305, 122, 2, 0.99, '2005-07-12 00:18:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3306, 122, 2, 7.99, '2005-07-27 00:39:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3307, 122, 1, 2.99, '2005-07-27 11:22:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3308, 122, 1, 4.99, '2005-07-28 13:21:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3309, 122, 2, 2.99, '2005-07-28 17:54:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3310, 122, 2, 0.99, '2005-07-28 21:43:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3311, 122, 2, 5.99, '2005-07-29 19:55:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3312, 122, 2, 4.99, '2005-07-31 14:47:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3313, 122, 2, 1.99, '2005-08-01 15:32:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3314, 122, 2, 3.99, '2005-08-02 06:05:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3315, 122, 1, 2.99, '2005-08-02 11:45:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3316, 122, 2, 4.99, '2005-08-18 12:22:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3317, 122, 1, 4.99, '2005-08-18 21:03:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3318, 122, 2, 2.99, '2005-08-19 13:48:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3319, 122, 2, 4.99, '2005-08-20 13:01:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3320, 122, 2, 5.99, '2005-08-21 19:51:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3321, 123, 2, 2.99, '2005-05-30 23:47:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3322, 123, 2, 4.99, '2005-06-15 21:42:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3323, 123, 1, 0.99, '2005-06-16 17:00:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3324, 123, 1, 4.99, '2005-06-16 18:28:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3325, 123, 1, 0.99, '2005-06-17 08:30:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3326, 123, 1, 2.99, '2005-06-19 05:43:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3327, 123, 2, 3.99, '2005-07-07 23:05:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3328, 123, 2, 8.99, '2005-07-08 18:54:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3329, 123, 1, 4.99, '2005-07-27 21:32:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3330, 123, 2, 2.99, '2005-07-28 04:52:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3331, 123, 2, 0.99, '2005-07-28 06:44:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3332, 123, 1, 2.99, '2005-07-28 09:34:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3333, 123, 2, 5.99, '2005-07-28 13:57:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3334, 123, 1, 4.99, '2005-07-29 16:53:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3335, 123, 2, 4.99, '2005-07-31 01:05:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3336, 123, 2, 4.99, '2005-07-31 19:30:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3337, 123, 1, 8.99, '2005-08-01 03:53:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3338, 123, 2, 2.99, '2005-08-18 07:46:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3339, 123, 1, 3.99, '2005-08-18 09:27:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3340, 123, 1, 2.99, '2005-08-20 08:26:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3341, 123, 1, 7.99, '2005-08-22 14:25:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3342, 123, 1, 4.99, '2005-08-23 03:43:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3343, 123, 1, 1.99, '2005-08-23 07:13:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3344, 123, 1, 2.99, '2005-08-23 13:51:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3345, 124, 1, 0.99, '2005-05-29 13:23:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3346, 124, 1, 4.99, '2005-05-31 05:32:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3347, 124, 1, 3.99, '2005-05-31 07:58:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3348, 124, 2, 5.99, '2005-05-31 18:13:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3349, 124, 2, 1.99, '2005-06-18 11:00:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3350, 124, 1, 7.99, '2005-07-07 18:44:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3351, 124, 1, 2.99, '2005-07-08 12:04:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3352, 124, 1, 2.99, '2005-07-10 03:30:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3353, 124, 2, 2.99, '2005-07-11 23:10:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3354, 124, 1, 6.99, '2005-07-27 21:01:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3355, 124, 2, 8.99, '2005-07-28 03:54:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3356, 124, 1, 0.99, '2005-07-29 10:20:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3357, 124, 2, 3.99, '2005-07-31 17:16:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3358, 124, 2, 3.99, '2005-07-31 20:19:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3359, 124, 2, 5.99, '2005-08-02 22:47:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3360, 124, 2, 4.99, '2005-08-19 01:47:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3361, 124, 2, 0.99, '2005-08-21 22:27:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3362, 124, 1, 4.99, '2005-08-22 18:37:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3363, 124, 1, 0.99, '2005-08-23 21:45:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3364, 125, 2, 3.99, '2005-05-26 05:30:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3365, 125, 2, 2.99, '2005-06-15 21:17:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3366, 125, 1, 3.99, '2005-06-18 12:57:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3367, 125, 1, 7.99, '2005-06-19 20:41:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3368, 125, 1, 4.99, '2005-06-20 18:05:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3369, 125, 2, 4.99, '2005-07-06 05:58:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3370, 125, 1, 2.99, '2005-07-09 10:52:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3371, 125, 1, 7.99, '2005-07-10 01:47:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3372, 125, 1, 0.99, '2005-07-11 03:59:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3373, 125, 1, 6.99, '2005-07-11 15:55:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3374, 125, 2, 4.99, '2005-07-27 13:39:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3375, 125, 2, 0.99, '2005-07-28 10:27:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3376, 125, 1, 0.99, '2005-07-28 12:05:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3377, 125, 2, 2.99, '2005-07-29 05:25:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3378, 125, 2, 2.99, '2005-07-29 07:19:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3379, 125, 2, 4.99, '2005-07-29 22:37:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3380, 125, 2, 9.99, '2005-07-30 09:51:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3381, 125, 2, 4.99, '2005-07-30 23:55:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3382, 125, 1, 0.99, '2005-07-31 00:09:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3383, 125, 1, 4.99, '2005-07-31 08:29:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3384, 125, 2, 2.99, '2005-07-31 08:57:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3385, 125, 2, 2.99, '2005-08-01 13:54:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3386, 125, 1, 2.99, '2005-08-01 18:24:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3387, 125, 2, 7.99, '2005-08-02 14:30:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3388, 125, 1, 4.99, '2005-08-17 11:49:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3389, 125, 2, 4.99, '2005-08-17 12:55:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3390, 125, 1, 0.99, '2005-08-17 18:47:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3391, 125, 1, 4.99, '2005-08-17 21:54:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3392, 125, 2, 2.99, '2005-08-18 04:16:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3393, 125, 1, 6.99, '2005-08-19 23:48:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3394, 125, 1, 2.99, '2005-08-21 12:38:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3395, 125, 2, 2.99, '2005-08-22 10:14:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3396, 126, 2, 4.99, '2005-05-25 00:00:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3397, 126, 1, 4.99, '2005-05-29 10:14:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3398, 126, 1, 4.99, '2005-05-31 07:33:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3399, 126, 2, 2.99, '2005-06-21 21:01:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3400, 126, 1, 5.99, '2005-07-06 00:15:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3401, 126, 1, 4.99, '2005-07-06 11:15:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3402, 126, 1, 7.99, '2005-07-06 15:08:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3403, 126, 2, 0.99, '2005-07-08 11:04:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3404, 126, 1, 2.99, '2005-07-08 12:59:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3405, 126, 2, 0.99, '2005-07-09 08:00:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3406, 126, 2, 0.99, '2005-07-10 18:31:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3407, 126, 1, 0.99, '2005-07-12 14:33:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3408, 126, 1, 6.99, '2005-07-12 15:07:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3409, 126, 2, 0.99, '2005-07-28 13:48:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3410, 126, 1, 2.99, '2005-07-28 18:27:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3411, 126, 2, 6.99, '2005-07-30 23:52:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3412, 126, 2, 4.99, '2005-07-31 18:41:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3413, 126, 2, 9.99, '2005-08-02 11:42:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3414, 126, 2, 4.99, '2005-08-17 03:50:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3415, 126, 1, 3.99, '2005-08-17 10:31:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3416, 126, 2, 0.99, '2005-08-17 11:30:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3417, 126, 1, 2.99, '2005-08-19 07:21:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3418, 126, 1, 7.99, '2005-08-19 07:56:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3419, 126, 1, 0.99, '2005-08-19 13:56:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3420, 126, 2, 2.99, '2005-08-21 13:32:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3421, 126, 2, 2.99, '2005-08-21 16:52:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3422, 126, 2, 4.99, '2005-08-23 12:10:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3423, 126, 1, 7.99, '2005-08-23 21:02:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3424, 127, 2, 0.99, '2005-05-27 19:30:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3425, 127, 1, 0.99, '2005-05-29 03:23:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3426, 127, 2, 4.99, '2005-06-15 09:06:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3427, 127, 1, 2.99, '2005-06-16 20:32:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3428, 127, 2, 3.99, '2005-06-18 16:58:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3429, 127, 2, 5.99, '2005-07-08 09:47:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3430, 127, 2, 5.99, '2005-07-08 17:04:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3431, 127, 1, 2.99, '2005-07-10 00:27:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3432, 127, 2, 2.99, '2005-07-11 00:34:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3433, 127, 1, 4.99, '2005-07-28 11:46:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3434, 127, 2, 6.99, '2005-07-28 23:29:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3435, 127, 2, 6.99, '2005-07-31 13:02:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3436, 127, 1, 2.99, '2005-08-01 00:35:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3437, 127, 1, 10.99, '2005-08-01 21:35:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3438, 127, 2, 7.99, '2005-08-02 04:09:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3439, 127, 1, 0.99, '2005-08-02 13:13:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3440, 127, 2, 4.99, '2005-08-17 21:11:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3441, 127, 1, 2.99, '2005-08-19 01:05:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3442, 127, 1, 4.99, '2005-08-19 09:07:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3443, 127, 1, 2.99, '2005-08-19 10:40:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3444, 127, 2, 2.99, '2005-08-20 21:23:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3445, 127, 1, 2.99, '2005-08-21 03:32:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3446, 127, 1, 5.99, '2005-08-23 01:15:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3447, 127, 1, 5.99, '2005-08-23 11:40:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3448, 128, 1, 5.99, '2005-05-30 07:13:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3449, 128, 1, 2.99, '2005-05-31 18:44:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3450, 128, 1, 7.99, '2005-06-19 00:19:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3451, 128, 1, 0.99, '2005-06-19 03:44:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3452, 128, 1, 0.99, '2005-07-06 12:23:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3453, 128, 2, 5.99, '2005-07-06 23:43:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3454, 128, 2, 2.99, '2005-07-09 14:23:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3455, 128, 2, 4.99, '2005-07-10 07:08:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3456, 128, 1, 4.99, '2005-07-11 01:19:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3457, 128, 2, 2.99, '2005-07-11 11:26:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3458, 128, 1, 6.99, '2005-07-12 01:50:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3459, 128, 1, 2.99, '2005-07-12 12:19:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3460, 128, 1, 4.99, '2005-07-27 23:15:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3461, 128, 2, 2.99, '2005-07-29 06:52:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3462, 128, 1, 5.99, '2005-07-30 13:11:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3463, 128, 1, 2.99, '2005-07-30 13:45:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3464, 128, 2, 5.99, '2005-07-30 21:28:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3465, 128, 2, 2.99, '2005-07-31 13:02:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3466, 128, 1, 3.99, '2005-07-31 15:52:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3467, 128, 1, 2.99, '2005-07-31 18:02:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3468, 128, 1, 2.99, '2005-08-01 06:58:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3469, 128, 1, 2.99, '2005-08-18 21:55:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3470, 128, 2, 2.99, '2005-08-19 01:58:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3471, 128, 1, 0.99, '2005-08-19 04:23:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3472, 128, 1, 0.99, '2005-08-19 08:25:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3473, 128, 2, 5.99, '2005-08-19 14:00:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3474, 128, 1, 0.99, '2005-08-20 02:14:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3475, 128, 2, 2.99, '2005-08-20 18:24:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3476, 128, 1, 0.99, '2005-08-21 02:43:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3477, 128, 2, 8.99, '2005-08-22 05:16:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3478, 128, 2, 3.99, '2005-08-22 17:02:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3479, 128, 1, 8.99, '2005-08-23 15:25:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3480, 129, 2, 0.99, '2005-06-16 15:34:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3481, 129, 1, 3.99, '2005-06-19 15:02:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3482, 129, 2, 0.99, '2005-06-19 17:46:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3483, 129, 2, 4.99, '2005-06-19 18:58:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3484, 129, 2, 4.99, '2005-06-20 22:55:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3485, 129, 1, 3.99, '2005-06-21 01:43:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3486, 129, 1, 0.99, '2005-07-06 09:43:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3487, 129, 2, 4.99, '2005-07-06 19:21:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3488, 129, 2, 0.99, '2005-07-06 21:15:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3489, 129, 1, 2.99, '2005-07-07 14:14:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3490, 129, 1, 0.99, '2005-07-08 06:52:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3491, 129, 2, 2.99, '2005-07-08 20:23:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3492, 129, 1, 0.99, '2005-07-09 00:59:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3493, 129, 2, 0.99, '2005-07-09 07:25:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3494, 129, 1, 4.99, '2005-07-09 17:39:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3495, 129, 1, 4.99, '2005-07-29 04:41:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3496, 129, 1, 2.99, '2005-07-29 04:47:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3497, 129, 2, 4.99, '2005-07-31 11:49:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3498, 129, 1, 7.99, '2005-07-31 17:09:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3499, 129, 2, 7.99, '2005-07-31 18:26:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3500, 129, 1, 5.99, '2005-07-31 23:24:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3501, 129, 1, 2.99, '2005-08-01 07:08:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3502, 129, 1, 0.99, '2005-08-01 09:48:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3503, 129, 2, 2.99, '2005-08-01 10:19:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3504, 129, 2, 2.99, '2005-08-01 12:46:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3505, 129, 1, 4.99, '2005-08-01 22:48:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3506, 129, 1, 3.99, '2005-08-18 17:10:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3507, 129, 1, 4.99, '2005-08-18 21:47:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3508, 129, 2, 10.99, '2005-08-20 07:54:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3509, 129, 1, 4.99, '2005-08-20 16:42:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3510, 129, 1, 4.99, '2005-08-20 16:47:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3511, 129, 2, 0.99, '2005-08-20 18:16:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3512, 129, 1, 0.99, '2005-08-21 09:07:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3513, 129, 2, 1.99, '2005-08-22 06:46:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3514, 130, 1, 2.99, '2005-05-24 22:53:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3515, 130, 2, 2.99, '2005-05-29 09:25:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3516, 130, 2, 2.99, '2005-06-16 07:55:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3517, 130, 1, 2.99, '2005-06-17 01:39:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3518, 130, 2, 2.99, '2005-06-17 23:46:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3519, 130, 1, 2.99, '2005-06-18 07:37:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3520, 130, 2, 2.99, '2005-06-19 01:39:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3521, 130, 2, 6.99, '2005-06-20 08:38:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3522, 130, 2, 4.99, '2005-07-07 18:41:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3523, 130, 2, 4.99, '2005-07-08 01:07:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3524, 130, 1, 3.99, '2005-07-11 20:48:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3525, 130, 1, 4.99, '2005-07-27 08:14:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3526, 130, 2, 0.99, '2005-07-28 04:56:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3527, 130, 2, 0.99, '2005-07-30 22:19:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3528, 130, 2, 4.99, '2005-07-31 05:18:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3529, 130, 1, 5.99, '2005-07-31 08:33:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3530, 130, 1, 2.99, '2005-08-01 13:17:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3531, 130, 2, 5.99, '2005-08-01 15:52:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3532, 130, 1, 2.99, '2005-08-17 11:59:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3533, 130, 1, 2.99, '2005-08-17 22:31:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3534, 130, 1, 6.99, '2005-08-18 23:39:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3535, 130, 2, 0.99, '2005-08-21 00:59:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3536, 130, 1, 5.99, '2005-08-23 05:29:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3537, 130, 2, 4.99, '2005-08-23 13:29:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3538, 131, 1, 2.99, '2005-05-25 08:26:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3539, 131, 2, 4.99, '2005-05-25 12:30:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3540, 131, 1, 7.99, '2005-05-30 15:26:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3541, 131, 2, 9.99, '2005-06-16 09:12:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3542, 131, 2, 4.99, '2005-06-16 18:02:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3543, 131, 1, 2.99, '2005-07-06 00:48:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3544, 131, 2, 4.99, '2005-07-09 12:44:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3545, 131, 1, 4.99, '2005-07-09 19:42:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3546, 131, 1, 2.99, '2005-07-10 05:09:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3547, 131, 1, 2.99, '2005-07-10 11:22:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3548, 131, 2, 3.99, '2005-07-10 19:02:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3549, 131, 1, 2.99, '2005-07-27 22:18:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3550, 131, 1, 0.99, '2005-07-28 17:27:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3551, 131, 2, 6.99, '2005-07-29 01:21:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3552, 131, 2, 8.99, '2005-07-29 11:40:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3553, 131, 2, 3.99, '2005-07-30 17:21:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3554, 131, 2, 2.99, '2005-07-31 23:49:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3555, 131, 1, 4.99, '2005-08-01 09:20:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3556, 131, 2, 1.99, '2005-08-02 00:12:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3557, 131, 1, 0.99, '2005-08-17 17:53:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3558, 131, 2, 2.99, '2005-08-17 17:55:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3559, 131, 1, 0.99, '2005-08-18 02:37:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3560, 131, 1, 0.99, '2005-08-18 04:16:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3561, 131, 2, 9.99, '2005-08-18 08:04:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3562, 131, 1, 6.99, '2005-08-19 09:31:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3563, 131, 1, 7.99, '2005-08-19 20:28:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3564, 131, 2, 2.99, '2005-08-19 20:53:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3565, 131, 2, 0.99, '2005-08-19 22:26:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3566, 131, 2, 2.99, '2005-08-23 08:48:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3567, 131, 1, 2.99, '2005-08-23 22:20:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3568, 132, 2, 0.99, '2005-06-16 23:53:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3569, 132, 2, 4.99, '2005-06-18 02:22:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3570, 132, 1, 0.99, '2005-06-18 15:18:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3571, 132, 2, 2.99, '2005-06-19 07:10:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3572, 132, 1, 4.99, '2005-06-20 04:20:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3573, 132, 1, 4.99, '2005-06-20 18:23:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3574, 132, 1, 0.99, '2005-07-06 10:18:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3575, 132, 2, 2.99, '2005-07-06 15:50:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3576, 132, 2, 4.99, '2005-07-07 09:37:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3577, 132, 1, 4.99, '2005-07-08 03:36:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3578, 132, 1, 5.99, '2005-07-08 04:49:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3579, 132, 2, 0.99, '2005-07-08 20:50:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3580, 132, 2, 2.99, '2005-07-09 19:28:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3581, 132, 2, 5.99, '2005-07-10 08:59:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3582, 132, 2, 0.99, '2005-07-10 10:04:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3583, 132, 1, 1.99, '2005-07-10 10:48:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3584, 132, 1, 6.99, '2005-07-11 14:20:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3585, 132, 2, 1.99, '2005-07-27 00:47:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3586, 132, 2, 0.99, '2005-07-27 17:31:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3587, 132, 1, 1.99, '2005-07-28 01:01:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3588, 132, 1, 4.99, '2005-08-01 02:18:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3589, 132, 2, 6.99, '2005-08-01 07:18:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3590, 132, 1, 3.99, '2005-08-01 15:07:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3591, 132, 1, 6.99, '2005-08-01 15:44:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3592, 132, 1, 0.99, '2005-08-02 09:27:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3593, 132, 2, 0.99, '2005-08-17 12:00:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3594, 132, 1, 0.99, '2005-08-17 23:47:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3595, 132, 2, 4.99, '2005-08-23 16:30:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3596, 133, 1, 6.99, '2005-05-26 17:09:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3597, 133, 2, 2.99, '2005-05-27 18:57:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3598, 133, 1, 3.99, '2005-06-16 00:17:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3599, 133, 1, 7.99, '2005-06-19 11:12:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3600, 133, 2, 0.99, '2005-06-20 10:10:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3601, 133, 1, 0.99, '2005-06-21 12:55:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3602, 133, 2, 6.99, '2005-07-08 02:22:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3603, 133, 1, 2.99, '2005-07-08 05:18:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3604, 133, 1, 6.99, '2005-07-08 10:36:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3605, 133, 1, 2.99, '2005-07-08 17:54:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3606, 133, 1, 2.99, '2005-07-09 04:37:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3607, 133, 2, 4.99, '2005-07-11 09:48:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3608, 133, 2, 3.99, '2005-07-12 08:19:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3609, 133, 1, 2.99, '2005-07-27 08:07:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3610, 133, 2, 0.99, '2005-07-27 16:16:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3611, 133, 1, 6.99, '2005-07-29 05:50:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3612, 133, 1, 2.99, '2005-07-30 10:11:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3613, 133, 1, 0.99, '2005-07-30 11:47:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3614, 133, 2, 0.99, '2005-07-31 06:33:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3615, 133, 2, 0.99, '2005-08-01 16:56:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3616, 133, 2, 4.99, '2005-08-18 10:01:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3617, 133, 2, 4.99, '2005-08-19 01:47:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3618, 133, 1, 2.99, '2005-08-19 19:48:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3619, 133, 1, 1.99, '2005-08-20 00:32:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3620, 133, 1, 2.99, '2005-08-20 16:30:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3621, 133, 2, 0.99, '2005-08-22 11:11:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3622, 133, 2, 6.99, '2005-08-23 21:07:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3623, 134, 2, 3.99, '2005-05-27 07:33:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3624, 134, 2, 0.99, '2005-05-29 17:23:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3625, 134, 1, 6.99, '2005-05-29 20:16:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3626, 134, 2, 4.99, '2005-05-31 16:49:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3627, 134, 2, 9.99, '2005-06-16 07:08:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3628, 134, 2, 0.99, '2005-06-16 19:25:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3629, 134, 1, 0.99, '2005-06-17 03:09:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3630, 134, 1, 5.99, '2005-06-21 04:55:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3631, 134, 1, 4.99, '2005-07-09 16:09:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3632, 134, 2, 2.99, '2005-07-11 13:48:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3633, 134, 2, 0.99, '2005-07-12 11:18:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3634, 134, 2, 2.99, '2005-07-27 20:55:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3635, 134, 1, 4.99, '2005-07-28 13:52:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3636, 134, 2, 1.99, '2005-07-29 14:59:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3637, 134, 2, 6.99, '2005-08-02 00:18:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3638, 134, 1, 3.99, '2005-08-02 14:34:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3639, 134, 1, 4.99, '2005-08-02 14:39:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3640, 134, 2, 4.99, '2005-08-02 22:24:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3641, 134, 2, 7.99, '2005-08-18 22:37:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3642, 134, 1, 2.99, '2005-08-19 07:11:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3643, 134, 2, 2.99, '2005-08-19 07:47:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3644, 134, 1, 2.99, '2005-08-21 06:20:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3645, 134, 2, 2.99, '2005-08-23 19:42:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3646, 135, 1, 5.99, '2005-05-25 11:35:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3647, 135, 2, 3.99, '2005-05-29 10:16:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3648, 135, 1, 0.99, '2005-06-15 07:42:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3649, 135, 2, 1.99, '2005-06-16 10:30:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3650, 135, 1, 2.99, '2005-06-20 05:22:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3651, 135, 2, 0.99, '2005-07-07 06:25:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3652, 135, 1, 7.99, '2005-07-09 04:01:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3653, 135, 1, 0.99, '2005-07-10 02:44:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3654, 135, 1, 3.99, '2005-07-11 07:39:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3655, 135, 1, 3.99, '2005-07-12 01:14:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3656, 135, 1, 3.99, '2005-07-12 18:19:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3657, 135, 1, 4.99, '2005-07-27 12:39:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3658, 135, 2, 0.99, '2005-07-27 17:39:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3659, 135, 2, 7.99, '2005-07-27 22:12:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3660, 135, 1, 0.99, '2005-07-28 05:08:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3661, 135, 1, 0.99, '2005-07-29 03:37:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3662, 135, 2, 7.99, '2005-07-30 00:36:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3663, 135, 1, 6.99, '2005-07-30 04:37:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3664, 135, 2, 4.99, '2005-07-31 20:23:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3665, 135, 1, 0.99, '2005-08-01 09:52:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3666, 135, 1, 2.99, '2005-08-01 14:53:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3667, 135, 1, 3.99, '2005-08-01 18:24:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3668, 135, 1, 5.99, '2005-08-02 11:35:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3669, 135, 1, 7.99, '2005-08-17 07:21:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3670, 135, 2, 2.99, '2005-08-18 03:53:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3671, 135, 2, 0.99, '2005-08-19 08:46:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3672, 135, 2, 0.99, '2005-08-19 21:58:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3673, 135, 1, 0.99, '2005-08-20 20:19:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3674, 135, 1, 5.99, '2005-08-21 01:57:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3675, 135, 1, 2.99, '2005-08-23 17:42:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3676, 136, 1, 2.99, '2005-05-31 21:20:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3677, 136, 1, 2.99, '2005-06-17 19:14:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3678, 136, 2, 0.99, '2005-07-08 22:05:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3679, 136, 2, 3.99, '2005-07-10 05:51:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3680, 136, 1, 3.99, '2005-07-11 08:54:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3681, 136, 2, 8.99, '2005-07-12 06:50:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3682, 136, 2, 0.99, '2005-07-30 17:15:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3683, 136, 2, 5.99, '2005-07-31 09:42:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3684, 136, 1, 10.99, '2005-08-17 18:27:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3685, 136, 2, 5.99, '2005-08-18 04:58:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3686, 136, 2, 0.99, '2005-08-18 14:10:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3687, 136, 1, 4.99, '2005-08-20 19:30:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3688, 136, 2, 0.99, '2005-08-21 09:53:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3689, 136, 2, 2.99, '2005-08-21 11:48:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3690, 136, 2, 4.99, '2005-08-23 00:34:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3691, 137, 2, 2.99, '2005-05-30 12:13:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3692, 137, 1, 6.99, '2005-06-18 20:24:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3693, 137, 2, 2.99, '2005-06-19 18:43:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3694, 137, 2, 3.99, '2005-06-20 13:28:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3695, 137, 1, 5.99, '2005-06-21 19:16:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3696, 137, 1, 4.99, '2005-07-06 04:30:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3697, 137, 2, 5.99, '2005-07-06 09:10:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3698, 137, 1, 6.99, '2005-07-06 18:06:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3699, 137, 2, 6.99, '2005-07-07 18:25:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3700, 137, 1, 3.99, '2005-07-08 00:26:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3701, 137, 2, 2.99, '2005-07-09 06:40:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3702, 137, 2, 3.99, '2005-07-09 21:56:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3703, 137, 2, 2.99, '2005-07-10 15:06:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3704, 137, 2, 6.99, '2005-07-11 03:12:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3705, 137, 2, 0.99, '2005-07-11 12:16:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3706, 137, 2, 8.99, '2005-07-28 16:11:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3707, 137, 1, 4.99, '2005-07-28 19:02:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3708, 137, 1, 2.99, '2005-07-30 03:25:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3709, 137, 2, 4.99, '2005-07-30 05:02:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3710, 137, 2, 4.99, '2005-07-30 12:39:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3711, 137, 1, 7.99, '2005-07-30 22:44:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3712, 137, 2, 4.99, '2005-07-31 08:04:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3713, 137, 2, 2.99, '2005-07-31 10:30:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3714, 137, 2, 6.99, '2005-07-31 23:40:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3715, 137, 1, 4.99, '2005-08-01 14:16:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3716, 137, 2, 5.99, '2005-08-01 23:41:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3717, 137, 2, 4.99, '2005-08-02 06:38:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3718, 137, 1, 3.99, '2005-08-02 14:35:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3719, 137, 2, 3.99, '2005-08-17 08:29:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3720, 137, 1, 2.99, '2005-08-17 22:00:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3721, 137, 1, 0.99, '2005-08-19 12:55:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3722, 137, 2, 5.99, '2005-08-20 01:03:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3723, 137, 2, 5.99, '2005-08-20 11:57:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3724, 137, 1, 7.99, '2005-08-21 23:17:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3725, 137, 1, 7.99, '2005-08-22 11:17:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3726, 137, 1, 0.99, '2005-08-22 13:17:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3727, 137, 2, 2.99, '2005-08-23 04:00:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3728, 137, 1, 4.99, '2005-08-23 16:57:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3729, 137, 1, 9.99, '2005-08-23 21:56:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3730, 138, 2, 2.99, '2005-05-28 03:53:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3731, 138, 2, 0.99, '2005-05-31 03:06:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3732, 138, 2, 0.99, '2005-06-15 10:26:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3733, 138, 2, 0.99, '2005-06-17 14:00:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3734, 138, 1, 7.99, '2005-06-19 15:14:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3735, 138, 1, 2.99, '2005-07-05 23:13:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3736, 138, 1, 0.99, '2005-07-09 19:05:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3737, 138, 2, 1.99, '2005-07-10 04:55:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3738, 138, 2, 4.99, '2005-07-10 08:44:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3739, 138, 2, 2.99, '2005-07-12 01:08:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3740, 138, 2, 0.99, '2005-07-12 21:10:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3741, 138, 2, 2.99, '2005-07-27 09:16:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3742, 138, 1, 2.99, '2005-07-28 06:10:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3743, 138, 2, 4.99, '2005-07-28 19:28:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3744, 138, 2, 3.99, '2005-07-28 21:10:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3745, 138, 2, 3.99, '2005-07-29 07:06:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3746, 138, 1, 1.99, '2005-07-30 14:37:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3747, 138, 2, 0.99, '2005-07-31 04:17:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3748, 138, 2, 9.99, '2005-07-31 15:49:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3749, 138, 1, 0.99, '2005-07-31 21:06:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3750, 138, 1, 4.99, '2005-08-01 00:27:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3751, 138, 1, 3.99, '2005-08-01 03:08:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3752, 138, 1, 5.99, '2005-08-01 08:41:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3753, 138, 1, 4.99, '2005-08-02 05:13:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3754, 138, 1, 0.99, '2005-08-02 07:48:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3755, 138, 1, 0.99, '2005-08-02 21:37:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3756, 138, 1, 2.99, '2005-08-18 14:40:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3757, 138, 2, 2.99, '2005-08-19 03:05:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3758, 138, 2, 1.99, '2005-08-21 03:40:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3759, 138, 2, 4.99, '2005-08-21 11:36:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3760, 138, 1, 4.99, '2005-08-21 13:52:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3761, 138, 1, 4.99, '2005-08-22 07:41:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3762, 138, 1, 2.99, '2005-08-23 00:03:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3763, 138, 2, 0.99, '2005-08-23 02:39:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3764, 139, 1, 2.99, '2005-06-14 23:42:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3765, 139, 1, 2.99, '2005-06-16 15:52:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3766, 139, 1, 0.99, '2005-06-19 10:47:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3767, 139, 1, 7.99, '2005-06-19 14:49:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3768, 139, 1, 0.99, '2005-07-08 09:54:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3769, 139, 1, 2.99, '2005-07-08 09:59:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3770, 139, 1, 2.99, '2005-07-09 05:57:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3771, 139, 1, 7.99, '2005-07-09 14:15:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3772, 139, 2, 6.99, '2005-07-09 19:26:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3773, 139, 2, 6.99, '2005-07-10 00:15:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3774, 139, 1, 6.99, '2005-07-12 02:57:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3775, 139, 2, 0.99, '2005-07-12 14:22:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3776, 139, 2, 0.99, '2005-07-27 15:07:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3777, 139, 2, 5.99, '2005-07-28 06:42:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3778, 139, 2, 2.99, '2005-07-30 20:48:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3779, 139, 2, 4.99, '2005-07-31 14:57:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3780, 139, 1, 2.99, '2005-08-02 01:34:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3781, 139, 2, 6.99, '2005-08-19 02:23:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3782, 139, 1, 6.99, '2005-08-19 10:11:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3783, 139, 2, 3.99, '2005-08-19 22:16:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3784, 139, 2, 5.99, '2005-08-21 22:25:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3785, 139, 2, 2.99, '2005-08-22 00:27:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3786, 139, 1, 2.99, '2005-08-22 08:57:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3787, 139, 2, 2.99, '2005-08-22 09:04:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3788, 139, 1, 2.99, '2005-08-22 10:34:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3789, 139, 1, 9.99, '2005-08-22 16:59:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3790, 139, 1, 3.99, '2005-08-23 01:38:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3791, 139, 1, 0.99, '2005-08-23 12:12:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3792, 140, 1, 4.99, '2005-06-16 04:51:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3793, 140, 1, 2.99, '2005-06-16 12:09:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3794, 140, 1, 6.99, '2005-06-18 10:53:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3795, 140, 2, 0.99, '2005-06-20 22:15:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3796, 140, 1, 4.99, '2005-07-11 16:55:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3797, 140, 2, 9.99, '2005-07-11 23:02:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3798, 140, 2, 0.99, '2005-07-12 05:51:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3799, 140, 2, 2.99, '2005-07-12 22:30:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3800, 140, 1, 4.99, '2005-07-27 07:58:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3801, 140, 2, 4.99, '2005-07-30 08:35:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3802, 140, 1, 0.99, '2005-07-30 20:21:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3803, 140, 1, 6.99, '2005-08-01 05:11:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3804, 140, 1, 3.99, '2005-08-02 20:04:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3805, 140, 1, 4.99, '2005-08-17 22:20:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3806, 140, 1, 4.99, '2005-08-18 19:34:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3807, 140, 2, 10.99, '2005-08-19 09:31:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3808, 140, 1, 2.99, '2005-08-22 18:24:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3809, 140, 2, 2.99, '2005-08-23 15:47:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3810, 141, 2, 2.99, '2005-05-30 12:44:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3811, 141, 1, 7.99, '2005-06-15 05:05:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3812, 141, 2, 7.99, '2005-06-20 02:26:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3813, 141, 2, 4.99, '2005-06-21 19:08:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3814, 141, 1, 1.99, '2005-07-07 04:00:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3815, 141, 2, 0.99, '2005-07-07 16:24:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3816, 141, 2, 5.99, '2005-07-08 09:50:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3817, 141, 1, 2.99, '2005-07-09 04:36:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3818, 141, 1, 0.99, '2005-07-10 13:17:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3819, 141, 1, 4.99, '2005-07-27 00:49:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3820, 141, 1, 2.99, '2005-07-28 10:27:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3821, 141, 1, 4.99, '2005-07-29 07:20:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3822, 141, 2, 7.99, '2005-07-30 07:49:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3823, 141, 1, 4.99, '2005-07-31 03:05:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3824, 141, 1, 2.99, '2005-07-31 06:47:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3825, 141, 2, 3.99, '2005-08-01 03:37:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3826, 141, 2, 1.99, '2005-08-01 06:34:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3827, 141, 2, 4.99, '2005-08-01 22:03:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3828, 141, 2, 2.99, '2005-08-02 19:29:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3829, 141, 1, 5.99, '2005-08-02 19:32:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3830, 141, 1, 5.99, '2005-08-17 20:14:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3831, 141, 1, 2.99, '2005-08-17 22:28:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3832, 141, 1, 3.99, '2005-08-17 22:56:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3833, 141, 1, 2.99, '2005-08-18 07:33:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3834, 141, 1, 0.99, '2005-08-19 07:36:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3835, 141, 1, 2.99, '2005-08-19 13:43:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3836, 141, 1, 4.99, '2005-08-20 01:01:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3837, 141, 2, 7.99, '2005-08-20 22:24:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3838, 141, 1, 2.99, '2005-08-21 01:00:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3839, 141, 1, 4.99, '2005-08-22 08:42:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3840, 141, 1, 0.99, '2005-08-22 19:54:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3841, 141, 2, 2.99, '2005-08-23 19:45:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3842, 142, 2, 8.99, '2005-05-25 00:09:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3843, 142, 2, 0.99, '2005-05-26 00:25:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3844, 142, 2, 9.99, '2005-05-28 10:56:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3845, 142, 1, 1.99, '2005-06-15 07:29:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3846, 142, 1, 2.99, '2005-06-21 01:08:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3847, 142, 1, 2.99, '2005-07-05 23:44:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3848, 142, 2, 4.99, '2005-07-08 01:51:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3849, 142, 2, 4.99, '2005-07-08 03:27:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3850, 142, 2, 0.99, '2005-07-12 04:11:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3851, 142, 1, 2.99, '2005-07-28 06:40:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3852, 142, 2, 2.99, '2005-07-29 09:52:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3853, 142, 1, 4.99, '2005-07-29 13:55:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3854, 142, 2, 7.99, '2005-07-30 05:31:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3855, 142, 2, 2.99, '2005-07-30 09:55:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3856, 142, 1, 5.99, '2005-07-30 21:04:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3857, 142, 1, 5.99, '2005-08-02 02:52:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3858, 142, 1, 5.99, '2005-08-02 13:33:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3859, 142, 2, 0.99, '2005-08-19 06:29:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3860, 142, 1, 0.99, '2005-08-19 09:14:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3861, 142, 2, 0.99, '2005-08-20 10:53:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3862, 142, 2, 0.99, '2005-08-20 18:16:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3863, 142, 2, 4.99, '2005-08-21 01:11:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3864, 142, 1, 0.99, '2005-08-22 01:11:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3865, 142, 2, 2.99, '2005-08-22 20:44:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3866, 142, 1, 0.99, '2005-08-23 01:01:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3867, 142, 2, 1.99, '2005-08-23 01:46:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3868, 143, 2, 2.99, '2005-05-26 10:14:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3869, 143, 2, 2.99, '2005-05-26 22:52:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3870, 143, 1, 1.99, '2005-06-17 04:28:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3871, 143, 1, 4.99, '2005-06-17 07:43:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3872, 143, 1, 3.99, '2005-06-18 05:05:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3873, 143, 2, 0.99, '2005-06-19 04:23:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3874, 143, 1, 4.99, '2005-06-19 05:20:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3875, 143, 1, 7.99, '2005-07-07 02:32:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3876, 143, 2, 0.99, '2005-07-07 12:18:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3877, 143, 1, 7.99, '2005-07-08 06:11:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3878, 143, 2, 6.99, '2005-07-11 05:05:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3879, 143, 2, 4.99, '2005-07-11 12:34:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3880, 143, 1, 0.99, '2005-07-29 03:32:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3881, 143, 2, 0.99, '2005-07-29 04:18:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3882, 143, 2, 1.99, '2005-07-31 14:02:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3883, 143, 2, 0.99, '2005-07-31 21:16:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3884, 143, 1, 6.99, '2005-08-02 14:29:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3885, 143, 1, 6.99, '2005-08-17 05:02:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3886, 143, 2, 2.99, '2005-08-18 09:40:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3887, 143, 2, 4.99, '2005-08-20 14:06:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3888, 143, 2, 5.99, '2005-08-22 18:03:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3889, 143, 2, 4.99, '2005-08-23 21:54:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3890, 144, 1, 2.99, '2005-05-27 00:49:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3891, 144, 1, 2.99, '2005-05-27 04:32:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3892, 144, 1, 5.99, '2005-06-16 21:15:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3893, 144, 2, 0.99, '2005-06-17 07:49:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3894, 144, 2, 4.99, '2005-06-19 16:57:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3895, 144, 1, 4.99, '2005-06-20 11:11:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3896, 144, 2, 2.99, '2005-06-20 20:21:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3897, 144, 2, 2.99, '2005-06-21 08:33:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3898, 144, 1, 6.99, '2005-07-08 12:50:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3899, 144, 2, 3.99, '2005-07-08 17:18:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3900, 144, 1, 0.99, '2005-07-09 03:54:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3901, 144, 2, 8.99, '2005-07-09 18:52:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3902, 144, 2, 7.99, '2005-07-09 20:16:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3903, 144, 1, 7.99, '2005-07-10 02:04:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3904, 144, 2, 7.99, '2005-07-12 08:33:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3905, 144, 2, 9.99, '2005-07-12 16:35:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3906, 144, 2, 5.99, '2005-07-27 15:31:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3907, 144, 2, 2.99, '2005-07-27 22:34:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3908, 144, 1, 0.99, '2005-07-28 08:43:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3909, 144, 1, 3.99, '2005-07-28 09:50:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3910, 144, 1, 5.99, '2005-07-29 08:05:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3911, 144, 2, 0.99, '2005-07-30 04:31:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3912, 144, 2, 7.99, '2005-07-30 06:10:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3913, 144, 2, 3.99, '2005-07-30 08:44:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3914, 144, 2, 4.99, '2005-07-30 11:42:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3915, 144, 2, 0.99, '2005-07-31 08:15:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3916, 144, 1, 0.99, '2005-08-01 04:12:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3917, 144, 2, 4.99, '2005-08-01 14:13:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3918, 144, 2, 5.99, '2005-08-01 19:50:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3919, 144, 2, 4.99, '2005-08-02 03:26:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3920, 144, 1, 2.99, '2005-08-02 12:55:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3921, 144, 1, 6.99, '2005-08-02 22:03:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3922, 144, 1, 7.99, '2005-08-17 00:35:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3923, 144, 2, 4.99, '2005-08-17 13:51:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3924, 144, 2, 2.99, '2005-08-17 22:20:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3925, 144, 2, 2.99, '2005-08-18 21:59:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3926, 144, 1, 3.99, '2005-08-19 02:22:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3927, 144, 2, 6.99, '2005-08-19 07:03:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3928, 144, 2, 2.99, '2005-08-20 15:18:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3929, 144, 2, 2.99, '2005-08-21 02:45:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3930, 144, 2, 1.99, '2005-08-22 08:47:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3931, 144, 2, 7.99, '2005-08-23 12:43:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3932, 145, 2, 0.99, '2005-05-28 01:05:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3933, 145, 2, 4.99, '2005-06-18 06:29:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3934, 145, 2, 0.99, '2005-06-19 07:28:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3935, 145, 1, 5.99, '2005-07-06 07:29:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3936, 145, 1, 8.99, '2005-07-07 11:19:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3937, 145, 2, 4.99, '2005-07-07 19:46:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3938, 145, 1, 6.99, '2005-07-07 21:33:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3939, 145, 2, 2.99, '2005-07-08 00:20:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3940, 145, 2, 2.99, '2005-07-08 17:17:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3941, 145, 2, 2.99, '2005-07-11 04:01:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3942, 145, 2, 1.99, '2005-07-11 19:45:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3943, 145, 1, 0.99, '2005-07-11 21:45:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3944, 145, 2, 2.99, '2005-07-27 03:51:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3945, 145, 2, 7.99, '2005-07-27 21:18:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3946, 145, 2, 0.99, '2005-07-28 13:25:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3947, 145, 2, 0.99, '2005-07-29 05:31:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3948, 145, 2, 2.99, '2005-07-30 11:04:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3949, 145, 1, 0.99, '2005-07-31 02:52:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3950, 145, 1, 4.99, '2005-08-01 22:03:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3951, 145, 2, 5.99, '2005-08-17 15:39:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3952, 145, 1, 2.99, '2005-08-17 17:18:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3953, 145, 2, 2.99, '2005-08-18 18:06:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3954, 145, 2, 2.99, '2005-08-19 00:05:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3955, 145, 2, 7.99, '2005-08-19 07:54:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3956, 145, 2, 3.99, '2005-08-19 13:30:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3957, 145, 2, 0.99, '2005-08-19 17:49:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3958, 145, 1, 5.99, '2005-08-20 21:48:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3959, 145, 2, 6.99, '2005-08-21 10:15:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3960, 146, 2, 7.99, '2005-05-29 11:15:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3961, 146, 1, 4.99, '2005-05-31 09:55:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3962, 146, 1, 7.99, '2005-06-15 02:31:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3963, 146, 1, 1.99, '2005-06-16 15:15:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3964, 146, 1, 2.99, '2005-06-17 18:47:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3965, 146, 1, 3.99, '2005-06-18 04:32:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3966, 146, 2, 2.99, '2005-06-18 11:42:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3967, 146, 2, 0.99, '2005-06-19 19:15:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3968, 146, 2, 4.99, '2005-06-20 19:08:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3969, 146, 1, 6.99, '2005-07-08 18:34:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3970, 146, 1, 4.99, '2005-07-09 01:16:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3971, 146, 2, 7.99, '2005-07-11 06:53:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3972, 146, 2, 6.99, '2005-07-11 11:19:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3973, 146, 1, 4.99, '2005-07-11 19:07:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3974, 146, 1, 0.99, '2005-07-27 01:02:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3975, 146, 1, 3.99, '2005-07-29 00:38:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3976, 146, 2, 7.99, '2005-08-02 10:28:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3977, 146, 2, 2.99, '2005-08-02 12:32:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3978, 146, 2, 0.99, '2005-08-02 18:06:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3979, 146, 1, 5.99, '2005-08-02 18:41:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3980, 146, 2, 4.99, '2005-08-17 01:38:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3981, 146, 1, 4.99, '2005-08-17 13:48:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3982, 146, 2, 7.99, '2005-08-17 23:31:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3983, 146, 2, 2.99, '2005-08-18 08:39:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3984, 146, 2, 4.99, '2005-08-19 03:41:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3985, 146, 1, 4.99, '2005-08-20 06:07:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3986, 146, 1, 4.99, '2005-08-20 13:50:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3987, 146, 1, 2.99, '2005-08-21 02:10:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3988, 146, 2, 6.99, '2005-08-23 15:36:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3989, 147, 1, 0.99, '2005-05-27 07:10:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3990, 147, 2, 0.99, '2005-05-28 02:51:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3991, 147, 1, 0.99, '2005-06-18 00:06:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3992, 147, 1, 6.99, '2005-06-18 19:36:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3993, 147, 1, 2.99, '2005-06-19 23:18:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3994, 147, 2, 5.99, '2005-06-20 10:39:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3995, 147, 1, 7.99, '2005-07-06 20:26:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3996, 147, 2, 2.99, '2005-07-06 22:01:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3997, 147, 1, 0.99, '2005-07-08 16:29:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3998, 147, 1, 0.99, '2005-07-09 03:30:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (3999, 147, 1, 2.99, '2005-07-10 03:36:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4000, 147, 2, 0.99, '2005-07-10 17:14:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4001, 147, 1, 0.99, '2005-07-11 19:51:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4002, 147, 1, 4.99, '2005-07-12 01:29:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4003, 147, 2, 2.99, '2005-07-12 14:55:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4004, 147, 2, 0.99, '2005-07-27 03:27:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4005, 147, 1, 0.99, '2005-07-28 04:45:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4006, 147, 1, 2.99, '2005-07-30 00:48:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4007, 147, 1, 0.99, '2005-07-31 09:56:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4008, 147, 2, 7.99, '2005-08-01 18:41:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4009, 147, 2, 8.99, '2005-08-01 20:08:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4010, 147, 1, 4.99, '2005-08-18 04:55:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4011, 147, 2, 4.99, '2005-08-18 22:57:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4012, 147, 2, 4.99, '2005-08-20 03:41:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4013, 147, 1, 3.99, '2005-08-20 08:27:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4014, 147, 1, 4.99, '2005-08-20 21:02:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4015, 147, 1, 0.99, '2005-08-21 02:35:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4016, 147, 2, 0.99, '2005-08-21 19:05:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4017, 147, 1, 4.99, '2005-08-22 06:31:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4018, 147, 2, 2.99, '2005-08-22 10:09:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4019, 147, 1, 4.99, '2005-08-22 20:37:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4020, 147, 1, 4.99, '2005-08-23 03:01:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4021, 147, 2, 8.99, '2005-08-23 11:32:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4022, 147, 1, 6.99, '2005-08-23 20:53:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4023, 148, 1, 4.99, '2005-05-28 23:53:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4024, 148, 1, 1.99, '2005-06-15 22:02:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4025, 148, 1, 6.99, '2005-06-15 23:20:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4026, 148, 1, 3.99, '2005-06-19 16:39:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4027, 148, 1, 3.99, '2005-06-19 22:36:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4028, 148, 1, 5.99, '2005-06-19 22:54:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4029, 148, 2, 0.99, '2005-07-06 07:45:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4030, 148, 2, 0.99, '2005-07-07 05:09:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4031, 148, 1, 2.99, '2005-07-08 13:47:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4032, 148, 2, 2.99, '2005-07-08 22:58:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4033, 148, 1, 4.99, '2005-07-09 02:48:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4034, 148, 1, 4.99, '2005-07-09 18:48:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4035, 148, 2, 1.99, '2005-07-11 10:25:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4036, 148, 1, 8.99, '2005-07-12 10:27:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4037, 148, 1, 10.99, '2005-07-12 16:37:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4038, 148, 2, 0.99, '2005-07-28 02:07:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4039, 148, 1, 4.99, '2005-07-28 03:31:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4040, 148, 1, 9.99, '2005-07-28 10:07:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4041, 148, 1, 4.99, '2005-07-28 19:10:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4042, 148, 1, 3.99, '2005-07-29 04:13:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4043, 148, 1, 4.99, '2005-07-29 06:02:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4044, 148, 1, 4.99, '2005-07-29 11:58:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4045, 148, 1, 4.99, '2005-07-29 14:03:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4046, 148, 1, 5.99, '2005-07-30 05:36:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4047, 148, 1, 2.99, '2005-07-30 08:52:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4048, 148, 1, 1.99, '2005-07-31 01:09:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4049, 148, 2, 4.99, '2005-07-31 03:23:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4050, 148, 1, 4.99, '2005-07-31 19:37:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4051, 148, 1, 6.99, '2005-08-01 23:18:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4052, 148, 2, 10.99, '2005-08-02 17:42:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4053, 148, 2, 2.99, '2005-08-17 20:07:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4054, 148, 1, 0.99, '2005-08-17 20:28:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4055, 148, 1, 3.99, '2005-08-18 13:28:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4056, 148, 2, 6.99, '2005-08-19 05:48:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4057, 148, 2, 6.99, '2005-08-19 07:06:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4058, 148, 1, 0.99, '2005-08-20 22:18:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4059, 148, 2, 4.99, '2005-08-21 02:31:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4060, 148, 1, 6.99, '2005-08-21 03:24:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4061, 148, 2, 2.99, '2005-08-21 18:39:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4062, 148, 1, 0.99, '2005-08-21 21:27:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4063, 148, 2, 5.99, '2005-08-22 03:42:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4064, 148, 2, 2.99, '2005-08-22 06:45:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4065, 148, 2, 4.99, '2005-08-22 17:44:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4066, 148, 1, 8.99, '2005-08-22 22:26:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4067, 148, 1, 3.99, '2005-08-23 04:13:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4068, 148, 2, 3.99, '2005-08-23 05:57:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4069, 149, 1, 4.99, '2005-05-29 11:37:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4070, 149, 2, 2.99, '2005-06-15 23:58:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4071, 149, 2, 2.99, '2005-06-16 20:18:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4072, 149, 2, 6.99, '2005-06-17 11:17:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4073, 149, 1, 4.99, '2005-06-18 01:41:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4074, 149, 1, 5.99, '2005-06-18 08:31:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4075, 149, 2, 7.99, '2005-06-18 15:17:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4076, 149, 2, 0.99, '2005-06-19 16:44:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4077, 149, 2, 2.99, '2005-07-06 19:01:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4078, 149, 1, 6.99, '2005-07-06 21:16:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4079, 149, 1, 3.99, '2005-07-08 15:16:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4080, 149, 2, 0.99, '2005-07-08 18:09:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4081, 149, 1, 2.99, '2005-07-09 05:52:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4082, 149, 2, 10.99, '2005-07-09 15:36:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4083, 149, 2, 4.99, '2005-07-11 20:57:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4084, 149, 1, 5.99, '2005-07-26 23:18:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4085, 149, 1, 4.99, '2005-07-27 22:20:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4086, 149, 2, 6.99, '2005-07-28 14:39:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4087, 149, 2, 2.99, '2005-07-31 22:30:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4088, 149, 1, 7.99, '2005-08-01 19:31:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4089, 149, 1, 0.99, '2005-08-02 04:02:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4090, 149, 2, 2.99, '2005-08-17 01:23:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4091, 149, 2, 4.99, '2005-08-17 18:49:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4092, 149, 2, 3.99, '2005-08-21 23:50:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4093, 149, 1, 4.99, '2005-08-23 01:50:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4094, 149, 1, 2.99, '2005-08-23 05:04:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4095, 150, 1, 3.99, '2005-05-27 15:31:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4096, 150, 2, 2.99, '2005-05-28 15:04:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4097, 150, 1, 3.99, '2005-05-31 00:06:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4098, 150, 1, 1.99, '2005-06-20 23:06:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4099, 150, 1, 5.99, '2005-06-21 21:19:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4100, 150, 2, 6.99, '2005-07-07 14:38:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4101, 150, 1, 2.99, '2005-07-12 09:35:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4102, 150, 1, 4.99, '2005-07-28 03:26:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4103, 150, 1, 2.99, '2005-07-30 09:36:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4104, 150, 2, 2.99, '2005-08-01 17:51:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4105, 150, 2, 2.99, '2005-08-02 08:54:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4106, 150, 2, 6.99, '2005-08-17 10:59:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4107, 150, 2, 6.99, '2005-08-18 04:15:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4108, 150, 2, 2.99, '2005-08-18 06:59:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4109, 150, 1, 2.99, '2005-08-18 17:37:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4110, 150, 2, 1.99, '2005-08-19 03:38:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4111, 150, 1, 0.99, '2005-08-19 03:42:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4112, 150, 1, 6.99, '2005-08-19 11:31:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4113, 150, 2, 8.99, '2005-08-19 16:54:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4114, 150, 1, 2.99, '2005-08-19 21:23:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4115, 150, 2, 5.99, '2005-08-20 06:00:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4116, 150, 1, 0.99, '2005-08-21 02:59:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4117, 150, 1, 2.99, '2005-08-21 12:35:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4118, 150, 1, 9.99, '2005-08-21 15:00:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4119, 150, 1, 0.99, '2005-08-21 19:47:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4120, 151, 1, 4.99, '2005-05-26 02:26:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4121, 151, 2, 5.99, '2005-05-27 15:13:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4122, 151, 1, 2.99, '2005-06-18 20:51:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4123, 151, 1, 2.99, '2005-06-20 06:00:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4124, 151, 1, 3.99, '2005-06-20 11:08:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4125, 151, 1, 0.99, '2005-06-20 15:57:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4126, 151, 2, 2.99, '2005-06-21 15:10:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4127, 151, 2, 2.99, '2005-07-07 20:24:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4128, 151, 2, 0.99, '2005-07-12 13:41:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4129, 151, 2, 3.99, '2005-07-12 15:47:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4130, 151, 1, 0.99, '2005-07-12 19:38:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4131, 151, 1, 0.99, '2005-07-27 08:35:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4132, 151, 1, 3.99, '2005-07-27 13:58:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4133, 151, 1, 4.99, '2005-07-30 14:20:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4134, 151, 1, 4.99, '2005-07-31 14:04:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4135, 151, 2, 2.99, '2005-07-31 16:38:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4136, 151, 2, 2.99, '2005-07-31 20:02:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4137, 151, 2, 4.99, '2005-08-01 04:27:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4138, 151, 2, 2.99, '2005-08-01 16:50:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4139, 151, 2, 2.99, '2005-08-17 07:34:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4140, 151, 2, 0.99, '2005-08-19 16:12:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4141, 151, 1, 5.99, '2005-08-20 05:02:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4142, 151, 2, 4.99, '2005-08-22 02:31:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4143, 151, 2, 3.99, '2005-08-22 05:13:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4144, 151, 2, 4.99, '2005-08-22 17:22:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4145, 151, 2, 2.99, '2005-08-23 18:20:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4146, 151, 1, 2.99, '2005-08-23 20:31:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4147, 152, 2, 4.99, '2005-05-27 06:48:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4148, 152, 2, 4.99, '2005-05-29 09:22:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4149, 152, 2, 4.99, '2005-06-20 01:26:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4150, 152, 2, 2.99, '2005-07-06 03:40:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4151, 152, 1, 7.99, '2005-07-06 14:00:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4152, 152, 2, 4.99, '2005-07-09 00:00:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4153, 152, 1, 0.99, '2005-07-11 16:08:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4154, 152, 1, 2.99, '2005-07-12 08:28:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4155, 152, 1, 5.99, '2005-07-30 05:12:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4156, 152, 2, 6.99, '2005-08-01 04:39:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4157, 152, 2, 6.99, '2005-08-17 04:39:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4158, 152, 2, 0.99, '2005-08-17 10:39:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4159, 152, 1, 4.99, '2005-08-17 13:20:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4160, 152, 1, 2.99, '2005-08-18 20:14:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4161, 152, 1, 4.99, '2005-08-19 04:27:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4162, 152, 2, 1.99, '2005-08-19 06:21:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4163, 152, 2, 4.99, '2005-08-19 15:02:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4164, 152, 1, 0.99, '2005-08-20 01:16:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4165, 152, 1, 0.99, '2005-08-20 19:13:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4166, 152, 2, 0.99, '2005-08-21 03:01:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4167, 152, 1, 4.99, '2005-08-21 19:51:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4168, 153, 1, 0.99, '2005-06-18 03:33:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4169, 153, 2, 0.99, '2005-06-19 10:20:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4170, 153, 2, 4.99, '2005-06-20 02:22:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4171, 153, 2, 5.99, '2005-06-20 05:49:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4172, 153, 1, 0.99, '2005-07-06 14:37:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4173, 153, 2, 0.99, '2005-07-06 21:46:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4174, 153, 2, 5.99, '2005-07-07 10:59:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4175, 153, 1, 5.99, '2005-07-08 10:14:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4176, 153, 2, 0.99, '2005-07-10 08:38:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4177, 153, 2, 0.99, '2005-07-10 13:26:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4178, 153, 2, 9.99, '2005-07-12 18:20:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4179, 153, 2, 7.99, '2005-07-28 08:34:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4180, 153, 2, 0.99, '2005-07-31 15:27:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4181, 153, 2, 4.99, '2005-07-31 18:11:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4182, 153, 2, 4.99, '2005-08-02 18:03:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4183, 153, 1, 1.99, '2005-08-17 22:49:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4184, 153, 1, 3.99, '2005-08-18 10:44:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4185, 153, 2, 4.99, '2005-08-19 03:33:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4186, 153, 1, 4.99, '2005-08-21 19:48:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4187, 153, 1, 4.99, '2005-08-21 23:00:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4188, 153, 2, 4.99, '2005-08-22 06:01:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4189, 153, 1, 0.99, '2005-08-22 18:37:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4190, 153, 2, 7.99, '2005-08-23 00:46:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4191, 153, 1, 1.99, '2005-08-23 06:15:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4192, 154, 2, 5.99, '2005-05-27 21:14:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4193, 154, 2, 7.99, '2005-05-30 03:39:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4194, 154, 1, 5.99, '2005-05-30 21:30:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4195, 154, 2, 0.99, '2005-06-17 09:09:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4196, 154, 1, 4.99, '2005-06-20 01:38:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4197, 154, 2, 2.99, '2005-06-20 08:45:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4198, 154, 1, 7.99, '2005-07-06 15:09:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4199, 154, 1, 0.99, '2005-07-06 20:10:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4200, 154, 2, 4.99, '2005-07-07 08:06:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4201, 154, 1, 2.99, '2005-07-07 14:13:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4202, 154, 2, 5.99, '2005-07-08 18:39:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4203, 154, 1, 0.99, '2005-07-09 06:21:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4204, 154, 2, 2.99, '2005-07-10 12:44:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4205, 154, 1, 0.99, '2005-07-11 03:32:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4206, 154, 2, 4.99, '2005-07-27 01:05:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4207, 154, 2, 4.99, '2005-07-27 03:45:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4208, 154, 1, 4.99, '2005-07-27 07:19:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4209, 154, 2, 1.99, '2005-07-28 11:11:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4210, 154, 1, 7.99, '2005-07-29 04:18:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4211, 154, 2, 2.99, '2005-07-30 15:32:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4212, 154, 1, 6.99, '2005-08-01 03:25:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4213, 154, 1, 4.99, '2005-08-01 23:58:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4214, 154, 2, 5.99, '2005-08-02 15:15:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4215, 154, 1, 0.99, '2005-08-18 07:09:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4216, 154, 1, 4.99, '2005-08-20 14:56:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4217, 154, 2, 2.99, '2005-08-21 22:21:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4218, 154, 2, 7.99, '2005-08-22 00:37:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4219, 154, 2, 6.99, '2005-08-22 05:06:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4220, 154, 1, 0.99, '2005-08-22 21:15:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4221, 154, 2, 2.99, '2005-08-23 11:16:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4222, 155, 1, 2.99, '2005-05-28 09:57:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4223, 155, 1, 1.99, '2005-06-15 23:55:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4224, 155, 2, 7.99, '2005-06-16 02:16:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4225, 155, 2, 7.99, '2005-06-17 13:08:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4226, 155, 1, 4.99, '2005-06-20 00:09:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4227, 155, 2, 4.99, '2005-06-21 15:58:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4228, 155, 2, 1.99, '2005-07-09 07:25:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4229, 155, 1, 5.99, '2005-07-11 04:32:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4230, 155, 2, 4.99, '2005-07-11 05:24:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4231, 155, 2, 4.99, '2005-07-11 05:29:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4232, 155, 2, 2.99, '2005-07-12 00:35:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4233, 155, 1, 3.99, '2005-07-27 04:13:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4234, 155, 2, 2.99, '2005-07-27 19:54:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4235, 155, 1, 5.99, '2005-07-28 04:59:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4236, 155, 1, 7.99, '2005-07-31 10:13:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4237, 155, 2, 0.99, '2005-07-31 20:41:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4238, 155, 2, 4.99, '2005-08-02 05:54:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4239, 155, 2, 2.99, '2005-08-16 22:51:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4240, 155, 2, 5.99, '2005-08-17 17:14:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4241, 155, 1, 4.99, '2005-08-18 07:32:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4242, 155, 2, 8.99, '2005-08-21 08:10:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4243, 155, 1, 2.99, '2005-08-21 15:54:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4244, 155, 2, 2.99, '2005-08-21 23:11:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4245, 155, 1, 0.99, '2005-08-22 04:48:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4246, 155, 2, 0.99, '2005-08-22 12:01:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4247, 156, 1, 6.99, '2005-05-30 09:29:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4248, 156, 1, 4.99, '2005-05-31 07:07:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4249, 156, 2, 9.99, '2005-06-17 17:45:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4250, 156, 1, 0.99, '2005-06-18 03:24:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4251, 156, 2, 4.99, '2005-06-19 10:43:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4252, 156, 1, 0.99, '2005-06-19 18:25:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4253, 156, 1, 2.99, '2005-07-07 21:12:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4254, 156, 1, 4.99, '2005-07-10 02:26:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4255, 156, 2, 2.99, '2005-07-10 16:27:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4256, 156, 1, 0.99, '2005-07-10 20:44:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4257, 156, 1, 6.99, '2005-07-12 04:51:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4258, 156, 1, 2.99, '2005-07-27 15:56:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4259, 156, 2, 4.99, '2005-07-28 08:31:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4260, 156, 1, 6.99, '2005-07-30 20:33:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4261, 156, 1, 0.99, '2005-07-31 07:13:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4262, 156, 1, 6.99, '2005-08-01 04:24:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4263, 156, 1, 2.99, '2005-08-02 22:36:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4264, 156, 1, 5.99, '2005-08-17 02:21:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4265, 156, 2, 0.99, '2005-08-20 03:12:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4266, 156, 1, 2.99, '2005-08-20 03:26:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4267, 156, 2, 2.99, '2005-08-20 12:44:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4268, 156, 1, 1.99, '2005-08-22 00:39:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4269, 156, 1, 4.99, '2005-08-22 01:40:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4270, 156, 1, 0.99, '2005-08-22 04:53:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4271, 156, 1, 6.99, '2005-08-22 23:26:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4272, 157, 1, 0.99, '2005-05-27 05:48:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4273, 157, 2, 4.99, '2005-05-28 18:49:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4274, 157, 1, 0.99, '2005-06-18 11:30:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4275, 157, 2, 0.99, '2005-07-06 11:54:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4276, 157, 2, 5.99, '2005-07-07 14:13:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4277, 157, 1, 3.99, '2005-07-07 22:51:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4278, 157, 1, 0.99, '2005-07-08 21:41:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4279, 157, 2, 4.99, '2005-07-10 18:20:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4280, 157, 1, 2.99, '2005-07-27 05:30:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4281, 157, 2, 2.99, '2005-07-27 08:47:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4282, 157, 2, 4.99, '2005-07-27 20:10:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4283, 157, 2, 0.99, '2005-07-28 21:11:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4284, 157, 2, 0.99, '2005-07-29 04:31:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4285, 157, 1, 0.99, '2005-07-29 04:49:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4286, 157, 2, 4.99, '2005-07-29 11:55:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4287, 157, 1, 0.99, '2005-07-29 17:21:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4288, 157, 2, 4.99, '2005-07-29 22:31:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4289, 157, 1, 2.99, '2005-07-30 13:48:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4290, 157, 1, 4.99, '2005-07-30 14:51:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4291, 157, 2, 2.99, '2005-07-31 16:03:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4292, 157, 2, 4.99, '2005-08-01 00:45:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4293, 157, 2, 4.99, '2005-08-02 13:35:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4294, 157, 2, 4.99, '2005-08-02 16:57:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4295, 157, 1, 5.99, '2005-08-18 02:33:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4296, 157, 1, 6.99, '2005-08-18 11:33:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4297, 157, 2, 0.99, '2005-08-19 04:27:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4298, 157, 2, 4.99, '2005-08-19 10:50:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4299, 157, 1, 4.99, '2005-08-19 15:31:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4300, 157, 2, 6.99, '2005-08-20 01:11:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4301, 157, 2, 2.99, '2005-08-20 10:11:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4302, 157, 1, 4.99, '2005-08-22 07:04:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4303, 158, 1, 4.99, '2005-05-26 13:46:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4304, 158, 2, 5.99, '2005-05-26 20:27:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4305, 158, 1, 0.99, '2005-06-15 15:13:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4306, 158, 2, 4.99, '2005-06-16 19:58:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4307, 158, 1, 6.99, '2005-06-17 13:45:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4308, 158, 1, 8.99, '2005-06-21 00:34:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4309, 158, 2, 8.99, '2005-07-07 06:58:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4310, 158, 1, 2.99, '2005-07-10 08:19:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4311, 158, 1, 4.99, '2005-07-11 00:55:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4312, 158, 2, 2.99, '2005-07-11 23:29:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4313, 158, 1, 5.99, '2005-07-12 21:46:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4314, 158, 2, 2.99, '2005-07-27 07:24:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4315, 158, 1, 0.99, '2005-07-28 05:03:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4316, 158, 1, 2.99, '2005-07-28 13:23:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4317, 158, 2, 2.99, '2005-07-29 19:14:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4318, 158, 2, 1.99, '2005-07-30 03:34:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4319, 158, 2, 2.99, '2005-07-30 20:04:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4320, 158, 2, 1.99, '2005-07-31 08:13:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4321, 158, 1, 2.99, '2005-07-31 11:03:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4322, 158, 1, 4.99, '2005-08-02 07:26:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4323, 158, 1, 6.99, '2005-08-02 08:09:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4324, 158, 2, 0.99, '2005-08-02 14:20:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4325, 158, 1, 2.99, '2005-08-02 19:47:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4326, 158, 2, 1.99, '2005-08-17 21:46:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4327, 158, 1, 5.99, '2005-08-18 10:04:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4328, 158, 2, 1.99, '2005-08-19 15:24:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4329, 158, 2, 2.99, '2005-08-20 14:48:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4330, 158, 2, 2.99, '2005-08-20 17:09:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4331, 158, 1, 0.99, '2005-08-20 21:23:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4332, 158, 1, 2.99, '2005-08-23 13:02:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4333, 158, 1, 5.99, '2005-08-23 14:12:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4334, 158, 1, 5.99, '2005-08-23 14:26:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4335, 159, 1, 2.99, '2005-05-27 22:16:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4336, 159, 2, 1.99, '2005-05-28 07:35:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4337, 159, 2, 0.99, '2005-05-28 14:04:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4338, 159, 1, 3.99, '2005-05-29 22:51:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4339, 159, 2, 0.99, '2005-06-16 12:40:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4340, 159, 2, 0.99, '2005-06-19 04:21:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4341, 159, 1, 5.99, '2005-07-06 20:11:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4342, 159, 2, 4.99, '2005-07-07 14:40:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4343, 159, 2, 0.99, '2005-07-10 07:31:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4344, 159, 1, 4.99, '2005-07-12 20:56:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4345, 159, 1, 2.99, '2005-07-28 23:37:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4346, 159, 1, 0.99, '2005-07-29 08:28:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4347, 159, 1, 3.99, '2005-07-30 05:34:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4348, 159, 2, 0.99, '2005-07-30 09:56:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4349, 159, 2, 7.99, '2005-07-31 02:15:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4350, 159, 1, 4.99, '2005-07-31 14:55:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4351, 159, 1, 4.99, '2005-08-02 12:43:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4352, 159, 1, 1.99, '2005-08-19 17:41:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4353, 159, 1, 0.99, '2005-08-20 17:17:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4354, 159, 1, 8.99, '2005-08-21 16:51:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4355, 159, 2, 0.99, '2005-08-22 16:14:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4356, 160, 2, 4.99, '2005-06-18 09:03:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4357, 160, 2, 2.99, '2005-06-18 20:07:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4358, 160, 1, 2.99, '2005-06-20 00:41:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4359, 160, 1, 0.99, '2005-07-08 18:21:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4360, 160, 1, 5.99, '2005-07-08 21:05:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4361, 160, 1, 6.99, '2005-07-11 21:14:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4362, 160, 2, 1.99, '2005-07-12 00:45:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4363, 160, 2, 0.99, '2005-07-27 20:16:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4364, 160, 1, 4.99, '2005-07-28 22:22:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4365, 160, 2, 0.99, '2005-07-31 06:42:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4366, 160, 2, 2.99, '2005-07-31 09:25:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4367, 160, 1, 2.99, '2005-07-31 20:17:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4368, 160, 1, 2.99, '2005-08-01 04:16:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4369, 160, 2, 0.99, '2005-08-01 21:37:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4370, 160, 2, 4.99, '2005-08-02 03:37:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4371, 160, 2, 5.99, '2005-08-02 04:16:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4372, 160, 1, 2.99, '2005-08-02 09:54:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4373, 160, 2, 2.99, '2005-08-17 11:42:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4374, 160, 1, 7.99, '2005-08-17 15:04:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4375, 160, 2, 2.99, '2005-08-18 06:52:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4376, 160, 1, 7.99, '2005-08-18 10:38:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4377, 160, 1, 6.99, '2005-08-19 10:46:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4378, 160, 1, 4.99, '2005-08-22 03:15:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4379, 160, 2, 2.99, '2005-08-22 12:21:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4380, 160, 1, 2.99, '2005-08-23 08:09:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4381, 160, 1, 4.99, '2005-08-23 19:42:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4382, 160, 1, 3.99, '2005-08-23 21:49:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4383, 161, 1, 2.99, '2005-05-27 16:10:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4384, 161, 2, 3.99, '2005-05-27 22:33:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4385, 161, 1, 5.99, '2005-05-28 03:27:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4386, 161, 1, 0.99, '2005-05-28 06:26:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4387, 161, 1, 2.99, '2005-05-28 15:24:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4388, 161, 1, 0.99, '2005-05-31 00:48:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4389, 161, 1, 2.99, '2005-06-17 01:02:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4390, 161, 1, 3.99, '2005-06-20 14:52:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4391, 161, 2, 4.99, '2005-07-06 21:45:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4392, 161, 1, 0.99, '2005-07-07 10:41:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4393, 161, 2, 6.99, '2005-07-07 13:59:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4394, 161, 1, 2.99, '2005-07-08 01:26:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4395, 161, 1, 6.99, '2005-07-09 17:35:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4396, 161, 2, 4.99, '2005-07-12 20:20:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4397, 161, 1, 2.99, '2005-07-27 01:32:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4398, 161, 2, 4.99, '2005-07-29 20:05:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4399, 161, 1, 4.99, '2005-07-30 10:06:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4400, 161, 1, 0.99, '2005-07-30 21:08:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4401, 161, 2, 5.99, '2005-08-01 02:12:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4402, 161, 1, 0.99, '2005-08-01 05:47:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4403, 161, 1, 2.99, '2005-08-01 15:44:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4404, 161, 2, 6.99, '2005-08-02 00:18:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4405, 161, 1, 0.99, '2005-08-02 03:06:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4406, 161, 1, 2.99, '2005-08-17 13:06:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4407, 161, 1, 0.99, '2005-08-21 02:23:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4408, 161, 2, 7.99, '2005-08-21 09:35:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4409, 161, 1, 0.99, '2005-08-22 07:54:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4410, 161, 2, 5.99, '2005-08-22 09:53:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4411, 161, 2, 2.99, '2005-08-22 14:12:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4412, 161, 2, 5.99, '2005-08-22 23:55:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4413, 162, 1, 1.99, '2005-05-26 19:41:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4414, 162, 1, 4.99, '2005-05-28 01:09:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4415, 162, 2, 4.99, '2005-05-29 00:45:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4416, 162, 2, 4.99, '2005-06-15 12:21:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4417, 162, 1, 0.99, '2005-06-18 13:46:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4418, 162, 1, 4.99, '2005-06-19 02:44:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4419, 162, 2, 0.99, '2005-06-20 12:34:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4420, 162, 1, 0.99, '2005-06-20 22:48:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4421, 162, 2, 2.99, '2005-07-09 00:30:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4422, 162, 1, 4.99, '2005-07-29 08:40:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4423, 162, 1, 4.99, '2005-07-29 12:03:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4424, 162, 1, 4.99, '2005-07-30 11:30:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4425, 162, 1, 7.99, '2005-07-31 08:37:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4426, 162, 1, 0.99, '2005-07-31 10:00:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4427, 162, 2, 5.99, '2005-07-31 20:30:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4428, 162, 2, 0.99, '2005-08-02 05:09:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4429, 162, 2, 4.99, '2005-08-19 18:30:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4430, 162, 1, 0.99, '2005-08-21 04:47:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4431, 162, 2, 1.99, '2005-08-21 07:19:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4432, 162, 1, 4.99, '2005-08-22 20:41:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4433, 163, 2, 4.99, '2005-06-15 07:00:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4434, 163, 2, 2.99, '2005-06-17 11:32:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4435, 163, 1, 7.99, '2005-06-17 19:45:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4436, 163, 1, 5.99, '2005-06-19 01:41:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4437, 163, 1, 6.99, '2005-06-20 09:17:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4438, 163, 1, 0.99, '2005-06-20 22:37:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4439, 163, 1, 3.99, '2005-07-06 20:16:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4440, 163, 1, 1.99, '2005-07-07 07:24:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4441, 163, 1, 4.99, '2005-07-10 02:58:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4442, 163, 1, 10.99, '2005-07-10 03:54:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4443, 163, 2, 0.99, '2005-07-11 07:20:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4444, 163, 2, 1.99, '2005-07-12 18:44:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4445, 163, 2, 1.99, '2005-07-27 12:54:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4446, 163, 2, 2.99, '2005-07-27 16:22:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4447, 163, 2, 0.99, '2005-07-28 16:39:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4448, 163, 2, 4.99, '2005-07-28 17:15:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4449, 163, 2, 4.99, '2005-07-29 06:26:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4450, 163, 1, 0.99, '2005-08-01 02:24:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4451, 163, 1, 2.99, '2005-08-17 04:15:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4452, 163, 1, 2.99, '2005-08-17 09:14:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4453, 163, 2, 4.99, '2005-08-17 16:56:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4454, 163, 2, 2.99, '2005-08-18 00:23:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4455, 163, 1, 2.99, '2005-08-19 06:48:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4456, 163, 1, 7.99, '2005-08-20 03:43:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4457, 163, 2, 4.99, '2005-08-21 06:30:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4458, 163, 2, 5.99, '2005-08-21 11:26:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4459, 163, 2, 4.99, '2005-08-22 19:13:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4460, 163, 2, 8.99, '2005-08-23 03:30:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4461, 163, 2, 0.99, '2005-08-23 15:39:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4462, 164, 2, 1.99, '2005-05-31 02:05:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4463, 164, 2, 4.99, '2005-06-16 14:28:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4464, 164, 1, 2.99, '2005-06-19 05:21:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4465, 164, 2, 8.99, '2005-06-20 15:32:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4466, 164, 1, 4.99, '2005-07-08 04:21:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4467, 164, 2, 3.99, '2005-07-10 20:13:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4468, 164, 2, 0.99, '2005-07-11 22:28:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4469, 164, 2, 2.99, '2005-07-12 05:16:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4470, 164, 1, 4.99, '2005-07-12 09:57:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4471, 164, 2, 0.99, '2005-07-12 12:48:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4472, 164, 1, 3.99, '2005-07-27 00:50:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4473, 164, 2, 6.99, '2005-07-27 09:53:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4474, 164, 2, 3.99, '2005-07-28 20:03:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4475, 164, 1, 4.99, '2005-07-29 22:22:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4476, 164, 2, 2.99, '2005-08-02 10:38:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4477, 164, 1, 5.99, '2005-08-20 00:30:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4478, 165, 1, 4.99, '2005-05-27 03:42:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4479, 165, 2, 3.99, '2005-06-17 12:03:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4480, 165, 1, 2.99, '2005-06-21 00:02:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4481, 165, 1, 4.99, '2005-07-06 01:24:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4482, 165, 2, 5.99, '2005-07-06 13:57:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4483, 165, 2, 0.99, '2005-07-07 17:01:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4484, 165, 2, 2.99, '2005-07-08 22:45:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4485, 165, 2, 4.99, '2005-07-09 23:16:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4486, 165, 2, 4.99, '2005-07-10 07:34:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4487, 165, 2, 6.99, '2005-07-10 20:22:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4488, 165, 1, 0.99, '2005-07-11 00:09:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4489, 165, 1, 2.99, '2005-07-27 04:06:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4490, 165, 1, 0.99, '2005-07-29 13:18:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4491, 165, 1, 7.99, '2005-07-30 12:06:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4492, 165, 1, 4.99, '2005-07-31 06:49:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4493, 165, 2, 4.99, '2005-08-01 13:08:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4494, 165, 1, 2.99, '2005-08-02 22:28:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4495, 165, 1, 4.99, '2005-08-18 18:21:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4496, 165, 2, 1.99, '2005-08-22 08:21:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4497, 165, 1, 3.99, '2005-08-23 14:26:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4498, 165, 1, 5.99, '2005-08-23 15:23:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4499, 166, 1, 1.99, '2005-05-28 21:09:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4500, 166, 2, 2.99, '2005-06-15 17:09:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4501, 166, 1, 3.99, '2005-06-18 02:29:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4502, 166, 1, 5.99, '2005-06-20 00:42:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4503, 166, 2, 0.99, '2005-06-20 15:42:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4504, 166, 1, 2.99, '2005-07-06 05:28:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4505, 166, 2, 2.99, '2005-07-06 07:18:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4506, 166, 1, 6.99, '2005-07-07 20:58:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4507, 166, 1, 0.99, '2005-07-08 09:51:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4508, 166, 2, 4.99, '2005-07-09 10:14:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4509, 166, 1, 4.99, '2005-07-09 19:08:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4510, 166, 1, 2.99, '2005-07-10 07:08:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4511, 166, 2, 7.99, '2005-07-10 17:54:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4512, 166, 2, 0.99, '2005-07-11 14:19:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4513, 166, 1, 2.99, '2005-07-12 20:50:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4514, 166, 1, 2.99, '2005-07-27 23:14:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4515, 166, 1, 5.99, '2005-07-28 16:57:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4516, 166, 2, 8.99, '2005-07-30 05:12:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4517, 166, 2, 7.99, '2005-08-01 08:17:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4518, 166, 1, 4.99, '2005-08-18 19:50:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4519, 166, 2, 4.99, '2005-08-19 06:38:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4520, 166, 2, 4.99, '2005-08-20 05:28:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4521, 166, 2, 7.99, '2005-08-20 16:06:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4522, 166, 2, 5.99, '2005-08-21 06:07:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4523, 166, 1, 2.99, '2005-08-21 06:40:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4524, 166, 2, 5.99, '2005-08-22 16:49:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4525, 166, 2, 2.99, '2005-08-22 16:57:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4526, 166, 1, 1.99, '2005-08-23 14:31:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4527, 167, 2, 2.99, '2005-05-26 18:36:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4528, 167, 1, 2.99, '2005-05-27 07:31:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4529, 167, 2, 4.99, '2005-05-30 12:16:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4530, 167, 2, 3.99, '2005-06-15 17:44:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4531, 167, 1, 5.99, '2005-06-15 22:35:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4532, 167, 1, 5.99, '2005-06-18 15:00:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4533, 167, 1, 4.99, '2005-07-06 00:56:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4534, 167, 2, 0.99, '2005-07-08 01:40:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4535, 167, 1, 0.99, '2005-07-09 07:35:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4536, 167, 1, 4.99, '2005-07-09 09:59:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4537, 167, 1, 0.99, '2005-07-09 10:26:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4538, 167, 2, 4.99, '2005-07-09 20:28:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4539, 167, 2, 2.99, '2005-07-10 13:49:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4540, 167, 2, 4.99, '2005-07-11 15:58:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4541, 167, 1, 4.99, '2005-07-28 00:08:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4542, 167, 2, 2.99, '2005-07-28 18:28:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4543, 167, 2, 4.99, '2005-07-29 00:02:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4544, 167, 1, 2.99, '2005-07-29 03:44:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4545, 167, 1, 0.99, '2005-07-29 20:57:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4546, 167, 2, 0.99, '2005-07-29 23:52:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4547, 167, 1, 4.99, '2005-07-31 02:28:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4548, 167, 1, 3.99, '2005-08-01 03:35:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4549, 167, 2, 4.99, '2005-08-18 18:19:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4550, 167, 2, 4.99, '2005-08-18 21:15:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4551, 167, 2, 4.99, '2005-08-19 06:57:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4552, 167, 1, 6.99, '2005-08-20 13:43:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4553, 167, 2, 1.99, '2005-08-20 15:09:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4554, 167, 1, 3.99, '2005-08-22 08:11:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4555, 167, 1, 0.99, '2005-08-22 10:07:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4556, 167, 1, 0.99, '2005-08-23 01:50:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4557, 167, 2, 4.99, '2005-08-23 03:50:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4558, 167, 1, 4.99, '2005-08-23 17:52:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4559, 168, 1, 0.99, '2005-05-27 13:31:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4560, 168, 1, 4.99, '2005-05-28 00:07:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4561, 168, 2, 4.99, '2005-06-15 03:38:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4562, 168, 2, 2.99, '2005-07-06 01:22:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4563, 168, 1, 5.99, '2005-07-07 17:29:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4564, 168, 2, 5.99, '2005-07-07 19:43:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4565, 168, 2, 2.99, '2005-07-08 23:09:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4566, 168, 2, 0.99, '2005-07-09 22:43:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4567, 168, 1, 5.99, '2005-07-10 20:41:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4568, 168, 1, 5.99, '2005-07-11 19:20:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4569, 168, 1, 0.99, '2005-07-12 00:36:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4570, 168, 1, 3.99, '2005-07-12 17:51:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4571, 168, 2, 1.99, '2005-07-29 04:52:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4572, 168, 2, 1.99, '2005-07-29 10:21:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4573, 168, 1, 6.99, '2005-07-29 15:26:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4574, 168, 2, 1.99, '2005-07-30 00:24:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4575, 168, 1, 4.99, '2005-07-30 12:31:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4576, 168, 2, 4.99, '2005-07-30 21:00:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4577, 168, 1, 6.99, '2005-07-31 13:00:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4578, 168, 1, 4.99, '2005-07-31 14:12:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4579, 168, 1, 0.99, '2005-08-01 03:10:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4580, 168, 1, 0.99, '2005-08-17 01:03:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4581, 168, 1, 10.99, '2005-08-17 04:25:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4582, 168, 1, 1.99, '2005-08-17 04:28:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4583, 168, 1, 6.99, '2005-08-18 14:28:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4584, 168, 2, 2.99, '2005-08-18 23:50:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4585, 168, 2, 8.99, '2005-08-19 08:04:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4586, 168, 1, 4.99, '2005-08-20 03:29:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4587, 168, 1, 0.99, '2005-08-20 13:00:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4588, 168, 1, 2.99, '2005-08-21 00:11:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4589, 168, 2, 3.99, '2005-08-22 09:25:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4590, 168, 2, 2.99, '2005-08-22 14:59:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4591, 168, 2, 2.99, '2005-08-23 09:38:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4592, 168, 2, 0.99, '2005-08-23 17:02:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4593, 169, 2, 3.99, '2005-05-28 04:28:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4594, 169, 1, 4.99, '2005-05-31 11:18:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4595, 169, 1, 4.99, '2005-06-17 12:52:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4596, 169, 2, 2.99, '2005-06-21 04:07:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4597, 169, 2, 8.99, '2005-07-05 23:46:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4598, 169, 2, 4.99, '2005-07-08 10:54:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4599, 169, 1, 2.99, '2005-07-09 04:48:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4600, 169, 1, 3.99, '2005-07-11 09:02:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4601, 169, 1, 4.99, '2005-07-12 00:59:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4602, 169, 2, 9.99, '2005-07-12 02:20:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4603, 169, 2, 6.99, '2005-07-27 08:27:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4604, 169, 2, 0.99, '2005-07-27 23:35:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4605, 169, 2, 4.99, '2005-07-29 11:24:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4606, 169, 1, 0.99, '2005-07-30 12:43:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4607, 169, 2, 5.99, '2005-08-17 06:39:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4608, 169, 1, 5.99, '2005-08-17 15:24:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4609, 169, 2, 2.99, '2005-08-19 14:47:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4610, 169, 1, 1.99, '2005-08-19 16:18:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4611, 169, 1, 0.99, '2005-08-21 11:44:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4612, 169, 1, 4.99, '2005-08-22 00:52:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4613, 169, 2, 0.99, '2005-08-23 03:55:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4614, 169, 1, 4.99, '2005-08-23 09:33:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4615, 170, 1, 2.99, '2005-05-26 08:33:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4616, 170, 1, 5.99, '2005-05-27 09:04:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4617, 170, 2, 0.99, '2005-05-28 02:05:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4618, 170, 1, 0.99, '2005-06-17 20:24:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4619, 170, 2, 8.99, '2005-06-18 16:59:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4620, 170, 2, 4.99, '2005-07-06 07:40:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4621, 170, 2, 4.99, '2005-07-06 12:18:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4622, 170, 1, 4.99, '2005-07-07 06:49:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4623, 170, 1, 0.99, '2005-07-08 00:17:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4624, 170, 2, 0.99, '2005-07-09 05:12:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4625, 170, 1, 4.99, '2005-07-10 03:50:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4626, 170, 2, 7.99, '2005-07-10 09:01:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4627, 170, 1, 2.99, '2005-07-10 15:17:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4628, 170, 1, 7.99, '2005-07-28 15:10:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4629, 170, 2, 2.99, '2005-07-31 00:41:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4630, 170, 2, 2.99, '2005-07-31 11:33:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4631, 170, 1, 9.99, '2005-07-31 20:49:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4632, 170, 1, 5.99, '2005-08-01 10:17:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4633, 170, 1, 0.99, '2005-08-02 06:00:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4634, 170, 1, 3.99, '2005-08-18 20:44:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4635, 170, 2, 3.99, '2005-08-19 06:37:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4636, 170, 1, 0.99, '2005-08-19 10:19:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4637, 170, 1, 6.99, '2005-08-20 14:57:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4638, 170, 2, 8.99, '2005-08-20 21:08:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4639, 170, 2, 2.99, '2005-08-21 20:01:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4640, 170, 2, 7.99, '2005-08-23 04:27:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4641, 171, 2, 9.99, '2005-05-29 18:10:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4642, 171, 2, 0.99, '2005-06-16 11:06:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4643, 171, 1, 4.99, '2005-06-17 11:43:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4644, 171, 1, 5.99, '2005-06-18 01:57:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4645, 171, 1, 4.99, '2005-06-18 22:50:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4646, 171, 1, 5.99, '2005-06-19 06:06:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4647, 171, 1, 2.99, '2005-06-19 18:48:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4648, 171, 2, 6.99, '2005-06-21 10:27:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4649, 171, 2, 0.99, '2005-07-06 06:03:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4650, 171, 2, 2.99, '2005-07-06 12:10:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4651, 171, 2, 5.99, '2005-07-10 07:46:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4652, 171, 1, 4.99, '2005-07-11 00:54:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4653, 171, 1, 2.99, '2005-07-12 15:32:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4654, 171, 2, 0.99, '2005-07-12 15:56:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4655, 171, 1, 3.99, '2005-07-27 03:06:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4656, 171, 1, 4.99, '2005-07-30 07:28:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4657, 171, 2, 5.99, '2005-07-30 08:14:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4658, 171, 1, 4.99, '2005-08-01 15:12:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4659, 171, 1, 4.99, '2005-08-18 16:44:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4660, 171, 1, 5.99, '2005-08-19 06:22:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4661, 171, 2, 6.99, '2005-08-19 10:33:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4662, 171, 1, 0.99, '2005-08-19 18:35:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4663, 171, 1, 0.99, '2005-08-19 23:30:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4664, 171, 1, 1.99, '2005-08-21 06:22:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4665, 171, 1, 9.99, '2005-08-21 18:06:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4666, 171, 1, 0.99, '2005-08-23 14:43:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4667, 172, 1, 3.99, '2005-05-27 19:13:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4668, 172, 1, 6.99, '2005-05-29 00:17:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4669, 172, 1, 0.99, '2005-05-30 00:02:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4670, 172, 1, 0.99, '2005-06-15 22:25:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4671, 172, 2, 0.99, '2005-06-17 15:14:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4672, 172, 2, 1.99, '2005-06-20 11:58:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4673, 172, 1, 5.99, '2005-07-08 17:25:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4674, 172, 2, 4.99, '2005-07-08 17:28:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4675, 172, 2, 6.99, '2005-07-08 19:33:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4676, 172, 2, 7.99, '2005-07-11 14:57:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4677, 172, 1, 0.99, '2005-07-11 21:55:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4678, 172, 2, 5.99, '2005-07-12 20:23:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4679, 172, 1, 6.99, '2005-07-27 06:03:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4680, 172, 1, 2.99, '2005-07-27 06:34:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4681, 172, 2, 3.99, '2005-07-27 08:39:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4682, 172, 2, 2.99, '2005-07-27 11:15:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4683, 172, 1, 4.99, '2005-07-28 01:13:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4684, 172, 2, 6.99, '2005-07-30 03:11:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4685, 172, 2, 2.99, '2005-07-30 09:24:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4686, 172, 2, 5.99, '2005-07-30 13:14:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4687, 172, 2, 3.99, '2005-08-01 04:29:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4688, 172, 1, 0.99, '2005-08-01 15:10:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4689, 172, 2, 6.99, '2005-08-16 22:54:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4690, 172, 1, 4.99, '2005-08-18 07:29:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4691, 172, 2, 8.99, '2005-08-18 18:11:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4692, 172, 1, 5.99, '2005-08-19 09:51:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4693, 172, 1, 4.99, '2005-08-19 19:35:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4694, 172, 2, 0.99, '2005-08-19 20:21:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4695, 172, 2, 4.99, '2005-08-20 17:22:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4696, 172, 1, 4.99, '2005-08-22 07:50:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4697, 172, 1, 2.99, '2005-08-23 07:53:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4698, 172, 2, 3.99, '2005-08-23 17:28:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4699, 172, 1, 3.99, '2005-08-23 22:14:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4700, 173, 1, 2.99, '2005-05-28 11:15:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4701, 173, 1, 4.99, '2005-05-28 17:05:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4702, 173, 2, 2.99, '2005-06-15 01:04:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4703, 173, 1, 4.99, '2005-06-18 18:12:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4704, 173, 2, 2.99, '2005-06-19 06:10:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4705, 173, 1, 0.99, '2005-06-21 02:11:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4706, 173, 1, 4.99, '2005-06-21 10:14:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4707, 173, 2, 0.99, '2005-07-06 10:53:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4708, 173, 1, 7.99, '2005-07-08 20:53:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4709, 173, 2, 2.99, '2005-07-09 21:19:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4710, 173, 1, 4.99, '2005-07-09 23:55:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4711, 173, 2, 2.99, '2005-07-10 00:02:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4712, 173, 2, 2.99, '2005-07-10 02:13:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4713, 173, 1, 3.99, '2005-07-10 05:18:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4714, 173, 1, 4.99, '2005-07-11 02:10:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4715, 173, 1, 0.99, '2005-07-28 01:27:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4716, 173, 1, 2.99, '2005-07-29 02:56:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4717, 173, 1, 4.99, '2005-07-29 21:39:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4718, 173, 2, 8.99, '2005-07-29 22:33:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4719, 173, 1, 4.99, '2005-07-30 08:40:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4720, 173, 1, 2.99, '2005-07-31 00:26:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4721, 173, 1, 5.99, '2005-08-01 05:32:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4722, 173, 2, 2.99, '2005-08-17 21:50:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4723, 173, 2, 6.99, '2005-08-18 04:54:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4724, 173, 2, 4.99, '2005-08-18 13:13:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4725, 173, 1, 2.99, '2005-08-21 19:36:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4726, 173, 2, 0.99, '2005-08-23 02:02:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4727, 173, 2, 8.99, '2005-08-23 13:25:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4728, 173, 2, 2.99, '2005-08-23 21:10:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4729, 174, 2, 5.99, '2005-05-25 05:12:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4730, 174, 2, 4.99, '2005-05-31 09:48:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4731, 174, 1, 7.99, '2005-06-16 03:13:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4732, 174, 1, 0.99, '2005-06-16 06:34:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4733, 174, 2, 5.99, '2005-06-18 10:14:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4734, 174, 1, 1.99, '2005-06-21 20:45:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4735, 174, 2, 1.99, '2005-07-08 16:56:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4736, 174, 1, 4.99, '2005-07-09 20:29:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4737, 174, 1, 4.99, '2005-07-12 22:09:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4738, 174, 1, 7.99, '2005-07-29 04:49:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4739, 174, 2, 4.99, '2005-07-29 19:18:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4740, 174, 2, 4.99, '2005-07-30 16:34:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4741, 174, 1, 2.99, '2005-07-31 12:33:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4742, 174, 2, 2.99, '2005-08-01 06:01:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4743, 174, 2, 4.99, '2005-08-01 07:11:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4744, 174, 1, 8.99, '2005-08-01 13:02:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4745, 174, 2, 0.99, '2005-08-17 00:15:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4746, 174, 1, 5.99, '2005-08-19 03:38:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4747, 174, 2, 0.99, '2005-08-19 14:22:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4748, 174, 2, 1.99, '2005-08-23 17:01:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4749, 174, 1, 4.99, '2005-08-23 20:06:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4750, 175, 2, 0.99, '2005-06-15 21:54:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4751, 175, 2, 4.99, '2005-06-21 04:49:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4752, 175, 2, 4.99, '2005-07-06 06:12:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4753, 175, 2, 5.99, '2005-07-07 09:37:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4754, 175, 2, 1.99, '2005-07-09 12:35:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4755, 175, 2, 7.99, '2005-07-12 20:02:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4756, 175, 1, 2.99, '2005-07-27 18:06:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4757, 175, 1, 0.99, '2005-07-28 06:52:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4758, 175, 1, 2.99, '2005-07-29 00:35:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4759, 175, 2, 4.99, '2005-07-29 01:18:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4760, 175, 1, 3.99, '2005-07-29 07:31:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4761, 175, 1, 4.99, '2005-07-29 22:09:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4762, 175, 1, 4.99, '2005-07-31 15:31:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4763, 175, 1, 7.99, '2005-08-01 01:45:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4764, 175, 1, 0.99, '2005-08-02 00:31:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4765, 175, 1, 4.99, '2005-08-17 04:01:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4766, 175, 2, 0.99, '2005-08-18 13:21:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4767, 175, 2, 4.99, '2005-08-19 07:57:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4768, 175, 1, 2.99, '2005-08-19 13:22:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4769, 175, 2, 6.99, '2005-08-20 14:00:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4770, 175, 1, 6.99, '2005-08-20 19:51:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4771, 175, 2, 0.99, '2005-08-20 22:30:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4772, 175, 1, 4.99, '2005-08-21 14:32:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4773, 175, 2, 2.99, '2005-08-22 04:22:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4774, 176, 2, 0.99, '2005-05-26 03:17:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4775, 176, 1, 6.99, '2005-05-27 09:34:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4776, 176, 2, 3.99, '2005-05-28 08:14:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4777, 176, 1, 1.99, '2005-05-28 21:23:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4778, 176, 1, 7.99, '2005-05-31 08:38:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4779, 176, 1, 5.99, '2005-06-15 08:55:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4780, 176, 1, 7.99, '2005-06-16 16:31:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4781, 176, 2, 6.99, '2005-06-16 23:13:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4782, 176, 2, 8.99, '2005-06-18 00:48:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4783, 176, 1, 2.99, '2005-06-18 03:13:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4784, 176, 1, 2.99, '2005-06-18 17:45:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4785, 176, 2, 1.99, '2005-06-18 23:17:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4786, 176, 2, 4.99, '2005-06-20 04:13:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4787, 176, 2, 4.99, '2005-07-06 07:20:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4788, 176, 2, 6.99, '2005-07-06 21:03:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4789, 176, 1, 3.99, '2005-07-07 07:13:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4790, 176, 2, 2.99, '2005-07-11 03:01:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4791, 176, 1, 6.99, '2005-07-11 20:54:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4792, 176, 1, 4.99, '2005-07-27 02:16:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4793, 176, 2, 2.99, '2005-07-27 02:40:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4794, 176, 1, 2.99, '2005-07-27 09:19:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4795, 176, 1, 2.99, '2005-07-27 21:04:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4796, 176, 2, 5.99, '2005-07-28 05:56:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4797, 176, 2, 2.99, '2005-07-29 01:43:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4798, 176, 1, 6.99, '2005-07-30 10:27:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4799, 176, 1, 2.99, '2005-08-01 03:22:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4800, 176, 1, 0.99, '2005-08-01 08:55:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4801, 176, 1, 2.99, '2005-08-02 00:17:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4802, 176, 2, 5.99, '2005-08-17 06:07:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4803, 176, 1, 2.99, '2005-08-18 05:32:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4804, 176, 1, 2.99, '2005-08-18 21:21:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4805, 176, 2, 7.99, '2005-08-19 13:45:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4806, 176, 2, 5.99, '2005-08-19 14:23:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4807, 176, 2, 7.99, '2005-08-20 23:42:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4808, 176, 2, 1.99, '2005-08-21 05:07:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4809, 176, 2, 4.99, '2005-08-22 19:56:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4810, 176, 1, 4.99, '2005-08-23 18:36:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4811, 177, 2, 2.99, '2005-06-15 16:12:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4812, 177, 2, 2.99, '2005-06-16 00:25:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4813, 177, 2, 4.99, '2005-06-16 07:24:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4814, 177, 1, 0.99, '2005-06-16 16:07:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4815, 177, 2, 2.99, '2005-06-18 20:20:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4816, 177, 2, 0.99, '2005-07-08 14:48:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4817, 177, 1, 9.99, '2005-07-11 13:13:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4818, 177, 2, 2.99, '2005-07-11 16:51:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4819, 177, 2, 3.99, '2005-07-27 19:55:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4820, 177, 1, 1.99, '2005-07-28 02:54:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4821, 177, 2, 0.99, '2005-07-28 20:16:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4822, 177, 1, 1.99, '2005-07-30 12:24:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4823, 177, 2, 4.99, '2005-08-01 04:40:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4824, 177, 2, 2.99, '2005-08-01 16:48:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4825, 177, 1, 0.99, '2005-08-01 18:44:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4826, 177, 2, 0.99, '2005-08-02 11:42:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4827, 177, 1, 5.99, '2005-08-02 18:16:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4828, 177, 2, 6.99, '2005-08-17 05:27:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4829, 177, 1, 4.99, '2005-08-18 17:34:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4830, 177, 1, 0.99, '2005-08-21 00:21:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4831, 177, 1, 0.99, '2005-08-21 07:44:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4832, 177, 1, 2.99, '2005-08-22 02:15:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4833, 177, 2, 0.99, '2005-08-22 03:55:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4834, 178, 1, 6.99, '2005-06-15 09:03:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4835, 178, 2, 6.99, '2005-06-15 20:24:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4836, 178, 1, 2.99, '2005-06-16 03:14:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4837, 178, 2, 3.99, '2005-06-16 16:41:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4838, 178, 1, 1.99, '2005-06-17 20:49:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4839, 178, 1, 4.99, '2005-06-18 07:45:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4840, 178, 2, 6.99, '2005-06-19 22:40:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4841, 178, 2, 9.99, '2005-06-20 02:38:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4842, 178, 1, 2.99, '2005-07-08 21:31:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4843, 178, 2, 2.99, '2005-07-09 01:54:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4844, 178, 1, 4.99, '2005-07-09 04:20:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4845, 178, 2, 10.99, '2005-07-09 05:59:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4846, 178, 1, 2.99, '2005-07-11 00:44:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4847, 178, 1, 4.99, '2005-07-11 20:18:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4848, 178, 1, 5.99, '2005-07-12 05:07:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4849, 178, 2, 6.99, '2005-07-12 05:42:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4850, 178, 2, 2.99, '2005-07-12 08:03:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4851, 178, 2, 4.99, '2005-07-28 13:43:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4852, 178, 2, 0.99, '2005-07-28 17:23:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4853, 178, 1, 3.99, '2005-07-29 02:03:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4854, 178, 1, 5.99, '2005-07-29 05:48:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4855, 178, 1, 4.99, '2005-07-29 16:45:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4856, 178, 1, 4.99, '2005-07-30 05:04:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4857, 178, 2, 7.99, '2005-07-30 16:58:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4858, 178, 1, 4.99, '2005-07-31 13:45:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4859, 178, 1, 0.99, '2005-07-31 21:33:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4860, 178, 1, 0.99, '2005-08-01 13:05:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4861, 178, 1, 5.99, '2005-08-01 22:18:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4862, 178, 1, 6.99, '2005-08-02 16:10:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4863, 178, 2, 6.99, '2005-08-17 14:43:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4864, 178, 2, 3.99, '2005-08-17 16:25:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4865, 178, 1, 6.99, '2005-08-17 20:53:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4866, 178, 2, 2.99, '2005-08-18 21:45:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4867, 178, 1, 4.99, '2005-08-19 03:52:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4868, 178, 1, 2.99, '2005-08-19 12:04:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4869, 178, 2, 4.99, '2005-08-21 00:37:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4870, 178, 2, 7.99, '2005-08-21 05:52:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4871, 178, 2, 2.99, '2005-08-21 07:50:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4872, 178, 2, 4.99, '2005-08-22 20:22:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4873, 179, 2, 0.99, '2005-05-28 01:34:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4874, 179, 1, 6.99, '2005-05-29 10:57:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4875, 179, 2, 4.99, '2005-05-31 06:42:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4876, 179, 2, 7.99, '2005-06-15 08:41:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4877, 179, 1, 4.99, '2005-06-19 07:25:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4878, 179, 2, 6.99, '2005-07-06 09:01:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4879, 179, 1, 0.99, '2005-07-06 16:37:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4880, 179, 2, 2.99, '2005-07-08 08:00:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4881, 179, 1, 6.99, '2005-07-11 04:50:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4882, 179, 1, 7.99, '2005-07-12 08:37:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4883, 179, 1, 2.99, '2005-07-12 17:31:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4884, 179, 1, 6.99, '2005-07-27 02:54:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4885, 179, 1, 4.99, '2005-07-27 03:43:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4886, 179, 2, 4.99, '2005-07-28 00:11:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4887, 179, 2, 2.99, '2005-07-29 11:51:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4888, 179, 2, 8.99, '2005-07-29 18:23:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4889, 179, 2, 4.99, '2005-07-30 23:45:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4890, 179, 2, 0.99, '2005-07-31 14:07:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4891, 179, 1, 4.99, '2005-07-31 22:36:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4892, 179, 1, 4.99, '2005-08-01 06:39:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4893, 179, 1, 3.99, '2005-08-01 13:18:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4894, 179, 1, 0.99, '2005-08-02 17:11:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4895, 179, 1, 0.99, '2005-08-19 16:22:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4896, 179, 2, 4.99, '2005-08-19 22:11:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4897, 179, 1, 7.99, '2005-08-20 14:30:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4898, 179, 2, 0.99, '2005-08-20 18:09:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4899, 179, 2, 7.99, '2005-08-20 23:42:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4900, 179, 2, 0.99, '2005-08-21 17:28:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4901, 179, 1, 4.99, '2005-08-23 20:20:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4902, 180, 2, 2.99, '2005-05-31 16:39:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4903, 180, 2, 2.99, '2005-06-19 13:31:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4904, 180, 2, 2.99, '2005-06-19 19:07:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4905, 180, 2, 7.99, '2005-07-08 17:44:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4906, 180, 2, 9.99, '2005-07-08 21:55:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4907, 180, 2, 0.99, '2005-07-09 19:17:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4908, 180, 1, 0.99, '2005-07-10 13:31:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4909, 180, 1, 3.99, '2005-07-10 18:08:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4910, 180, 2, 2.99, '2005-07-27 11:35:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4911, 180, 1, 2.99, '2005-07-29 10:52:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4912, 180, 2, 5.99, '2005-07-29 17:48:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4913, 180, 1, 0.99, '2005-07-30 19:05:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4914, 180, 1, 3.99, '2005-07-31 17:30:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4915, 180, 2, 5.99, '2005-08-01 13:46:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4916, 180, 1, 8.99, '2005-08-02 04:41:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4917, 180, 2, 8.99, '2005-08-18 06:07:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4918, 180, 1, 4.99, '2005-08-19 04:06:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4919, 180, 2, 2.99, '2005-08-19 18:10:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4920, 180, 2, 4.99, '2005-08-20 14:29:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4921, 180, 1, 2.99, '2005-08-20 19:33:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4922, 180, 1, 0.99, '2005-08-21 00:52:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4923, 180, 2, 2.99, '2005-08-22 02:20:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4924, 180, 2, 4.99, '2005-08-22 09:37:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4925, 181, 1, 6.99, '2005-05-28 11:19:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4926, 181, 2, 2.99, '2005-06-16 08:32:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4927, 181, 2, 5.99, '2005-06-19 09:50:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4928, 181, 2, 5.99, '2005-06-21 21:01:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4929, 181, 2, 4.99, '2005-06-21 22:48:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4930, 181, 2, 6.99, '2005-07-06 17:35:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4931, 181, 1, 4.99, '2005-07-07 22:29:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4932, 181, 1, 4.99, '2005-07-12 01:38:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4933, 181, 2, 8.99, '2005-07-26 23:40:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4934, 181, 2, 0.99, '2005-07-27 16:02:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4935, 181, 2, 4.99, '2005-07-28 01:02:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4936, 181, 1, 5.99, '2005-07-29 12:38:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4937, 181, 1, 9.99, '2005-07-29 13:03:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4938, 181, 1, 4.99, '2005-07-30 13:10:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4939, 181, 2, 5.99, '2005-07-30 13:47:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4940, 181, 1, 8.99, '2005-07-30 18:37:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4941, 181, 2, 4.99, '2005-07-31 12:26:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4942, 181, 1, 4.99, '2005-08-01 03:01:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4943, 181, 1, 6.99, '2005-08-01 05:55:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4944, 181, 1, 2.99, '2005-08-01 18:37:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4945, 181, 2, 4.99, '2005-08-01 20:01:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4946, 181, 1, 6.99, '2005-08-01 20:53:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4947, 181, 1, 4.99, '2005-08-02 12:40:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4948, 181, 2, 7.99, '2005-08-18 07:52:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4949, 181, 1, 0.99, '2005-08-18 09:47:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4950, 181, 2, 2.99, '2005-08-18 19:41:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4951, 181, 2, 2.99, '2005-08-19 05:38:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4952, 181, 1, 2.99, '2005-08-19 07:48:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4953, 181, 1, 4.99, '2005-08-19 11:39:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4954, 181, 1, 4.99, '2005-08-19 22:20:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4955, 181, 1, 2.99, '2005-08-19 22:48:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4956, 181, 2, 3.99, '2005-08-21 10:46:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4957, 181, 1, 2.99, '2005-08-22 16:11:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4958, 181, 2, 4.99, '2005-08-23 02:01:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4959, 182, 1, 0.99, '2005-05-26 01:51:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4960, 182, 1, 3.99, '2005-05-27 15:51:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4961, 182, 2, 3.99, '2005-06-16 01:20:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4962, 182, 1, 2.99, '2005-06-17 14:58:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4963, 182, 1, 5.99, '2005-06-17 20:36:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4964, 182, 2, 0.99, '2005-06-18 04:01:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4965, 182, 2, 2.99, '2005-07-06 00:24:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4966, 182, 2, 6.99, '2005-07-06 10:07:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4967, 182, 1, 2.99, '2005-07-07 09:59:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4968, 182, 2, 0.99, '2005-07-07 19:02:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4969, 182, 1, 1.99, '2005-07-08 02:39:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4970, 182, 2, 3.99, '2005-07-08 06:29:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4971, 182, 2, 0.99, '2005-07-08 16:09:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4972, 182, 1, 2.99, '2005-07-10 01:31:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4973, 182, 2, 0.99, '2005-07-27 10:00:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4974, 182, 1, 0.99, '2005-07-28 10:05:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4975, 182, 2, 4.99, '2005-07-28 10:30:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4976, 182, 1, 8.99, '2005-07-28 16:50:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4977, 182, 1, 4.99, '2005-08-02 06:36:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4978, 182, 1, 3.99, '2005-08-17 10:54:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4979, 182, 1, 4.99, '2005-08-18 15:32:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4980, 182, 1, 6.99, '2005-08-19 01:54:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4981, 182, 2, 2.99, '2005-08-19 18:18:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4982, 182, 1, 5.99, '2005-08-21 17:19:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4983, 182, 2, 6.99, '2005-08-22 06:23:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4984, 182, 1, 1.99, '2005-08-22 09:49:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4985, 183, 2, 0.99, '2005-05-27 10:12:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4986, 183, 2, 0.99, '2005-06-15 08:13:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4987, 183, 2, 1.99, '2005-06-18 01:19:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4988, 183, 1, 5.99, '2005-06-18 20:31:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4989, 183, 1, 5.99, '2005-06-21 14:02:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4990, 183, 1, 2.99, '2005-07-06 17:56:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4991, 183, 1, 0.99, '2005-07-07 08:14:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4992, 183, 2, 2.99, '2005-07-07 09:04:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4993, 183, 1, 1.99, '2005-07-09 04:56:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4994, 183, 1, 0.99, '2005-07-10 12:39:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4995, 183, 1, 4.99, '2005-07-12 01:33:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4996, 183, 1, 4.99, '2005-07-12 05:47:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4997, 183, 2, 0.99, '2005-07-27 14:51:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4998, 183, 2, 5.99, '2005-07-31 06:34:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (4999, 183, 2, 4.99, '2005-07-31 11:34:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5000, 183, 2, 2.99, '2005-07-31 15:18:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5001, 183, 1, 5.99, '2005-08-01 15:09:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5002, 183, 2, 2.99, '2005-08-02 18:24:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5003, 183, 1, 0.99, '2005-08-18 11:04:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5004, 183, 2, 3.99, '2005-08-18 23:14:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5005, 183, 2, 3.99, '2005-08-19 01:40:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5006, 183, 1, 2.99, '2005-08-20 01:14:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5007, 183, 2, 4.99, '2005-08-20 03:35:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5008, 184, 2, 2.99, '2005-05-26 06:55:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5009, 184, 1, 4.99, '2005-05-28 06:15:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5010, 184, 1, 1.99, '2005-05-28 09:56:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5011, 184, 2, 2.99, '2005-06-17 09:38:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5012, 184, 2, 0.99, '2005-06-18 08:55:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5013, 184, 1, 0.99, '2005-07-07 17:38:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5014, 184, 1, 6.99, '2005-07-08 19:42:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5015, 184, 2, 0.99, '2005-07-10 20:01:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5016, 184, 2, 2.99, '2005-07-12 02:40:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5017, 184, 2, 6.99, '2005-07-12 12:47:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5018, 184, 1, 4.99, '2005-07-27 03:34:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5019, 184, 2, 6.99, '2005-07-28 03:19:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5020, 184, 2, 4.99, '2005-07-30 00:47:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5021, 184, 2, 0.99, '2005-07-30 11:21:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5022, 184, 2, 9.99, '2005-08-18 00:57:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5023, 184, 1, 2.99, '2005-08-18 11:19:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5024, 184, 1, 2.99, '2005-08-18 13:57:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5025, 184, 1, 0.99, '2005-08-19 12:14:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5026, 184, 1, 5.99, '2005-08-19 17:20:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5027, 184, 1, 4.99, '2005-08-19 18:55:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5028, 184, 1, 4.99, '2005-08-21 13:13:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5029, 184, 1, 5.99, '2005-08-22 00:46:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5030, 184, 1, 0.99, '2005-08-23 06:56:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5031, 185, 2, 2.99, '2005-05-25 01:48:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5032, 185, 1, 0.99, '2005-05-26 00:55:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5033, 185, 2, 0.99, '2005-05-28 19:16:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5034, 185, 2, 4.99, '2005-06-18 19:44:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5035, 185, 1, 4.99, '2005-06-21 08:17:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5036, 185, 2, 4.99, '2005-06-21 08:51:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5037, 185, 2, 9.99, '2005-07-07 10:32:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5038, 185, 2, 2.99, '2005-07-08 03:10:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5039, 185, 1, 7.99, '2005-07-08 17:28:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5040, 185, 1, 2.99, '2005-07-11 07:05:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5041, 185, 1, 1.99, '2005-07-11 23:36:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5042, 185, 1, 2.99, '2005-07-27 00:15:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5043, 185, 1, 4.99, '2005-07-27 03:53:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5044, 185, 1, 2.99, '2005-07-28 23:10:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5045, 185, 1, 0.99, '2005-07-29 07:33:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5046, 185, 1, 8.99, '2005-07-29 16:16:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5047, 185, 1, 0.99, '2005-07-30 14:12:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5048, 185, 2, 2.99, '2005-07-30 23:04:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5049, 185, 2, 0.99, '2005-08-02 17:37:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5050, 185, 1, 2.99, '2005-08-18 06:07:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5051, 185, 2, 5.99, '2005-08-18 19:24:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5052, 185, 1, 0.99, '2005-08-19 03:37:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5053, 185, 2, 2.99, '2005-08-21 14:51:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5054, 186, 2, 1.99, '2005-05-28 11:20:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5055, 186, 1, 0.99, '2005-05-30 17:58:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5056, 186, 1, 4.99, '2005-06-15 01:18:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5057, 186, 1, 2.99, '2005-06-15 09:36:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5058, 186, 2, 2.99, '2005-06-16 10:14:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5059, 186, 1, 4.99, '2005-06-17 21:05:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5060, 186, 2, 4.99, '2005-06-20 00:47:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5061, 186, 1, 4.99, '2005-06-20 12:32:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5062, 186, 2, 4.99, '2005-07-11 04:34:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5063, 186, 2, 0.99, '2005-07-28 05:21:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5064, 186, 2, 3.99, '2005-07-28 11:49:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5065, 186, 2, 4.99, '2005-07-29 08:50:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5066, 186, 1, 0.99, '2005-07-30 00:13:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5067, 186, 1, 2.99, '2005-07-30 16:35:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5068, 186, 2, 5.99, '2005-07-30 18:39:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5069, 186, 2, 1.99, '2005-07-31 20:49:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5070, 186, 2, 0.99, '2005-08-02 04:30:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5071, 186, 1, 0.99, '2005-08-17 18:13:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5072, 186, 2, 5.99, '2005-08-18 07:21:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5073, 186, 1, 8.99, '2005-08-18 10:42:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5074, 186, 1, 6.99, '2005-08-19 13:37:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5075, 186, 2, 4.99, '2005-08-20 02:33:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5076, 186, 2, 4.99, '2005-08-20 02:49:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5077, 186, 2, 3.99, '2005-08-20 14:47:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5078, 186, 2, 2.99, '2005-08-20 20:21:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5079, 186, 2, 2.99, '2005-08-21 04:37:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5080, 186, 1, 4.99, '2005-08-21 04:57:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5081, 186, 2, 4.99, '2005-08-21 19:14:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5082, 186, 2, 3.99, '2005-08-22 07:46:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5083, 186, 2, 0.99, '2005-08-22 08:00:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5084, 186, 2, 3.99, '2005-08-22 19:36:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5085, 186, 2, 0.99, '2005-08-23 06:19:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5086, 187, 1, 7.99, '2005-05-26 14:39:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5087, 187, 1, 6.99, '2005-06-15 10:55:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5088, 187, 1, 4.99, '2005-06-15 20:37:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5089, 187, 1, 0.99, '2005-06-16 05:14:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5090, 187, 2, 0.99, '2005-06-17 20:54:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5091, 187, 2, 0.99, '2005-06-19 01:34:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5092, 187, 2, 5.99, '2005-06-19 16:05:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5093, 187, 2, 2.99, '2005-06-21 15:54:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5094, 187, 1, 10.99, '2005-07-06 10:26:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5095, 187, 1, 4.99, '2005-07-07 22:32:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5096, 187, 2, 0.99, '2005-07-09 18:28:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5097, 187, 1, 8.99, '2005-07-10 11:50:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5098, 187, 1, 6.99, '2005-07-10 16:39:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5099, 187, 2, 3.99, '2005-07-11 04:03:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5100, 187, 1, 2.99, '2005-07-12 00:01:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5101, 187, 1, 4.99, '2005-07-27 12:26:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5102, 187, 1, 7.99, '2005-07-28 09:16:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5103, 187, 2, 7.99, '2005-07-28 13:56:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5104, 187, 2, 2.99, '2005-07-30 13:58:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5105, 187, 1, 2.99, '2005-08-17 13:14:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5106, 187, 1, 8.99, '2005-08-18 05:48:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5107, 187, 2, 9.99, '2005-08-18 12:48:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5108, 187, 2, 7.99, '2005-08-18 14:04:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5109, 187, 1, 8.99, '2005-08-20 17:28:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5110, 187, 1, 8.99, '2005-08-22 02:27:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5111, 187, 2, 4.99, '2005-08-22 17:32:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5112, 187, 2, 2.99, '2005-08-23 03:13:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5113, 187, 2, 7.99, '2005-08-23 19:59:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5114, 188, 2, 2.99, '2005-06-16 00:31:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5115, 188, 2, 0.99, '2005-06-17 06:48:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5116, 188, 1, 4.99, '2005-06-18 23:57:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5117, 188, 2, 4.99, '2005-06-19 15:21:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5118, 188, 2, 3.99, '2005-07-06 16:47:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5119, 188, 1, 2.99, '2005-07-07 08:43:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5120, 188, 1, 2.99, '2005-07-09 18:08:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5121, 188, 2, 5.99, '2005-07-10 11:27:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5122, 188, 2, 4.99, '2005-07-12 05:08:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5123, 188, 1, 0.99, '2005-07-27 03:20:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5124, 188, 1, 4.99, '2005-07-27 22:17:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5125, 188, 1, 4.99, '2005-07-31 03:58:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5126, 188, 1, 5.99, '2005-08-01 09:13:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5127, 188, 2, 0.99, '2005-08-01 10:45:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5128, 188, 1, 4.99, '2005-08-01 19:00:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5129, 188, 2, 4.99, '2005-08-01 20:22:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5130, 188, 1, 2.99, '2005-08-02 18:16:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5131, 188, 1, 2.99, '2005-08-20 05:04:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5132, 188, 2, 5.99, '2005-08-20 12:15:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5133, 188, 1, 2.99, '2005-08-21 10:33:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5134, 188, 2, 2.99, '2005-08-21 14:22:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5135, 188, 1, 2.99, '2005-08-22 01:00:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5136, 188, 2, 2.99, '2005-08-22 20:17:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5137, 188, 2, 0.99, '2005-08-22 23:26:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5138, 188, 2, 4.99, '2005-08-23 01:39:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5139, 189, 1, 5.99, '2005-05-31 16:15:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5140, 189, 2, 0.99, '2005-06-16 01:15:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5141, 189, 1, 0.99, '2005-06-16 22:49:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5142, 189, 2, 1.99, '2005-06-20 02:56:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5143, 189, 2, 6.99, '2005-06-20 17:28:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5144, 189, 2, 2.99, '2005-06-21 11:06:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5145, 189, 1, 0.99, '2005-07-06 12:56:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5146, 189, 2, 4.99, '2005-07-06 15:23:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5147, 189, 2, 0.99, '2005-07-07 11:24:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5148, 189, 2, 5.99, '2005-07-11 11:46:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5149, 189, 2, 4.99, '2005-07-27 18:57:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5150, 189, 2, 4.99, '2005-07-28 02:55:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5151, 189, 2, 2.99, '2005-07-28 07:22:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5152, 189, 1, 5.99, '2005-07-30 11:36:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5153, 189, 2, 0.99, '2005-07-30 19:26:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5154, 189, 1, 4.99, '2005-07-31 00:19:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5155, 189, 2, 9.99, '2005-08-01 02:34:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5156, 189, 1, 6.99, '2005-08-02 06:41:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5157, 189, 2, 6.99, '2005-08-20 06:01:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5158, 189, 2, 3.99, '2005-08-20 11:42:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5159, 189, 2, 1.99, '2005-08-23 13:24:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5160, 189, 1, 5.99, '2005-08-23 21:04:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5161, 190, 1, 4.99, '2005-05-27 16:22:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5162, 190, 2, 2.99, '2005-05-29 01:42:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5163, 190, 2, 2.99, '2005-06-15 10:39:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5164, 190, 1, 2.99, '2005-06-15 12:43:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5165, 190, 1, 4.99, '2005-06-17 15:31:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5166, 190, 1, 3.99, '2005-06-19 04:09:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5167, 190, 2, 4.99, '2005-06-21 14:21:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5168, 190, 1, 5.99, '2005-07-07 00:22:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5169, 190, 2, 2.99, '2005-07-07 08:19:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5170, 190, 1, 3.99, '2005-07-12 20:06:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5171, 190, 2, 4.99, '2005-07-27 08:03:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5172, 190, 1, 5.99, '2005-07-27 15:52:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5173, 190, 2, 2.99, '2005-07-27 16:24:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5174, 190, 2, 0.99, '2005-07-29 09:07:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5175, 190, 2, 5.99, '2005-08-02 07:30:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5176, 190, 2, 6.99, '2005-08-02 09:58:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5177, 190, 2, 4.99, '2005-08-02 14:28:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5178, 190, 2, 6.99, '2005-08-02 15:56:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5179, 190, 1, 0.99, '2005-08-17 09:07:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5180, 190, 1, 9.99, '2005-08-17 17:13:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5181, 190, 1, 2.99, '2005-08-18 04:32:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5182, 190, 2, 0.99, '2005-08-18 08:31:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5183, 190, 2, 0.99, '2005-08-20 22:40:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5184, 190, 1, 4.99, '2005-08-21 02:07:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5185, 190, 2, 2.99, '2005-08-21 02:59:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5186, 190, 2, 0.99, '2005-08-21 19:24:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5187, 190, 2, 4.99, '2005-08-22 15:08:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5188, 191, 2, 2.99, '2005-05-31 19:14:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5189, 191, 1, 4.99, '2005-05-31 21:32:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5190, 191, 2, 2.99, '2005-06-14 23:54:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5191, 191, 2, 0.99, '2005-06-15 08:09:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5192, 191, 2, 2.99, '2005-06-16 11:07:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5193, 191, 2, 2.99, '2005-06-17 02:24:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5194, 191, 1, 4.99, '2005-06-17 15:10:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5195, 191, 1, 2.99, '2005-06-19 03:07:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5196, 191, 1, 2.99, '2005-07-09 17:07:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5197, 191, 2, 5.99, '2005-07-09 19:43:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5198, 191, 2, 5.99, '2005-07-10 21:41:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5199, 191, 2, 6.99, '2005-07-27 07:11:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5200, 191, 2, 3.99, '2005-07-27 18:18:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5201, 191, 1, 2.99, '2005-07-27 21:02:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5202, 191, 2, 0.99, '2005-07-29 12:04:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5203, 191, 1, 4.99, '2005-07-30 16:26:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5204, 191, 1, 4.99, '2005-07-31 16:17:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5205, 191, 1, 2.99, '2005-08-01 12:06:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5206, 191, 1, 0.99, '2005-08-21 09:18:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5207, 191, 2, 4.99, '2005-08-22 22:12:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5208, 192, 1, 1.99, '2005-05-30 08:50:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5209, 192, 2, 3.99, '2005-06-19 17:16:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5210, 192, 2, 2.99, '2005-07-06 19:25:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5211, 192, 1, 4.99, '2005-07-08 00:18:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5212, 192, 1, 2.99, '2005-07-09 19:56:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5213, 192, 2, 0.99, '2005-07-11 13:27:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5214, 192, 1, 0.99, '2005-07-12 12:26:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5215, 192, 2, 2.99, '2005-07-27 07:02:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5216, 192, 1, 0.99, '2005-07-28 16:56:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5217, 192, 1, 7.99, '2005-07-29 02:29:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5218, 192, 2, 7.99, '2005-07-30 22:30:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5219, 192, 1, 2.99, '2005-07-31 11:59:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5220, 192, 2, 0.99, '2005-08-01 02:08:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5221, 192, 1, 7.99, '2005-08-01 23:43:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5222, 192, 2, 4.99, '2005-08-02 18:23:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5223, 192, 1, 4.99, '2005-08-17 03:44:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5224, 192, 2, 4.99, '2005-08-17 12:13:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5225, 192, 2, 5.99, '2005-08-19 11:57:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5226, 192, 2, 4.99, '2005-08-21 02:13:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5227, 192, 2, 7.99, '2005-08-21 05:16:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5228, 192, 1, 4.99, '2005-08-21 10:43:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5229, 192, 1, 6.99, '2005-08-21 20:43:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5230, 192, 2, 2.99, '2005-08-23 15:59:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5231, 193, 1, 2.99, '2005-05-26 16:29:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5232, 193, 1, 0.99, '2005-05-27 20:42:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5233, 193, 2, 4.99, '2005-06-15 11:03:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5234, 193, 1, 6.99, '2005-06-18 14:56:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5235, 193, 2, 6.99, '2005-06-19 22:21:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5236, 193, 2, 4.99, '2005-06-19 22:52:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5237, 193, 2, 2.99, '2005-06-20 01:24:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5238, 193, 1, 8.99, '2005-06-21 07:08:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5239, 193, 1, 6.99, '2005-07-08 20:06:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5240, 193, 1, 2.99, '2005-07-28 23:34:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5241, 193, 2, 4.99, '2005-07-29 05:29:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5242, 193, 2, 4.99, '2005-07-29 07:12:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5243, 193, 1, 2.99, '2005-07-30 08:02:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5244, 193, 1, 4.99, '2005-07-31 02:51:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5245, 193, 2, 2.99, '2005-08-01 09:38:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5246, 193, 1, 0.99, '2005-08-18 08:36:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5247, 193, 1, 4.99, '2005-08-18 19:05:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5248, 193, 1, 2.99, '2005-08-20 03:07:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5249, 193, 2, 0.99, '2005-08-20 06:10:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5250, 193, 1, 2.99, '2005-08-21 20:14:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5251, 193, 1, 4.99, '2005-08-22 05:31:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5252, 193, 1, 4.99, '2005-08-22 14:47:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5253, 193, 2, 6.99, '2005-08-22 21:01:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5254, 193, 1, 5.99, '2005-08-23 02:26:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5255, 193, 2, 2.99, '2005-08-23 11:31:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5256, 194, 2, 4.99, '2005-05-27 03:03:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5257, 194, 1, 7.99, '2005-05-28 23:00:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5258, 194, 1, 0.99, '2005-06-15 18:24:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5259, 194, 2, 7.99, '2005-06-18 04:52:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5260, 194, 1, 2.99, '2005-06-18 12:12:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5261, 194, 1, 3.99, '2005-06-18 20:01:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5262, 194, 1, 3.99, '2005-06-19 19:32:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5263, 194, 2, 7.99, '2005-07-07 12:48:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5264, 194, 2, 2.99, '2005-07-09 08:14:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5265, 194, 2, 2.99, '2005-07-09 15:15:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5266, 194, 1, 3.99, '2005-07-10 20:09:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5267, 194, 2, 7.99, '2005-07-30 07:24:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5268, 194, 1, 5.99, '2005-08-02 21:55:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5269, 194, 2, 3.99, '2005-08-19 02:12:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5270, 194, 2, 0.99, '2005-08-20 02:29:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5271, 194, 2, 7.99, '2005-08-20 06:30:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5272, 194, 1, 4.99, '2005-08-21 11:59:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5273, 194, 2, 4.99, '2005-08-23 18:43:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5274, 195, 1, 6.99, '2005-07-07 13:01:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5275, 195, 2, 2.99, '2005-07-07 17:40:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5276, 195, 2, 4.99, '2005-07-09 12:26:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5277, 195, 2, 0.99, '2005-07-10 02:29:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5278, 195, 2, 4.99, '2005-07-11 10:44:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5279, 195, 1, 2.99, '2005-07-27 14:33:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5280, 195, 1, 4.99, '2005-07-29 01:45:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5281, 195, 2, 0.99, '2005-07-29 08:42:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5282, 195, 1, 6.99, '2005-07-30 12:19:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5283, 195, 2, 5.99, '2005-07-31 13:22:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5284, 195, 1, 4.99, '2005-07-31 17:30:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5285, 195, 1, 4.99, '2005-08-02 01:58:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5286, 195, 2, 7.99, '2005-08-02 11:49:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5287, 195, 2, 2.99, '2005-08-17 10:59:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5288, 195, 2, 0.99, '2005-08-17 22:38:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5289, 195, 2, 0.99, '2005-08-19 05:39:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5290, 195, 1, 0.99, '2005-08-20 10:48:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5291, 195, 2, 7.99, '2005-08-21 23:11:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5292, 195, 1, 11.99, '2005-08-23 22:19:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5293, 196, 1, 11.99, '2005-05-25 18:18:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5294, 196, 1, 5.99, '2005-05-26 04:21:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5295, 196, 2, 2.99, '2005-05-28 00:13:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5296, 196, 2, 1.99, '2005-05-31 07:12:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5297, 196, 2, 5.99, '2005-06-15 00:45:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5298, 196, 1, 2.99, '2005-06-15 12:45:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5299, 196, 2, 0.99, '2005-06-16 06:04:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5300, 196, 1, 0.99, '2005-06-19 12:15:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5301, 196, 2, 4.99, '2005-06-20 03:32:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5302, 196, 2, 4.99, '2005-06-20 17:06:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5303, 196, 2, 5.99, '2005-06-21 05:16:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5304, 196, 2, 4.99, '2005-06-21 10:46:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5305, 196, 1, 2.99, '2005-07-08 19:34:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5306, 196, 2, 4.99, '2005-07-09 01:12:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5307, 196, 1, 4.99, '2005-07-09 08:07:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5308, 196, 1, 3.99, '2005-07-09 18:04:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5309, 196, 2, 4.99, '2005-07-10 13:15:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5310, 196, 2, 4.99, '2005-07-12 19:53:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5311, 196, 2, 3.99, '2005-07-28 02:35:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5312, 196, 1, 0.99, '2005-07-29 01:20:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5313, 196, 1, 1.99, '2005-07-29 08:36:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5314, 196, 1, 0.99, '2005-07-29 16:56:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5315, 196, 1, 5.99, '2005-07-30 18:13:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5316, 196, 1, 6.99, '2005-07-31 08:28:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5317, 196, 1, 4.99, '2005-07-31 11:07:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5318, 196, 2, 10.99, '2005-07-31 21:29:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5319, 196, 2, 4.99, '2005-08-01 00:28:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5320, 196, 2, 2.99, '2005-08-02 08:09:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5321, 196, 2, 0.99, '2005-08-18 10:32:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5322, 196, 2, 0.99, '2005-08-18 19:51:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5323, 196, 2, 0.99, '2005-08-19 01:48:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5324, 196, 1, 0.99, '2005-08-20 02:22:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5325, 196, 1, 8.99, '2005-08-20 12:36:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5326, 196, 1, 5.99, '2005-08-21 10:54:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5327, 196, 2, 5.99, '2005-08-21 20:49:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5328, 196, 2, 0.99, '2005-08-23 20:10:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5329, 197, 1, 2.99, '2005-05-25 16:03:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5330, 197, 2, 0.99, '2005-05-26 09:02:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5331, 197, 2, 2.99, '2005-05-27 11:03:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5332, 197, 2, 1.99, '2005-05-28 19:35:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5333, 197, 1, 2.99, '2005-05-29 00:09:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5334, 197, 2, 3.99, '2005-05-29 07:00:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5335, 197, 2, 3.99, '2005-05-30 10:11:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5336, 197, 1, 0.99, '2005-05-30 11:32:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5337, 197, 2, 2.99, '2005-06-15 00:15:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5338, 197, 2, 0.99, '2005-06-15 14:05:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5339, 197, 2, 2.99, '2005-06-15 22:07:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5340, 197, 1, 8.99, '2005-06-16 06:17:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5341, 197, 2, 4.99, '2005-06-17 05:40:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5342, 197, 1, 2.99, '2005-06-17 18:06:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5343, 197, 1, 4.99, '2005-06-19 16:37:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5344, 197, 2, 2.99, '2005-06-19 18:24:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5345, 197, 2, 8.99, '2005-07-08 01:09:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5346, 197, 1, 4.99, '2005-07-08 13:25:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5347, 197, 1, 6.99, '2005-07-09 10:08:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5348, 197, 2, 0.99, '2005-07-09 17:27:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5349, 197, 2, 2.99, '2005-07-28 21:23:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5350, 197, 2, 4.99, '2005-07-30 19:12:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5351, 197, 1, 0.99, '2005-07-30 23:06:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5352, 197, 2, 4.99, '2005-07-31 03:05:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5353, 197, 2, 3.99, '2005-08-01 09:31:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5354, 197, 1, 0.99, '2005-08-01 16:56:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5355, 197, 2, 4.99, '2005-08-01 19:46:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5356, 197, 2, 2.99, '2005-08-01 19:55:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5357, 197, 2, 4.99, '2005-08-02 05:27:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5358, 197, 1, 4.99, '2005-08-02 12:20:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5359, 197, 2, 4.99, '2005-08-02 15:53:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5360, 197, 2, 2.99, '2005-08-02 22:09:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5361, 197, 1, 1.99, '2005-08-17 04:49:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5362, 197, 2, 0.99, '2005-08-19 00:27:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5363, 197, 1, 3.99, '2005-08-20 16:37:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5364, 197, 2, 9.99, '2005-08-20 22:51:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5365, 197, 1, 4.99, '2005-08-22 06:19:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5366, 197, 1, 2.99, '2005-08-22 11:09:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5367, 197, 1, 0.99, '2005-08-22 17:41:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5368, 197, 2, 8.99, '2005-08-23 04:12:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5369, 198, 2, 0.99, '2005-05-27 06:37:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5370, 198, 1, 4.99, '2005-05-28 11:33:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5371, 198, 1, 2.99, '2005-05-28 18:25:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5372, 198, 1, 2.99, '2005-05-30 12:55:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5373, 198, 2, 4.99, '2005-05-31 18:44:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5374, 198, 1, 0.99, '2005-06-18 01:12:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5375, 198, 1, 2.99, '2005-07-06 13:14:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5376, 198, 2, 2.99, '2005-07-08 06:18:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5377, 198, 2, 0.99, '2005-07-08 14:07:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5378, 198, 1, 4.99, '2005-07-10 14:34:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5379, 198, 2, 4.99, '2005-07-12 05:43:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5380, 198, 2, 4.99, '2005-07-12 18:21:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5381, 198, 1, 4.99, '2005-07-12 21:01:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5382, 198, 2, 0.99, '2005-07-27 12:24:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5383, 198, 2, 5.99, '2005-07-27 17:46:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5384, 198, 1, 2.99, '2005-07-27 23:15:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5385, 198, 2, 0.99, '2005-07-28 00:37:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5386, 198, 1, 5.99, '2005-07-28 20:34:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5387, 198, 1, 0.99, '2005-07-30 19:27:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5388, 198, 1, 4.99, '2005-07-31 21:08:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5389, 198, 2, 2.99, '2005-07-31 22:18:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5390, 198, 2, 0.99, '2005-08-01 17:27:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5391, 198, 1, 3.99, '2005-08-02 17:28:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5392, 198, 1, 6.99, '2005-08-17 02:47:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5393, 198, 1, 2.99, '2005-08-17 09:29:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5394, 198, 2, 4.99, '2005-08-17 13:03:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5395, 198, 1, 2.99, '2005-08-17 17:12:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5396, 198, 2, 1.99, '2005-08-17 17:22:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5397, 198, 2, 2.99, '2005-08-17 18:19:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5398, 198, 2, 4.99, '2005-08-18 16:24:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5399, 198, 2, 5.99, '2005-08-19 02:31:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5400, 198, 2, 5.99, '2005-08-20 11:43:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5401, 198, 2, 5.99, '2005-08-21 04:30:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5402, 198, 2, 2.99, '2005-08-21 09:53:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5403, 198, 1, 4.99, '2005-08-22 07:48:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5404, 198, 2, 6.99, '2005-08-22 18:20:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5405, 198, 1, 4.99, '2005-08-23 00:27:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5406, 199, 2, 7.99, '2005-05-28 01:05:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5407, 199, 1, 4.99, '2005-06-15 16:44:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5408, 199, 1, 2.99, '2005-06-17 05:11:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5409, 199, 2, 0.99, '2005-06-21 07:23:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5410, 199, 1, 2.99, '2005-07-08 02:08:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5411, 199, 1, 8.99, '2005-07-08 06:04:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5412, 199, 1, 4.99, '2005-07-09 00:03:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5413, 199, 2, 2.99, '2005-07-09 19:44:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5414, 199, 2, 5.99, '2005-07-10 08:47:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5415, 199, 2, 2.99, '2005-07-12 11:37:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5416, 199, 1, 4.99, '2005-07-12 16:23:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5417, 199, 2, 4.99, '2005-07-28 07:13:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5418, 199, 1, 0.99, '2005-07-29 17:25:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5419, 199, 2, 2.99, '2005-07-31 09:22:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5420, 199, 2, 4.99, '2005-07-31 14:07:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5421, 199, 2, 4.99, '2005-07-31 16:04:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5422, 199, 1, 2.99, '2005-08-01 00:34:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5423, 199, 2, 4.99, '2005-08-01 11:41:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5424, 199, 1, 8.99, '2005-08-01 23:53:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5425, 199, 1, 2.99, '2005-08-02 21:04:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5426, 199, 1, 0.99, '2005-08-18 08:45:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5427, 199, 1, 2.99, '2005-08-20 17:58:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5428, 199, 2, 4.99, '2005-08-21 08:04:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5429, 199, 2, 0.99, '2005-08-22 23:37:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5430, 199, 1, 3.99, '2005-08-23 12:41:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5431, 200, 1, 9.99, '2005-05-26 16:20:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5432, 200, 2, 1.99, '2005-06-15 09:23:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5433, 200, 2, 4.99, '2005-06-15 10:10:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5434, 200, 1, 6.99, '2005-06-17 04:29:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5435, 200, 1, 4.99, '2005-06-18 03:43:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5436, 200, 1, 3.99, '2005-06-19 11:28:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5437, 200, 2, 4.99, '2005-06-19 14:46:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5438, 200, 1, 3.99, '2005-06-20 23:27:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5439, 200, 1, 4.99, '2005-07-06 03:48:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5440, 200, 1, 2.99, '2005-07-09 06:57:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5441, 200, 2, 0.99, '2005-07-11 08:02:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5442, 200, 2, 2.99, '2005-07-11 10:21:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5443, 200, 1, 4.99, '2005-07-11 11:10:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5444, 200, 2, 3.99, '2005-07-26 23:42:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5445, 200, 1, 2.99, '2005-07-27 22:53:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5446, 200, 2, 3.99, '2005-07-29 05:15:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5447, 200, 1, 2.99, '2005-07-29 08:15:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5448, 200, 1, 6.99, '2005-07-31 01:02:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5449, 200, 1, 2.99, '2005-08-01 17:49:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5450, 200, 2, 8.99, '2005-08-02 17:42:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5451, 200, 2, 2.99, '2005-08-17 14:04:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5452, 200, 2, 5.99, '2005-08-20 10:41:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5453, 200, 2, 10.99, '2005-08-20 21:31:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5454, 200, 2, 6.99, '2005-08-21 15:01:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5455, 200, 2, 4.99, '2005-08-23 09:53:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5456, 200, 2, 5.99, '2005-08-23 12:11:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5457, 200, 1, 6.99, '2005-08-23 19:35:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5458, 201, 2, 3.99, '2005-05-26 22:51:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5459, 201, 2, 6.99, '2005-05-28 22:04:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5460, 201, 1, 5.99, '2005-05-29 10:28:45'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5461, 201, 1, 1.99, '2005-06-17 14:40:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5462, 201, 1, 3.99, '2005-06-17 23:30:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5463, 201, 1, 6.99, '2005-06-18 13:04:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5464, 201, 1, 4.99, '2005-06-20 17:18:06'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5465, 201, 1, 7.99, '2005-06-21 12:37:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5466, 201, 2, 4.99, '2005-07-06 01:13:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5467, 201, 1, 6.99, '2005-07-06 10:23:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5468, 201, 2, 0.99, '2005-07-27 05:21:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5469, 201, 2, 2.99, '2005-07-28 00:02:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5470, 201, 1, 0.99, '2005-07-30 18:35:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5471, 201, 1, 5.99, '2005-08-01 20:06:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5472, 201, 1, 3.99, '2005-08-02 00:22:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5473, 201, 1, 0.99, '2005-08-02 01:09:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5474, 201, 2, 0.99, '2005-08-17 11:51:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5475, 201, 1, 4.99, '2005-08-19 10:10:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5476, 201, 1, 9.99, '2005-08-20 06:23:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5477, 201, 1, 3.99, '2005-08-20 08:27:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5478, 201, 2, 2.99, '2005-08-20 08:27:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5479, 201, 1, 2.99, '2005-08-21 19:39:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5480, 201, 1, 2.99, '2005-08-22 06:59:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5481, 201, 2, 2.99, '2005-08-23 16:54:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5482, 201, 2, 5.99, '2005-08-23 20:06:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5483, 202, 2, 2.99, '2005-06-15 20:55:42'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5484, 202, 2, 4.99, '2005-06-16 00:52:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5485, 202, 1, 0.99, '2005-06-20 10:23:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5486, 202, 1, 0.99, '2005-06-20 20:27:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5487, 202, 2, 8.99, '2005-07-06 17:24:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5488, 202, 1, 4.99, '2005-07-08 05:20:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5489, 202, 1, 2.99, '2005-07-09 10:31:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5490, 202, 2, 2.99, '2005-07-09 15:32:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5491, 202, 1, 2.99, '2005-07-10 17:04:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5492, 202, 1, 2.99, '2005-07-28 00:13:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5493, 202, 2, 2.99, '2005-07-29 04:50:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5494, 202, 2, 2.99, '2005-07-29 20:15:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5495, 202, 2, 2.99, '2005-07-29 22:34:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5496, 202, 2, 0.99, '2005-07-30 02:28:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5497, 202, 1, 2.99, '2005-07-30 07:14:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5498, 202, 2, 8.99, '2005-07-30 22:45:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5499, 202, 2, 4.99, '2005-07-31 09:20:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5500, 202, 2, 2.99, '2005-08-01 06:26:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5501, 202, 1, 4.99, '2005-08-02 12:15:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5502, 202, 2, 0.99, '2005-08-16 23:39:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5503, 202, 2, 4.99, '2005-08-17 16:22:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5504, 202, 2, 8.99, '2005-08-19 00:27:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5505, 202, 2, 4.99, '2005-08-19 14:40:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5506, 202, 2, 3.99, '2005-08-20 03:03:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5507, 202, 2, 3.99, '2005-08-20 20:59:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5508, 202, 1, 0.99, '2005-08-22 11:41:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5509, 202, 1, 4.99, '2005-08-23 13:22:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5510, 203, 2, 0.99, '2005-05-26 23:09:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5511, 203, 1, 4.99, '2005-06-15 03:24:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5512, 203, 1, 2.99, '2005-06-16 14:37:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5513, 203, 2, 7.99, '2005-06-20 05:18:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5514, 203, 1, 2.99, '2005-06-21 16:00:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5515, 203, 1, 2.99, '2005-07-07 08:15:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5516, 203, 1, 5.99, '2005-07-10 04:04:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5517, 203, 1, 6.99, '2005-07-28 07:19:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5518, 203, 1, 0.99, '2005-07-28 16:35:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5519, 203, 1, 4.99, '2005-07-29 08:17:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5520, 203, 2, 7.99, '2005-07-29 20:56:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5521, 203, 2, 10.99, '2005-07-30 05:21:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5522, 203, 1, 3.99, '2005-08-01 18:26:31'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5523, 203, 1, 2.99, '2005-08-01 22:23:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5524, 203, 1, 2.99, '2005-08-17 07:32:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5525, 203, 2, 0.99, '2005-08-18 13:42:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5526, 203, 1, 4.99, '2005-08-20 14:25:18'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5527, 203, 2, 5.99, '2005-08-21 14:26:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5528, 203, 1, 2.99, '2005-08-23 14:23:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5529, 203, 2, 2.99, '2005-08-23 20:27:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5530, 204, 2, 0.99, '2005-05-26 14:35:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5531, 204, 2, 4.99, '2005-05-27 12:48:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5532, 204, 1, 4.99, '2005-05-30 02:01:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5533, 204, 1, 1.99, '2005-05-31 02:49:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5534, 204, 1, 2.99, '2005-06-15 10:49:17'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5535, 204, 2, 7.99, '2005-06-16 07:04:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5536, 204, 2, 4.99, '2005-06-17 02:25:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5537, 204, 1, 7.99, '2005-06-17 04:18:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5538, 204, 1, 2.99, '2005-06-18 01:15:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5539, 204, 1, 4.99, '2005-06-19 15:36:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5540, 204, 2, 0.99, '2005-07-07 03:09:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5541, 204, 2, 4.99, '2005-07-09 00:24:34'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5542, 204, 2, 0.99, '2005-07-09 08:13:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5543, 204, 2, 2.99, '2005-07-10 05:29:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5544, 204, 2, 4.99, '2005-07-11 01:34:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5545, 204, 1, 2.99, '2005-07-11 13:45:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5546, 204, 1, 0.99, '2005-07-12 09:31:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5547, 204, 1, 6.99, '2005-07-12 12:39:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5548, 204, 1, 2.99, '2005-07-12 20:13:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5549, 204, 2, 4.99, '2005-07-27 16:01:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5550, 204, 1, 0.99, '2005-07-30 05:04:58'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5551, 204, 1, 5.99, '2005-07-30 20:06:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5552, 204, 1, 4.99, '2005-07-31 14:38:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5553, 204, 2, 2.99, '2005-07-31 19:01:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5554, 204, 2, 5.99, '2005-08-01 07:13:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5555, 204, 1, 7.99, '2005-08-02 13:54:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5556, 204, 1, 0.99, '2005-08-17 14:58:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5557, 204, 1, 6.99, '2005-08-18 22:11:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5558, 204, 1, 0.99, '2005-08-19 10:27:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5559, 204, 2, 4.99, '2005-08-19 22:48:48'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5560, 204, 1, 2.99, '2005-08-20 16:05:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5561, 204, 2, 4.99, '2005-08-21 02:56:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5562, 204, 1, 0.99, '2005-08-22 03:23:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5563, 204, 1, 4.99, '2005-08-22 21:41:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5564, 204, 2, 11.99, '2005-08-22 23:48:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5565, 205, 1, 2.99, '2005-06-15 04:49:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5566, 205, 1, 4.99, '2005-06-15 13:26:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5567, 205, 2, 0.99, '2005-06-16 18:01:36'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5568, 205, 1, 5.99, '2005-06-18 04:17:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5569, 205, 2, 7.99, '2005-07-06 05:20:25'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5570, 205, 1, 3.99, '2005-07-07 12:46:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5571, 205, 1, 7.99, '2005-07-07 20:28:57'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5572, 205, 1, 4.99, '2005-07-08 12:59:40'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5573, 205, 1, 2.99, '2005-07-28 05:12:04'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5574, 205, 1, 7.99, '2005-07-28 14:13:24'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5575, 205, 2, 4.99, '2005-07-30 00:51:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5576, 205, 2, 4.99, '2005-07-31 20:14:08'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5577, 205, 1, 2.99, '2005-08-20 17:20:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5578, 205, 2, 0.99, '2005-08-21 08:36:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5579, 205, 1, 4.99, '2005-08-21 10:16:27'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5580, 205, 2, 2.99, '2005-08-21 12:00:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5581, 205, 1, 6.99, '2005-08-21 13:54:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5582, 205, 1, 0.99, '2005-08-22 23:54:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5583, 206, 2, 0.99, '2005-06-17 02:27:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5584, 206, 2, 5.99, '2005-06-18 20:58:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5585, 206, 1, 4.99, '2005-06-20 10:43:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5586, 206, 2, 5.99, '2005-07-06 01:26:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5587, 206, 1, 0.99, '2005-07-06 16:06:35'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5588, 206, 1, 4.99, '2005-07-06 16:44:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5589, 206, 1, 4.99, '2005-07-07 04:34:38'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5590, 206, 1, 4.99, '2005-07-07 06:36:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5591, 206, 2, 4.99, '2005-07-08 17:28:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5592, 206, 1, 3.99, '2005-07-11 08:39:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5593, 206, 1, 6.99, '2005-07-11 23:38:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5594, 206, 1, 4.99, '2005-07-27 09:38:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5595, 206, 1, 4.99, '2005-07-27 21:40:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5596, 206, 2, 5.99, '2005-07-28 23:44:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5597, 206, 1, 3.99, '2005-07-29 11:12:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5598, 206, 1, 2.99, '2005-07-30 23:05:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5599, 206, 2, 3.99, '2005-08-02 02:38:07'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5600, 206, 2, 2.99, '2005-08-02 05:35:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5601, 206, 1, 2.99, '2005-08-17 04:31:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5602, 206, 2, 4.99, '2005-08-19 12:04:16'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5603, 206, 2, 2.99, '2005-08-19 16:13:32'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5604, 206, 1, 10.99, '2005-08-19 17:26:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5605, 206, 1, 9.99, '2005-08-20 03:58:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5606, 206, 2, 0.99, '2005-08-20 09:16:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5607, 206, 2, 0.99, '2005-08-21 20:46:47'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5608, 206, 2, 7.99, '2005-08-23 09:42:21'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5609, 206, 1, 4.99, '2005-08-23 10:36:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5610, 207, 1, 0.99, '2005-05-25 04:51:46'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5611, 207, 1, 0.99, '2005-05-25 05:53:23'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5612, 207, 2, 0.99, '2005-05-28 20:27:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5613, 207, 1, 6.99, '2005-05-29 21:56:15'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5614, 207, 1, 3.99, '2005-05-30 09:03:52'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5615, 207, 1, 3.99, '2005-05-31 20:04:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5616, 207, 1, 3.99, '2005-06-17 07:51:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5617, 207, 2, 2.99, '2005-07-06 04:16:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5618, 207, 2, 9.99, '2005-07-06 09:38:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5619, 207, 1, 2.99, '2005-07-07 01:10:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5620, 207, 1, 5.99, '2005-07-08 12:12:33'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5621, 207, 2, 0.99, '2005-07-08 17:14:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5622, 207, 1, 0.99, '2005-07-09 01:26:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5623, 207, 1, 0.99, '2005-07-09 13:56:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5624, 207, 1, 4.99, '2005-07-09 14:02:50'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5625, 207, 2, 0.99, '2005-07-10 22:30:05'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5626, 207, 2, 5.99, '2005-07-12 01:17:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5627, 207, 1, 0.99, '2005-07-12 04:46:30'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5628, 207, 2, 5.99, '2005-07-27 12:57:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5629, 207, 1, 5.99, '2005-07-27 21:39:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5630, 207, 1, 5.99, '2005-07-29 21:18:59'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5631, 207, 2, 2.99, '2005-07-31 05:49:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5632, 207, 2, 3.99, '2005-08-01 01:56:20'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5633, 207, 1, 0.99, '2005-08-01 04:08:11'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5634, 207, 1, 2.99, '2005-08-02 08:25:14'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5635, 207, 1, 0.99, '2005-08-02 13:52:19'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5636, 207, 1, 5.99, '2005-08-02 14:44:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5637, 207, 2, 6.99, '2005-08-17 08:04:44'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5638, 207, 1, 6.99, '2005-08-17 22:56:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5639, 207, 1, 2.99, '2005-08-20 07:59:13'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5640, 207, 2, 8.99, '2005-08-20 12:56:03'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5641, 207, 2, 9.99, '2005-08-20 16:32:10'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5642, 207, 2, 3.99, '2005-08-20 18:02:41'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5643, 207, 1, 1.99, '2005-08-23 07:25:29'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5644, 208, 1, 4.99, '2005-05-25 16:50:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5645, 208, 1, 0.99, '2005-06-16 20:36:00'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5646, 208, 2, 5.99, '2005-06-17 08:19:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5647, 208, 2, 0.99, '2005-06-19 05:36:54'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5648, 208, 1, 2.99, '2005-06-19 13:25:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5649, 208, 1, 0.99, '2005-06-20 03:15:09'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5650, 208, 2, 2.99, '2005-07-06 15:20:37'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5651, 208, 2, 5.99, '2005-07-07 19:21:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5652, 208, 1, 4.99, '2005-07-09 00:36:02'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5653, 208, 2, 2.99, '2005-07-09 07:11:22'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5654, 208, 1, 2.99, '2005-07-10 09:35:43'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5655, 208, 1, 6.99, '2005-07-11 18:04:26'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5656, 208, 1, 1.99, '2005-07-12 15:46:55'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5657, 208, 2, 0.99, '2005-07-27 13:14:56'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5658, 208, 1, 2.99, '2005-07-28 10:02:01'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5659, 208, 2, 2.99, '2005-07-28 14:27:51'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5660, 208, 1, 1.99, '2005-07-29 18:56:12'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5661, 208, 2, 3.99, '2005-07-30 16:27:53'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5662, 208, 2, 4.99, '2005-07-31 12:18:49'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5663, 208, 2, 4.99, '2005-08-01 20:28:39'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5664, 208, 2, 5.99, '2005-08-01 21:24:28'); INSERT INTO payments (id, customer_id, staff_member_id, amount, payment_date) VALUES (5