--disable_query_log --disable_result_log CREATE TABLE actor ( actor_id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT, first_name VARCHAR(45) NOT NULL, last_name VARCHAR(45) NOT NULL, last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (actor_id), KEY idx_actor_last_name (last_name) )DEFAULT CHARSET=utf8; CREATE TABLE film ( film_id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT, title VARCHAR(255) NOT NULL, description TEXT DEFAULT NULL, release_year YEAR DEFAULT NULL, language_id TINYINT UNSIGNED NOT NULL, original_language_id TINYINT UNSIGNED DEFAULT NULL, rental_duration TINYINT UNSIGNED NOT NULL DEFAULT 3, rental_rate DECIMAL(4,2) NOT NULL DEFAULT 4.99, length SMALLINT UNSIGNED DEFAULT NULL, replacement_cost DECIMAL(5,2) NOT NULL DEFAULT 19.99, rating ENUM('G','PG','PG-13','R','NC-17') DEFAULT 'G', special_features SET('Trailers','Commentaries','Deleted Scenes','Behind the Scenes') DEFAULT NULL, last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (film_id), KEY idx_title (title), KEY idx_fk_language_id (language_id), KEY idx_fk_original_language_id (original_language_id) )DEFAULT CHARSET=utf8; CREATE TABLE film_actor ( actor_id SMALLINT UNSIGNED NOT NULL, film_id SMALLINT UNSIGNED NOT NULL, last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (actor_id,film_id), KEY idx_fk_film_id (`film_id`) )DEFAULT CHARSET=utf8; INSERT INTO actor VALUES (1,'PENELOPE','GUINESS','2006-02-15 04:34:33'),(2,'NICK','WAHLBERG','2006-02-15 04:34:33'),(3,'ED','CHASE','2006-02-15 04:34:33'),(4,'JENNIFER','DAVIS','2006-02-15 04:34:33'),(5,'JOHNNY','LOLLOBRIGIDA','2006-02-15 04:34:33'),(6,'BETTE','NICHOLSON','2006-02-15 04:34:33'),(7,'GRACE','MOSTEL','2006-02-15 04:34:33'),(8,'MATTHEW','JOHANSSON','2006-02-15 04:34:33'),(9,'JOE','SWANK','2006-02-15 04:34:33'),(10,'CHRISTIAN','GABLE','2006-02-15 04:34:33'),(11,'ZERO','CAGE','2006-02-15 04:34:33'),(12,'KARL','BERRY','2006-02-15 04:34:33'),(13,'UMA','WOOD','2006-02-15 04:34:33'),(14,'VIVIEN','BERGEN','2006-02-15 04:34:33'),(15,'CUBA','OLIVIER','2006-02-15 04:34:33'),(16,'FRED','COSTNER','2006-02-15 04:34:33'),(17,'HELEN','VOIGHT','2006-02-15 04:34:33'),(18,'DAN','TORN','2006-02-15 04:34:33'),(19,'BOB','FAWCETT','2006-02-15 04:34:33'),(20,'LUCILLE','TRACY','2006-02-15 04:34:33'),(21,'KIRSTEN','PALTROW','2006-02-15 04:34:33'),(22,'ELVIS','MARX','2006-02-15 04:34:33'),(23,'SANDRA','KILMER','2006-02-15 04:34:33'),(24,'CAMERON','STREEP','2006-02-15 04:34:33'),(25,'KEVIN','BLOOM','2006-02-15 04:34:33'),(26,'RIP','CRAWFORD','2006-02-15 04:34:33'),(27,'JULIA','MCQUEEN','2006-02-15 04:34:33'),(28,'WOODY','HOFFMAN','2006-02-15 04:34:33'),(29,'ALEC','WAYNE','2006-02-15 04:34:33'),(30,'SANDRA','PECK','2006-02-15 04:34:33'),(31,'SISSY','SOBIESKI','2006-02-15 04:34:33'),(32,'TIM','HACKMAN','2006-02-15 04:34:33'),(33,'MILLA','PECK','2006-02-15 04:34:33'),(34,'AUDREY','OLIVIER','2006-02-15 04:34:33'),(35,'JUDY','DEAN','2006-02-15 04:34:33'),(36,'BURT','DUKAKIS','2006-02-15 04:34:33'),(37,'VAL','BOLGER','2006-02-15 04:34:33'),(38,'TOM','MCKELLEN','2006-02-15 04:34:33'),(39,'GOLDIE','BRODY','2006-02-15 04:34:33'),(40,'JOHNNY','CAGE','2006-02-15 04:34:33'),(41,'JODIE','DEGENERES','2006-02-15 04:34:33'),(42,'TOM','MIRANDA','2006-02-15 04:34:33'),(43,'KIRK','JOVOVICH','2006-02-15 04:34:33'),(44,'NICK','STALLONE','2006-02-15 04:34:33'),(45,'REESE','KILMER','2006-02-15 04:34:33'),(46,'PARKER','GOLDBERG','2006-02-15 04:34:33'),(47,'JULIA','BARRYMORE','2006-02-15 04:34:33'),(48,'FRANCES','DAY-LEWIS','2006-02-15 04:34:33'),(49,'ANNE','CRONYN','2006-02-15 04:34:33'),(50,'NATALIE','HOPKINS','2006-02-15 04:34:33'),(51,'GARY','PHOENIX','2006-02-15 04:34:33'),(52,'CARMEN','HUNT','2006-02-15 04:34:33'),(53,'MENA','TEMPLE','2006-02-15 04:34:33'),(54,'PENELOPE','PINKETT','2006-02-15 04:34:33'),(55,'FAY','KILMER','2006-02-15 04:34:33'),(56,'DAN','HARRIS','2006-02-15 04:34:33'),(57,'JUDE','CRUISE','2006-02-15 04:34:33'),(58,'CHRISTIAN','AKROYD','2006-02-15 04:34:33'),(59,'DUSTIN','TAUTOU','2006-02-15 04:34:33'),(60,'HENRY','BERRY','2006-02-15 04:34:33'),(61,'CHRISTIAN','NEESON','2006-02-15 04:34:33'),(62,'JAYNE','NEESON','2006-02-15 04:34:33'),(63,'CAMERON','WRAY','2006-02-15 04:34:33'),(64,'RAY','JOHANSSON','2006-02-15 04:34:33'),(65,'ANGELA','HUDSON','2006-02-15 04:34:33'),(66,'MARY','TANDY','2006-02-15 04:34:33'),(67,'JESSICA','BAILEY','2006-02-15 04:34:33'),(68,'RIP','WINSLET','2006-02-15 04:34:33'),(69,'KENNETH','PALTROW','2006-02-15 04:34:33'),(70,'MICHELLE','MCCONAUGHEY','2006-02-15 04:34:33'),(71,'ADAM','GRANT','2006-02-15 04:34:33'),(72,'SEAN','WILLIAMS','2006-02-15 04:34:33'),(73,'GARY','PENN','2006-02-15 04:34:33'),(74,'MILLA','KEITEL','2006-02-15 04:34:33'),(75,'BURT','POSEY','2006-02-15 04:34:33'),(76,'ANGELINA','ASTAIRE','2006-02-15 04:34:33'),(77,'CARY','MCCONAUGHEY','2006-02-15 04:34:33'),(78,'GROUCHO','SINATRA','2006-02-15 04:34:33'),(79,'MAE','HOFFMAN','2006-02-15 04:34:33'),(80,'RALPH','CRUZ','2006-02-15 04:34:33'),(81,'SCARLETT','DAMON','2006-02-15 04:34:33'),(82,'WOODY','JOLIE','2006-02-15 04:34:33'),(83,'BEN','WILLIS','2006-02-15 04:34:33'),(84,'JAMES','PITT','2006-02-15 04:34:33'),(85,'MINNIE','ZELLWEGER','2006-02-15 04:34:33'),(86,'GREG','CHAPLIN','2006-02-15 04:34:33'),(87,'SPENCER','PECK','2006-02-15 04:34:33'),(88,'KENNETH','PESCI','2006-02-15 04:34:33'),(89,'CHARLIZE','DENCH','2006-02-15 04:34:33'),(90,'SEAN','GUINESS','2006-02-15 04:34:33'),(91,'CHRISTOPHER','BERRY','2006-02-15 04:34:33'),(92,'KIRSTEN','AKROYD','2006-02-15 04:34:33'),(93,'ELLEN','PRESLEY','2006-02-15 04:34:33'),(94,'KENNETH','TORN','2006-02-15 04:34:33'),(95,'DARYL','WAHLBERG','2006-02-15 04:34:33'),(96,'GENE','WILLIS','2006-02-15 04:34:33'),(97,'MEG','HAWKE','2006-02-15 04:34:33'),(98,'CHRIS','BRIDGES','2006-02-15 04:34:33'),(99,'JIM','MOSTEL','2006-02-15 04:34:33'),(100,'SPENCER','DEPP','2006-02-15 04:34:33'),(101,'SUSAN','DAVIS','2006-02-15 04:34:33'),(102,'WALTER','TORN','2006-02-15 04:34:33'),(103,'MATTHEW','LEIGH','2006-02-15 04:34:33'),(104,'PENELOPE','CRONYN','2006-02-15 04:34:33'),(105,'SIDNEY','CROWE','2006-02-15 04:34:33'),(106,'GROUCHO','DUNST','2006-02-15 04:34:33'),(107,'GINA','DEGENERES','2006-02-15 04:34:33'),(108,'WARREN','NOLTE','2006-02-15 04:34:33'),(109,'SYLVESTER','DERN','2006-02-15 04:34:33'),(110,'SUSAN','DAVIS','2006-02-15 04:34:33'),(111,'CAMERON','ZELLWEGER','2006-02-15 04:34:33'),(112,'RUSSELL','BACALL','2006-02-15 04:34:33'),(113,'MORGAN','HOPKINS','2006-02-15 04:34:33'),(114,'MORGAN','MCDORMAND','2006-02-15 04:34:33'),(115,'HARRISON','BALE','2006-02-15 04:34:33'),(116,'DAN','STREEP','2006-02-15 04:34:33'),(117,'RENEE','TRACY','2006-02-15 04:34:33'),(118,'CUBA','ALLEN','2006-02-15 04:34:33'),(119,'WARREN','JACKMAN','2006-02-15 04:34:33'),(120,'PENELOPE','MONROE','2006-02-15 04:34:33'),(121,'LIZA','BERGMAN','2006-02-15 04:34:33'),(122,'SALMA','NOLTE','2006-02-15 04:34:33'),(123,'JULIANNE','DENCH','2006-02-15 04:34:33'),(124,'SCARLETT','BENING','2006-02-15 04:34:33'),(125,'ALBERT','NOLTE','2006-02-15 04:34:33'),(126,'FRANCES','TOMEI','2006-02-15 04:34:33'),(127,'KEVIN','GARLAND','2006-02-15 04:34:33'),(128,'CATE','MCQUEEN','2006-02-15 04:34:33'),(129,'DARYL','CRAWFORD','2006-02-15 04:34:33'),(130,'GRETA','KEITEL','2006-02-15 04:34:33'),(131,'JANE','JACKMAN','2006-02-15 04:34:33'),(132,'ADAM','HOPPER','2006-02-15 04:34:33'),(133,'RICHARD','PENN','2006-02-15 04:34:33'),(134,'GENE','HOPKINS','2006-02-15 04:34:33'),(135,'RITA','REYNOLDS','2006-02-15 04:34:33'),(136,'ED','MANSFIELD','2006-02-15 04:34:33'),(137,'MORGAN','WILLIAMS','2006-02-15 04:34:33'),(138,'LUCILLE','DEE','2006-02-15 04:34:33'),(139,'EWAN','GOODING','2006-02-15 04:34:33'),(140,'WHOOPI','HURT','2006-02-15 04:34:33'),(141,'CATE','HARRIS','2006-02-15 04:34:33'),(142,'JADA','RYDER','2006-02-15 04:34:33'),(143,'RIVER','DEAN','2006-02-15 04:34:33'),(144,'ANGELA','WITHERSPOON','2006-02-15 04:34:33'),(145,'KIM','ALLEN','2006-02-15 04:34:33'),(146,'ALBERT','JOHANSSON','2006-02-15 04:34:33'),(147,'FAY','WINSLET','2006-02-15 04:34:33'),(148,'EMILY','DEE','2006-02-15 04:34:33'),(149,'RUSSELL','TEMPLE','2006-02-15 04:34:33'),(150,'JAYNE','NOLTE','2006-02-15 04:34:33'),(151,'GEOFFREY','HESTON','2006-02-15 04:34:33'),(152,'BEN','HARRIS','2006-02-15 04:34:33'),(153,'MINNIE','KILMER','2006-02-15 04:34:33'),(154,'MERYL','GIBSON','2006-02-15 04:34:33'),(155,'IAN','TANDY','2006-02-15 04:34:33'),(156,'FAY','WOOD','2006-02-15 04:34:33'),(157,'GRETA','MALDEN','2006-02-15 04:34:33'),(158,'VIVIEN','BASINGER','2006-02-15 04:34:33'),(159,'LAURA','BRODY','2006-02-15 04:34:33'),(160,'CHRIS','DEPP','2006-02-15 04:34:33'),(161,'HARVEY','HOPE','2006-02-15 04:34:33'),(162,'OPRAH','KILMER','2006-02-15 04:34:33'),(163,'CHRISTOPHER','WEST','2006-02-15 04:34:33'),(164,'HUMPHREY','WILLIS','2006-02-15 04:34:33'),(165,'AL','GARLAND','2006-02-15 04:34:33'),(166,'NICK','DEGENERES','2006-02-15 04:34:33'),(167,'LAURENCE','BULLOCK','2006-02-15 04:34:33'),(168,'WILL','WILSON','2006-02-15 04:34:33'),(169,'KENNETH','HOFFMAN','2006-02-15 04:34:33'),(170,'MENA','HOPPER','2006-02-15 04:34:33'),(171,'OLYMPIA','PFEIFFER','2006-02-15 04:34:33'),(172,'GROUCHO','WILLIAMS','2006-02-15 04:34:33'),(173,'ALAN','DREYFUSS','2006-02-15 04:34:33'),(174,'MICHAEL','BENING','2006-02-15 04:34:33'),(175,'WILLIAM','HACKMAN','2006-02-15 04:34:33'),(176,'JON','CHASE','2006-02-15 04:34:33'),(177,'GENE','MCKELLEN','2006-02-15 04:34:33'),(178,'LISA','MONROE','2006-02-15 04:34:33'),(179,'ED','GUINESS','2006-02-15 04:34:33'),(180,'JEFF','SILVERSTONE','2006-02-15 04:34:33'),(181,'MATTHEW','CARREY','2006-02-15 04:34:33'),(182,'DEBBIE','AKROYD','2006-02-15 04:34:33'),(183,'RUSSELL','CLOSE','2006-02-15 04:34:33'),(184,'HUMPHREY','GARLAND','2006-02-15 04:34:33'),(185,'MICHAEL','BOLGER','2006-02-15 04:34:33'),(186,'JULIA','ZELLWEGER','2006-02-15 04:34:33'),(187,'RENEE','BALL','2006-02-15 04:34:33'),(188,'ROCK','DUKAKIS','2006-02-15 04:34:33'),(189,'CUBA','BIRCH','2006-02-15 04:34:33'),(190,'AUDREY','BAILEY','2006-02-15 04:34:33'),(191,'GREGORY','GOODING','2006-02-15 04:34:33'),(192,'JOHN','SUVARI','2006-02-15 04:34:33'),(193,'BURT','TEMPLE','2006-02-15 04:34:33'),(194,'MERYL','ALLEN','2006-02-15 04:34:33'),(195,'JAYNE','SILVERSTONE','2006-02-15 04:34:33'),(196,'BELA','WALKEN','2006-02-15 04:34:33'),(197,'REESE','WEST','2006-02-15 04:34:33'),(198,'MARY','KEITEL','2006-02-15 04:34:33'),(199,'JULIA','FAWCETT','2006-02-15 04:34:33'),(200,'THORA','TEMPLE','2006-02-15 04:34:33'); INSERT INTO film VALUES (1,'ACADEMY DINOSAUR','A Epic Drama of a Feminist And a Mad Scientist who must Battle a Teacher in The Canadian Rockies',2006,1,NULL,6,'0.99',86,'20.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(2,'ACE GOLDFINGER','A Astounding Epistle of a Database Administrator And a Explorer who must Find a Car in Ancient China',2006,1,NULL,3,'4.99',48,'12.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(3,'ADAPTATION HOLES','A Astounding Reflection of a Lumberjack And a Car who must Sink a Lumberjack in A Baloon Factory',2006,1,NULL,7,'2.99',50,'18.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(4,'AFFAIR PREJUDICE','A Fanciful Documentary of a Frisbee And a Lumberjack who must Chase a Monkey in A Shark Tank',2006,1,NULL,5,'2.99',117,'26.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(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',2006,1,NULL,6,'2.99',130,'22.99','G','Deleted Scenes','2006-02-15 05:03:42'),(6,'AGENT TRUMAN','A Intrepid Panorama of a Robot And a Boy who must Escape a Sumo Wrestler in Ancient China',2006,1,NULL,3,'2.99',169,'17.99','PG','Deleted Scenes','2006-02-15 05:03:42'),(7,'AIRPLANE SIERRA','A Touching Saga of a Hunter And a Butler who must Discover a Butler in A Jet Boat',2006,1,NULL,6,'4.99',62,'28.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(8,'AIRPORT POLLOCK','A Epic Tale of a Moose And a Girl who must Confront a Monkey in Ancient India',2006,1,NULL,6,'4.99',54,'15.99','R','Trailers','2006-02-15 05:03:42'),(9,'ALABAMA DEVIL','A Thoughtful Panorama of a Database Administrator And a Mad Scientist who must Outgun a Mad Scientist in A Jet Boat',2006,1,NULL,3,'2.99',114,'21.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(10,'ALADDIN CALENDAR','A Action-Packed Tale of a Man And a Lumberjack who must Reach a Feminist in Ancient China',2006,1,NULL,6,'4.99',63,'24.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(11,'ALAMO VIDEOTAPE','A Boring Epistle of a Butler And a Cat who must Fight a Pastry Chef in A MySQL Convention',2006,1,NULL,6,'0.99',126,'16.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(12,'ALASKA PHANTOM','A Fanciful Saga of a Hunter And a Pastry Chef who must Vanquish a Boy in Australia',2006,1,NULL,6,'0.99',136,'22.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(13,'ALI FOREVER','A Action-Packed Drama of a Dentist And a Crocodile who must Battle a Feminist in The Canadian Rockies',2006,1,NULL,4,'4.99',150,'21.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(14,'ALICE FANTASIA','A Emotional Drama of a A Shark And a Database Administrator who must Vanquish a Pioneer in Soviet Georgia',2006,1,NULL,6,'0.99',94,'23.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(15,'ALIEN CENTER','A Brilliant Drama of a Cat And a Mad Scientist who must Battle a Feminist in A MySQL Convention',2006,1,NULL,5,'2.99',46,'10.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(16,'ALLEY EVOLUTION','A Fast-Paced Drama of a Robot And a Composer who must Battle a Astronaut in New Orleans',2006,1,NULL,6,'2.99',180,'23.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'),(17,'ALONE TRIP','A Fast-Paced Character Study of a Composer And a Dog who must Outgun a Boat in An Abandoned Fun House',2006,1,NULL,3,'0.99',82,'14.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(18,'ALTER VICTORY','A Thoughtful Drama of a Composer And a Feminist who must Meet a Secret Agent in The Canadian Rockies',2006,1,NULL,6,'0.99',57,'27.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(19,'AMADEUS HOLY','A Emotional Display of a Pioneer And a Technical Writer who must Battle a Man in A Baloon',2006,1,NULL,6,'0.99',113,'20.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(20,'AMELIE HELLFIGHTERS','A Boring Drama of a Woman And a Squirrel who must Conquer a Student in A Baloon',2006,1,NULL,4,'4.99',79,'23.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(21,'AMERICAN CIRCUS','A Insightful Drama of a Girl And a Astronaut who must Face a Database Administrator in A Shark Tank',2006,1,NULL,3,'4.99',129,'17.99','R','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(22,'AMISTAD MIDSUMMER','A Emotional Character Study of a Dentist And a Crocodile who must Meet a Sumo Wrestler in California',2006,1,NULL,6,'2.99',85,'10.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(23,'ANACONDA CONFESSIONS','A Lacklusture Display of a Dentist And a Dentist who must Fight a Girl in Australia',2006,1,NULL,3,'0.99',92,'9.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(24,'ANALYZE HOOSIERS','A Thoughtful Display of a Explorer And a Pastry Chef who must Overcome a Feminist in The Sahara Desert',2006,1,NULL,6,'2.99',181,'19.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(25,'ANGELS LIFE','A Thoughtful Display of a Woman And a Astronaut who must Battle a Robot in Berlin',2006,1,NULL,3,'2.99',74,'15.99','G','Trailers','2006-02-15 05:03:42'),(26,'ANNIE IDENTITY','A Amazing Panorama of a Pastry Chef And a Boat who must Escape a Woman in An Abandoned Amusement Park',2006,1,NULL,3,'0.99',86,'15.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(27,'ANONYMOUS HUMAN','A Amazing Reflection of a Database Administrator And a Astronaut who must Outrace a Database Administrator in A Shark Tank',2006,1,NULL,7,'0.99',179,'12.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(28,'ANTHEM LUKE','A Touching Panorama of a Waitress And a Woman who must Outrace a Dog in An Abandoned Amusement Park',2006,1,NULL,5,'4.99',91,'16.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(29,'ANTITRUST TOMATOES','A Fateful Yarn of a Womanizer And a Feminist who must Succumb a Database Administrator in Ancient India',2006,1,NULL,5,'2.99',168,'11.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(30,'ANYTHING SAVANNAH','A Epic Story of a Pastry Chef And a Woman who must Chase a Feminist in An Abandoned Fun House',2006,1,NULL,4,'2.99',82,'27.99','R','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(31,'APACHE DIVINE','A Awe-Inspiring Reflection of a Pastry Chef And a Teacher who must Overcome a Sumo Wrestler in A U-Boat',2006,1,NULL,5,'4.99',92,'16.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(32,'APOCALYPSE FLAMINGOS','A Astounding Story of a Dog And a Squirrel who must Defeat a Woman in An Abandoned Amusement Park',2006,1,NULL,6,'4.99',119,'11.99','R','Trailers,Commentaries','2006-02-15 05:03:42'),(33,'APOLLO TEEN','A Action-Packed Reflection of a Crocodile And a Explorer who must Find a Sumo Wrestler in An Abandoned Mine Shaft',2006,1,NULL,5,'2.99',153,'15.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(34,'ARABIA DOGMA','A Touching Epistle of a Madman And a Mad Cow who must Defeat a Student in Nigeria',2006,1,NULL,6,'0.99',62,'29.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(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',2006,1,NULL,4,'2.99',147,'24.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(36,'ARGONAUTS TOWN','A Emotional Epistle of a Forensic Psychologist And a Butler who must Challenge a Waitress in An Abandoned Mine Shaft',2006,1,NULL,7,'0.99',127,'12.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'),(37,'ARIZONA BANG','A Brilliant Panorama of a Mad Scientist And a Mad Cow who must Meet a Pioneer in A Monastery',2006,1,NULL,3,'2.99',121,'28.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(38,'ARK RIDGEMONT','A Beautiful Yarn of a Pioneer And a Monkey who must Pursue a Explorer in The Sahara Desert',2006,1,NULL,6,'0.99',68,'25.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(39,'ARMAGEDDON LOST','A Fast-Paced Tale of a Boat And a Teacher who must Succumb a Composer in An Abandoned Mine Shaft',2006,1,NULL,5,'0.99',99,'10.99','G','Trailers','2006-02-15 05:03:42'),(40,'ARMY FLINTSTONES','A Boring Saga of a Database Administrator And a Womanizer who must Battle a Waitress in Nigeria',2006,1,NULL,4,'0.99',148,'22.99','R','Trailers,Commentaries','2006-02-15 05:03:42'),(41,'ARSENIC INDEPENDENCE','A Fanciful Documentary of a Mad Cow And a Womanizer who must Find a Dentist in Berlin',2006,1,NULL,4,'0.99',137,'17.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(42,'ARTIST COLDBLOODED','A Stunning Reflection of a Robot And a Moose who must Challenge a Woman in California',2006,1,NULL,5,'2.99',170,'10.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(43,'ATLANTIS CAUSE','A Thrilling Yarn of a Feminist And a Hunter who must Fight a Technical Writer in A Shark Tank',2006,1,NULL,6,'2.99',170,'15.99','G','Behind the Scenes','2006-02-15 05:03:42'),(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',2006,1,NULL,5,'4.99',113,'21.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(45,'ATTRACTION NEWTON','A Astounding Panorama of a Composer And a Frisbee who must Reach a Husband in Ancient Japan',2006,1,NULL,5,'4.99',83,'14.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(46,'AUTUMN CROW','A Beautiful Tale of a Dentist And a Mad Cow who must Battle a Moose in The Sahara Desert',2006,1,NULL,3,'4.99',108,'13.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(47,'BABY HALL','A Boring Character Study of a A Shark And a Girl who must Outrace a Feminist in An Abandoned Mine Shaft',2006,1,NULL,5,'4.99',153,'23.99','NC-17','Commentaries','2006-02-15 05:03:42'),(48,'BACKLASH UNDEFEATED','A Stunning Character Study of a Mad Scientist And a Mad Cow who must Kill a Car in A Monastery',2006,1,NULL,3,'4.99',118,'24.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(49,'BADMAN DAWN','A Emotional Panorama of a Pioneer And a Composer who must Escape a Mad Scientist in A Jet Boat',2006,1,NULL,6,'2.99',162,'22.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(50,'BAKED CLEOPATRA','A Stunning Drama of a Forensic Psychologist And a Husband who must Overcome a Waitress in A Monastery',2006,1,NULL,3,'2.99',182,'20.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(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',2006,1,NULL,5,'2.99',75,'10.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'),(52,'BALLROOM MOCKINGBIRD','A Thrilling Documentary of a Composer And a Monkey who must Find a Feminist in California',2006,1,NULL,6,'0.99',173,'29.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(53,'BANG KWAI','A Epic Drama of a Madman And a Cat who must Face a A Shark in An Abandoned Amusement Park',2006,1,NULL,5,'2.99',87,'25.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(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',2006,1,NULL,5,'0.99',113,'15.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(55,'BARBARELLA STREETCAR','A Awe-Inspiring Story of a Feminist And a Cat who must Conquer a Dog in A Monastery',2006,1,NULL,6,'2.99',65,'27.99','G','Behind the Scenes','2006-02-15 05:03:42'),(56,'BAREFOOT MANCHURIAN','A Intrepid Story of a Cat And a Student who must Vanquish a Girl in An Abandoned Amusement Park',2006,1,NULL,6,'2.99',129,'15.99','G','Trailers,Commentaries','2006-02-15 05:03:42'),(57,'BASIC EASY','A Stunning Epistle of a Man And a Husband who must Reach a Mad Scientist in A Jet Boat',2006,1,NULL,4,'2.99',90,'18.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'),(58,'BEACH HEARTBREAKERS','A Fateful Display of a Womanizer And a Mad Scientist who must Outgun a A Shark in Soviet Georgia',2006,1,NULL,6,'2.99',122,'16.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(59,'BEAR GRACELAND','A Astounding Saga of a Dog And a Boy who must Kill a Teacher in The First Manned Space Station',2006,1,NULL,4,'2.99',160,'20.99','R','Deleted Scenes','2006-02-15 05:03:42'),(60,'BEAST HUNCHBACK','A Awe-Inspiring Epistle of a Student And a Squirrel who must Defeat a Boy in Ancient China',2006,1,NULL,3,'4.99',89,'22.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(61,'BEAUTY GREASE','A Fast-Paced Display of a Composer And a Moose who must Sink a Robot in An Abandoned Mine Shaft',2006,1,NULL,5,'4.99',175,'28.99','G','Trailers,Commentaries','2006-02-15 05:03:42'),(62,'BED HIGHBALL','A Astounding Panorama of a Lumberjack And a Dog who must Redeem a Woman in An Abandoned Fun House',2006,1,NULL,5,'2.99',106,'23.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(63,'BEDAZZLED MARRIED','A Astounding Character Study of a Madman And a Robot who must Meet a Mad Scientist in An Abandoned Fun House',2006,1,NULL,6,'0.99',73,'21.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(64,'BEETHOVEN EXORCIST','A Epic Display of a Pioneer And a Student who must Challenge a Butler in The Gulf of Mexico',2006,1,NULL,6,'0.99',151,'26.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(65,'BEHAVIOR RUNAWAY','A Unbelieveable Drama of a Student And a Husband who must Outrace a Sumo Wrestler in Berlin',2006,1,NULL,3,'4.99',100,'20.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(66,'BENEATH RUSH','A Astounding Panorama of a Man And a Monkey who must Discover a Man in The First Manned Space Station',2006,1,NULL,6,'0.99',53,'27.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(67,'BERETS AGENT','A Taut Saga of a Crocodile And a Boy who must Overcome a Technical Writer in Ancient China',2006,1,NULL,5,'2.99',77,'24.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'),(68,'BETRAYED REAR','A Emotional Character Study of a Boat And a Pioneer who must Find a Explorer in A Shark Tank',2006,1,NULL,5,'4.99',122,'26.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(69,'BEVERLY OUTLAW','A Fanciful Documentary of a Womanizer And a Boat who must Defeat a Madman in The First Manned Space Station',2006,1,NULL,3,'2.99',85,'21.99','R','Trailers','2006-02-15 05:03:42'),(70,'BIKINI BORROWERS','A Astounding Drama of a Astronaut And a Cat who must Discover a Woman in The First Manned Space Station',2006,1,NULL,7,'4.99',142,'26.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(71,'BILKO ANONYMOUS','A Emotional Reflection of a Teacher And a Man who must Meet a Cat in The First Manned Space Station',2006,1,NULL,3,'4.99',100,'25.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(72,'BILL OTHERS','A Stunning Saga of a Mad Scientist And a Forensic Psychologist who must Challenge a Squirrel in A MySQL Convention',2006,1,NULL,6,'2.99',93,'12.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'),(73,'BINGO TALENTED','A Touching Tale of a Girl And a Crocodile who must Discover a Waitress in Nigeria',2006,1,NULL,5,'2.99',150,'22.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'),(74,'BIRCH ANTITRUST','A Fanciful Panorama of a Husband And a Pioneer who must Outgun a Dog in A Baloon',2006,1,NULL,4,'4.99',162,'18.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(75,'BIRD INDEPENDENCE','A Thrilling Documentary of a Car And a Student who must Sink a Hunter in The Canadian Rockies',2006,1,NULL,6,'4.99',163,'14.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(76,'BIRDCAGE CASPER','A Fast-Paced Saga of a Frisbee And a Astronaut who must Overcome a Feminist in Ancient India',2006,1,NULL,4,'0.99',103,'23.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(77,'BIRDS PERDITION','A Boring Story of a Womanizer And a Pioneer who must Face a Dog in California',2006,1,NULL,5,'4.99',61,'15.99','G','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(78,'BLACKOUT PRIVATE','A Intrepid Yarn of a Pastry Chef And a Mad Scientist who must Challenge a Secret Agent in Ancient Japan',2006,1,NULL,7,'2.99',85,'12.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(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',2006,1,NULL,5,'0.99',114,'10.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(80,'BLANKET BEVERLY','A Emotional Documentary of a Student And a Girl who must Build a Boat in Nigeria',2006,1,NULL,7,'2.99',148,'21.99','G','Trailers','2006-02-15 05:03:42'),(81,'BLINDNESS GUN','A Touching Drama of a Robot And a Dentist who must Meet a Hunter in A Jet Boat',2006,1,NULL,6,'4.99',103,'29.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(82,'BLOOD ARGONAUTS','A Boring Drama of a Explorer And a Man who must Kill a Lumberjack in A Manhattan Penthouse',2006,1,NULL,3,'0.99',71,'13.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(83,'BLUES INSTINCT','A Insightful Documentary of a Boat And a Composer who must Meet a Forensic Psychologist in An Abandoned Fun House',2006,1,NULL,5,'2.99',50,'18.99','G','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(84,'BOILED DARES','A Awe-Inspiring Story of a Waitress And a Dog who must Discover a Dentist in Ancient Japan',2006,1,NULL,7,'4.99',102,'13.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'),(85,'BONNIE HOLOCAUST','A Fast-Paced Story of a Crocodile And a Robot who must Find a Moose in Ancient Japan',2006,1,NULL,4,'0.99',63,'29.99','G','Deleted Scenes','2006-02-15 05:03:42'),(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',2006,1,NULL,6,'4.99',121,'11.99','R','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(87,'BOONDOCK BALLROOM','A Fateful Panorama of a Crocodile And a Boy who must Defeat a Monkey in The Gulf of Mexico',2006,1,NULL,7,'0.99',76,'14.99','NC-17','Behind the Scenes','2006-02-15 05:03:42'),(88,'BORN SPINAL','A Touching Epistle of a Frisbee And a Husband who must Pursue a Student in Nigeria',2006,1,NULL,7,'4.99',179,'17.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(89,'BORROWERS BEDAZZLED','A Brilliant Epistle of a Teacher And a Sumo Wrestler who must Defeat a Man in An Abandoned Fun House',2006,1,NULL,7,'0.99',63,'22.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(90,'BOULEVARD MOB','A Fateful Epistle of a Moose And a Monkey who must Confront a Lumberjack in Ancient China',2006,1,NULL,3,'0.99',63,'11.99','R','Trailers','2006-02-15 05:03:42'),(91,'BOUND CHEAPER','A Thrilling Panorama of a Database Administrator And a Astronaut who must Challenge a Lumberjack in A Baloon',2006,1,NULL,5,'0.99',98,'17.99','PG','Behind the Scenes','2006-02-15 05:03:42'),(92,'BOWFINGER GABLES','A Fast-Paced Yarn of a Waitress And a Composer who must Outgun a Dentist in California',2006,1,NULL,7,'4.99',72,'19.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(93,'BRANNIGAN SUNRISE','A Amazing Epistle of a Moose And a Crocodile who must Outrace a Dog in Berlin',2006,1,NULL,4,'4.99',121,'27.99','PG','Trailers','2006-02-15 05:03:42'),(94,'BRAVEHEART HUMAN','A Insightful Story of a Dog And a Pastry Chef who must Battle a Girl in Berlin',2006,1,NULL,7,'2.99',176,'14.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(95,'BREAKFAST GOLDFINGER','A Beautiful Reflection of a Student And a Student who must Fight a Moose in Berlin',2006,1,NULL,5,'4.99',123,'18.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(96,'BREAKING HOME','A Beautiful Display of a Secret Agent And a Monkey who must Battle a Sumo Wrestler in An Abandoned Mine Shaft',2006,1,NULL,4,'2.99',169,'21.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'),(97,'BRIDE INTRIGUE','A Epic Tale of a Robot And a Monkey who must Vanquish a Man in New Orleans',2006,1,NULL,7,'0.99',56,'24.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(98,'BRIGHT ENCOUNTERS','A Fateful Yarn of a Lumberjack And a Feminist who must Conquer a Student in A Jet Boat',2006,1,NULL,4,'4.99',73,'12.99','PG-13','Trailers','2006-02-15 05:03:42'),(99,'BRINGING HYSTERICAL','A Fateful Saga of a A Shark And a Technical Writer who must Find a Woman in A Jet Boat',2006,1,NULL,7,'2.99',136,'14.99','PG','Trailers','2006-02-15 05:03:42'),(100,'BROOKLYN DESERT','A Beautiful Drama of a Dentist And a Composer who must Battle a Sumo Wrestler in The First Manned Space Station',2006,1,NULL,7,'4.99',161,'21.99','R','Commentaries','2006-02-15 05:03:42'),(101,'BROTHERHOOD BLANKET','A Fateful Character Study of a Butler And a Technical Writer who must Sink a Astronaut in Ancient Japan',2006,1,NULL,3,'0.99',73,'26.99','R','Behind the Scenes','2006-02-15 05:03:42'),(102,'BUBBLE GROSSE','A Awe-Inspiring Panorama of a Crocodile And a Moose who must Confront a Girl in A Baloon',2006,1,NULL,4,'4.99',60,'20.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(103,'BUCKET BROTHERHOOD','A Amazing Display of a Girl And a Womanizer who must Succumb a Lumberjack in A Baloon Factory',2006,1,NULL,7,'4.99',133,'27.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(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',2006,1,NULL,4,'2.99',119,'17.99','G','Commentaries','2006-02-15 05:03:42'),(105,'BULL SHAWSHANK','A Fanciful Drama of a Moose And a Squirrel who must Conquer a Pioneer in The Canadian Rockies',2006,1,NULL,6,'0.99',125,'21.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'),(106,'BULWORTH COMMANDMENTS','A Amazing Display of a Mad Cow And a Pioneer who must Redeem a Sumo Wrestler in The Outback',2006,1,NULL,4,'2.99',61,'14.99','G','Trailers','2006-02-15 05:03:42'),(107,'BUNCH MINDS','A Emotional Story of a Feminist And a Feminist who must Escape a Pastry Chef in A MySQL Convention',2006,1,NULL,4,'2.99',63,'13.99','G','Behind the Scenes','2006-02-15 05:03:42'),(108,'BUTCH PANTHER','A Lacklusture Yarn of a Feminist And a Database Administrator who must Face a Hunter in New Orleans',2006,1,NULL,6,'0.99',67,'19.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(109,'BUTTERFLY CHOCOLAT','A Fateful Story of a Girl And a Composer who must Conquer a Husband in A Shark Tank',2006,1,NULL,3,'0.99',89,'17.99','G','Behind the Scenes','2006-02-15 05:03:42'),(110,'CABIN FLASH','A Stunning Epistle of a Boat And a Man who must Challenge a A Shark in A Baloon Factory',2006,1,NULL,4,'0.99',53,'25.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(111,'CADDYSHACK JEDI','A Awe-Inspiring Epistle of a Woman And a Madman who must Fight a Robot in Soviet Georgia',2006,1,NULL,3,'0.99',52,'17.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(112,'CALENDAR GUNFIGHT','A Thrilling Drama of a Frisbee And a Lumberjack who must Sink a Man in Nigeria',2006,1,NULL,4,'4.99',120,'22.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(113,'CALIFORNIA BIRDS','A Thrilling Yarn of a Database Administrator And a Robot who must Battle a Database Administrator in Ancient India',2006,1,NULL,4,'4.99',75,'19.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(114,'CAMELOT VACATION','A Touching Character Study of a Woman And a Waitress who must Battle a Pastry Chef in A MySQL Convention',2006,1,NULL,3,'0.99',61,'26.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(115,'CAMPUS REMEMBER','A Astounding Drama of a Crocodile And a Mad Cow who must Build a Robot in A Jet Boat',2006,1,NULL,5,'2.99',167,'27.99','R','Behind the Scenes','2006-02-15 05:03:42'),(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',2006,1,NULL,4,'2.99',70,'10.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(117,'CANDLES GRAPES','A Fanciful Character Study of a Monkey And a Explorer who must Build a Astronaut in An Abandoned Fun House',2006,1,NULL,6,'4.99',135,'15.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(118,'CANYON STOCK','A Thoughtful Reflection of a Waitress And a Feminist who must Escape a Squirrel in A Manhattan Penthouse',2006,1,NULL,7,'0.99',85,'26.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(119,'CAPER MOTIONS','A Fateful Saga of a Moose And a Car who must Pursue a Woman in A MySQL Convention',2006,1,NULL,6,'0.99',176,'22.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(120,'CARIBBEAN LIBERTY','A Fanciful Tale of a Pioneer And a Technical Writer who must Outgun a Pioneer in A Shark Tank',2006,1,NULL,3,'4.99',92,'16.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(121,'CAROL TEXAS','A Astounding Character Study of a Composer And a Student who must Overcome a Composer in A Monastery',2006,1,NULL,4,'2.99',151,'15.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(122,'CARRIE BUNCH','A Amazing Epistle of a Student And a Astronaut who must Discover a Frisbee in The Canadian Rockies',2006,1,NULL,7,'0.99',114,'11.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(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',2006,1,NULL,6,'4.99',85,'22.99','G','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(124,'CASPER DRAGONFLY','A Intrepid Documentary of a Boat And a Crocodile who must Chase a Robot in The Sahara Desert',2006,1,NULL,3,'4.99',163,'16.99','PG-13','Trailers','2006-02-15 05:03:42'),(125,'CASSIDY WYOMING','A Intrepid Drama of a Frisbee And a Hunter who must Kill a Secret Agent in New Orleans',2006,1,NULL,5,'2.99',61,'19.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(126,'CASUALTIES ENCINO','A Insightful Yarn of a A Shark And a Pastry Chef who must Face a Boy in A Monastery',2006,1,NULL,3,'4.99',179,'16.99','G','Trailers','2006-02-15 05:03:42'),(127,'CAT CONEHEADS','A Fast-Paced Panorama of a Girl And a A Shark who must Confront a Boy in Ancient India',2006,1,NULL,5,'4.99',112,'14.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(128,'CATCH AMISTAD','A Boring Reflection of a Lumberjack And a Feminist who must Discover a Woman in Nigeria',2006,1,NULL,7,'0.99',183,'10.99','G','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(129,'CAUSE DATE','A Taut Tale of a Explorer And a Pastry Chef who must Conquer a Hunter in A MySQL Convention',2006,1,NULL,3,'2.99',179,'16.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(130,'CELEBRITY HORN','A Amazing Documentary of a Secret Agent And a Astronaut who must Vanquish a Hunter in A Shark Tank',2006,1,NULL,7,'0.99',110,'24.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(131,'CENTER DINOSAUR','A Beautiful Character Study of a Sumo Wrestler And a Dentist who must Find a Dog in California',2006,1,NULL,5,'4.99',152,'12.99','PG','Deleted Scenes','2006-02-15 05:03:42'),(132,'CHAINSAW UPTOWN','A Beautiful Documentary of a Boy And a Robot who must Discover a Squirrel in Australia',2006,1,NULL,6,'0.99',114,'25.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(133,'CHAMBER ITALIAN','A Fateful Reflection of a Moose And a Husband who must Overcome a Monkey in Nigeria',2006,1,NULL,7,'4.99',117,'14.99','NC-17','Trailers','2006-02-15 05:03:42'),(134,'CHAMPION FLATLINERS','A Amazing Story of a Mad Cow And a Dog who must Kill a Husband in A Monastery',2006,1,NULL,4,'4.99',51,'21.99','PG','Trailers','2006-02-15 05:03:42'),(135,'CHANCE RESURRECTION','A Astounding Story of a Forensic Psychologist And a Forensic Psychologist who must Overcome a Moose in Ancient China',2006,1,NULL,3,'2.99',70,'22.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(136,'CHAPLIN LICENSE','A Boring Drama of a Dog And a Forensic Psychologist who must Outrace a Explorer in Ancient India',2006,1,NULL,7,'2.99',146,'26.99','NC-17','Behind the Scenes','2006-02-15 05:03:42'),(137,'CHARADE DUFFEL','A Action-Packed Display of a Man And a Waitress who must Build a Dog in A MySQL Convention',2006,1,NULL,3,'2.99',66,'21.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(138,'CHARIOTS CONSPIRACY','A Unbelieveable Epistle of a Robot And a Husband who must Chase a Robot in The First Manned Space Station',2006,1,NULL,5,'2.99',71,'29.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(139,'CHASING FIGHT','A Astounding Saga of a Technical Writer And a Butler who must Battle a Butler in A Shark Tank',2006,1,NULL,7,'4.99',114,'21.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'),(140,'CHEAPER CLYDE','A Emotional Character Study of a Pioneer And a Girl who must Discover a Dog in Ancient Japan',2006,1,NULL,6,'0.99',87,'23.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(141,'CHICAGO NORTH','A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California',2006,1,NULL,6,'4.99',185,'11.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(142,'CHICKEN HELLFIGHTERS','A Emotional Drama of a Dog And a Explorer who must Outrace a Technical Writer in Australia',2006,1,NULL,3,'0.99',122,'24.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(143,'CHILL LUCK','A Lacklusture Epistle of a Boat And a Technical Writer who must Fight a A Shark in The Canadian Rockies',2006,1,NULL,6,'0.99',142,'17.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(144,'CHINATOWN GLADIATOR','A Brilliant Panorama of a Technical Writer And a Lumberjack who must Escape a Butler in Ancient India',2006,1,NULL,7,'4.99',61,'24.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(145,'CHISUM BEHAVIOR','A Epic Documentary of a Sumo Wrestler And a Butler who must Kill a Car in Ancient India',2006,1,NULL,5,'4.99',124,'25.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(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',2006,1,NULL,6,'2.99',107,'24.99','G','Commentaries','2006-02-15 05:03:42'),(147,'CHOCOLAT HARRY','A Action-Packed Epistle of a Dentist And a Moose who must Meet a Mad Cow in Ancient Japan',2006,1,NULL,5,'0.99',101,'16.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(148,'CHOCOLATE DUCK','A Unbelieveable Story of a Mad Scientist And a Technical Writer who must Discover a Composer in Ancient China',2006,1,NULL,3,'2.99',132,'13.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(149,'CHRISTMAS MOONSHINE','A Action-Packed Epistle of a Feminist And a Astronaut who must Conquer a Boat in A Manhattan Penthouse',2006,1,NULL,7,'0.99',150,'21.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(150,'CIDER DESIRE','A Stunning Character Study of a Composer And a Mad Cow who must Succumb a Cat in Soviet Georgia',2006,1,NULL,7,'2.99',101,'9.99','PG','Behind the Scenes','2006-02-15 05:03:42'),(151,'CINCINATTI WHISPERER','A Brilliant Saga of a Pastry Chef And a Hunter who must Confront a Butler in Berlin',2006,1,NULL,5,'4.99',143,'26.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'),(152,'CIRCUS YOUTH','A Thoughtful Drama of a Pastry Chef And a Dentist who must Pursue a Girl in A Baloon',2006,1,NULL,5,'2.99',90,'13.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(153,'CITIZEN SHREK','A Fanciful Character Study of a Technical Writer And a Husband who must Redeem a Robot in The Outback',2006,1,NULL,7,'0.99',165,'18.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(154,'CLASH FREDDY','A Amazing Yarn of a Composer And a Squirrel who must Escape a Astronaut in Australia',2006,1,NULL,6,'2.99',81,'12.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(155,'CLEOPATRA DEVIL','A Fanciful Documentary of a Crocodile And a Technical Writer who must Fight a A Shark in A Baloon',2006,1,NULL,6,'0.99',150,'26.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(156,'CLERKS ANGELS','A Thrilling Display of a Sumo Wrestler And a Girl who must Confront a Man in A Baloon',2006,1,NULL,3,'4.99',164,'15.99','G','Commentaries','2006-02-15 05:03:42'),(157,'CLOCKWORK PARADISE','A Insightful Documentary of a Technical Writer And a Feminist who must Challenge a Cat in A Baloon',2006,1,NULL,7,'0.99',143,'29.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(158,'CLONES PINOCCHIO','A Amazing Drama of a Car And a Robot who must Pursue a Dentist in New Orleans',2006,1,NULL,6,'2.99',124,'16.99','R','Behind the Scenes','2006-02-15 05:03:42'),(159,'CLOSER BANG','A Unbelieveable Panorama of a Frisbee And a Hunter who must Vanquish a Monkey in Ancient India',2006,1,NULL,5,'4.99',58,'12.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(160,'CLUB GRAFFITI','A Epic Tale of a Pioneer And a Hunter who must Escape a Girl in A U-Boat',2006,1,NULL,4,'0.99',65,'12.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(161,'CLUE GRAIL','A Taut Tale of a Butler And a Mad Scientist who must Build a Crocodile in Ancient China',2006,1,NULL,6,'4.99',70,'27.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(162,'CLUELESS BUCKET','A Taut Tale of a Car And a Pioneer who must Conquer a Sumo Wrestler in An Abandoned Fun House',2006,1,NULL,4,'2.99',95,'13.99','R','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(163,'CLYDE THEORY','A Beautiful Yarn of a Astronaut And a Frisbee who must Overcome a Explorer in A Jet Boat',2006,1,NULL,4,'0.99',139,'29.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(164,'COAST RAINBOW','A Astounding Documentary of a Mad Cow And a Pioneer who must Challenge a Butler in The Sahara Desert',2006,1,NULL,4,'0.99',55,'20.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(165,'COLDBLOODED DARLING','A Brilliant Panorama of a Dentist And a Moose who must Find a Student in The Gulf of Mexico',2006,1,NULL,7,'4.99',70,'27.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(166,'COLOR PHILADELPHIA','A Thoughtful Panorama of a Car And a Crocodile who must Sink a Monkey in The Sahara Desert',2006,1,NULL,6,'2.99',149,'19.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(167,'COMA HEAD','A Awe-Inspiring Drama of a Boy And a Frisbee who must Escape a Pastry Chef in California',2006,1,NULL,6,'4.99',109,'10.99','NC-17','Commentaries','2006-02-15 05:03:42'),(168,'COMANCHEROS ENEMY','A Boring Saga of a Lumberjack And a Monkey who must Find a Monkey in The Gulf of Mexico',2006,1,NULL,5,'0.99',67,'23.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(169,'COMFORTS RUSH','A Unbelieveable Panorama of a Pioneer And a Husband who must Meet a Mad Cow in An Abandoned Mine Shaft',2006,1,NULL,3,'2.99',76,'19.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(170,'COMMAND DARLING','A Awe-Inspiring Tale of a Forensic Psychologist And a Woman who must Challenge a Database Administrator in Ancient Japan',2006,1,NULL,5,'4.99',120,'28.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'),(171,'COMMANDMENTS EXPRESS','A Fanciful Saga of a Student And a Mad Scientist who must Battle a Hunter in An Abandoned Mine Shaft',2006,1,NULL,6,'4.99',59,'13.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(172,'CONEHEADS SMOOCHY','A Touching Story of a Womanizer And a Composer who must Pursue a Husband in Nigeria',2006,1,NULL,7,'4.99',112,'12.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(173,'CONFESSIONS MAGUIRE','A Insightful Story of a Car And a Boy who must Battle a Technical Writer in A Baloon',2006,1,NULL,7,'4.99',65,'25.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'),(174,'CONFIDENTIAL INTERVIEW','A Stunning Reflection of a Cat And a Woman who must Find a Astronaut in Ancient Japan',2006,1,NULL,6,'4.99',180,'13.99','NC-17','Commentaries','2006-02-15 05:03:42'),(175,'CONFUSED CANDLES','A Stunning Epistle of a Cat And a Forensic Psychologist who must Confront a Pioneer in A Baloon',2006,1,NULL,3,'2.99',122,'27.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(176,'CONGENIALITY QUEST','A Touching Documentary of a Cat And a Pastry Chef who must Find a Lumberjack in A Baloon',2006,1,NULL,6,'0.99',87,'21.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(177,'CONNECTICUT TRAMP','A Unbelieveable Drama of a Crocodile And a Mad Cow who must Reach a Dentist in A Shark Tank',2006,1,NULL,4,'4.99',172,'20.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(178,'CONNECTION MICROCOSMOS','A Fateful Documentary of a Crocodile And a Husband who must Face a Husband in The First Manned Space Station',2006,1,NULL,6,'0.99',115,'25.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(179,'CONQUERER NUTS','A Taut Drama of a Mad Scientist And a Man who must Escape a Pioneer in An Abandoned Mine Shaft',2006,1,NULL,4,'4.99',173,'14.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(180,'CONSPIRACY SPIRIT','A Awe-Inspiring Story of a Student And a Frisbee who must Conquer a Crocodile in An Abandoned Mine Shaft',2006,1,NULL,4,'2.99',184,'27.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'),(181,'CONTACT ANONYMOUS','A Insightful Display of a A Shark And a Monkey who must Face a Database Administrator in Ancient India',2006,1,NULL,7,'2.99',166,'10.99','PG-13','Commentaries','2006-02-15 05:03:42'),(182,'CONTROL ANTHEM','A Fateful Documentary of a Robot And a Student who must Battle a Cat in A Monastery',2006,1,NULL,7,'4.99',185,'9.99','G','Commentaries','2006-02-15 05:03:42'),(183,'CONVERSATION DOWNHILL','A Taut Character Study of a Husband And a Waitress who must Sink a Squirrel in A MySQL Convention',2006,1,NULL,4,'4.99',112,'14.99','R','Commentaries','2006-02-15 05:03:42'),(184,'CORE SUIT','A Unbelieveable Tale of a Car And a Explorer who must Confront a Boat in A Manhattan Penthouse',2006,1,NULL,3,'2.99',92,'24.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'),(185,'COWBOY DOOM','A Astounding Drama of a Boy And a Lumberjack who must Fight a Butler in A Baloon',2006,1,NULL,3,'2.99',146,'10.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(186,'CRAFT OUTFIELD','A Lacklusture Display of a Explorer And a Hunter who must Succumb a Database Administrator in A Baloon Factory',2006,1,NULL,6,'0.99',64,'17.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(187,'CRANES RESERVOIR','A Fanciful Documentary of a Teacher And a Dog who must Outgun a Forensic Psychologist in A Baloon Factory',2006,1,NULL,5,'2.99',57,'12.99','NC-17','Commentaries','2006-02-15 05:03:42'),(188,'CRAZY HOME','A Fanciful Panorama of a Boy And a Woman who must Vanquish a Database Administrator in The Outback',2006,1,NULL,7,'2.99',136,'24.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(189,'CREATURES SHAKESPEARE','A Emotional Drama of a Womanizer And a Squirrel who must Vanquish a Crocodile in Ancient India',2006,1,NULL,3,'0.99',139,'23.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(190,'CREEPERS KANE','A Awe-Inspiring Reflection of a Squirrel And a Boat who must Outrace a Car in A Jet Boat',2006,1,NULL,5,'4.99',172,'23.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(191,'CROOKED FROGMEN','A Unbelieveable Drama of a Hunter And a Database Administrator who must Battle a Crocodile in An Abandoned Amusement Park',2006,1,NULL,6,'0.99',143,'27.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(192,'CROSSING DIVORCE','A Beautiful Documentary of a Dog And a Robot who must Redeem a Womanizer in Berlin',2006,1,NULL,4,'4.99',50,'19.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(193,'CROSSROADS CASUALTIES','A Intrepid Documentary of a Sumo Wrestler And a Astronaut who must Battle a Composer in The Outback',2006,1,NULL,5,'2.99',153,'20.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(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',2006,1,NULL,6,'0.99',104,'22.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(195,'CROWDS TELEMARK','A Intrepid Documentary of a Astronaut And a Forensic Psychologist who must Find a Frisbee in An Abandoned Fun House',2006,1,NULL,3,'4.99',112,'16.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(196,'CRUELTY UNFORGIVEN','A Brilliant Tale of a Car And a Moose who must Battle a Dentist in Nigeria',2006,1,NULL,7,'0.99',69,'29.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(197,'CRUSADE HONEY','A Fast-Paced Reflection of a Explorer And a Butler who must Battle a Madman in An Abandoned Amusement Park',2006,1,NULL,4,'2.99',112,'27.99','R','Commentaries','2006-02-15 05:03:42'),(198,'CRYSTAL BREAKING','A Fast-Paced Character Study of a Feminist And a Explorer who must Face a Pastry Chef in Ancient Japan',2006,1,NULL,6,'2.99',184,'22.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'),(199,'CUPBOARD SINNERS','A Emotional Reflection of a Frisbee And a Boat who must Reach a Pastry Chef in An Abandoned Amusement Park',2006,1,NULL,4,'2.99',56,'29.99','R','Behind the Scenes','2006-02-15 05:03:42'),(200,'CURTAIN VIDEOTAPE','A Boring Reflection of a Dentist And a Mad Cow who must Chase a Secret Agent in A Shark Tank',2006,1,NULL,7,'0.99',133,'27.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(201,'CYCLONE FAMILY','A Lacklusture Drama of a Student And a Monkey who must Sink a Womanizer in A MySQL Convention',2006,1,NULL,7,'2.99',176,'18.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(202,'DADDY PITTSBURGH','A Epic Story of a A Shark And a Student who must Confront a Explorer in The Gulf of Mexico',2006,1,NULL,5,'4.99',161,'26.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(203,'DAISY MENAGERIE','A Fast-Paced Saga of a Pastry Chef And a Monkey who must Sink a Composer in Ancient India',2006,1,NULL,5,'4.99',84,'9.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(204,'DALMATIONS SWEDEN','A Emotional Epistle of a Moose And a Hunter who must Overcome a Robot in A Manhattan Penthouse',2006,1,NULL,4,'0.99',106,'25.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(205,'DANCES NONE','A Insightful Reflection of a A Shark And a Dog who must Kill a Butler in An Abandoned Amusement Park',2006,1,NULL,3,'0.99',58,'22.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(206,'DANCING FEVER','A Stunning Story of a Explorer And a Forensic Psychologist who must Face a Crocodile in A Shark Tank',2006,1,NULL,6,'0.99',144,'25.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(207,'DANGEROUS UPTOWN','A Unbelieveable Story of a Mad Scientist And a Woman who must Overcome a Dog in California',2006,1,NULL,7,'4.99',121,'26.99','PG','Commentaries','2006-02-15 05:03:42'),(208,'DARES PLUTO','A Fateful Story of a Robot And a Dentist who must Defeat a Astronaut in New Orleans',2006,1,NULL,7,'2.99',89,'16.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(209,'DARKNESS WAR','A Touching Documentary of a Husband And a Hunter who must Escape a Boy in The Sahara Desert',2006,1,NULL,6,'2.99',99,'24.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(210,'DARKO DORADO','A Stunning Reflection of a Frisbee And a Husband who must Redeem a Dog in New Orleans',2006,1,NULL,3,'4.99',130,'13.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(211,'DARLING BREAKING','A Brilliant Documentary of a Astronaut And a Squirrel who must Succumb a Student in The Gulf of Mexico',2006,1,NULL,7,'4.99',165,'20.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(212,'DARN FORRESTER','A Fateful Story of a A Shark And a Explorer who must Succumb a Technical Writer in A Jet Boat',2006,1,NULL,7,'4.99',185,'14.99','G','Deleted Scenes','2006-02-15 05:03:42'),(213,'DATE SPEED','A Touching Saga of a Composer And a Moose who must Discover a Dentist in A MySQL Convention',2006,1,NULL,4,'0.99',104,'19.99','R','Commentaries','2006-02-15 05:03:42'),(214,'DAUGHTER MADIGAN','A Beautiful Tale of a Hunter And a Mad Scientist who must Confront a Squirrel in The First Manned Space Station',2006,1,NULL,3,'4.99',59,'13.99','PG-13','Trailers','2006-02-15 05:03:42'),(215,'DAWN POND','A Thoughtful Documentary of a Dentist And a Forensic Psychologist who must Defeat a Waitress in Berlin',2006,1,NULL,4,'4.99',57,'27.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(216,'DAY UNFAITHFUL','A Stunning Documentary of a Composer And a Mad Scientist who must Find a Technical Writer in A U-Boat',2006,1,NULL,3,'4.99',113,'16.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(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',2006,1,NULL,6,'4.99',120,'20.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(218,'DECEIVER BETRAYED','A Taut Story of a Moose And a Squirrel who must Build a Husband in Ancient India',2006,1,NULL,7,'0.99',122,'22.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(219,'DEEP CRUSADE','A Amazing Tale of a Crocodile And a Squirrel who must Discover a Composer in Australia',2006,1,NULL,6,'4.99',51,'20.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(220,'DEER VIRGINIAN','A Thoughtful Story of a Mad Cow And a Womanizer who must Overcome a Mad Scientist in Soviet Georgia',2006,1,NULL,7,'2.99',106,'13.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'),(221,'DELIVERANCE MULHOLLAND','A Astounding Saga of a Monkey And a Moose who must Conquer a Butler in A Shark Tank',2006,1,NULL,4,'0.99',100,'9.99','R','Deleted Scenes','2006-02-15 05:03:42'),(222,'DESERT POSEIDON','A Brilliant Documentary of a Butler And a Frisbee who must Build a Astronaut in New Orleans',2006,1,NULL,4,'4.99',64,'27.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(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',2006,1,NULL,7,'2.99',76,'24.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'),(224,'DESPERATE TRAINSPOTTING','A Epic Yarn of a Forensic Psychologist And a Teacher who must Face a Lumberjack in California',2006,1,NULL,7,'4.99',81,'29.99','G','Deleted Scenes','2006-02-15 05:03:42'),(225,'DESTINATION JERK','A Beautiful Yarn of a Teacher And a Cat who must Build a Car in A U-Boat',2006,1,NULL,3,'0.99',76,'19.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(226,'DESTINY SATURDAY','A Touching Drama of a Crocodile And a Crocodile who must Conquer a Explorer in Soviet Georgia',2006,1,NULL,4,'4.99',56,'20.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(227,'DETAILS PACKER','A Epic Saga of a Waitress And a Composer who must Face a Boat in A U-Boat',2006,1,NULL,4,'4.99',88,'17.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(228,'DETECTIVE VISION','A Fanciful Documentary of a Pioneer And a Woman who must Redeem a Hunter in Ancient Japan',2006,1,NULL,4,'0.99',143,'16.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(229,'DEVIL DESIRE','A Beautiful Reflection of a Monkey And a Dentist who must Face a Database Administrator in Ancient Japan',2006,1,NULL,6,'4.99',87,'12.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(230,'DIARY PANIC','A Thoughtful Character Study of a Frisbee And a Mad Cow who must Outgun a Man in Ancient India',2006,1,NULL,7,'2.99',107,'20.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(231,'DINOSAUR SECRETARY','A Action-Packed Drama of a Feminist And a Girl who must Reach a Robot in The Canadian Rockies',2006,1,NULL,7,'2.99',63,'27.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(232,'DIRTY ACE','A Action-Packed Character Study of a Forensic Psychologist And a Girl who must Build a Dentist in The Outback',2006,1,NULL,7,'2.99',147,'29.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(233,'DISCIPLE MOTHER','A Touching Reflection of a Mad Scientist And a Boat who must Face a Moose in A Shark Tank',2006,1,NULL,3,'0.99',141,'17.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(234,'DISTURBING SCARFACE','A Lacklusture Display of a Crocodile And a Butler who must Overcome a Monkey in A U-Boat',2006,1,NULL,6,'2.99',94,'27.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(235,'DIVIDE MONSTER','A Intrepid Saga of a Man And a Forensic Psychologist who must Reach a Squirrel in A Monastery',2006,1,NULL,6,'2.99',68,'13.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'),(236,'DIVINE RESURRECTION','A Boring Character Study of a Man And a Womanizer who must Succumb a Teacher in An Abandoned Amusement Park',2006,1,NULL,4,'2.99',100,'19.99','R','Trailers,Commentaries','2006-02-15 05:03:42'),(237,'DIVORCE SHINING','A Unbelieveable Saga of a Crocodile And a Student who must Discover a Cat in Ancient India',2006,1,NULL,3,'2.99',47,'21.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(238,'DOCTOR GRAIL','A Insightful Drama of a Womanizer And a Waitress who must Reach a Forensic Psychologist in The Outback',2006,1,NULL,4,'2.99',57,'29.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(239,'DOGMA FAMILY','A Brilliant Character Study of a Database Administrator And a Monkey who must Succumb a Astronaut in New Orleans',2006,1,NULL,5,'4.99',122,'16.99','G','Commentaries','2006-02-15 05:03:42'),(240,'DOLLS RAGE','A Thrilling Display of a Pioneer And a Frisbee who must Escape a Teacher in The Outback',2006,1,NULL,7,'2.99',120,'10.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(241,'DONNIE ALLEY','A Awe-Inspiring Tale of a Butler And a Frisbee who must Vanquish a Teacher in Ancient Japan',2006,1,NULL,4,'0.99',125,'20.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(242,'DOOM DANCING','A Astounding Panorama of a Car And a Mad Scientist who must Battle a Lumberjack in A MySQL Convention',2006,1,NULL,4,'0.99',68,'13.99','R','Trailers,Commentaries','2006-02-15 05:03:42'),(243,'DOORS PRESIDENT','A Awe-Inspiring Display of a Squirrel And a Woman who must Overcome a Boy in The Gulf of Mexico',2006,1,NULL,3,'4.99',49,'22.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(244,'DORADO NOTTING','A Action-Packed Tale of a Sumo Wrestler And a A Shark who must Meet a Frisbee in California',2006,1,NULL,5,'4.99',139,'26.99','NC-17','Commentaries','2006-02-15 05:03:42'),(245,'DOUBLE WRATH','A Thoughtful Yarn of a Womanizer And a Dog who must Challenge a Madman in The Gulf of Mexico',2006,1,NULL,4,'0.99',177,'28.99','R','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(246,'DOUBTFIRE LABYRINTH','A Intrepid Panorama of a Butler And a Composer who must Meet a Mad Cow in The Sahara Desert',2006,1,NULL,5,'4.99',154,'16.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(247,'DOWNHILL ENOUGH','A Emotional Tale of a Pastry Chef And a Forensic Psychologist who must Succumb a Monkey in The Sahara Desert',2006,1,NULL,3,'0.99',47,'19.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(248,'DOZEN LION','A Taut Drama of a Cat And a Girl who must Defeat a Frisbee in The Canadian Rockies',2006,1,NULL,6,'4.99',177,'20.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(249,'DRACULA CRYSTAL','A Thrilling Reflection of a Feminist And a Cat who must Find a Frisbee in An Abandoned Fun House',2006,1,NULL,7,'0.99',176,'26.99','G','Commentaries','2006-02-15 05:03:42'),(250,'DRAGON SQUAD','A Taut Reflection of a Boy And a Waitress who must Outgun a Teacher in Ancient China',2006,1,NULL,4,'0.99',170,'26.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(251,'DRAGONFLY STRANGERS','A Boring Documentary of a Pioneer And a Man who must Vanquish a Man in Nigeria',2006,1,NULL,6,'4.99',133,'19.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(252,'DREAM PICKUP','A Epic Display of a Car And a Composer who must Overcome a Forensic Psychologist in The Gulf of Mexico',2006,1,NULL,6,'2.99',135,'18.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(253,'DRIFTER COMMANDMENTS','A Epic Reflection of a Womanizer And a Squirrel who must Discover a Husband in A Jet Boat',2006,1,NULL,5,'4.99',61,'18.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(254,'DRIVER ANNIE','A Lacklusture Character Study of a Butler And a Car who must Redeem a Boat in An Abandoned Fun House',2006,1,NULL,4,'2.99',159,'11.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(255,'DRIVING POLISH','A Action-Packed Yarn of a Feminist And a Technical Writer who must Sink a Boat in An Abandoned Mine Shaft',2006,1,NULL,6,'4.99',175,'21.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(256,'DROP WATERFRONT','A Fanciful Documentary of a Husband And a Explorer who must Reach a Madman in Ancient China',2006,1,NULL,6,'4.99',178,'20.99','R','Trailers,Commentaries','2006-02-15 05:03:42'),(257,'DRUMLINE CYCLONE','A Insightful Panorama of a Monkey And a Sumo Wrestler who must Outrace a Mad Scientist in The Canadian Rockies',2006,1,NULL,3,'0.99',110,'14.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(258,'DRUMS DYNAMITE','A Epic Display of a Crocodile And a Crocodile who must Confront a Dog in An Abandoned Amusement Park',2006,1,NULL,6,'0.99',96,'11.99','PG','Trailers','2006-02-15 05:03:42'),(259,'DUCK RACER','A Lacklusture Yarn of a Teacher And a Squirrel who must Overcome a Dog in A Shark Tank',2006,1,NULL,4,'2.99',116,'15.99','NC-17','Behind the Scenes','2006-02-15 05:03:42'),(260,'DUDE BLINDNESS','A Stunning Reflection of a Husband And a Lumberjack who must Face a Frisbee in An Abandoned Fun House',2006,1,NULL,3,'4.99',132,'9.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(261,'DUFFEL APOCALYPSE','A Emotional Display of a Boat And a Explorer who must Challenge a Madman in A MySQL Convention',2006,1,NULL,5,'0.99',171,'13.99','G','Commentaries','2006-02-15 05:03:42'),(262,'DUMBO LUST','A Touching Display of a Feminist And a Dentist who must Conquer a Husband in The Gulf of Mexico',2006,1,NULL,5,'0.99',119,'17.99','NC-17','Behind the Scenes','2006-02-15 05:03:42'),(263,'DURHAM PANKY','A Brilliant Panorama of a Girl And a Boy who must Face a Mad Scientist in An Abandoned Mine Shaft',2006,1,NULL,6,'4.99',154,'14.99','R','Trailers,Commentaries','2006-02-15 05:03:42'),(264,'DWARFS ALTER','A Emotional Yarn of a Girl And a Dog who must Challenge a Composer in Ancient Japan',2006,1,NULL,6,'2.99',101,'13.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(265,'DYING MAKER','A Intrepid Tale of a Boat And a Monkey who must Kill a Cat in California',2006,1,NULL,5,'4.99',168,'28.99','PG','Behind the Scenes','2006-02-15 05:03:42'),(266,'DYNAMITE TARZAN','A Intrepid Documentary of a Forensic Psychologist And a Mad Scientist who must Face a Explorer in A U-Boat',2006,1,NULL,4,'0.99',141,'27.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'),(267,'EAGLES PANKY','A Thoughtful Story of a Car And a Boy who must Find a A Shark in The Sahara Desert',2006,1,NULL,4,'4.99',140,'14.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(268,'EARLY HOME','A Amazing Panorama of a Mad Scientist And a Husband who must Meet a Woman in The Outback',2006,1,NULL,6,'4.99',96,'27.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(269,'EARRING INSTINCT','A Stunning Character Study of a Dentist And a Mad Cow who must Find a Teacher in Nigeria',2006,1,NULL,3,'0.99',98,'22.99','R','Behind the Scenes','2006-02-15 05:03:42'),(270,'EARTH VISION','A Stunning Drama of a Butler And a Madman who must Outrace a Womanizer in Ancient India',2006,1,NULL,7,'0.99',85,'29.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(271,'EASY GLADIATOR','A Fateful Story of a Monkey And a Girl who must Overcome a Pastry Chef in Ancient India',2006,1,NULL,5,'4.99',148,'12.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(272,'EDGE KISSING','A Beautiful Yarn of a Composer And a Mad Cow who must Redeem a Mad Scientist in A Jet Boat',2006,1,NULL,5,'4.99',153,'9.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'),(273,'EFFECT GLADIATOR','A Beautiful Display of a Pastry Chef And a Pastry Chef who must Outgun a Forensic Psychologist in A Manhattan Penthouse',2006,1,NULL,6,'0.99',107,'14.99','PG','Commentaries','2006-02-15 05:03:42'),(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',2006,1,NULL,4,'2.99',67,'20.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(275,'EGYPT TENENBAUMS','A Intrepid Story of a Madman And a Secret Agent who must Outrace a Astronaut in An Abandoned Amusement Park',2006,1,NULL,3,'0.99',85,'11.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(276,'ELEMENT FREDDY','A Awe-Inspiring Reflection of a Waitress And a Squirrel who must Kill a Mad Cow in A Jet Boat',2006,1,NULL,6,'4.99',115,'28.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(277,'ELEPHANT TROJAN','A Beautiful Panorama of a Lumberjack And a Forensic Psychologist who must Overcome a Frisbee in A Baloon',2006,1,NULL,4,'4.99',126,'24.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'),(278,'ELF MURDER','A Action-Packed Story of a Frisbee And a Woman who must Reach a Girl in An Abandoned Mine Shaft',2006,1,NULL,4,'4.99',155,'19.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(279,'ELIZABETH SHANE','A Lacklusture Display of a Womanizer And a Dog who must Face a Sumo Wrestler in Ancient Japan',2006,1,NULL,7,'4.99',152,'11.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(280,'EMPIRE MALKOVICH','A Amazing Story of a Feminist And a Cat who must Face a Car in An Abandoned Fun House',2006,1,NULL,7,'0.99',177,'26.99','G','Deleted Scenes','2006-02-15 05:03:42'),(281,'ENCINO ELF','A Astounding Drama of a Feminist And a Teacher who must Confront a Husband in A Baloon',2006,1,NULL,6,'0.99',143,'9.99','G','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(282,'ENCOUNTERS CURTAIN','A Insightful Epistle of a Pastry Chef And a Womanizer who must Build a Boat in New Orleans',2006,1,NULL,5,'0.99',92,'20.99','NC-17','Trailers','2006-02-15 05:03:42'),(283,'ENDING CROWDS','A Unbelieveable Display of a Dentist And a Madman who must Vanquish a Squirrel in Berlin',2006,1,NULL,6,'0.99',85,'10.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(284,'ENEMY ODDS','A Fanciful Panorama of a Mad Scientist And a Woman who must Pursue a Astronaut in Ancient India',2006,1,NULL,5,'4.99',77,'23.99','NC-17','Trailers','2006-02-15 05:03:42'),(285,'ENGLISH BULWORTH','A Intrepid Epistle of a Pastry Chef And a Pastry Chef who must Pursue a Crocodile in Ancient China',2006,1,NULL,3,'0.99',51,'18.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'),(286,'ENOUGH RAGING','A Astounding Character Study of a Boat And a Secret Agent who must Find a Mad Cow in The Sahara Desert',2006,1,NULL,7,'2.99',158,'16.99','NC-17','Commentaries','2006-02-15 05:03:42'),(287,'ENTRAPMENT SATISFACTION','A Thoughtful Panorama of a Hunter And a Teacher who must Reach a Mad Cow in A U-Boat',2006,1,NULL,5,'0.99',176,'19.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(288,'ESCAPE METROPOLIS','A Taut Yarn of a Astronaut And a Technical Writer who must Outgun a Boat in New Orleans',2006,1,NULL,7,'2.99',167,'20.99','R','Trailers','2006-02-15 05:03:42'),(289,'EVE RESURRECTION','A Awe-Inspiring Yarn of a Pastry Chef And a Database Administrator who must Challenge a Teacher in A Baloon',2006,1,NULL,5,'4.99',66,'25.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(290,'EVERYONE CRAFT','A Fateful Display of a Waitress And a Dentist who must Reach a Butler in Nigeria',2006,1,NULL,4,'0.99',163,'29.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'),(291,'EVOLUTION ALTER','A Fanciful Character Study of a Feminist And a Madman who must Find a Explorer in A Baloon Factory',2006,1,NULL,5,'0.99',174,'10.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'),(292,'EXCITEMENT EVE','A Brilliant Documentary of a Monkey And a Car who must Conquer a Crocodile in A Shark Tank',2006,1,NULL,3,'0.99',51,'20.99','G','Commentaries','2006-02-15 05:03:42'),(293,'EXORCIST STING','A Touching Drama of a Dog And a Sumo Wrestler who must Conquer a Mad Scientist in Berlin',2006,1,NULL,6,'2.99',167,'17.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(294,'EXPECATIONS NATURAL','A Amazing Drama of a Butler And a Husband who must Reach a A Shark in A U-Boat',2006,1,NULL,5,'4.99',138,'26.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'),(295,'EXPENDABLE STALLION','A Amazing Character Study of a Mad Cow And a Squirrel who must Discover a Hunter in A U-Boat',2006,1,NULL,3,'0.99',97,'14.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(296,'EXPRESS LONELY','A Boring Drama of a Astronaut And a Boat who must Face a Boat in California',2006,1,NULL,5,'2.99',178,'23.99','R','Trailers','2006-02-15 05:03:42'),(297,'EXTRAORDINARY CONQUERER','A Stunning Story of a Dog And a Feminist who must Face a Forensic Psychologist in Berlin',2006,1,NULL,6,'2.99',122,'29.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(298,'EYES DRIVING','A Thrilling Story of a Cat And a Waitress who must Fight a Explorer in The Outback',2006,1,NULL,4,'2.99',172,'13.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'),(299,'FACTORY DRAGON','A Action-Packed Saga of a Teacher And a Frisbee who must Escape a Lumberjack in The Sahara Desert',2006,1,NULL,4,'0.99',144,'9.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(300,'FALCON VOLUME','A Fateful Saga of a Sumo Wrestler And a Hunter who must Redeem a A Shark in New Orleans',2006,1,NULL,5,'4.99',102,'21.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(301,'FAMILY SWEET','A Epic Documentary of a Teacher And a Boy who must Escape a Woman in Berlin',2006,1,NULL,4,'0.99',155,'24.99','R','Trailers','2006-02-15 05:03:42'),(302,'FANTASIA PARK','A Thoughtful Documentary of a Mad Scientist And a A Shark who must Outrace a Feminist in Australia',2006,1,NULL,5,'2.99',131,'29.99','G','Commentaries','2006-02-15 05:03:42'),(303,'FANTASY TROOPERS','A Touching Saga of a Teacher And a Monkey who must Overcome a Secret Agent in A MySQL Convention',2006,1,NULL,6,'0.99',58,'27.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'),(304,'FARGO GANDHI','A Thrilling Reflection of a Pastry Chef And a Crocodile who must Reach a Teacher in The Outback',2006,1,NULL,3,'2.99',130,'28.99','G','Deleted Scenes','2006-02-15 05:03:42'),(305,'FATAL HAUNTED','A Beautiful Drama of a Student And a Secret Agent who must Confront a Dentist in Ancient Japan',2006,1,NULL,6,'2.99',91,'24.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(306,'FEATHERS METAL','A Thoughtful Yarn of a Monkey And a Teacher who must Find a Dog in Australia',2006,1,NULL,3,'0.99',104,'12.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(307,'FELLOWSHIP AUTUMN','A Lacklusture Reflection of a Dentist And a Hunter who must Meet a Teacher in A Baloon',2006,1,NULL,6,'4.99',77,'9.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(308,'FERRIS MOTHER','A Touching Display of a Frisbee And a Frisbee who must Kill a Girl in The Gulf of Mexico',2006,1,NULL,3,'2.99',142,'13.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(309,'FEUD FROGMEN','A Brilliant Reflection of a Database Administrator And a Mad Cow who must Chase a Woman in The Canadian Rockies',2006,1,NULL,6,'0.99',98,'29.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(310,'FEVER EMPIRE','A Insightful Panorama of a Cat And a Boat who must Defeat a Boat in The Gulf of Mexico',2006,1,NULL,5,'4.99',158,'20.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(311,'FICTION CHRISTMAS','A Emotional Yarn of a A Shark And a Student who must Battle a Robot in An Abandoned Mine Shaft',2006,1,NULL,4,'0.99',72,'14.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(312,'FIDDLER LOST','A Boring Tale of a Squirrel And a Dog who must Challenge a Madman in The Gulf of Mexico',2006,1,NULL,4,'4.99',75,'20.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(313,'FIDELITY DEVIL','A Awe-Inspiring Drama of a Technical Writer And a Composer who must Reach a Pastry Chef in A U-Boat',2006,1,NULL,5,'4.99',118,'11.99','G','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(314,'FIGHT JAWBREAKER','A Intrepid Panorama of a Womanizer And a Girl who must Escape a Girl in A Manhattan Penthouse',2006,1,NULL,3,'0.99',91,'13.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(315,'FINDING ANACONDA','A Fateful Tale of a Database Administrator And a Girl who must Battle a Squirrel in New Orleans',2006,1,NULL,4,'0.99',156,'10.99','R','Trailers,Commentaries','2006-02-15 05:03:42'),(316,'FIRE WOLVES','A Intrepid Documentary of a Frisbee And a Dog who must Outrace a Lumberjack in Nigeria',2006,1,NULL,5,'4.99',173,'18.99','R','Trailers','2006-02-15 05:03:42'),(317,'FIREBALL PHILADELPHIA','A Amazing Yarn of a Dentist And a A Shark who must Vanquish a Madman in An Abandoned Mine Shaft',2006,1,NULL,4,'0.99',148,'25.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(318,'FIREHOUSE VIETNAM','A Awe-Inspiring Character Study of a Boat And a Boy who must Kill a Pastry Chef in The Sahara Desert',2006,1,NULL,7,'0.99',103,'14.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(319,'FISH OPUS','A Touching Display of a Feminist And a Girl who must Confront a Astronaut in Australia',2006,1,NULL,4,'2.99',125,'22.99','R','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(320,'FLAMINGOS CONNECTICUT','A Fast-Paced Reflection of a Composer And a Composer who must Meet a Cat in The Sahara Desert',2006,1,NULL,4,'4.99',80,'28.99','PG-13','Trailers','2006-02-15 05:03:42'),(321,'FLASH WARS','A Astounding Saga of a Moose And a Pastry Chef who must Chase a Student in The Gulf of Mexico',2006,1,NULL,3,'4.99',123,'21.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(322,'FLATLINERS KILLER','A Taut Display of a Secret Agent And a Waitress who must Sink a Robot in An Abandoned Mine Shaft',2006,1,NULL,5,'2.99',100,'29.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(323,'FLIGHT LIES','A Stunning Character Study of a Crocodile And a Pioneer who must Pursue a Teacher in New Orleans',2006,1,NULL,7,'4.99',179,'22.99','R','Trailers','2006-02-15 05:03:42'),(324,'FLINTSTONES HAPPINESS','A Fateful Story of a Husband And a Moose who must Vanquish a Boy in California',2006,1,NULL,3,'4.99',148,'11.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(325,'FLOATS GARDEN','A Action-Packed Epistle of a Robot And a Car who must Chase a Boat in Ancient Japan',2006,1,NULL,6,'2.99',145,'29.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(326,'FLYING HOOK','A Thrilling Display of a Mad Cow And a Dog who must Challenge a Frisbee in Nigeria',2006,1,NULL,6,'2.99',69,'18.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(327,'FOOL MOCKINGBIRD','A Lacklusture Tale of a Crocodile And a Composer who must Defeat a Madman in A U-Boat',2006,1,NULL,3,'4.99',158,'24.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'),(328,'FOREVER CANDIDATE','A Unbelieveable Panorama of a Technical Writer And a Man who must Pursue a Frisbee in A U-Boat',2006,1,NULL,7,'2.99',131,'28.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(329,'FORREST SONS','A Thrilling Documentary of a Forensic Psychologist And a Butler who must Defeat a Explorer in A Jet Boat',2006,1,NULL,4,'2.99',63,'15.99','R','Commentaries','2006-02-15 05:03:42'),(330,'FORRESTER COMANCHEROS','A Fateful Tale of a Squirrel And a Forensic Psychologist who must Redeem a Man in Nigeria',2006,1,NULL,7,'4.99',112,'22.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(331,'FORWARD TEMPLE','A Astounding Display of a Forensic Psychologist And a Mad Scientist who must Challenge a Girl in New Orleans',2006,1,NULL,6,'2.99',90,'25.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(332,'FRANKENSTEIN STRANGER','A Insightful Character Study of a Feminist And a Pioneer who must Pursue a Pastry Chef in Nigeria',2006,1,NULL,7,'0.99',159,'16.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(333,'FREAKY POCUS','A Fast-Paced Documentary of a Pastry Chef And a Crocodile who must Chase a Squirrel in The Gulf of Mexico',2006,1,NULL,7,'2.99',126,'16.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(334,'FREDDY STORM','A Intrepid Saga of a Man And a Lumberjack who must Vanquish a Husband in The Outback',2006,1,NULL,6,'4.99',65,'21.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(335,'FREEDOM CLEOPATRA','A Emotional Reflection of a Dentist And a Mad Cow who must Face a Squirrel in A Baloon',2006,1,NULL,5,'0.99',133,'23.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(336,'FRENCH HOLIDAY','A Thrilling Epistle of a Dog And a Feminist who must Kill a Madman in Berlin',2006,1,NULL,5,'4.99',99,'22.99','PG','Behind the Scenes','2006-02-15 05:03:42'),(337,'FRIDA SLIPPER','A Fateful Story of a Lumberjack And a Car who must Escape a Boat in An Abandoned Mine Shaft',2006,1,NULL,6,'2.99',73,'11.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(338,'FRISCO FORREST','A Beautiful Documentary of a Woman And a Pioneer who must Pursue a Mad Scientist in A Shark Tank',2006,1,NULL,6,'4.99',51,'23.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(339,'FROGMEN BREAKING','A Unbelieveable Yarn of a Mad Scientist And a Cat who must Chase a Lumberjack in Australia',2006,1,NULL,5,'0.99',111,'17.99','R','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(340,'FRONTIER CABIN','A Emotional Story of a Madman And a Waitress who must Battle a Teacher in An Abandoned Fun House',2006,1,NULL,6,'4.99',183,'14.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(341,'FROST HEAD','A Amazing Reflection of a Lumberjack And a Cat who must Discover a Husband in A MySQL Convention',2006,1,NULL,5,'0.99',82,'13.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(342,'FUGITIVE MAGUIRE','A Taut Epistle of a Feminist And a Sumo Wrestler who must Battle a Crocodile in Australia',2006,1,NULL,7,'4.99',83,'28.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(343,'FULL FLATLINERS','A Beautiful Documentary of a Astronaut And a Moose who must Pursue a Monkey in A Shark Tank',2006,1,NULL,6,'2.99',94,'14.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(344,'FURY MURDER','A Lacklusture Reflection of a Boat And a Forensic Psychologist who must Fight a Waitress in A Monastery',2006,1,NULL,3,'0.99',178,'28.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'),(345,'GABLES METROPOLIS','A Fateful Display of a Cat And a Pioneer who must Challenge a Pastry Chef in A Baloon Factory',2006,1,NULL,3,'0.99',161,'17.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'),(346,'GALAXY SWEETHEARTS','A Emotional Reflection of a Womanizer And a Pioneer who must Face a Squirrel in Berlin',2006,1,NULL,4,'4.99',128,'13.99','R','Deleted Scenes','2006-02-15 05:03:42'),(347,'GAMES BOWFINGER','A Astounding Documentary of a Butler And a Explorer who must Challenge a Butler in A Monastery',2006,1,NULL,7,'4.99',119,'17.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'),(348,'GANDHI KWAI','A Thoughtful Display of a Mad Scientist And a Secret Agent who must Chase a Boat in Berlin',2006,1,NULL,7,'0.99',86,'9.99','PG-13','Trailers','2006-02-15 05:03:42'),(349,'GANGS PRIDE','A Taut Character Study of a Woman And a A Shark who must Confront a Frisbee in Berlin',2006,1,NULL,4,'2.99',185,'27.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'),(350,'GARDEN ISLAND','A Unbelieveable Character Study of a Womanizer And a Madman who must Reach a Man in The Outback',2006,1,NULL,3,'4.99',80,'21.99','G','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(351,'GASLIGHT CRUSADE','A Amazing Epistle of a Boy And a Astronaut who must Redeem a Man in The Gulf of Mexico',2006,1,NULL,4,'2.99',106,'10.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(352,'GATHERING CALENDAR','A Intrepid Tale of a Pioneer And a Moose who must Conquer a Frisbee in A MySQL Convention',2006,1,NULL,4,'0.99',176,'22.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(353,'GENTLEMEN STAGE','A Awe-Inspiring Reflection of a Monkey And a Student who must Overcome a Dentist in The First Manned Space Station',2006,1,NULL,6,'2.99',125,'22.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(354,'GHOST GROUNDHOG','A Brilliant Panorama of a Madman And a Composer who must Succumb a Car in Ancient India',2006,1,NULL,6,'4.99',85,'18.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(355,'GHOSTBUSTERS ELF','A Thoughtful Epistle of a Dog And a Feminist who must Chase a Composer in Berlin',2006,1,NULL,7,'0.99',101,'18.99','R','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(356,'GIANT TROOPERS','A Fateful Display of a Feminist And a Monkey who must Vanquish a Monkey in The Canadian Rockies',2006,1,NULL,5,'2.99',102,'10.99','R','Trailers,Commentaries','2006-02-15 05:03:42'),(357,'GILBERT PELICAN','A Fateful Tale of a Man And a Feminist who must Conquer a Crocodile in A Manhattan Penthouse',2006,1,NULL,7,'0.99',114,'13.99','G','Trailers,Commentaries','2006-02-15 05:03:42'),(358,'GILMORE BOILED','A Unbelieveable Documentary of a Boat And a Husband who must Succumb a Student in A U-Boat',2006,1,NULL,5,'0.99',163,'29.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(359,'GLADIATOR WESTWARD','A Astounding Reflection of a Squirrel And a Sumo Wrestler who must Sink a Dentist in Ancient Japan',2006,1,NULL,6,'4.99',173,'20.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(360,'GLASS DYING','A Astounding Drama of a Frisbee And a Astronaut who must Fight a Dog in Ancient Japan',2006,1,NULL,4,'0.99',103,'24.99','G','Trailers','2006-02-15 05:03:42'),(361,'GLEAMING JAWBREAKER','A Amazing Display of a Composer And a Forensic Psychologist who must Discover a Car in The Canadian Rockies',2006,1,NULL,5,'2.99',89,'25.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'),(362,'GLORY TRACY','A Amazing Saga of a Woman And a Womanizer who must Discover a Cat in The First Manned Space Station',2006,1,NULL,7,'2.99',115,'13.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(363,'GO PURPLE','A Fast-Paced Display of a Car And a Database Administrator who must Battle a Woman in A Baloon',2006,1,NULL,3,'0.99',54,'12.99','R','Trailers','2006-02-15 05:03:42'),(364,'GODFATHER DIARY','A Stunning Saga of a Lumberjack And a Squirrel who must Chase a Car in The Outback',2006,1,NULL,3,'2.99',73,'14.99','NC-17','Trailers','2006-02-15 05:03:42'),(365,'GOLD RIVER','A Taut Documentary of a Database Administrator And a Waitress who must Reach a Mad Scientist in A Baloon Factory',2006,1,NULL,4,'4.99',154,'21.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(366,'GOLDFINGER SENSIBILITY','A Insightful Drama of a Mad Scientist And a Hunter who must Defeat a Pastry Chef in New Orleans',2006,1,NULL,3,'0.99',93,'29.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(367,'GOLDMINE TYCOON','A Brilliant Epistle of a Composer And a Frisbee who must Conquer a Husband in The Outback',2006,1,NULL,6,'0.99',153,'20.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(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',2006,1,NULL,7,'2.99',84,'20.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(369,'GOODFELLAS SALUTE','A Unbelieveable Tale of a Dog And a Explorer who must Sink a Mad Cow in A Baloon Factory',2006,1,NULL,4,'4.99',56,'22.99','PG','Deleted Scenes','2006-02-15 05:03:42'),(370,'GORGEOUS BINGO','A Action-Packed Display of a Sumo Wrestler And a Car who must Overcome a Waitress in A Baloon Factory',2006,1,NULL,4,'2.99',108,'26.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(371,'GOSFORD DONNIE','A Epic Panorama of a Mad Scientist And a Monkey who must Redeem a Secret Agent in Berlin',2006,1,NULL,5,'4.99',129,'17.99','G','Commentaries','2006-02-15 05:03:42'),(372,'GRACELAND DYNAMITE','A Taut Display of a Cat And a Girl who must Overcome a Database Administrator in New Orleans',2006,1,NULL,5,'4.99',140,'26.99','R','Trailers,Commentaries','2006-02-15 05:03:42'),(373,'GRADUATE LORD','A Lacklusture Epistle of a Girl And a A Shark who must Meet a Mad Scientist in Ancient China',2006,1,NULL,7,'2.99',156,'14.99','G','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(374,'GRAFFITI LOVE','A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Build a Composer in Berlin',2006,1,NULL,3,'0.99',117,'29.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(375,'GRAIL FRANKENSTEIN','A Unbelieveable Saga of a Teacher And a Monkey who must Fight a Girl in An Abandoned Mine Shaft',2006,1,NULL,4,'2.99',85,'17.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(376,'GRAPES FURY','A Boring Yarn of a Mad Cow And a Sumo Wrestler who must Meet a Robot in Australia',2006,1,NULL,4,'0.99',155,'20.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(377,'GREASE YOUTH','A Emotional Panorama of a Secret Agent And a Waitress who must Escape a Composer in Soviet Georgia',2006,1,NULL,7,'0.99',135,'20.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(378,'GREATEST NORTH','A Astounding Character Study of a Secret Agent And a Robot who must Build a A Shark in Berlin',2006,1,NULL,5,'2.99',93,'24.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(379,'GREEDY ROOTS','A Amazing Reflection of a A Shark And a Butler who must Chase a Hunter in The Canadian Rockies',2006,1,NULL,7,'0.99',166,'14.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(380,'GREEK EVERYONE','A Stunning Display of a Butler And a Teacher who must Confront a A Shark in The First Manned Space Station',2006,1,NULL,7,'2.99',176,'11.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(381,'GRINCH MASSAGE','A Intrepid Display of a Madman And a Feminist who must Pursue a Pioneer in The First Manned Space Station',2006,1,NULL,7,'4.99',150,'25.99','R','Trailers','2006-02-15 05:03:42'),(382,'GRIT CLOCKWORK','A Thoughtful Display of a Dentist And a Squirrel who must Confront a Lumberjack in A Shark Tank',2006,1,NULL,3,'0.99',137,'21.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(383,'GROOVE FICTION','A Unbelieveable Reflection of a Moose And a A Shark who must Defeat a Lumberjack in An Abandoned Mine Shaft',2006,1,NULL,6,'0.99',111,'13.99','NC-17','Behind the Scenes','2006-02-15 05:03:42'),(384,'GROSSE WONDERFUL','A Epic Drama of a Cat And a Explorer who must Redeem a Moose in Australia',2006,1,NULL,5,'4.99',49,'19.99','R','Behind the Scenes','2006-02-15 05:03:42'),(385,'GROUNDHOG UNCUT','A Brilliant Panorama of a Astronaut And a Technical Writer who must Discover a Butler in A Manhattan Penthouse',2006,1,NULL,6,'4.99',139,'26.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(386,'GUMP DATE','A Intrepid Yarn of a Explorer And a Student who must Kill a Husband in An Abandoned Mine Shaft',2006,1,NULL,3,'4.99',53,'12.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'),(387,'GUN BONNIE','A Boring Display of a Sumo Wrestler And a Husband who must Build a Waitress in The Gulf of Mexico',2006,1,NULL,7,'0.99',100,'27.99','G','Behind the Scenes','2006-02-15 05:03:42'),(388,'GUNFIGHT MOON','A Epic Reflection of a Pastry Chef And a Explorer who must Reach a Dentist in The Sahara Desert',2006,1,NULL,5,'0.99',70,'16.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(389,'GUNFIGHTER MUSSOLINI','A Touching Saga of a Robot And a Boy who must Kill a Man in Ancient Japan',2006,1,NULL,3,'2.99',127,'9.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'),(390,'GUYS FALCON','A Boring Story of a Woman And a Feminist who must Redeem a Squirrel in A U-Boat',2006,1,NULL,4,'4.99',84,'20.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(391,'HALF OUTFIELD','A Epic Epistle of a Database Administrator And a Crocodile who must Face a Madman in A Jet Boat',2006,1,NULL,6,'2.99',146,'25.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(392,'HALL CASSIDY','A Beautiful Panorama of a Pastry Chef And a A Shark who must Battle a Pioneer in Soviet Georgia',2006,1,NULL,5,'4.99',51,'13.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(393,'HALLOWEEN NUTS','A Amazing Panorama of a Forensic Psychologist And a Technical Writer who must Fight a Dentist in A U-Boat',2006,1,NULL,6,'2.99',47,'19.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'),(394,'HAMLET WISDOM','A Touching Reflection of a Man And a Man who must Sink a Robot in The Outback',2006,1,NULL,7,'2.99',146,'21.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(395,'HANDICAP BOONDOCK','A Beautiful Display of a Pioneer And a Squirrel who must Vanquish a Sumo Wrestler in Soviet Georgia',2006,1,NULL,4,'0.99',108,'28.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(396,'HANGING DEEP','A Action-Packed Yarn of a Boat And a Crocodile who must Build a Monkey in Berlin',2006,1,NULL,5,'4.99',62,'18.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(397,'HANKY OCTOBER','A Boring Epistle of a Database Administrator And a Explorer who must Pursue a Madman in Soviet Georgia',2006,1,NULL,5,'2.99',107,'26.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(398,'HANOVER GALAXY','A Stunning Reflection of a Girl And a Secret Agent who must Succumb a Boy in A MySQL Convention',2006,1,NULL,5,'4.99',47,'21.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(399,'HAPPINESS UNITED','A Action-Packed Panorama of a Husband And a Feminist who must Meet a Forensic Psychologist in Ancient Japan',2006,1,NULL,6,'2.99',100,'23.99','G','Deleted Scenes','2006-02-15 05:03:42'),(400,'HARDLY ROBBERS','A Emotional Character Study of a Hunter And a Car who must Kill a Woman in Berlin',2006,1,NULL,7,'2.99',72,'15.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(401,'HAROLD FRENCH','A Stunning Saga of a Sumo Wrestler And a Student who must Outrace a Moose in The Sahara Desert',2006,1,NULL,6,'0.99',168,'10.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(402,'HARPER DYING','A Awe-Inspiring Reflection of a Woman And a Cat who must Confront a Feminist in The Sahara Desert',2006,1,NULL,3,'0.99',52,'15.99','G','Trailers','2006-02-15 05:03:42'),(403,'HARRY IDAHO','A Taut Yarn of a Technical Writer And a Feminist who must Outrace a Dog in California',2006,1,NULL,5,'4.99',121,'18.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(404,'HATE HANDICAP','A Intrepid Reflection of a Mad Scientist And a Pioneer who must Overcome a Hunter in The First Manned Space Station',2006,1,NULL,4,'0.99',107,'26.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(405,'HAUNTED ANTITRUST','A Amazing Saga of a Man And a Dentist who must Reach a Technical Writer in Ancient India',2006,1,NULL,6,'4.99',76,'13.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(406,'HAUNTING PIANIST','A Fast-Paced Story of a Database Administrator And a Composer who must Defeat a Squirrel in An Abandoned Amusement Park',2006,1,NULL,5,'0.99',181,'22.99','R','Behind the Scenes','2006-02-15 05:03:42'),(407,'HAWK CHILL','A Action-Packed Drama of a Mad Scientist And a Composer who must Outgun a Car in Australia',2006,1,NULL,5,'0.99',47,'12.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'),(408,'HEAD STRANGER','A Thoughtful Saga of a Hunter And a Crocodile who must Confront a Dog in The Gulf of Mexico',2006,1,NULL,4,'4.99',69,'28.99','R','Trailers,Commentaries','2006-02-15 05:03:42'),(409,'HEARTBREAKERS BRIGHT','A Awe-Inspiring Documentary of a A Shark And a Dentist who must Outrace a Pastry Chef in The Canadian Rockies',2006,1,NULL,3,'4.99',59,'9.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(410,'HEAVEN FREEDOM','A Intrepid Story of a Butler And a Car who must Vanquish a Man in New Orleans',2006,1,NULL,7,'2.99',48,'19.99','PG','Commentaries','2006-02-15 05:03:42'),(411,'HEAVENLY GUN','A Beautiful Yarn of a Forensic Psychologist And a Frisbee who must Battle a Moose in A Jet Boat',2006,1,NULL,5,'4.99',49,'13.99','NC-17','Behind the Scenes','2006-02-15 05:03:42'),(412,'HEAVYWEIGHTS BEAST','A Unbelieveable Story of a Composer And a Dog who must Overcome a Womanizer in An Abandoned Amusement Park',2006,1,NULL,6,'4.99',102,'25.99','G','Deleted Scenes','2006-02-15 05:03:42'),(413,'HEDWIG ALTER','A Action-Packed Yarn of a Womanizer And a Lumberjack who must Chase a Sumo Wrestler in A Monastery',2006,1,NULL,7,'2.99',169,'16.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(414,'HELLFIGHTERS SIERRA','A Taut Reflection of a A Shark And a Dentist who must Battle a Boat in Soviet Georgia',2006,1,NULL,3,'2.99',75,'23.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(415,'HIGH ENCINO','A Fateful Saga of a Waitress And a Hunter who must Outrace a Sumo Wrestler in Australia',2006,1,NULL,3,'2.99',84,'23.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(416,'HIGHBALL POTTER','A Action-Packed Saga of a Husband And a Dog who must Redeem a Database Administrator in The Sahara Desert',2006,1,NULL,6,'0.99',110,'10.99','R','Deleted Scenes','2006-02-15 05:03:42'),(417,'HILLS NEIGHBORS','A Epic Display of a Hunter And a Feminist who must Sink a Car in A U-Boat',2006,1,NULL,5,'0.99',93,'29.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(418,'HOBBIT ALIEN','A Emotional Drama of a Husband And a Girl who must Outgun a Composer in The First Manned Space Station',2006,1,NULL,5,'0.99',157,'27.99','PG-13','Commentaries','2006-02-15 05:03:42'),(419,'HOCUS FRIDA','A Awe-Inspiring Tale of a Girl And a Madman who must Outgun a Student in A Shark Tank',2006,1,NULL,4,'2.99',141,'19.99','G','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(420,'HOLES BRANNIGAN','A Fast-Paced Reflection of a Technical Writer And a Student who must Fight a Boy in The Canadian Rockies',2006,1,NULL,7,'4.99',128,'27.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(421,'HOLIDAY GAMES','A Insightful Reflection of a Waitress And a Madman who must Pursue a Boy in Ancient Japan',2006,1,NULL,7,'4.99',78,'10.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(422,'HOLLOW JEOPARDY','A Beautiful Character Study of a Robot And a Astronaut who must Overcome a Boat in A Monastery',2006,1,NULL,7,'4.99',136,'25.99','NC-17','Behind the Scenes','2006-02-15 05:03:42'),(423,'HOLLYWOOD ANONYMOUS','A Fast-Paced Epistle of a Boy And a Explorer who must Escape a Dog in A U-Boat',2006,1,NULL,7,'0.99',69,'29.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(424,'HOLOCAUST HIGHBALL','A Awe-Inspiring Yarn of a Composer And a Man who must Find a Robot in Soviet Georgia',2006,1,NULL,6,'0.99',149,'12.99','R','Deleted Scenes','2006-02-15 05:03:42'),(425,'HOLY TADPOLE','A Action-Packed Display of a Feminist And a Pioneer who must Pursue a Dog in A Baloon Factory',2006,1,NULL,6,'0.99',88,'20.99','R','Behind the Scenes','2006-02-15 05:03:42'),(426,'HOME PITY','A Touching Panorama of a Man And a Secret Agent who must Challenge a Teacher in A MySQL Convention',2006,1,NULL,7,'4.99',185,'15.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(427,'HOMEWARD CIDER','A Taut Reflection of a Astronaut And a Squirrel who must Fight a Squirrel in A Manhattan Penthouse',2006,1,NULL,5,'0.99',103,'19.99','R','Trailers','2006-02-15 05:03:42'),(428,'HOMICIDE PEACH','A Astounding Documentary of a Hunter And a Boy who must Confront a Boy in A MySQL Convention',2006,1,NULL,6,'2.99',141,'21.99','PG-13','Commentaries','2006-02-15 05:03:42'),(429,'HONEY TIES','A Taut Story of a Waitress And a Crocodile who must Outrace a Lumberjack in A Shark Tank',2006,1,NULL,3,'0.99',84,'29.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(430,'HOOK CHARIOTS','A Insightful Story of a Boy And a Dog who must Redeem a Boy in Australia',2006,1,NULL,7,'0.99',49,'23.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(431,'HOOSIERS BIRDCAGE','A Astounding Display of a Explorer And a Boat who must Vanquish a Car in The First Manned Space Station',2006,1,NULL,3,'2.99',176,'12.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(432,'HOPE TOOTSIE','A Amazing Documentary of a Student And a Sumo Wrestler who must Outgun a A Shark in A Shark Tank',2006,1,NULL,4,'2.99',139,'22.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(433,'HORN WORKING','A Stunning Display of a Mad Scientist And a Technical Writer who must Succumb a Monkey in A Shark Tank',2006,1,NULL,4,'2.99',95,'23.99','PG','Trailers','2006-02-15 05:03:42'),(434,'HORROR REIGN','A Touching Documentary of a A Shark And a Car who must Build a Husband in Nigeria',2006,1,NULL,3,'0.99',139,'25.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(435,'HOTEL HAPPINESS','A Thrilling Yarn of a Pastry Chef And a A Shark who must Challenge a Mad Scientist in The Outback',2006,1,NULL,6,'4.99',181,'28.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'),(436,'HOURS RAGE','A Fateful Story of a Explorer And a Feminist who must Meet a Technical Writer in Soviet Georgia',2006,1,NULL,4,'0.99',122,'14.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(437,'HOUSE DYNAMITE','A Taut Story of a Pioneer And a Squirrel who must Battle a Student in Soviet Georgia',2006,1,NULL,7,'2.99',109,'13.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(438,'HUMAN GRAFFITI','A Beautiful Reflection of a Womanizer And a Sumo Wrestler who must Chase a Database Administrator in The Gulf of Mexico',2006,1,NULL,3,'2.99',68,'22.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(439,'HUNCHBACK IMPOSSIBLE','A Touching Yarn of a Frisbee And a Dentist who must Fight a Composer in Ancient Japan',2006,1,NULL,4,'4.99',151,'28.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(440,'HUNGER ROOF','A Unbelieveable Yarn of a Student And a Database Administrator who must Outgun a Husband in An Abandoned Mine Shaft',2006,1,NULL,6,'0.99',105,'21.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(441,'HUNTER ALTER','A Emotional Drama of a Mad Cow And a Boat who must Redeem a Secret Agent in A Shark Tank',2006,1,NULL,5,'2.99',125,'21.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(442,'HUNTING MUSKETEERS','A Thrilling Reflection of a Pioneer And a Dentist who must Outrace a Womanizer in An Abandoned Mine Shaft',2006,1,NULL,6,'2.99',65,'24.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(443,'HURRICANE AFFAIR','A Lacklusture Epistle of a Database Administrator And a Woman who must Meet a Hunter in An Abandoned Mine Shaft',2006,1,NULL,6,'2.99',49,'11.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(444,'HUSTLER PARTY','A Emotional Reflection of a Sumo Wrestler And a Monkey who must Conquer a Robot in The Sahara Desert',2006,1,NULL,3,'4.99',83,'22.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(445,'HYDE DOCTOR','A Fanciful Documentary of a Boy And a Woman who must Redeem a Womanizer in A Jet Boat',2006,1,NULL,5,'2.99',100,'11.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(446,'HYSTERICAL GRAIL','A Amazing Saga of a Madman And a Dentist who must Build a Car in A Manhattan Penthouse',2006,1,NULL,5,'4.99',150,'19.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(447,'ICE CROSSING','A Fast-Paced Tale of a Butler And a Moose who must Overcome a Pioneer in A Manhattan Penthouse',2006,1,NULL,5,'2.99',131,'28.99','R','Deleted Scenes','2006-02-15 05:03:42'),(448,'IDAHO LOVE','A Fast-Paced Drama of a Student And a Crocodile who must Meet a Database Administrator in The Outback',2006,1,NULL,3,'2.99',172,'25.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(449,'IDENTITY LOVER','A Boring Tale of a Composer And a Mad Cow who must Defeat a Car in The Outback',2006,1,NULL,4,'2.99',119,'12.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'),(450,'IDOLS SNATCHERS','A Insightful Drama of a Car And a Composer who must Fight a Man in A Monastery',2006,1,NULL,5,'2.99',84,'29.99','NC-17','Trailers','2006-02-15 05:03:42'),(451,'IGBY MAKER','A Epic Documentary of a Hunter And a Dog who must Outgun a Dog in A Baloon Factory',2006,1,NULL,7,'4.99',160,'12.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(452,'ILLUSION AMELIE','A Emotional Epistle of a Boat And a Mad Scientist who must Outrace a Robot in An Abandoned Mine Shaft',2006,1,NULL,4,'0.99',122,'15.99','R','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(453,'IMAGE PRINCESS','A Lacklusture Panorama of a Secret Agent And a Crocodile who must Discover a Madman in The Canadian Rockies',2006,1,NULL,3,'2.99',178,'17.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(454,'IMPACT ALADDIN','A Epic Character Study of a Frisbee And a Moose who must Outgun a Technical Writer in A Shark Tank',2006,1,NULL,6,'0.99',180,'20.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(455,'IMPOSSIBLE PREJUDICE','A Awe-Inspiring Yarn of a Monkey And a Hunter who must Chase a Teacher in Ancient China',2006,1,NULL,7,'4.99',103,'11.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'),(456,'INCH JET','A Fateful Saga of a Womanizer And a Student who must Defeat a Butler in A Monastery',2006,1,NULL,6,'4.99',167,'18.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'),(457,'INDEPENDENCE HOTEL','A Thrilling Tale of a Technical Writer And a Boy who must Face a Pioneer in A Monastery',2006,1,NULL,5,'0.99',157,'21.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(458,'INDIAN LOVE','A Insightful Saga of a Mad Scientist And a Mad Scientist who must Kill a Astronaut in An Abandoned Fun House',2006,1,NULL,4,'0.99',135,'26.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(459,'INFORMER DOUBLE','A Action-Packed Display of a Woman And a Dentist who must Redeem a Forensic Psychologist in The Canadian Rockies',2006,1,NULL,4,'4.99',74,'23.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'),(460,'INNOCENT USUAL','A Beautiful Drama of a Pioneer And a Crocodile who must Challenge a Student in The Outback',2006,1,NULL,3,'4.99',178,'26.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(461,'INSECTS STONE','A Epic Display of a Butler And a Dog who must Vanquish a Crocodile in A Manhattan Penthouse',2006,1,NULL,3,'0.99',123,'14.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(462,'INSIDER ARIZONA','A Astounding Saga of a Mad Scientist And a Hunter who must Pursue a Robot in A Baloon Factory',2006,1,NULL,5,'2.99',78,'17.99','NC-17','Commentaries','2006-02-15 05:03:42'),(463,'INSTINCT AIRPORT','A Touching Documentary of a Mad Cow And a Explorer who must Confront a Butler in A Manhattan Penthouse',2006,1,NULL,4,'2.99',116,'21.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(464,'INTENTIONS EMPIRE','A Astounding Epistle of a Cat And a Cat who must Conquer a Mad Cow in A U-Boat',2006,1,NULL,3,'2.99',107,'13.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(465,'INTERVIEW LIAISONS','A Action-Packed Reflection of a Student And a Butler who must Discover a Database Administrator in A Manhattan Penthouse',2006,1,NULL,4,'4.99',59,'17.99','R','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(466,'INTOLERABLE INTENTIONS','A Awe-Inspiring Story of a Monkey And a Pastry Chef who must Succumb a Womanizer in A MySQL Convention',2006,1,NULL,6,'4.99',63,'20.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(467,'INTRIGUE WORST','A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat',2006,1,NULL,6,'0.99',181,'10.99','G','Deleted Scenes','2006-02-15 05:03:42'),(468,'INVASION CYCLONE','A Lacklusture Character Study of a Mad Scientist And a Womanizer who must Outrace a Explorer in A Monastery',2006,1,NULL,5,'2.99',97,'12.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(469,'IRON MOON','A Fast-Paced Documentary of a Mad Cow And a Boy who must Pursue a Dentist in A Baloon',2006,1,NULL,7,'4.99',46,'27.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(470,'ISHTAR ROCKETEER','A Astounding Saga of a Dog And a Squirrel who must Conquer a Dog in An Abandoned Fun House',2006,1,NULL,4,'4.99',79,'24.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(471,'ISLAND EXORCIST','A Fanciful Panorama of a Technical Writer And a Boy who must Find a Dentist in An Abandoned Fun House',2006,1,NULL,7,'2.99',84,'23.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'),(472,'ITALIAN AFRICAN','A Astounding Character Study of a Monkey And a Moose who must Outgun a Cat in A U-Boat',2006,1,NULL,3,'4.99',174,'24.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(473,'JACKET FRISCO','A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon',2006,1,NULL,5,'2.99',181,'16.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(474,'JADE BUNCH','A Insightful Panorama of a Squirrel And a Mad Cow who must Confront a Student in The First Manned Space Station',2006,1,NULL,6,'2.99',174,'21.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(475,'JAPANESE RUN','A Awe-Inspiring Epistle of a Feminist And a Girl who must Sink a Girl in The Outback',2006,1,NULL,6,'0.99',135,'29.99','G','Deleted Scenes','2006-02-15 05:03:42'),(476,'JASON TRAP','A Thoughtful Tale of a Woman And a A Shark who must Conquer a Dog in A Monastery',2006,1,NULL,5,'2.99',130,'9.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(477,'JAWBREAKER BROOKLYN','A Stunning Reflection of a Boat And a Pastry Chef who must Succumb a A Shark in A Jet Boat',2006,1,NULL,5,'0.99',118,'15.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(478,'JAWS HARRY','A Thrilling Display of a Database Administrator And a Monkey who must Overcome a Dog in An Abandoned Fun House',2006,1,NULL,4,'2.99',112,'10.99','G','Deleted Scenes','2006-02-15 05:03:42'),(479,'JEDI BENEATH','A Astounding Reflection of a Explorer And a Dentist who must Pursue a Student in Nigeria',2006,1,NULL,7,'0.99',128,'12.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(480,'JEEPERS WEDDING','A Astounding Display of a Composer And a Dog who must Kill a Pastry Chef in Soviet Georgia',2006,1,NULL,3,'2.99',84,'29.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(481,'JEKYLL FROGMEN','A Fanciful Epistle of a Student And a Astronaut who must Kill a Waitress in A Shark Tank',2006,1,NULL,4,'2.99',58,'22.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(482,'JEOPARDY ENCINO','A Boring Panorama of a Man And a Mad Cow who must Face a Explorer in Ancient India',2006,1,NULL,3,'0.99',102,'12.99','R','Trailers,Commentaries','2006-02-15 05:03:42'),(483,'JERICHO MULAN','A Amazing Yarn of a Hunter And a Butler who must Defeat a Boy in A Jet Boat',2006,1,NULL,3,'2.99',171,'29.99','NC-17','Commentaries','2006-02-15 05:03:42'),(484,'JERK PAYCHECK','A Touching Character Study of a Pastry Chef And a Database Administrator who must Reach a A Shark in Ancient Japan',2006,1,NULL,3,'2.99',172,'13.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(485,'JERSEY SASSY','A Lacklusture Documentary of a Madman And a Mad Cow who must Find a Feminist in Ancient Japan',2006,1,NULL,6,'4.99',60,'16.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(486,'JET NEIGHBORS','A Amazing Display of a Lumberjack And a Teacher who must Outrace a Woman in A U-Boat',2006,1,NULL,7,'4.99',59,'14.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(487,'JINGLE SAGEBRUSH','A Epic Character Study of a Feminist And a Student who must Meet a Woman in A Baloon',2006,1,NULL,6,'4.99',124,'29.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'),(488,'JOON NORTHWEST','A Thrilling Panorama of a Technical Writer And a Car who must Discover a Forensic Psychologist in A Shark Tank',2006,1,NULL,3,'0.99',105,'23.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(489,'JUGGLER HARDLY','A Epic Story of a Mad Cow And a Astronaut who must Challenge a Car in California',2006,1,NULL,4,'0.99',54,'14.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'),(490,'JUMANJI BLADE','A Intrepid Yarn of a Husband And a Womanizer who must Pursue a Mad Scientist in New Orleans',2006,1,NULL,4,'2.99',121,'13.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(491,'JUMPING WRATH','A Touching Epistle of a Monkey And a Feminist who must Discover a Boat in Berlin',2006,1,NULL,4,'0.99',74,'18.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(492,'JUNGLE CLOSER','A Boring Character Study of a Boy And a Woman who must Battle a Astronaut in Australia',2006,1,NULL,6,'0.99',134,'11.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(493,'KANE EXORCIST','A Epic Documentary of a Composer And a Robot who must Overcome a Car in Berlin',2006,1,NULL,5,'0.99',92,'18.99','R','Trailers,Commentaries','2006-02-15 05:03:42'),(494,'KARATE MOON','A Astounding Yarn of a Womanizer And a Dog who must Reach a Waitress in A MySQL Convention',2006,1,NULL,4,'0.99',120,'21.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'),(495,'KENTUCKIAN GIANT','A Stunning Yarn of a Woman And a Frisbee who must Escape a Waitress in A U-Boat',2006,1,NULL,5,'2.99',169,'10.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(496,'KICK SAVANNAH','A Emotional Drama of a Monkey And a Robot who must Defeat a Monkey in New Orleans',2006,1,NULL,3,'0.99',179,'10.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(497,'KILL BROTHERHOOD','A Touching Display of a Hunter And a Secret Agent who must Redeem a Husband in The Outback',2006,1,NULL,4,'0.99',54,'15.99','G','Trailers,Commentaries','2006-02-15 05:03:42'),(498,'KILLER INNOCENT','A Fanciful Character Study of a Student And a Explorer who must Succumb a Composer in An Abandoned Mine Shaft',2006,1,NULL,7,'2.99',161,'11.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(499,'KING EVOLUTION','A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon',2006,1,NULL,3,'4.99',184,'24.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(500,'KISS GLORY','A Lacklusture Reflection of a Girl And a Husband who must Find a Robot in The Canadian Rockies',2006,1,NULL,5,'4.99',163,'11.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(501,'KISSING DOLLS','A Insightful Reflection of a Pioneer And a Teacher who must Build a Composer in The First Manned Space Station',2006,1,NULL,3,'4.99',141,'9.99','R','Trailers','2006-02-15 05:03:42'),(502,'KNOCK WARLOCK','A Unbelieveable Story of a Teacher And a Boat who must Confront a Moose in A Baloon',2006,1,NULL,4,'2.99',71,'21.99','PG-13','Trailers','2006-02-15 05:03:42'),(503,'KRAMER CHOCOLATE','A Amazing Yarn of a Robot And a Pastry Chef who must Redeem a Mad Scientist in The Outback',2006,1,NULL,3,'2.99',171,'24.99','R','Trailers','2006-02-15 05:03:42'),(504,'KWAI HOMEWARD','A Amazing Drama of a Car And a Squirrel who must Pursue a Car in Soviet Georgia',2006,1,NULL,5,'0.99',46,'25.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'),(505,'LABYRINTH LEAGUE','A Awe-Inspiring Saga of a Composer And a Frisbee who must Succumb a Pioneer in The Sahara Desert',2006,1,NULL,6,'2.99',46,'24.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(506,'LADY STAGE','A Beautiful Character Study of a Woman And a Man who must Pursue a Explorer in A U-Boat',2006,1,NULL,4,'4.99',67,'14.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(507,'LADYBUGS ARMAGEDDON','A Fateful Reflection of a Dog And a Mad Scientist who must Meet a Mad Scientist in New Orleans',2006,1,NULL,4,'0.99',113,'13.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'),(508,'LAMBS CINCINATTI','A Insightful Story of a Man And a Feminist who must Fight a Composer in Australia',2006,1,NULL,6,'4.99',144,'18.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(509,'LANGUAGE COWBOY','A Epic Yarn of a Cat And a Madman who must Vanquish a Dentist in An Abandoned Amusement Park',2006,1,NULL,5,'0.99',78,'26.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(510,'LAWLESS VISION','A Insightful Yarn of a Boy And a Sumo Wrestler who must Outgun a Car in The Outback',2006,1,NULL,6,'4.99',181,'29.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(511,'LAWRENCE LOVE','A Fanciful Yarn of a Database Administrator And a Mad Cow who must Pursue a Womanizer in Berlin',2006,1,NULL,7,'0.99',175,'23.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(512,'LEAGUE HELLFIGHTERS','A Thoughtful Saga of a A Shark And a Monkey who must Outgun a Student in Ancient China',2006,1,NULL,5,'4.99',110,'25.99','PG-13','Trailers','2006-02-15 05:03:42'),(513,'LEATHERNECKS DWARFS','A Fateful Reflection of a Dog And a Mad Cow who must Outrace a Teacher in An Abandoned Mine Shaft',2006,1,NULL,6,'2.99',153,'21.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(514,'LEBOWSKI SOLDIERS','A Beautiful Epistle of a Secret Agent And a Pioneer who must Chase a Astronaut in Ancient China',2006,1,NULL,6,'2.99',69,'17.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(515,'LEGALLY SECRETARY','A Astounding Tale of a A Shark And a Moose who must Meet a Womanizer in The Sahara Desert',2006,1,NULL,7,'4.99',113,'14.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(516,'LEGEND JEDI','A Awe-Inspiring Epistle of a Pioneer And a Student who must Outgun a Crocodile in The Outback',2006,1,NULL,7,'0.99',59,'18.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(517,'LESSON CLEOPATRA','A Emotional Display of a Man And a Explorer who must Build a Boy in A Manhattan Penthouse',2006,1,NULL,3,'0.99',167,'28.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(518,'LIAISONS SWEET','A Boring Drama of a A Shark And a Explorer who must Redeem a Waitress in The Canadian Rockies',2006,1,NULL,5,'4.99',140,'15.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(519,'LIBERTY MAGNIFICENT','A Boring Drama of a Student And a Cat who must Sink a Technical Writer in A Baloon',2006,1,NULL,3,'2.99',138,'27.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(520,'LICENSE WEEKEND','A Insightful Story of a Man And a Husband who must Overcome a Madman in A Monastery',2006,1,NULL,7,'2.99',91,'28.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(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',2006,1,NULL,7,'4.99',147,'28.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(522,'LIFE TWISTED','A Thrilling Reflection of a Teacher And a Composer who must Find a Man in The First Manned Space Station',2006,1,NULL,4,'2.99',137,'9.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(523,'LIGHTS DEER','A Unbelieveable Epistle of a Dog And a Woman who must Confront a Moose in The Gulf of Mexico',2006,1,NULL,7,'0.99',174,'21.99','R','Commentaries','2006-02-15 05:03:42'),(524,'LION UNCUT','A Intrepid Display of a Pastry Chef And a Cat who must Kill a A Shark in Ancient China',2006,1,NULL,6,'0.99',50,'13.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(525,'LOATHING LEGALLY','A Boring Epistle of a Pioneer And a Mad Scientist who must Escape a Frisbee in The Gulf of Mexico',2006,1,NULL,4,'0.99',140,'29.99','R','Deleted Scenes','2006-02-15 05:03:42'),(526,'LOCK REAR','A Thoughtful Character Study of a Squirrel And a Technical Writer who must Outrace a Student in Ancient Japan',2006,1,NULL,7,'2.99',120,'10.99','R','Trailers,Commentaries','2006-02-15 05:03:42'),(527,'LOLA AGENT','A Astounding Tale of a Mad Scientist And a Husband who must Redeem a Database Administrator in Ancient Japan',2006,1,NULL,4,'4.99',85,'24.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'),(528,'LOLITA WORLD','A Thrilling Drama of a Girl And a Robot who must Redeem a Waitress in An Abandoned Mine Shaft',2006,1,NULL,4,'2.99',155,'25.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(529,'LONELY ELEPHANT','A Intrepid Story of a Student And a Dog who must Challenge a Explorer in Soviet Georgia',2006,1,NULL,3,'2.99',67,'12.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(530,'LORD ARIZONA','A Action-Packed Display of a Frisbee And a Pastry Chef who must Pursue a Crocodile in A Jet Boat',2006,1,NULL,5,'2.99',108,'27.99','PG-13','Trailers','2006-02-15 05:03:42'),(531,'LOSE INCH','A Stunning Reflection of a Student And a Technical Writer who must Battle a Butler in The First Manned Space Station',2006,1,NULL,3,'0.99',137,'18.99','R','Trailers,Commentaries','2006-02-15 05:03:42'),(532,'LOSER HUSTLER','A Stunning Drama of a Robot And a Feminist who must Outgun a Butler in Nigeria',2006,1,NULL,5,'4.99',80,'28.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(533,'LOST BIRD','A Emotional Character Study of a Robot And a A Shark who must Defeat a Technical Writer in A Manhattan Penthouse',2006,1,NULL,4,'2.99',98,'21.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'),(534,'LOUISIANA HARRY','A Lacklusture Drama of a Girl And a Technical Writer who must Redeem a Monkey in A Shark Tank',2006,1,NULL,5,'0.99',70,'18.99','PG-13','Trailers','2006-02-15 05:03:42'),(535,'LOVE SUICIDES','A Brilliant Panorama of a Hunter And a Explorer who must Pursue a Dentist in An Abandoned Fun House',2006,1,NULL,6,'0.99',181,'21.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(536,'LOVELY JINGLE','A Fanciful Yarn of a Crocodile And a Forensic Psychologist who must Discover a Crocodile in The Outback',2006,1,NULL,3,'2.99',65,'18.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(537,'LOVER TRUMAN','A Emotional Yarn of a Robot And a Boy who must Outgun a Technical Writer in A U-Boat',2006,1,NULL,3,'2.99',75,'29.99','G','Trailers','2006-02-15 05:03:42'),(538,'LOVERBOY ATTACKS','A Boring Story of a Car And a Butler who must Build a Girl in Soviet Georgia',2006,1,NULL,7,'0.99',162,'19.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(539,'LUCK OPUS','A Boring Display of a Moose And a Squirrel who must Outrace a Teacher in A Shark Tank',2006,1,NULL,7,'2.99',152,'21.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(540,'LUCKY FLYING','A Lacklusture Character Study of a A Shark And a Man who must Find a Forensic Psychologist in A U-Boat',2006,1,NULL,7,'2.99',97,'10.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(541,'LUKE MUMMY','A Taut Character Study of a Boy And a Robot who must Redeem a Mad Scientist in Ancient India',2006,1,NULL,5,'2.99',74,'21.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(542,'LUST LOCK','A Fanciful Panorama of a Hunter And a Dentist who must Meet a Secret Agent in The Sahara Desert',2006,1,NULL,3,'2.99',52,'28.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(543,'MADIGAN DORADO','A Astounding Character Study of a A Shark And a A Shark who must Discover a Crocodile in The Outback',2006,1,NULL,5,'4.99',116,'20.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(544,'MADISON TRAP','A Awe-Inspiring Reflection of a Monkey And a Dentist who must Overcome a Pioneer in A U-Boat',2006,1,NULL,4,'2.99',147,'11.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(545,'MADNESS ATTACKS','A Fanciful Tale of a Squirrel And a Boat who must Defeat a Crocodile in The Gulf of Mexico',2006,1,NULL,4,'0.99',178,'14.99','PG-13','Trailers','2006-02-15 05:03:42'),(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',2006,1,NULL,7,'2.99',98,'27.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(547,'MAGIC MALLRATS','A Touching Documentary of a Pastry Chef And a Pastry Chef who must Build a Mad Scientist in California',2006,1,NULL,3,'0.99',117,'19.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'),(548,'MAGNIFICENT CHITTY','A Insightful Story of a Teacher And a Hunter who must Face a Mad Cow in California',2006,1,NULL,3,'2.99',53,'27.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(549,'MAGNOLIA FORRESTER','A Thoughtful Documentary of a Composer And a Explorer who must Conquer a Dentist in New Orleans',2006,1,NULL,4,'0.99',171,'28.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(550,'MAGUIRE APACHE','A Fast-Paced Reflection of a Waitress And a Hunter who must Defeat a Forensic Psychologist in A Baloon',2006,1,NULL,6,'2.99',74,'22.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'),(551,'MAIDEN HOME','A Lacklusture Saga of a Moose And a Teacher who must Kill a Forensic Psychologist in A MySQL Convention',2006,1,NULL,3,'4.99',138,'9.99','PG','Behind the Scenes','2006-02-15 05:03:42'),(552,'MAJESTIC FLOATS','A Thrilling Character Study of a Moose And a Student who must Escape a Butler in The First Manned Space Station',2006,1,NULL,5,'0.99',130,'15.99','PG','Trailers','2006-02-15 05:03:42'),(553,'MAKER GABLES','A Stunning Display of a Moose And a Database Administrator who must Pursue a Composer in A Jet Boat',2006,1,NULL,4,'0.99',136,'12.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(554,'MALKOVICH PET','A Intrepid Reflection of a Waitress And a A Shark who must Kill a Squirrel in The Outback',2006,1,NULL,6,'2.99',159,'22.99','G','Behind the Scenes','2006-02-15 05:03:42'),(555,'MALLRATS UNITED','A Thrilling Yarn of a Waitress And a Dentist who must Find a Hunter in A Monastery',2006,1,NULL,4,'0.99',133,'25.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(556,'MALTESE HOPE','A Fast-Paced Documentary of a Crocodile And a Sumo Wrestler who must Conquer a Explorer in California',2006,1,NULL,6,'4.99',127,'26.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'),(557,'MANCHURIAN CURTAIN','A Stunning Tale of a Mad Cow And a Boy who must Battle a Boy in Berlin',2006,1,NULL,5,'2.99',177,'27.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'),(558,'MANNEQUIN WORST','A Astounding Saga of a Mad Cow And a Pastry Chef who must Discover a Husband in Ancient India',2006,1,NULL,3,'2.99',71,'18.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(559,'MARRIED GO','A Fanciful Story of a Womanizer And a Dog who must Face a Forensic Psychologist in The Sahara Desert',2006,1,NULL,7,'2.99',114,'22.99','G','Behind the Scenes','2006-02-15 05:03:42'),(560,'MARS ROMAN','A Boring Drama of a Car And a Dog who must Succumb a Madman in Soviet Georgia',2006,1,NULL,6,'0.99',62,'21.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(561,'MASK PEACH','A Boring Character Study of a Student And a Robot who must Meet a Woman in California',2006,1,NULL,6,'2.99',123,'26.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(562,'MASKED BUBBLE','A Fanciful Documentary of a Pioneer And a Boat who must Pursue a Pioneer in An Abandoned Mine Shaft',2006,1,NULL,6,'0.99',151,'12.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(563,'MASSACRE USUAL','A Fateful Reflection of a Waitress And a Crocodile who must Challenge a Forensic Psychologist in California',2006,1,NULL,6,'4.99',165,'16.99','R','Commentaries','2006-02-15 05:03:42'),(564,'MASSAGE IMAGE','A Fateful Drama of a Frisbee And a Crocodile who must Vanquish a Dog in The First Manned Space Station',2006,1,NULL,4,'2.99',161,'11.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(565,'MATRIX SNOWMAN','A Action-Packed Saga of a Womanizer And a Woman who must Overcome a Student in California',2006,1,NULL,6,'4.99',56,'9.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(566,'MAUDE MOD','A Beautiful Documentary of a Forensic Psychologist And a Cat who must Reach a Astronaut in Nigeria',2006,1,NULL,6,'0.99',72,'20.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(567,'MEET CHOCOLATE','A Boring Documentary of a Dentist And a Butler who must Confront a Monkey in A MySQL Convention',2006,1,NULL,3,'2.99',80,'26.99','G','Trailers','2006-02-15 05:03:42'),(568,'MEMENTO ZOOLANDER','A Touching Epistle of a Squirrel And a Explorer who must Redeem a Pastry Chef in The Sahara Desert',2006,1,NULL,4,'4.99',77,'11.99','NC-17','Behind the Scenes','2006-02-15 05:03:42'),(569,'MENAGERIE RUSHMORE','A Unbelieveable Panorama of a Composer And a Butler who must Overcome a Database Administrator in The First Manned Space Station',2006,1,NULL,7,'2.99',147,'18.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(570,'MERMAID INSECTS','A Lacklusture Drama of a Waitress And a Husband who must Fight a Husband in California',2006,1,NULL,5,'4.99',104,'20.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(571,'METAL ARMAGEDDON','A Thrilling Display of a Lumberjack And a Crocodile who must Meet a Monkey in A Baloon Factory',2006,1,NULL,6,'2.99',161,'26.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(572,'METROPOLIS COMA','A Emotional Saga of a Database Administrator And a Pastry Chef who must Confront a Teacher in A Baloon Factory',2006,1,NULL,4,'2.99',64,'9.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(573,'MICROCOSMOS PARADISE','A Touching Character Study of a Boat And a Student who must Sink a A Shark in Nigeria',2006,1,NULL,6,'2.99',105,'22.99','PG-13','Commentaries','2006-02-15 05:03:42'),(574,'MIDNIGHT WESTWARD','A Taut Reflection of a Husband And a A Shark who must Redeem a Pastry Chef in A Monastery',2006,1,NULL,3,'0.99',86,'19.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(575,'MIDSUMMER GROUNDHOG','A Fateful Panorama of a Moose And a Dog who must Chase a Crocodile in Ancient Japan',2006,1,NULL,3,'4.99',48,'27.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(576,'MIGHTY LUCK','A Astounding Epistle of a Mad Scientist And a Pioneer who must Escape a Database Administrator in A MySQL Convention',2006,1,NULL,7,'2.99',122,'13.99','PG','Behind the Scenes','2006-02-15 05:03:42'),(577,'MILE MULAN','A Lacklusture Epistle of a Cat And a Husband who must Confront a Boy in A MySQL Convention',2006,1,NULL,4,'0.99',64,'10.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(578,'MILLION ACE','A Brilliant Documentary of a Womanizer And a Squirrel who must Find a Technical Writer in The Sahara Desert',2006,1,NULL,4,'4.99',142,'16.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'),(579,'MINDS TRUMAN','A Taut Yarn of a Mad Scientist And a Crocodile who must Outgun a Database Administrator in A Monastery',2006,1,NULL,3,'4.99',149,'22.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(580,'MINE TITANS','A Amazing Yarn of a Robot And a Womanizer who must Discover a Forensic Psychologist in Berlin',2006,1,NULL,3,'4.99',166,'12.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(581,'MINORITY KISS','A Insightful Display of a Lumberjack And a Sumo Wrestler who must Meet a Man in The Outback',2006,1,NULL,4,'0.99',59,'16.99','G','Trailers','2006-02-15 05:03:42'),(582,'MIRACLE VIRTUAL','A Touching Epistle of a Butler And a Boy who must Find a Mad Scientist in The Sahara Desert',2006,1,NULL,3,'2.99',162,'19.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(583,'MISSION ZOOLANDER','A Intrepid Story of a Sumo Wrestler And a Teacher who must Meet a A Shark in An Abandoned Fun House',2006,1,NULL,3,'4.99',164,'26.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'),(584,'MIXED DOORS','A Taut Drama of a Womanizer And a Lumberjack who must Succumb a Pioneer in Ancient India',2006,1,NULL,6,'2.99',180,'26.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'),(585,'MOB DUFFEL','A Unbelieveable Documentary of a Frisbee And a Boat who must Meet a Boy in The Canadian Rockies',2006,1,NULL,4,'0.99',105,'25.99','G','Trailers','2006-02-15 05:03:42'),(586,'MOCKINGBIRD HOLLYWOOD','A Thoughtful Panorama of a Man And a Car who must Sink a Composer in Berlin',2006,1,NULL,4,'0.99',60,'27.99','PG','Behind the Scenes','2006-02-15 05:03:42'),(587,'MOD SECRETARY','A Boring Documentary of a Mad Cow And a Cat who must Build a Lumberjack in New Orleans',2006,1,NULL,6,'4.99',77,'20.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(588,'MODEL FISH','A Beautiful Panorama of a Boat And a Crocodile who must Outrace a Dog in Australia',2006,1,NULL,4,'4.99',175,'11.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(589,'MODERN DORADO','A Awe-Inspiring Story of a Butler And a Sumo Wrestler who must Redeem a Boy in New Orleans',2006,1,NULL,3,'0.99',74,'20.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(590,'MONEY HAROLD','A Touching Tale of a Explorer And a Boat who must Defeat a Robot in Australia',2006,1,NULL,3,'2.99',135,'17.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'),(591,'MONSOON CAUSE','A Astounding Tale of a Crocodile And a Car who must Outrace a Squirrel in A U-Boat',2006,1,NULL,6,'4.99',182,'20.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(592,'MONSTER SPARTACUS','A Fast-Paced Story of a Waitress And a Cat who must Fight a Girl in Australia',2006,1,NULL,6,'2.99',107,'28.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(593,'MONTEREY LABYRINTH','A Awe-Inspiring Drama of a Monkey And a Composer who must Escape a Feminist in A U-Boat',2006,1,NULL,6,'0.99',158,'13.99','G','Trailers,Commentaries','2006-02-15 05:03:42'),(594,'MONTEZUMA COMMAND','A Thrilling Reflection of a Waitress And a Butler who must Battle a Butler in A Jet Boat',2006,1,NULL,6,'0.99',126,'22.99','NC-17','Trailers','2006-02-15 05:03:42'),(595,'MOON BUNCH','A Beautiful Tale of a Astronaut And a Mad Cow who must Challenge a Cat in A Baloon Factory',2006,1,NULL,7,'0.99',83,'20.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(596,'MOONSHINE CABIN','A Thoughtful Display of a Astronaut And a Feminist who must Chase a Frisbee in A Jet Boat',2006,1,NULL,4,'4.99',171,'25.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'),(597,'MOONWALKER FOOL','A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans',2006,1,NULL,5,'4.99',184,'12.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(598,'MOSQUITO ARMAGEDDON','A Thoughtful Character Study of a Waitress And a Feminist who must Build a Teacher in Ancient Japan',2006,1,NULL,6,'0.99',57,'22.99','G','Trailers','2006-02-15 05:03:42'),(599,'MOTHER OLEANDER','A Boring Tale of a Husband And a Boy who must Fight a Squirrel in Ancient China',2006,1,NULL,3,'0.99',103,'20.99','R','Trailers,Commentaries','2006-02-15 05:03:42'),(600,'MOTIONS DETAILS','A Awe-Inspiring Reflection of a Dog And a Student who must Kill a Car in An Abandoned Fun House',2006,1,NULL,5,'0.99',166,'16.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(601,'MOULIN WAKE','A Astounding Story of a Forensic Psychologist And a Cat who must Battle a Teacher in An Abandoned Mine Shaft',2006,1,NULL,4,'0.99',79,'20.99','PG-13','Trailers','2006-02-15 05:03:42'),(602,'MOURNING PURPLE','A Lacklusture Display of a Waitress And a Lumberjack who must Chase a Pioneer in New Orleans',2006,1,NULL,5,'0.99',146,'14.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(603,'MOVIE SHAKESPEARE','A Insightful Display of a Database Administrator And a Student who must Build a Hunter in Berlin',2006,1,NULL,6,'4.99',53,'27.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(604,'MULAN MOON','A Emotional Saga of a Womanizer And a Pioneer who must Overcome a Dentist in A Baloon',2006,1,NULL,4,'0.99',160,'10.99','G','Behind the Scenes','2006-02-15 05:03:42'),(605,'MULHOLLAND BEAST','A Awe-Inspiring Display of a Husband And a Squirrel who must Battle a Sumo Wrestler in A Jet Boat',2006,1,NULL,7,'2.99',157,'13.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(606,'MUMMY CREATURES','A Fateful Character Study of a Crocodile And a Monkey who must Meet a Dentist in Australia',2006,1,NULL,3,'0.99',160,'15.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(607,'MUPPET MILE','A Lacklusture Story of a Madman And a Teacher who must Kill a Frisbee in The Gulf of Mexico',2006,1,NULL,5,'4.99',50,'18.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(608,'MURDER ANTITRUST','A Brilliant Yarn of a Car And a Database Administrator who must Escape a Boy in A MySQL Convention',2006,1,NULL,6,'2.99',166,'11.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(609,'MUSCLE BRIGHT','A Stunning Panorama of a Sumo Wrestler And a Husband who must Redeem a Madman in Ancient India',2006,1,NULL,7,'2.99',185,'23.99','G','Deleted Scenes','2006-02-15 05:03:42'),(610,'MUSIC BOONDOCK','A Thrilling Tale of a Butler And a Astronaut who must Battle a Explorer in The First Manned Space Station',2006,1,NULL,7,'0.99',129,'17.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(611,'MUSKETEERS WAIT','A Touching Yarn of a Student And a Moose who must Fight a Mad Cow in Australia',2006,1,NULL,7,'4.99',73,'17.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(612,'MUSSOLINI SPOILERS','A Thrilling Display of a Boat And a Monkey who must Meet a Composer in Ancient China',2006,1,NULL,6,'2.99',180,'10.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(613,'MYSTIC TRUMAN','A Epic Yarn of a Teacher And a Hunter who must Outgun a Explorer in Soviet Georgia',2006,1,NULL,5,'0.99',92,'19.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(614,'NAME DETECTIVE','A Touching Saga of a Sumo Wrestler And a Cat who must Pursue a Mad Scientist in Nigeria',2006,1,NULL,5,'4.99',178,'11.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(615,'NASH CHOCOLAT','A Epic Reflection of a Monkey And a Mad Cow who must Kill a Forensic Psychologist in An Abandoned Mine Shaft',2006,1,NULL,6,'2.99',180,'21.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(616,'NATIONAL STORY','A Taut Epistle of a Mad Scientist And a Girl who must Escape a Monkey in California',2006,1,NULL,4,'2.99',92,'19.99','NC-17','Trailers','2006-02-15 05:03:42'),(617,'NATURAL STOCK','A Fast-Paced Story of a Sumo Wrestler And a Girl who must Defeat a Car in A Baloon Factory',2006,1,NULL,4,'0.99',50,'24.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(618,'NECKLACE OUTBREAK','A Astounding Epistle of a Database Administrator And a Mad Scientist who must Pursue a Cat in California',2006,1,NULL,3,'0.99',132,'21.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(619,'NEIGHBORS CHARADE','A Fanciful Reflection of a Crocodile And a Astronaut who must Outrace a Feminist in An Abandoned Amusement Park',2006,1,NULL,3,'0.99',161,'20.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(620,'NEMO CAMPUS','A Lacklusture Reflection of a Monkey And a Squirrel who must Outrace a Womanizer in A Manhattan Penthouse',2006,1,NULL,5,'2.99',131,'23.99','NC-17','Trailers','2006-02-15 05:03:42'),(621,'NETWORK PEAK','A Unbelieveable Reflection of a Butler And a Boat who must Outgun a Mad Scientist in California',2006,1,NULL,5,'2.99',75,'23.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(622,'NEWSIES STORY','A Action-Packed Character Study of a Dog And a Lumberjack who must Outrace a Moose in The Gulf of Mexico',2006,1,NULL,4,'0.99',159,'25.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(623,'NEWTON LABYRINTH','A Intrepid Character Study of a Moose And a Waitress who must Find a A Shark in Ancient India',2006,1,NULL,4,'0.99',75,'9.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(624,'NIGHTMARE CHILL','A Brilliant Display of a Robot And a Butler who must Fight a Waitress in An Abandoned Mine Shaft',2006,1,NULL,3,'4.99',149,'25.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(625,'NONE SPIKING','A Boring Reflection of a Secret Agent And a Astronaut who must Face a Composer in A Manhattan Penthouse',2006,1,NULL,3,'0.99',83,'18.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'),(626,'NOON PAPI','A Unbelieveable Character Study of a Mad Scientist And a Astronaut who must Find a Pioneer in A Manhattan Penthouse',2006,1,NULL,5,'2.99',57,'12.99','G','Behind the Scenes','2006-02-15 05:03:42'),(627,'NORTH TEQUILA','A Beautiful Character Study of a Mad Cow And a Robot who must Reach a Womanizer in New Orleans',2006,1,NULL,4,'4.99',67,'9.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(628,'NORTHWEST POLISH','A Boring Character Study of a Boy And a A Shark who must Outrace a Womanizer in The Outback',2006,1,NULL,5,'2.99',172,'24.99','PG','Trailers','2006-02-15 05:03:42'),(629,'NOTORIOUS REUNION','A Amazing Epistle of a Woman And a Squirrel who must Fight a Hunter in A Baloon',2006,1,NULL,7,'0.99',128,'9.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(630,'NOTTING SPEAKEASY','A Thoughtful Display of a Butler And a Womanizer who must Find a Waitress in The Canadian Rockies',2006,1,NULL,7,'0.99',48,'19.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'),(631,'NOVOCAINE FLIGHT','A Fanciful Display of a Student And a Teacher who must Outgun a Crocodile in Nigeria',2006,1,NULL,4,'0.99',64,'11.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(632,'NUTS TIES','A Thoughtful Drama of a Explorer And a Womanizer who must Meet a Teacher in California',2006,1,NULL,5,'4.99',145,'10.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(633,'OCTOBER SUBMARINE','A Taut Epistle of a Monkey And a Boy who must Confront a Husband in A Jet Boat',2006,1,NULL,6,'4.99',54,'10.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(634,'ODDS BOOGIE','A Thrilling Yarn of a Feminist And a Madman who must Battle a Hunter in Berlin',2006,1,NULL,6,'0.99',48,'14.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(635,'OKLAHOMA JUMANJI','A Thoughtful Drama of a Dentist And a Womanizer who must Meet a Husband in The Sahara Desert',2006,1,NULL,7,'0.99',58,'15.99','PG','Behind the Scenes','2006-02-15 05:03:42'),(636,'OLEANDER CLUE','A Boring Story of a Teacher And a Monkey who must Succumb a Forensic Psychologist in A Jet Boat',2006,1,NULL,5,'0.99',161,'12.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(637,'OPEN AFRICAN','A Lacklusture Drama of a Secret Agent And a Explorer who must Discover a Car in A U-Boat',2006,1,NULL,7,'4.99',131,'16.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'),(638,'OPERATION OPERATION','A Intrepid Character Study of a Man And a Frisbee who must Overcome a Madman in Ancient China',2006,1,NULL,7,'2.99',156,'23.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(639,'OPPOSITE NECKLACE','A Fateful Epistle of a Crocodile And a Moose who must Kill a Explorer in Nigeria',2006,1,NULL,7,'4.99',92,'9.99','PG','Deleted Scenes','2006-02-15 05:03:42'),(640,'OPUS ICE','A Fast-Paced Drama of a Hunter And a Boy who must Discover a Feminist in The Sahara Desert',2006,1,NULL,5,'4.99',102,'21.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(641,'ORANGE GRAPES','A Astounding Documentary of a Butler And a Womanizer who must Face a Dog in A U-Boat',2006,1,NULL,4,'0.99',76,'21.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'),(642,'ORDER BETRAYED','A Amazing Saga of a Dog And a A Shark who must Challenge a Cat in The Sahara Desert',2006,1,NULL,7,'2.99',120,'13.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(643,'ORIENT CLOSER','A Astounding Epistle of a Technical Writer And a Teacher who must Fight a Squirrel in The Sahara Desert',2006,1,NULL,3,'2.99',118,'22.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(644,'OSCAR GOLD','A Insightful Tale of a Database Administrator And a Dog who must Face a Madman in Soviet Georgia',2006,1,NULL,7,'2.99',115,'29.99','PG','Behind the Scenes','2006-02-15 05:03:42'),(645,'OTHERS SOUP','A Lacklusture Documentary of a Mad Cow And a Madman who must Sink a Moose in The Gulf of Mexico',2006,1,NULL,7,'2.99',118,'18.99','PG','Deleted Scenes','2006-02-15 05:03:42'),(646,'OUTBREAK DIVINE','A Unbelieveable Yarn of a Database Administrator And a Woman who must Succumb a A Shark in A U-Boat',2006,1,NULL,6,'0.99',169,'12.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(647,'OUTFIELD MASSACRE','A Thoughtful Drama of a Husband And a Secret Agent who must Pursue a Database Administrator in Ancient India',2006,1,NULL,4,'0.99',129,'18.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(648,'OUTLAW HANKY','A Thoughtful Story of a Astronaut And a Composer who must Conquer a Dog in The Sahara Desert',2006,1,NULL,7,'4.99',148,'17.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'),(649,'OZ LIAISONS','A Epic Yarn of a Mad Scientist And a Cat who must Confront a Womanizer in A Baloon Factory',2006,1,NULL,4,'2.99',85,'14.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(650,'PACIFIC AMISTAD','A Thrilling Yarn of a Dog And a Moose who must Kill a Pastry Chef in A Manhattan Penthouse',2006,1,NULL,3,'0.99',144,'27.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(651,'PACKER MADIGAN','A Epic Display of a Sumo Wrestler And a Forensic Psychologist who must Build a Woman in An Abandoned Amusement Park',2006,1,NULL,3,'0.99',84,'20.99','PG-13','Trailers','2006-02-15 05:03:42'),(652,'PAJAMA JAWBREAKER','A Emotional Drama of a Boy And a Technical Writer who must Redeem a Sumo Wrestler in California',2006,1,NULL,3,'0.99',126,'14.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(653,'PANIC CLUB','A Fanciful Display of a Teacher And a Crocodile who must Succumb a Girl in A Baloon',2006,1,NULL,3,'4.99',102,'15.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(654,'PANKY SUBMARINE','A Touching Documentary of a Dentist And a Sumo Wrestler who must Overcome a Boy in The Gulf of Mexico',2006,1,NULL,4,'4.99',93,'19.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(655,'PANTHER REDS','A Brilliant Panorama of a Moose And a Man who must Reach a Teacher in The Gulf of Mexico',2006,1,NULL,5,'4.99',109,'22.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(656,'PAPI NECKLACE','A Fanciful Display of a Car And a Monkey who must Escape a Squirrel in Ancient Japan',2006,1,NULL,3,'0.99',128,'9.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(657,'PARADISE SABRINA','A Intrepid Yarn of a Car And a Moose who must Outrace a Crocodile in A Manhattan Penthouse',2006,1,NULL,5,'2.99',48,'12.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(658,'PARIS WEEKEND','A Intrepid Story of a Squirrel And a Crocodile who must Defeat a Monkey in The Outback',2006,1,NULL,7,'2.99',121,'19.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(659,'PARK CITIZEN','A Taut Epistle of a Sumo Wrestler And a Girl who must Face a Husband in Ancient Japan',2006,1,NULL,3,'4.99',109,'14.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(660,'PARTY KNOCK','A Fateful Display of a Technical Writer And a Butler who must Battle a Sumo Wrestler in An Abandoned Mine Shaft',2006,1,NULL,7,'2.99',107,'11.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(661,'PAST SUICIDES','A Intrepid Tale of a Madman And a Astronaut who must Challenge a Hunter in A Monastery',2006,1,NULL,5,'4.99',157,'17.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(662,'PATHS CONTROL','A Astounding Documentary of a Butler And a Cat who must Find a Frisbee in Ancient China',2006,1,NULL,3,'4.99',118,'9.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(663,'PATIENT SISTER','A Emotional Epistle of a Squirrel And a Robot who must Confront a Lumberjack in Soviet Georgia',2006,1,NULL,7,'0.99',99,'29.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'),(664,'PATRIOT ROMAN','A Taut Saga of a Robot And a Database Administrator who must Challenge a Astronaut in California',2006,1,NULL,6,'2.99',65,'12.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(665,'PATTON INTERVIEW','A Thrilling Documentary of a Composer And a Secret Agent who must Succumb a Cat in Berlin',2006,1,NULL,4,'2.99',175,'22.99','PG','Commentaries','2006-02-15 05:03:42'),(666,'PAYCHECK WAIT','A Awe-Inspiring Reflection of a Boy And a Man who must Discover a Moose in The Sahara Desert',2006,1,NULL,4,'4.99',145,'27.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(667,'PEACH INNOCENT','A Action-Packed Drama of a Monkey And a Dentist who must Chase a Butler in Berlin',2006,1,NULL,3,'2.99',160,'20.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(668,'PEAK FOREVER','A Insightful Reflection of a Boat And a Secret Agent who must Vanquish a Astronaut in An Abandoned Mine Shaft',2006,1,NULL,7,'4.99',80,'25.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(669,'PEARL DESTINY','A Lacklusture Yarn of a Astronaut And a Pastry Chef who must Sink a Dog in A U-Boat',2006,1,NULL,3,'2.99',74,'10.99','NC-17','Trailers','2006-02-15 05:03:42'),(670,'PELICAN COMFORTS','A Epic Documentary of a Boy And a Monkey who must Pursue a Astronaut in Berlin',2006,1,NULL,4,'4.99',48,'17.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(671,'PERDITION FARGO','A Fast-Paced Story of a Car And a Cat who must Outgun a Hunter in Berlin',2006,1,NULL,7,'4.99',99,'27.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(672,'PERFECT GROOVE','A Thrilling Yarn of a Dog And a Dog who must Build a Husband in A Baloon',2006,1,NULL,7,'2.99',82,'17.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(673,'PERSONAL LADYBUGS','A Epic Saga of a Hunter And a Technical Writer who must Conquer a Cat in Ancient Japan',2006,1,NULL,3,'0.99',118,'19.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(674,'PET HAUNTING','A Unbelieveable Reflection of a Explorer And a Boat who must Conquer a Woman in California',2006,1,NULL,3,'0.99',99,'11.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'),(675,'PHANTOM GLORY','A Beautiful Documentary of a Astronaut And a Crocodile who must Discover a Madman in A Monastery',2006,1,NULL,6,'2.99',60,'17.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(676,'PHILADELPHIA WIFE','A Taut Yarn of a Hunter And a Astronaut who must Conquer a Database Administrator in The Sahara Desert',2006,1,NULL,7,'4.99',137,'16.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(677,'PIANIST OUTFIELD','A Intrepid Story of a Boy And a Technical Writer who must Pursue a Lumberjack in A Monastery',2006,1,NULL,6,'0.99',136,'25.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(678,'PICKUP DRIVING','A Touching Documentary of a Husband And a Boat who must Meet a Pastry Chef in A Baloon Factory',2006,1,NULL,3,'2.99',77,'23.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(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',2006,1,NULL,6,'2.99',50,'17.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(680,'PINOCCHIO SIMON','A Action-Packed Reflection of a Mad Scientist And a A Shark who must Find a Feminist in California',2006,1,NULL,4,'4.99',103,'21.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(681,'PIRATES ROXANNE','A Stunning Drama of a Woman And a Lumberjack who must Overcome a A Shark in The Canadian Rockies',2006,1,NULL,4,'0.99',100,'20.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(682,'PITTSBURGH HUNCHBACK','A Thrilling Epistle of a Boy And a Boat who must Find a Student in Soviet Georgia',2006,1,NULL,4,'4.99',134,'17.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(683,'PITY BOUND','A Boring Panorama of a Feminist And a Moose who must Defeat a Database Administrator in Nigeria',2006,1,NULL,5,'4.99',60,'19.99','NC-17','Commentaries','2006-02-15 05:03:42'),(684,'PIZZA JUMANJI','A Epic Saga of a Cat And a Squirrel who must Outgun a Robot in A U-Boat',2006,1,NULL,4,'2.99',173,'11.99','NC-17','Commentaries','2006-02-15 05:03:42'),(685,'PLATOON INSTINCT','A Thrilling Panorama of a Man And a Woman who must Reach a Woman in Australia',2006,1,NULL,6,'4.99',132,'10.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'),(686,'PLUTO OLEANDER','A Action-Packed Reflection of a Car And a Moose who must Outgun a Car in A Shark Tank',2006,1,NULL,5,'4.99',84,'9.99','R','Behind the Scenes','2006-02-15 05:03:42'),(687,'POCUS PULP','A Intrepid Yarn of a Frisbee And a Dog who must Build a Astronaut in A Baloon Factory',2006,1,NULL,6,'0.99',138,'15.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(688,'POLISH BROOKLYN','A Boring Character Study of a Database Administrator And a Lumberjack who must Reach a Madman in The Outback',2006,1,NULL,6,'0.99',61,'12.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(689,'POLLOCK DELIVERANCE','A Intrepid Story of a Madman And a Frisbee who must Outgun a Boat in The Sahara Desert',2006,1,NULL,5,'2.99',137,'14.99','PG','Commentaries','2006-02-15 05:03:42'),(690,'POND SEATTLE','A Stunning Drama of a Teacher And a Boat who must Battle a Feminist in Ancient China',2006,1,NULL,7,'2.99',185,'25.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(691,'POSEIDON FOREVER','A Thoughtful Epistle of a Womanizer And a Monkey who must Vanquish a Dentist in A Monastery',2006,1,NULL,6,'4.99',159,'29.99','PG-13','Commentaries','2006-02-15 05:03:42'),(692,'POTLUCK MIXED','A Beautiful Story of a Dog And a Technical Writer who must Outgun a Student in A Baloon',2006,1,NULL,3,'2.99',179,'10.99','G','Behind the Scenes','2006-02-15 05:03:42'),(693,'POTTER CONNECTICUT','A Thrilling Epistle of a Frisbee And a Cat who must Fight a Technical Writer in Berlin',2006,1,NULL,5,'2.99',115,'16.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'),(694,'PREJUDICE OLEANDER','A Epic Saga of a Boy And a Dentist who must Outrace a Madman in A U-Boat',2006,1,NULL,6,'4.99',98,'15.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(695,'PRESIDENT BANG','A Fateful Panorama of a Technical Writer And a Moose who must Battle a Robot in Soviet Georgia',2006,1,NULL,6,'4.99',144,'12.99','PG','Behind the Scenes','2006-02-15 05:03:42'),(696,'PRIDE ALAMO','A Thoughtful Drama of a A Shark And a Forensic Psychologist who must Vanquish a Student in Ancient India',2006,1,NULL,6,'0.99',114,'20.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'),(697,'PRIMARY GLASS','A Fateful Documentary of a Pastry Chef And a Butler who must Build a Dog in The Canadian Rockies',2006,1,NULL,7,'0.99',53,'16.99','G','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(698,'PRINCESS GIANT','A Thrilling Yarn of a Pastry Chef And a Monkey who must Battle a Monkey in A Shark Tank',2006,1,NULL,3,'2.99',71,'29.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(699,'PRIVATE DROP','A Stunning Story of a Technical Writer And a Hunter who must Succumb a Secret Agent in A Baloon',2006,1,NULL,7,'4.99',106,'26.99','PG','Trailers','2006-02-15 05:03:42'),(700,'PRIX UNDEFEATED','A Stunning Saga of a Mad Scientist And a Boat who must Overcome a Dentist in Ancient China',2006,1,NULL,4,'2.99',115,'13.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(701,'PSYCHO SHRUNK','A Amazing Panorama of a Crocodile And a Explorer who must Fight a Husband in Nigeria',2006,1,NULL,5,'2.99',155,'11.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'),(702,'PULP BEVERLY','A Unbelieveable Display of a Dog And a Crocodile who must Outrace a Man in Nigeria',2006,1,NULL,4,'2.99',89,'12.99','G','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(703,'PUNK DIVORCE','A Fast-Paced Tale of a Pastry Chef And a Boat who must Face a Frisbee in The Canadian Rockies',2006,1,NULL,6,'4.99',100,'18.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(704,'PURE RUNNER','A Thoughtful Documentary of a Student And a Madman who must Challenge a Squirrel in A Manhattan Penthouse',2006,1,NULL,3,'2.99',121,'25.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(705,'PURPLE MOVIE','A Boring Display of a Pastry Chef And a Sumo Wrestler who must Discover a Frisbee in An Abandoned Amusement Park',2006,1,NULL,4,'2.99',88,'9.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(706,'QUEEN LUKE','A Astounding Story of a Girl And a Boy who must Challenge a Composer in New Orleans',2006,1,NULL,5,'4.99',163,'22.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(707,'QUEST MUSSOLINI','A Fateful Drama of a Husband And a Sumo Wrestler who must Battle a Pastry Chef in A Baloon Factory',2006,1,NULL,5,'2.99',177,'29.99','R','Behind the Scenes','2006-02-15 05:03:42'),(708,'QUILLS BULL','A Thoughtful Story of a Pioneer And a Woman who must Reach a Moose in Australia',2006,1,NULL,4,'4.99',112,'19.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(709,'RACER EGG','A Emotional Display of a Monkey And a Waitress who must Reach a Secret Agent in California',2006,1,NULL,7,'2.99',147,'19.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(710,'RAGE GAMES','A Fast-Paced Saga of a Astronaut And a Secret Agent who must Escape a Hunter in An Abandoned Amusement Park',2006,1,NULL,4,'4.99',120,'18.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(711,'RAGING AIRPLANE','A Astounding Display of a Secret Agent And a Technical Writer who must Escape a Mad Scientist in A Jet Boat',2006,1,NULL,4,'4.99',154,'18.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(712,'RAIDERS ANTITRUST','A Amazing Drama of a Teacher And a Feminist who must Meet a Woman in The First Manned Space Station',2006,1,NULL,4,'0.99',82,'11.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'),(713,'RAINBOW SHOCK','A Action-Packed Story of a Hunter And a Boy who must Discover a Lumberjack in Ancient India',2006,1,NULL,3,'4.99',74,'14.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(714,'RANDOM GO','A Fateful Drama of a Frisbee And a Student who must Confront a Cat in A Shark Tank',2006,1,NULL,6,'2.99',73,'29.99','NC-17','Trailers','2006-02-15 05:03:42'),(715,'RANGE MOONWALKER','A Insightful Documentary of a Hunter And a Dentist who must Confront a Crocodile in A Baloon',2006,1,NULL,3,'4.99',147,'25.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(716,'REAP UNFAITHFUL','A Thrilling Epistle of a Composer And a Sumo Wrestler who must Challenge a Mad Cow in A MySQL Convention',2006,1,NULL,6,'2.99',136,'26.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'),(717,'REAR TRADING','A Awe-Inspiring Reflection of a Forensic Psychologist And a Secret Agent who must Succumb a Pastry Chef in Soviet Georgia',2006,1,NULL,6,'0.99',97,'23.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(718,'REBEL AIRPORT','A Intrepid Yarn of a Database Administrator And a Boat who must Outrace a Husband in Ancient India',2006,1,NULL,7,'0.99',73,'24.99','G','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(719,'RECORDS ZORRO','A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback',2006,1,NULL,7,'4.99',182,'11.99','PG','Behind the Scenes','2006-02-15 05:03:42'),(720,'REDEMPTION COMFORTS','A Emotional Documentary of a Dentist And a Woman who must Battle a Mad Scientist in Ancient China',2006,1,NULL,3,'2.99',179,'20.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(721,'REDS POCUS','A Lacklusture Yarn of a Sumo Wrestler And a Squirrel who must Redeem a Monkey in Soviet Georgia',2006,1,NULL,7,'4.99',182,'23.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(722,'REEF SALUTE','A Action-Packed Saga of a Teacher And a Lumberjack who must Battle a Dentist in A Baloon',2006,1,NULL,5,'0.99',123,'26.99','NC-17','Behind the Scenes','2006-02-15 05:03:42'),(723,'REIGN GENTLEMEN','A Emotional Yarn of a Composer And a Man who must Escape a Butler in The Gulf of Mexico',2006,1,NULL,3,'2.99',82,'29.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(724,'REMEMBER DIARY','A Insightful Tale of a Technical Writer And a Waitress who must Conquer a Monkey in Ancient India',2006,1,NULL,5,'2.99',110,'15.99','R','Trailers,Commentaries','2006-02-15 05:03:42'),(725,'REQUIEM TYCOON','A Unbelieveable Character Study of a Cat And a Database Administrator who must Pursue a Teacher in A Monastery',2006,1,NULL,6,'4.99',167,'25.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(726,'RESERVOIR ADAPTATION','A Intrepid Drama of a Teacher And a Moose who must Kill a Car in California',2006,1,NULL,7,'2.99',61,'29.99','PG-13','Commentaries','2006-02-15 05:03:42'),(727,'RESURRECTION SILVERADO','A Epic Yarn of a Robot And a Explorer who must Challenge a Girl in A MySQL Convention',2006,1,NULL,6,'0.99',117,'12.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(728,'REUNION WITCHES','A Unbelieveable Documentary of a Database Administrator And a Frisbee who must Redeem a Mad Scientist in A Baloon Factory',2006,1,NULL,3,'0.99',63,'26.99','R','Commentaries','2006-02-15 05:03:42'),(729,'RIDER CADDYSHACK','A Taut Reflection of a Monkey And a Womanizer who must Chase a Moose in Nigeria',2006,1,NULL,5,'2.99',177,'28.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(730,'RIDGEMONT SUBMARINE','A Unbelieveable Drama of a Waitress And a Composer who must Sink a Mad Cow in Ancient Japan',2006,1,NULL,3,'0.99',46,'28.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(731,'RIGHT CRANES','A Fateful Character Study of a Boat And a Cat who must Find a Database Administrator in A Jet Boat',2006,1,NULL,7,'4.99',153,'29.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(732,'RINGS HEARTBREAKERS','A Amazing Yarn of a Sumo Wrestler And a Boat who must Conquer a Waitress in New Orleans',2006,1,NULL,5,'0.99',58,'17.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(733,'RIVER OUTLAW','A Thrilling Character Study of a Squirrel And a Lumberjack who must Face a Hunter in A MySQL Convention',2006,1,NULL,4,'0.99',149,'29.99','PG-13','Commentaries','2006-02-15 05:03:42'),(734,'ROAD ROXANNE','A Boring Character Study of a Waitress And a Astronaut who must Fight a Crocodile in Ancient Japan',2006,1,NULL,4,'4.99',158,'12.99','R','Behind the Scenes','2006-02-15 05:03:42'),(735,'ROBBERS JOON','A Thoughtful Story of a Mad Scientist And a Waitress who must Confront a Forensic Psychologist in Soviet Georgia',2006,1,NULL,7,'2.99',102,'26.99','PG-13','Commentaries','2006-02-15 05:03:42'),(736,'ROBBERY BRIGHT','A Taut Reflection of a Robot And a Squirrel who must Fight a Boat in Ancient Japan',2006,1,NULL,4,'0.99',134,'21.99','R','Trailers','2006-02-15 05:03:42'),(737,'ROCK INSTINCT','A Astounding Character Study of a Robot And a Moose who must Overcome a Astronaut in Ancient India',2006,1,NULL,4,'0.99',102,'28.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(738,'ROCKETEER MOTHER','A Awe-Inspiring Character Study of a Robot And a Sumo Wrestler who must Discover a Womanizer in A Shark Tank',2006,1,NULL,3,'0.99',178,'27.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(739,'ROCKY WAR','A Fast-Paced Display of a Squirrel And a Explorer who must Outgun a Mad Scientist in Nigeria',2006,1,NULL,4,'4.99',145,'17.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(740,'ROLLERCOASTER BRINGING','A Beautiful Drama of a Robot And a Lumberjack who must Discover a Technical Writer in A Shark Tank',2006,1,NULL,5,'2.99',153,'13.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(741,'ROMAN PUNK','A Thoughtful Panorama of a Mad Cow And a Student who must Battle a Forensic Psychologist in Berlin',2006,1,NULL,7,'0.99',81,'28.99','NC-17','Trailers','2006-02-15 05:03:42'),(742,'ROOF CHAMPION','A Lacklusture Reflection of a Car And a Explorer who must Find a Monkey in A Baloon',2006,1,NULL,7,'0.99',101,'25.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(743,'ROOM ROMAN','A Awe-Inspiring Panorama of a Composer And a Secret Agent who must Sink a Composer in A Shark Tank',2006,1,NULL,7,'0.99',60,'27.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(744,'ROOTS REMEMBER','A Brilliant Drama of a Mad Cow And a Hunter who must Escape a Hunter in Berlin',2006,1,NULL,4,'0.99',89,'23.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(745,'ROSES TREASURE','A Astounding Panorama of a Monkey And a Secret Agent who must Defeat a Woman in The First Manned Space Station',2006,1,NULL,5,'4.99',162,'23.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(746,'ROUGE SQUAD','A Awe-Inspiring Drama of a Astronaut And a Frisbee who must Conquer a Mad Scientist in Australia',2006,1,NULL,3,'0.99',118,'10.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(747,'ROXANNE REBEL','A Astounding Story of a Pastry Chef And a Database Administrator who must Fight a Man in The Outback',2006,1,NULL,5,'0.99',171,'9.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(748,'RUGRATS SHAKESPEARE','A Touching Saga of a Crocodile And a Crocodile who must Discover a Technical Writer in Nigeria',2006,1,NULL,4,'0.99',109,'16.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(749,'RULES HUMAN','A Beautiful Epistle of a Astronaut And a Student who must Confront a Monkey in An Abandoned Fun House',2006,1,NULL,6,'4.99',153,'19.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(750,'RUN PACIFIC','A Touching Tale of a Cat And a Pastry Chef who must Conquer a Pastry Chef in A MySQL Convention',2006,1,NULL,3,'0.99',145,'25.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(751,'RUNAWAY TENENBAUMS','A Thoughtful Documentary of a Boat And a Man who must Meet a Boat in An Abandoned Fun House',2006,1,NULL,6,'0.99',181,'17.99','NC-17','Commentaries','2006-02-15 05:03:42'),(752,'RUNNER MADIGAN','A Thoughtful Documentary of a Crocodile And a Robot who must Outrace a Womanizer in The Outback',2006,1,NULL,6,'0.99',101,'27.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(753,'RUSH GOODFELLAS','A Emotional Display of a Man And a Dentist who must Challenge a Squirrel in Australia',2006,1,NULL,3,'0.99',48,'20.99','PG','Deleted Scenes','2006-02-15 05:03:42'),(754,'RUSHMORE MERMAID','A Boring Story of a Woman And a Moose who must Reach a Husband in A Shark Tank',2006,1,NULL,6,'2.99',150,'17.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(755,'SABRINA MIDNIGHT','A Emotional Story of a Squirrel And a Crocodile who must Succumb a Husband in The Sahara Desert',2006,1,NULL,5,'4.99',99,'11.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(756,'SADDLE ANTITRUST','A Stunning Epistle of a Feminist And a A Shark who must Battle a Woman in An Abandoned Fun House',2006,1,NULL,7,'2.99',80,'10.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(757,'SAGEBRUSH CLUELESS','A Insightful Story of a Lumberjack And a Hunter who must Kill a Boy in Ancient Japan',2006,1,NULL,4,'2.99',106,'28.99','G','Trailers','2006-02-15 05:03:42'),(758,'SAINTS BRIDE','A Fateful Tale of a Technical Writer And a Composer who must Pursue a Explorer in The Gulf of Mexico',2006,1,NULL,5,'2.99',125,'11.99','G','Deleted Scenes','2006-02-15 05:03:42'),(759,'SALUTE APOLLO','A Awe-Inspiring Character Study of a Boy And a Feminist who must Sink a Crocodile in Ancient China',2006,1,NULL,4,'2.99',73,'29.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(760,'SAMURAI LION','A Fast-Paced Story of a Pioneer And a Astronaut who must Reach a Boat in A Baloon',2006,1,NULL,5,'2.99',110,'21.99','G','Commentaries','2006-02-15 05:03:42'),(761,'SANTA PARIS','A Emotional Documentary of a Moose And a Car who must Redeem a Mad Cow in A Baloon Factory',2006,1,NULL,7,'2.99',154,'23.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(762,'SASSY PACKER','A Fast-Paced Documentary of a Dog And a Teacher who must Find a Moose in A Manhattan Penthouse',2006,1,NULL,6,'0.99',154,'29.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(763,'SATISFACTION CONFIDENTIAL','A Lacklusture Yarn of a Dentist And a Butler who must Meet a Secret Agent in Ancient China',2006,1,NULL,3,'4.99',75,'26.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(764,'SATURDAY LAMBS','A Thoughtful Reflection of a Mad Scientist And a Moose who must Kill a Husband in A Baloon',2006,1,NULL,3,'4.99',150,'28.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(765,'SATURN NAME','A Fateful Epistle of a Butler And a Boy who must Redeem a Teacher in Berlin',2006,1,NULL,7,'4.99',182,'18.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(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',2006,1,NULL,5,'0.99',84,'25.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(767,'SCALAWAG DUCK','A Fateful Reflection of a Car And a Teacher who must Confront a Waitress in A Monastery',2006,1,NULL,6,'4.99',183,'13.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(768,'SCARFACE BANG','A Emotional Yarn of a Teacher And a Girl who must Find a Teacher in A Baloon Factory',2006,1,NULL,3,'4.99',102,'11.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(769,'SCHOOL JACKET','A Intrepid Yarn of a Monkey And a Boy who must Fight a Composer in A Manhattan Penthouse',2006,1,NULL,5,'4.99',151,'21.99','PG-13','Trailers','2006-02-15 05:03:42'),(770,'SCISSORHANDS SLUMS','A Awe-Inspiring Drama of a Girl And a Technical Writer who must Meet a Feminist in The Canadian Rockies',2006,1,NULL,5,'2.99',147,'13.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(771,'SCORPION APOLLO','A Awe-Inspiring Documentary of a Technical Writer And a Husband who must Meet a Monkey in An Abandoned Fun House',2006,1,NULL,3,'4.99',137,'23.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(772,'SEA VIRGIN','A Fast-Paced Documentary of a Technical Writer And a Pastry Chef who must Escape a Moose in A U-Boat',2006,1,NULL,4,'2.99',80,'24.99','PG','Deleted Scenes','2006-02-15 05:03:42'),(773,'SEABISCUIT PUNK','A Insightful Saga of a Man And a Forensic Psychologist who must Discover a Mad Cow in A MySQL Convention',2006,1,NULL,6,'2.99',112,'28.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(774,'SEARCHERS WAIT','A Fast-Paced Tale of a Car And a Mad Scientist who must Kill a Womanizer in Ancient Japan',2006,1,NULL,3,'2.99',182,'22.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(775,'SEATTLE EXPECATIONS','A Insightful Reflection of a Crocodile And a Sumo Wrestler who must Meet a Technical Writer in The Sahara Desert',2006,1,NULL,4,'4.99',110,'18.99','PG-13','Trailers','2006-02-15 05:03:42'),(776,'SECRET GROUNDHOG','A Astounding Story of a Cat And a Database Administrator who must Build a Technical Writer in New Orleans',2006,1,NULL,6,'4.99',90,'11.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(777,'SECRETARY ROUGE','A Action-Packed Panorama of a Mad Cow And a Composer who must Discover a Robot in A Baloon Factory',2006,1,NULL,5,'4.99',158,'10.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(778,'SECRETS PARADISE','A Fateful Saga of a Cat And a Frisbee who must Kill a Girl in A Manhattan Penthouse',2006,1,NULL,3,'4.99',109,'24.99','G','Trailers,Commentaries','2006-02-15 05:03:42'),(779,'SENSE GREEK','A Taut Saga of a Lumberjack And a Pastry Chef who must Escape a Sumo Wrestler in An Abandoned Fun House',2006,1,NULL,4,'4.99',54,'23.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(780,'SENSIBILITY REAR','A Emotional Tale of a Robot And a Sumo Wrestler who must Redeem a Pastry Chef in A Baloon Factory',2006,1,NULL,7,'4.99',98,'15.99','PG','Behind the Scenes','2006-02-15 05:03:42'),(781,'SEVEN SWARM','A Unbelieveable Character Study of a Dog And a Mad Cow who must Kill a Monkey in Berlin',2006,1,NULL,4,'4.99',127,'15.99','R','Deleted Scenes','2006-02-15 05:03:42'),(782,'SHAKESPEARE SADDLE','A Fast-Paced Panorama of a Lumberjack And a Database Administrator who must Defeat a Madman in A MySQL Convention',2006,1,NULL,6,'2.99',60,'26.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(783,'SHANE DARKNESS','A Action-Packed Saga of a Moose And a Lumberjack who must Find a Woman in Berlin',2006,1,NULL,5,'2.99',93,'22.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(784,'SHANGHAI TYCOON','A Fast-Paced Character Study of a Crocodile And a Lumberjack who must Build a Husband in An Abandoned Fun House',2006,1,NULL,7,'2.99',47,'20.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(785,'SHAWSHANK BUBBLE','A Lacklusture Story of a Moose And a Monkey who must Confront a Butler in An Abandoned Amusement Park',2006,1,NULL,6,'4.99',80,'20.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(786,'SHEPHERD MIDSUMMER','A Thoughtful Drama of a Robot And a Womanizer who must Kill a Lumberjack in A Baloon',2006,1,NULL,7,'0.99',113,'14.99','R','Deleted Scenes','2006-02-15 05:03:42'),(787,'SHINING ROSES','A Awe-Inspiring Character Study of a Astronaut And a Forensic Psychologist who must Challenge a Madman in Ancient India',2006,1,NULL,4,'0.99',125,'12.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(788,'SHIP WONDERLAND','A Thrilling Saga of a Monkey And a Frisbee who must Escape a Explorer in The Outback',2006,1,NULL,5,'2.99',104,'15.99','R','Commentaries','2006-02-15 05:03:42'),(789,'SHOCK CABIN','A Fateful Tale of a Mad Cow And a Crocodile who must Meet a Husband in New Orleans',2006,1,NULL,7,'2.99',79,'15.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(790,'SHOOTIST SUPERFLY','A Fast-Paced Story of a Crocodile And a A Shark who must Sink a Pioneer in Berlin',2006,1,NULL,6,'0.99',67,'22.99','PG-13','Trailers','2006-02-15 05:03:42'),(791,'SHOW LORD','A Fanciful Saga of a Student And a Girl who must Find a Butler in Ancient Japan',2006,1,NULL,3,'4.99',167,'24.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'),(792,'SHREK LICENSE','A Fateful Yarn of a Secret Agent And a Feminist who must Find a Feminist in A Jet Boat',2006,1,NULL,7,'2.99',154,'15.99','PG-13','Commentaries','2006-02-15 05:03:42'),(793,'SHRUNK DIVINE','A Fateful Character Study of a Waitress And a Technical Writer who must Battle a Hunter in A Baloon',2006,1,NULL,6,'2.99',139,'14.99','R','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(794,'SIDE ARK','A Stunning Panorama of a Crocodile And a Womanizer who must Meet a Feminist in The Canadian Rockies',2006,1,NULL,5,'0.99',52,'28.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(795,'SIEGE MADRE','A Boring Tale of a Frisbee And a Crocodile who must Vanquish a Moose in An Abandoned Mine Shaft',2006,1,NULL,7,'0.99',111,'23.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(796,'SIERRA DIVIDE','A Emotional Character Study of a Frisbee And a Mad Scientist who must Build a Madman in California',2006,1,NULL,3,'0.99',135,'12.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(797,'SILENCE KANE','A Emotional Drama of a Sumo Wrestler And a Dentist who must Confront a Sumo Wrestler in A Baloon',2006,1,NULL,7,'0.99',67,'23.99','R','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(798,'SILVERADO GOLDFINGER','A Stunning Epistle of a Sumo Wrestler And a Man who must Challenge a Waitress in Ancient India',2006,1,NULL,4,'4.99',74,'11.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'),(799,'SIMON NORTH','A Thrilling Documentary of a Technical Writer And a A Shark who must Face a Pioneer in A Shark Tank',2006,1,NULL,3,'0.99',51,'26.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'),(800,'SINNERS ATLANTIS','A Epic Display of a Dog And a Boat who must Succumb a Mad Scientist in An Abandoned Mine Shaft',2006,1,NULL,7,'2.99',126,'19.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(801,'SISTER FREDDY','A Stunning Saga of a Butler And a Woman who must Pursue a Explorer in Australia',2006,1,NULL,5,'4.99',152,'19.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(802,'SKY MIRACLE','A Epic Drama of a Mad Scientist And a Explorer who must Succumb a Waitress in An Abandoned Fun House',2006,1,NULL,7,'2.99',132,'15.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(803,'SLACKER LIAISONS','A Fast-Paced Tale of a A Shark And a Student who must Meet a Crocodile in Ancient China',2006,1,NULL,7,'4.99',179,'29.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(804,'SLEEPING SUSPECTS','A Stunning Reflection of a Sumo Wrestler And a Explorer who must Sink a Frisbee in A MySQL Convention',2006,1,NULL,7,'4.99',129,'13.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'),(805,'SLEEPLESS MONSOON','A Amazing Saga of a Moose And a Pastry Chef who must Escape a Butler in Australia',2006,1,NULL,5,'4.99',64,'12.99','G','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(806,'SLEEPY JAPANESE','A Emotional Epistle of a Moose And a Composer who must Fight a Technical Writer in The Outback',2006,1,NULL,4,'2.99',137,'25.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(807,'SLEUTH ORIENT','A Fateful Character Study of a Husband And a Dog who must Find a Feminist in Ancient India',2006,1,NULL,4,'0.99',87,'25.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(808,'SLING LUKE','A Intrepid Character Study of a Robot And a Monkey who must Reach a Secret Agent in An Abandoned Amusement Park',2006,1,NULL,5,'0.99',84,'10.99','R','Behind the Scenes','2006-02-15 05:03:42'),(809,'SLIPPER FIDELITY','A Taut Reflection of a Secret Agent And a Man who must Redeem a Explorer in A MySQL Convention',2006,1,NULL,5,'0.99',156,'14.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(810,'SLUMS DUCK','A Amazing Character Study of a Teacher And a Database Administrator who must Defeat a Waitress in A Jet Boat',2006,1,NULL,5,'0.99',147,'21.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(811,'SMILE EARRING','A Intrepid Drama of a Teacher And a Butler who must Build a Pastry Chef in Berlin',2006,1,NULL,4,'2.99',60,'29.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(812,'SMOKING BARBARELLA','A Lacklusture Saga of a Mad Cow And a Mad Scientist who must Sink a Cat in A MySQL Convention',2006,1,NULL,7,'0.99',50,'13.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'),(813,'SMOOCHY CONTROL','A Thrilling Documentary of a Husband And a Feminist who must Face a Mad Scientist in Ancient China',2006,1,NULL,7,'0.99',184,'18.99','R','Behind the Scenes','2006-02-15 05:03:42'),(814,'SNATCH SLIPPER','A Insightful Panorama of a Woman And a Feminist who must Defeat a Forensic Psychologist in Berlin',2006,1,NULL,6,'4.99',110,'15.99','PG','Commentaries','2006-02-15 05:03:42'),(815,'SNATCHERS MONTEZUMA','A Boring Epistle of a Sumo Wrestler And a Woman who must Escape a Man in The Canadian Rockies',2006,1,NULL,4,'2.99',74,'14.99','PG-13','Commentaries','2006-02-15 05:03:42'),(816,'SNOWMAN ROLLERCOASTER','A Fateful Display of a Lumberjack And a Girl who must Succumb a Mad Cow in A Manhattan Penthouse',2006,1,NULL,3,'0.99',62,'27.99','G','Trailers','2006-02-15 05:03:42'),(817,'SOLDIERS EVOLUTION','A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station',2006,1,NULL,7,'4.99',185,'27.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(818,'SOMETHING DUCK','A Boring Character Study of a Car And a Husband who must Outgun a Frisbee in The First Manned Space Station',2006,1,NULL,4,'4.99',180,'17.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(819,'SONG HEDWIG','A Amazing Documentary of a Man And a Husband who must Confront a Squirrel in A MySQL Convention',2006,1,NULL,3,'0.99',165,'29.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(820,'SONS INTERVIEW','A Taut Character Study of a Explorer And a Mad Cow who must Battle a Hunter in Ancient China',2006,1,NULL,3,'2.99',184,'11.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(821,'SORORITY QUEEN','A Fast-Paced Display of a Squirrel And a Composer who must Fight a Forensic Psychologist in A Jet Boat',2006,1,NULL,6,'0.99',184,'17.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(822,'SOUP WISDOM','A Fast-Paced Display of a Robot And a Butler who must Defeat a Butler in A MySQL Convention',2006,1,NULL,6,'0.99',169,'12.99','R','Behind the Scenes','2006-02-15 05:03:42'),(823,'SOUTH WAIT','A Amazing Documentary of a Car And a Robot who must Escape a Lumberjack in An Abandoned Amusement Park',2006,1,NULL,4,'2.99',143,'21.99','R','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(824,'SPARTACUS CHEAPER','A Thrilling Panorama of a Pastry Chef And a Secret Agent who must Overcome a Student in A Manhattan Penthouse',2006,1,NULL,4,'4.99',52,'19.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(825,'SPEAKEASY DATE','A Lacklusture Drama of a Forensic Psychologist And a Car who must Redeem a Man in A Manhattan Penthouse',2006,1,NULL,6,'2.99',165,'22.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(826,'SPEED SUIT','A Brilliant Display of a Frisbee And a Mad Scientist who must Succumb a Robot in Ancient China',2006,1,NULL,7,'4.99',124,'19.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(827,'SPICE SORORITY','A Fateful Display of a Pioneer And a Hunter who must Defeat a Husband in An Abandoned Mine Shaft',2006,1,NULL,5,'4.99',141,'22.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(828,'SPIKING ELEMENT','A Lacklusture Epistle of a Dentist And a Technical Writer who must Find a Dog in A Monastery',2006,1,NULL,7,'2.99',79,'12.99','G','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(829,'SPINAL ROCKY','A Lacklusture Epistle of a Sumo Wrestler And a Squirrel who must Defeat a Explorer in California',2006,1,NULL,7,'2.99',138,'12.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(830,'SPIRIT FLINTSTONES','A Brilliant Yarn of a Cat And a Car who must Confront a Explorer in Ancient Japan',2006,1,NULL,7,'0.99',149,'23.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(831,'SPIRITED CASUALTIES','A Taut Story of a Waitress And a Man who must Face a Car in A Baloon Factory',2006,1,NULL,5,'0.99',138,'20.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(832,'SPLASH GUMP','A Taut Saga of a Crocodile And a Boat who must Conquer a Hunter in A Shark Tank',2006,1,NULL,5,'0.99',175,'16.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(833,'SPLENDOR PATTON','A Taut Story of a Dog And a Explorer who must Find a Astronaut in Berlin',2006,1,NULL,5,'0.99',134,'20.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(834,'SPOILERS HELLFIGHTERS','A Fanciful Story of a Technical Writer And a Squirrel who must Defeat a Dog in The Gulf of Mexico',2006,1,NULL,4,'0.99',151,'26.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(835,'SPY MILE','A Thrilling Documentary of a Feminist And a Feminist who must Confront a Feminist in A Baloon',2006,1,NULL,6,'2.99',112,'13.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(836,'SQUAD FISH','A Fast-Paced Display of a Pastry Chef And a Dog who must Kill a Teacher in Berlin',2006,1,NULL,3,'2.99',136,'14.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(837,'STAGE WORLD','A Lacklusture Panorama of a Woman And a Frisbee who must Chase a Crocodile in A Jet Boat',2006,1,NULL,4,'2.99',85,'19.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(838,'STAGECOACH ARMAGEDDON','A Touching Display of a Pioneer And a Butler who must Chase a Car in California',2006,1,NULL,5,'4.99',112,'25.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(839,'STALLION SUNDANCE','A Fast-Paced Tale of a Car And a Dog who must Outgun a A Shark in Australia',2006,1,NULL,5,'0.99',130,'23.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(840,'STAMPEDE DISTURBING','A Unbelieveable Tale of a Woman And a Lumberjack who must Fight a Frisbee in A U-Boat',2006,1,NULL,5,'0.99',75,'26.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(841,'STAR OPERATION','A Insightful Character Study of a Girl And a Car who must Pursue a Mad Cow in A Shark Tank',2006,1,NULL,5,'2.99',181,'9.99','PG','Commentaries','2006-02-15 05:03:42'),(842,'STATE WASTELAND','A Beautiful Display of a Cat And a Pastry Chef who must Outrace a Mad Cow in A Jet Boat',2006,1,NULL,4,'2.99',113,'13.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(843,'STEEL SANTA','A Fast-Paced Yarn of a Composer And a Frisbee who must Face a Moose in Nigeria',2006,1,NULL,4,'4.99',143,'15.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(844,'STEERS ARMAGEDDON','A Stunning Character Study of a Car And a Girl who must Succumb a Car in A MySQL Convention',2006,1,NULL,6,'4.99',140,'16.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(845,'STEPMOM DREAM','A Touching Epistle of a Crocodile And a Teacher who must Build a Forensic Psychologist in A MySQL Convention',2006,1,NULL,7,'4.99',48,'9.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(846,'STING PERSONAL','A Fanciful Drama of a Frisbee And a Dog who must Fight a Madman in A Jet Boat',2006,1,NULL,3,'4.99',93,'9.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(847,'STOCK GLASS','A Boring Epistle of a Crocodile And a Lumberjack who must Outgun a Moose in Ancient China',2006,1,NULL,7,'2.99',160,'10.99','PG','Commentaries','2006-02-15 05:03:42'),(848,'STONE FIRE','A Intrepid Drama of a Astronaut And a Crocodile who must Find a Boat in Soviet Georgia',2006,1,NULL,3,'0.99',94,'19.99','G','Trailers','2006-02-15 05:03:42'),(849,'STORM HAPPINESS','A Insightful Drama of a Feminist And a A Shark who must Vanquish a Boat in A Shark Tank',2006,1,NULL,6,'0.99',57,'28.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(850,'STORY SIDE','A Lacklusture Saga of a Boy And a Cat who must Sink a Dentist in An Abandoned Mine Shaft',2006,1,NULL,7,'0.99',163,'27.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(851,'STRAIGHT HOURS','A Boring Panorama of a Secret Agent And a Girl who must Sink a Waitress in The Outback',2006,1,NULL,3,'0.99',151,'19.99','R','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(852,'STRANGELOVE DESIRE','A Awe-Inspiring Panorama of a Lumberjack And a Waitress who must Defeat a Crocodile in An Abandoned Amusement Park',2006,1,NULL,4,'0.99',103,'27.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(853,'STRANGER STRANGERS','A Awe-Inspiring Yarn of a Womanizer And a Explorer who must Fight a Woman in The First Manned Space Station',2006,1,NULL,3,'4.99',139,'12.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(854,'STRANGERS GRAFFITI','A Brilliant Character Study of a Secret Agent And a Man who must Find a Cat in The Gulf of Mexico',2006,1,NULL,4,'4.99',119,'22.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(855,'STREAK RIDGEMONT','A Astounding Character Study of a Hunter And a Waitress who must Sink a Man in New Orleans',2006,1,NULL,7,'0.99',132,'28.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(856,'STREETCAR INTENTIONS','A Insightful Character Study of a Waitress And a Crocodile who must Sink a Waitress in The Gulf of Mexico',2006,1,NULL,5,'4.99',73,'11.99','R','Commentaries','2006-02-15 05:03:42'),(857,'STRICTLY SCARFACE','A Touching Reflection of a Crocodile And a Dog who must Chase a Hunter in An Abandoned Fun House',2006,1,NULL,3,'2.99',144,'24.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(858,'SUBMARINE BED','A Amazing Display of a Car And a Monkey who must Fight a Teacher in Soviet Georgia',2006,1,NULL,5,'4.99',127,'21.99','R','Trailers','2006-02-15 05:03:42'),(859,'SUGAR WONKA','A Touching Story of a Dentist And a Database Administrator who must Conquer a Astronaut in An Abandoned Amusement Park',2006,1,NULL,3,'4.99',114,'20.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(860,'SUICIDES SILENCE','A Emotional Character Study of a Car And a Girl who must Face a Composer in A U-Boat',2006,1,NULL,4,'4.99',93,'13.99','G','Deleted Scenes','2006-02-15 05:03:42'),(861,'SUIT WALLS','A Touching Panorama of a Lumberjack And a Frisbee who must Build a Dog in Australia',2006,1,NULL,3,'4.99',111,'12.99','R','Commentaries','2006-02-15 05:03:42'),(862,'SUMMER SCARFACE','A Emotional Panorama of a Lumberjack And a Hunter who must Meet a Girl in A Shark Tank',2006,1,NULL,5,'0.99',53,'25.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(863,'SUN CONFESSIONS','A Beautiful Display of a Mad Cow And a Dog who must Redeem a Waitress in An Abandoned Amusement Park',2006,1,NULL,5,'0.99',141,'9.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(864,'SUNDANCE INVASION','A Epic Drama of a Lumberjack And a Explorer who must Confront a Hunter in A Baloon Factory',2006,1,NULL,5,'0.99',92,'21.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(865,'SUNRISE LEAGUE','A Beautiful Epistle of a Madman And a Butler who must Face a Crocodile in A Manhattan Penthouse',2006,1,NULL,3,'4.99',135,'19.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'),(866,'SUNSET RACER','A Awe-Inspiring Reflection of a Astronaut And a A Shark who must Defeat a Forensic Psychologist in California',2006,1,NULL,6,'0.99',48,'28.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(867,'SUPER WYOMING','A Action-Packed Saga of a Pastry Chef And a Explorer who must Discover a A Shark in The Outback',2006,1,NULL,5,'4.99',58,'10.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(868,'SUPERFLY TRIP','A Beautiful Saga of a Lumberjack And a Teacher who must Build a Technical Writer in An Abandoned Fun House',2006,1,NULL,5,'0.99',114,'27.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(869,'SUSPECTS QUILLS','A Emotional Epistle of a Pioneer And a Crocodile who must Battle a Man in A Manhattan Penthouse',2006,1,NULL,4,'2.99',47,'22.99','PG','Trailers','2006-02-15 05:03:42'),(870,'SWARM GOLD','A Insightful Panorama of a Crocodile And a Boat who must Conquer a Sumo Wrestler in A MySQL Convention',2006,1,NULL,4,'0.99',123,'12.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'),(871,'SWEDEN SHINING','A Taut Documentary of a Car And a Robot who must Conquer a Boy in The Canadian Rockies',2006,1,NULL,6,'4.99',176,'19.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(872,'SWEET BROTHERHOOD','A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Chase a Forensic Psychologist in A Baloon',2006,1,NULL,3,'2.99',185,'27.99','R','Deleted Scenes','2006-02-15 05:03:42'),(873,'SWEETHEARTS SUSPECTS','A Brilliant Character Study of a Frisbee And a Sumo Wrestler who must Confront a Woman in The Gulf of Mexico',2006,1,NULL,3,'0.99',108,'13.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(874,'TADPOLE PARK','A Beautiful Tale of a Frisbee And a Moose who must Vanquish a Dog in An Abandoned Amusement Park',2006,1,NULL,6,'2.99',155,'13.99','PG','Trailers,Commentaries','2006-02-15 05:03:42'),(875,'TALENTED HOMICIDE','A Lacklusture Panorama of a Dentist And a Forensic Psychologist who must Outrace a Pioneer in A U-Boat',2006,1,NULL,6,'0.99',173,'9.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(876,'TARZAN VIDEOTAPE','A Fast-Paced Display of a Lumberjack And a Mad Scientist who must Succumb a Sumo Wrestler in The Sahara Desert',2006,1,NULL,3,'2.99',91,'11.99','PG-13','Trailers','2006-02-15 05:03:42'),(877,'TAXI KICK','A Amazing Epistle of a Girl And a Woman who must Outrace a Waitress in Soviet Georgia',2006,1,NULL,4,'0.99',64,'23.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(878,'TEEN APOLLO','A Awe-Inspiring Drama of a Dog And a Man who must Escape a Robot in A Shark Tank',2006,1,NULL,3,'4.99',74,'25.99','G','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(879,'TELEGRAPH VOYAGE','A Fateful Yarn of a Husband And a Dog who must Battle a Waitress in A Jet Boat',2006,1,NULL,3,'4.99',148,'20.99','PG','Commentaries','2006-02-15 05:03:42'),(880,'TELEMARK HEARTBREAKERS','A Action-Packed Panorama of a Technical Writer And a Man who must Build a Forensic Psychologist in A Manhattan Penthouse',2006,1,NULL,6,'2.99',152,'9.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(881,'TEMPLE ATTRACTION','A Action-Packed Saga of a Forensic Psychologist And a Woman who must Battle a Womanizer in Soviet Georgia',2006,1,NULL,5,'4.99',71,'13.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(882,'TENENBAUMS COMMAND','A Taut Display of a Pioneer And a Man who must Reach a Girl in The Gulf of Mexico',2006,1,NULL,4,'0.99',99,'24.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'),(883,'TEQUILA PAST','A Action-Packed Panorama of a Mad Scientist And a Robot who must Challenge a Student in Nigeria',2006,1,NULL,6,'4.99',53,'17.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(884,'TERMINATOR CLUB','A Touching Story of a Crocodile And a Girl who must Sink a Man in The Gulf of Mexico',2006,1,NULL,5,'4.99',88,'11.99','R','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(885,'TEXAS WATCH','A Awe-Inspiring Yarn of a Student And a Teacher who must Fight a Teacher in An Abandoned Amusement Park',2006,1,NULL,7,'0.99',179,'22.99','NC-17','Trailers','2006-02-15 05:03:42'),(886,'THEORY MERMAID','A Fateful Yarn of a Composer And a Monkey who must Vanquish a Womanizer in The First Manned Space Station',2006,1,NULL,5,'0.99',184,'9.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(887,'THIEF PELICAN','A Touching Documentary of a Madman And a Mad Scientist who must Outrace a Feminist in An Abandoned Mine Shaft',2006,1,NULL,5,'4.99',135,'28.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(888,'THIN SAGEBRUSH','A Emotional Drama of a Husband And a Lumberjack who must Build a Cat in Ancient India',2006,1,NULL,5,'4.99',53,'9.99','PG-13','Behind the Scenes','2006-02-15 05:03:42'),(889,'TIES HUNGER','A Insightful Saga of a Astronaut And a Explorer who must Pursue a Mad Scientist in A U-Boat',2006,1,NULL,3,'4.99',111,'28.99','R','Deleted Scenes','2006-02-15 05:03:42'),(890,'TIGHTS DAWN','A Thrilling Epistle of a Boat And a Secret Agent who must Face a Boy in A Baloon',2006,1,NULL,5,'0.99',172,'14.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(891,'TIMBERLAND SKY','A Boring Display of a Man And a Dog who must Redeem a Girl in A U-Boat',2006,1,NULL,3,'0.99',69,'13.99','G','Commentaries','2006-02-15 05:03:42'),(892,'TITANIC BOONDOCK','A Brilliant Reflection of a Feminist And a Dog who must Fight a Boy in A Baloon Factory',2006,1,NULL,3,'4.99',104,'18.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(893,'TITANS JERK','A Unbelieveable Panorama of a Feminist And a Sumo Wrestler who must Challenge a Technical Writer in Ancient China',2006,1,NULL,4,'4.99',91,'11.99','PG','Behind the Scenes','2006-02-15 05:03:42'),(894,'TOMATOES HELLFIGHTERS','A Thoughtful Epistle of a Madman And a Astronaut who must Overcome a Monkey in A Shark Tank',2006,1,NULL,6,'0.99',68,'23.99','PG','Behind the Scenes','2006-02-15 05:03:42'),(895,'TOMORROW HUSTLER','A Thoughtful Story of a Moose And a Husband who must Face a Secret Agent in The Sahara Desert',2006,1,NULL,3,'2.99',142,'21.99','R','Commentaries','2006-02-15 05:03:42'),(896,'TOOTSIE PILOT','A Awe-Inspiring Documentary of a Womanizer And a Pastry Chef who must Kill a Lumberjack in Berlin',2006,1,NULL,3,'0.99',157,'10.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(897,'TORQUE BOUND','A Emotional Display of a Crocodile And a Husband who must Reach a Man in Ancient Japan',2006,1,NULL,3,'4.99',179,'27.99','G','Trailers,Commentaries','2006-02-15 05:03:42'),(898,'TOURIST PELICAN','A Boring Story of a Butler And a Astronaut who must Outrace a Pioneer in Australia',2006,1,NULL,4,'4.99',152,'18.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'),(899,'TOWERS HURRICANE','A Fateful Display of a Monkey And a Car who must Sink a Husband in A MySQL Convention',2006,1,NULL,7,'0.99',144,'14.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(900,'TOWN ARK','A Awe-Inspiring Documentary of a Moose And a Madman who must Meet a Dog in An Abandoned Mine Shaft',2006,1,NULL,6,'2.99',136,'17.99','R','Behind the Scenes','2006-02-15 05:03:42'),(901,'TRACY CIDER','A Touching Reflection of a Database Administrator And a Madman who must Build a Lumberjack in Nigeria',2006,1,NULL,3,'0.99',142,'29.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(902,'TRADING PINOCCHIO','A Emotional Character Study of a Student And a Explorer who must Discover a Frisbee in The First Manned Space Station',2006,1,NULL,6,'4.99',170,'22.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(903,'TRAFFIC HOBBIT','A Amazing Epistle of a Squirrel And a Lumberjack who must Succumb a Database Administrator in A U-Boat',2006,1,NULL,5,'4.99',139,'13.99','G','Trailers,Commentaries','2006-02-15 05:03:42'),(904,'TRAIN BUNCH','A Thrilling Character Study of a Robot And a Squirrel who must Face a Dog in Ancient India',2006,1,NULL,3,'4.99',71,'26.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(905,'TRAINSPOTTING STRANGERS','A Fast-Paced Drama of a Pioneer And a Mad Cow who must Challenge a Madman in Ancient Japan',2006,1,NULL,7,'4.99',132,'10.99','PG-13','Trailers','2006-02-15 05:03:42'),(906,'TRAMP OTHERS','A Brilliant Display of a Composer And a Cat who must Succumb a A Shark in Ancient India',2006,1,NULL,4,'0.99',171,'27.99','PG','Deleted Scenes','2006-02-15 05:03:42'),(907,'TRANSLATION SUMMER','A Touching Reflection of a Man And a Monkey who must Pursue a Womanizer in A MySQL Convention',2006,1,NULL,4,'0.99',168,'10.99','PG-13','Trailers','2006-02-15 05:03:42'),(908,'TRAP GUYS','A Unbelieveable Story of a Boy And a Mad Cow who must Challenge a Database Administrator in The Sahara Desert',2006,1,NULL,3,'4.99',110,'11.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(909,'TREASURE COMMAND','A Emotional Saga of a Car And a Madman who must Discover a Pioneer in California',2006,1,NULL,3,'0.99',102,'28.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(910,'TREATMENT JEKYLL','A Boring Story of a Teacher And a Student who must Outgun a Cat in An Abandoned Mine Shaft',2006,1,NULL,3,'0.99',87,'19.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(911,'TRIP NEWTON','A Fanciful Character Study of a Lumberjack And a Car who must Discover a Cat in An Abandoned Amusement Park',2006,1,NULL,7,'4.99',64,'14.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(912,'TROJAN TOMORROW','A Astounding Panorama of a Husband And a Sumo Wrestler who must Pursue a Boat in Ancient India',2006,1,NULL,3,'2.99',52,'9.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(913,'TROOPERS METAL','A Fanciful Drama of a Monkey And a Feminist who must Sink a Man in Berlin',2006,1,NULL,3,'0.99',115,'20.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(914,'TROUBLE DATE','A Lacklusture Panorama of a Forensic Psychologist And a Woman who must Kill a Explorer in Ancient Japan',2006,1,NULL,6,'2.99',61,'13.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(915,'TRUMAN CRAZY','A Thrilling Epistle of a Moose And a Boy who must Meet a Database Administrator in A Monastery',2006,1,NULL,7,'4.99',92,'9.99','G','Trailers,Commentaries','2006-02-15 05:03:42'),(916,'TURN STAR','A Stunning Tale of a Man And a Monkey who must Chase a Student in New Orleans',2006,1,NULL,3,'2.99',80,'10.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(917,'TUXEDO MILE','A Boring Drama of a Man And a Forensic Psychologist who must Face a Frisbee in Ancient India',2006,1,NULL,3,'2.99',152,'24.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(918,'TWISTED PIRATES','A Touching Display of a Frisbee And a Boat who must Kill a Girl in A MySQL Convention',2006,1,NULL,4,'4.99',152,'23.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(919,'TYCOON GATHERING','A Emotional Display of a Husband And a A Shark who must Succumb a Madman in A Manhattan Penthouse',2006,1,NULL,3,'4.99',82,'17.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(920,'UNBREAKABLE KARATE','A Amazing Character Study of a Robot And a Student who must Chase a Robot in Australia',2006,1,NULL,3,'0.99',62,'16.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(921,'UNCUT SUICIDES','A Intrepid Yarn of a Explorer And a Pastry Chef who must Pursue a Mad Cow in A U-Boat',2006,1,NULL,7,'2.99',172,'29.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(922,'UNDEFEATED DALMATIONS','A Unbelieveable Display of a Crocodile And a Feminist who must Overcome a Moose in An Abandoned Amusement Park',2006,1,NULL,7,'4.99',107,'22.99','PG-13','Commentaries','2006-02-15 05:03:42'),(923,'UNFAITHFUL KILL','A Taut Documentary of a Waitress And a Mad Scientist who must Battle a Technical Writer in New Orleans',2006,1,NULL,7,'2.99',78,'12.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(924,'UNFORGIVEN ZOOLANDER','A Taut Epistle of a Monkey And a Sumo Wrestler who must Vanquish a A Shark in A Baloon Factory',2006,1,NULL,7,'0.99',129,'15.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(925,'UNITED PILOT','A Fast-Paced Reflection of a Cat And a Mad Cow who must Fight a Car in The Sahara Desert',2006,1,NULL,3,'0.99',164,'27.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(926,'UNTOUCHABLES SUNRISE','A Amazing Documentary of a Woman And a Astronaut who must Outrace a Teacher in An Abandoned Fun House',2006,1,NULL,5,'2.99',120,'11.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(927,'UPRISING UPTOWN','A Fanciful Reflection of a Boy And a Butler who must Pursue a Woman in Berlin',2006,1,NULL,6,'2.99',174,'16.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(928,'UPTOWN YOUNG','A Fateful Documentary of a Dog And a Hunter who must Pursue a Teacher in An Abandoned Amusement Park',2006,1,NULL,5,'2.99',84,'16.99','PG','Commentaries','2006-02-15 05:03:42'),(929,'USUAL UNTOUCHABLES','A Touching Display of a Explorer And a Lumberjack who must Fight a Forensic Psychologist in A Shark Tank',2006,1,NULL,5,'4.99',128,'21.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(930,'VACATION BOONDOCK','A Fanciful Character Study of a Secret Agent And a Mad Scientist who must Reach a Teacher in Australia',2006,1,NULL,4,'2.99',145,'23.99','R','Commentaries','2006-02-15 05:03:42'),(931,'VALENTINE VANISHING','A Thrilling Display of a Husband And a Butler who must Reach a Pastry Chef in California',2006,1,NULL,7,'0.99',48,'9.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(932,'VALLEY PACKER','A Astounding Documentary of a Astronaut And a Boy who must Outrace a Sumo Wrestler in Berlin',2006,1,NULL,3,'0.99',73,'21.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(933,'VAMPIRE WHALE','A Epic Story of a Lumberjack And a Monkey who must Confront a Pioneer in A MySQL Convention',2006,1,NULL,4,'4.99',126,'11.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'),(934,'VANILLA DAY','A Fast-Paced Saga of a Girl And a Forensic Psychologist who must Redeem a Girl in Nigeria',2006,1,NULL,7,'4.99',122,'20.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(935,'VANISHED GARDEN','A Intrepid Character Study of a Squirrel And a A Shark who must Kill a Lumberjack in California',2006,1,NULL,5,'0.99',142,'17.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(936,'VANISHING ROCKY','A Brilliant Reflection of a Man And a Woman who must Conquer a Pioneer in A MySQL Convention',2006,1,NULL,3,'2.99',123,'21.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(937,'VARSITY TRIP','A Action-Packed Character Study of a Astronaut And a Explorer who must Reach a Monkey in A MySQL Convention',2006,1,NULL,7,'2.99',85,'14.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(938,'VELVET TERMINATOR','A Lacklusture Tale of a Pastry Chef And a Technical Writer who must Confront a Crocodile in An Abandoned Amusement Park',2006,1,NULL,3,'4.99',173,'14.99','R','Behind the Scenes','2006-02-15 05:03:42'),(939,'VERTIGO NORTHWEST','A Unbelieveable Display of a Mad Scientist And a Mad Scientist who must Outgun a Mad Cow in Ancient Japan',2006,1,NULL,4,'2.99',90,'17.99','R','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(940,'VICTORY ACADEMY','A Insightful Epistle of a Mad Scientist And a Explorer who must Challenge a Cat in The Sahara Desert',2006,1,NULL,6,'0.99',64,'19.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(941,'VIDEOTAPE ARSENIC','A Lacklusture Display of a Girl And a Astronaut who must Succumb a Student in Australia',2006,1,NULL,4,'4.99',145,'10.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(942,'VIETNAM SMOOCHY','A Lacklusture Display of a Butler And a Man who must Sink a Explorer in Soviet Georgia',2006,1,NULL,7,'0.99',174,'27.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(943,'VILLAIN DESPERATE','A Boring Yarn of a Pioneer And a Feminist who must Redeem a Cat in An Abandoned Amusement Park',2006,1,NULL,4,'4.99',76,'27.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42'),(944,'VIRGIN DAISY','A Awe-Inspiring Documentary of a Robot And a Mad Scientist who must Reach a Database Administrator in A Shark Tank',2006,1,NULL,6,'4.99',179,'29.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(945,'VIRGINIAN PLUTO','A Emotional Panorama of a Dentist And a Crocodile who must Meet a Boy in Berlin',2006,1,NULL,5,'0.99',164,'22.99','R','Deleted Scenes','2006-02-15 05:03:42'),(946,'VIRTUAL SPOILERS','A Fateful Tale of a Database Administrator And a Squirrel who must Discover a Student in Soviet Georgia',2006,1,NULL,3,'4.99',144,'14.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(947,'VISION TORQUE','A Thoughtful Documentary of a Dog And a Man who must Sink a Man in A Shark Tank',2006,1,NULL,5,'0.99',59,'16.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(948,'VOICE PEACH','A Amazing Panorama of a Pioneer And a Student who must Overcome a Mad Scientist in A Manhattan Penthouse',2006,1,NULL,6,'0.99',139,'22.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(949,'VOLCANO TEXAS','A Awe-Inspiring Yarn of a Hunter And a Feminist who must Challenge a Dentist in The Outback',2006,1,NULL,6,'0.99',157,'27.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(950,'VOLUME HOUSE','A Boring Tale of a Dog And a Woman who must Meet a Dentist in California',2006,1,NULL,7,'4.99',132,'12.99','PG','Commentaries','2006-02-15 05:03:42'),(951,'VOYAGE LEGALLY','A Epic Tale of a Squirrel And a Hunter who must Conquer a Boy in An Abandoned Mine Shaft',2006,1,NULL,6,'0.99',78,'28.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(952,'WAGON JAWS','A Intrepid Drama of a Moose And a Boat who must Kill a Explorer in A Manhattan Penthouse',2006,1,NULL,7,'2.99',152,'17.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(953,'WAIT CIDER','A Intrepid Epistle of a Woman And a Forensic Psychologist who must Succumb a Astronaut in A Manhattan Penthouse',2006,1,NULL,3,'0.99',112,'9.99','PG-13','Trailers','2006-02-15 05:03:42'),(954,'WAKE JAWS','A Beautiful Saga of a Feminist And a Composer who must Challenge a Moose in Berlin',2006,1,NULL,7,'4.99',73,'18.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(955,'WALLS ARTIST','A Insightful Panorama of a Teacher And a Teacher who must Overcome a Mad Cow in An Abandoned Fun House',2006,1,NULL,7,'4.99',135,'19.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(956,'WANDA CHAMBER','A Insightful Drama of a A Shark And a Pioneer who must Find a Womanizer in The Outback',2006,1,NULL,7,'4.99',107,'23.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(957,'WAR NOTTING','A Boring Drama of a Teacher And a Sumo Wrestler who must Challenge a Secret Agent in The Canadian Rockies',2006,1,NULL,7,'4.99',80,'26.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(958,'WARDROBE PHANTOM','A Action-Packed Display of a Mad Cow And a Astronaut who must Kill a Car in Ancient India',2006,1,NULL,6,'2.99',178,'19.99','G','Trailers,Commentaries','2006-02-15 05:03:42'),(959,'WARLOCK WEREWOLF','A Astounding Yarn of a Pioneer And a Crocodile who must Defeat a A Shark in The Outback',2006,1,NULL,6,'2.99',83,'10.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(960,'WARS PLUTO','A Taut Reflection of a Teacher And a Database Administrator who must Chase a Madman in The Sahara Desert',2006,1,NULL,5,'2.99',128,'15.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(961,'WASH HEAVENLY','A Awe-Inspiring Reflection of a Cat And a Pioneer who must Escape a Hunter in Ancient China',2006,1,NULL,7,'4.99',161,'22.99','R','Commentaries','2006-02-15 05:03:42'),(962,'WASTELAND DIVINE','A Fanciful Story of a Database Administrator And a Womanizer who must Fight a Database Administrator in Ancient China',2006,1,NULL,7,'2.99',85,'18.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(963,'WATCH TRACY','A Fast-Paced Yarn of a Dog And a Frisbee who must Conquer a Hunter in Nigeria',2006,1,NULL,5,'0.99',78,'12.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(964,'WATERFRONT DELIVERANCE','A Unbelieveable Documentary of a Dentist And a Technical Writer who must Build a Womanizer in Nigeria',2006,1,NULL,4,'4.99',61,'17.99','G','Behind the Scenes','2006-02-15 05:03:42'),(965,'WATERSHIP FRONTIER','A Emotional Yarn of a Boat And a Crocodile who must Meet a Moose in Soviet Georgia',2006,1,NULL,6,'0.99',112,'28.99','G','Commentaries','2006-02-15 05:03:42'),(966,'WEDDING APOLLO','A Action-Packed Tale of a Student And a Waitress who must Conquer a Lumberjack in An Abandoned Mine Shaft',2006,1,NULL,3,'0.99',70,'14.99','PG','Trailers','2006-02-15 05:03:42'),(967,'WEEKEND PERSONAL','A Fast-Paced Documentary of a Car And a Butler who must Find a Frisbee in A Jet Boat',2006,1,NULL,5,'2.99',134,'26.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(968,'WEREWOLF LOLA','A Fanciful Story of a Man And a Sumo Wrestler who must Outrace a Student in A Monastery',2006,1,NULL,6,'4.99',79,'19.99','G','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(969,'WEST LION','A Intrepid Drama of a Butler And a Lumberjack who must Challenge a Database Administrator in A Manhattan Penthouse',2006,1,NULL,4,'4.99',159,'29.99','G','Trailers','2006-02-15 05:03:42'),(970,'WESTWARD SEABISCUIT','A Lacklusture Tale of a Butler And a Husband who must Face a Boy in Ancient China',2006,1,NULL,7,'0.99',52,'11.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(971,'WHALE BIKINI','A Intrepid Story of a Pastry Chef And a Database Administrator who must Kill a Feminist in A MySQL Convention',2006,1,NULL,4,'4.99',109,'11.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(972,'WHISPERER GIANT','A Intrepid Story of a Dentist And a Hunter who must Confront a Monkey in Ancient Japan',2006,1,NULL,4,'4.99',59,'24.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(973,'WIFE TURN','A Awe-Inspiring Epistle of a Teacher And a Feminist who must Confront a Pioneer in Ancient Japan',2006,1,NULL,3,'4.99',183,'27.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(974,'WILD APOLLO','A Beautiful Story of a Monkey And a Sumo Wrestler who must Conquer a A Shark in A MySQL Convention',2006,1,NULL,4,'0.99',181,'24.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(975,'WILLOW TRACY','A Brilliant Panorama of a Boat And a Astronaut who must Challenge a Teacher in A Manhattan Penthouse',2006,1,NULL,6,'2.99',137,'22.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(976,'WIND PHANTOM','A Touching Saga of a Madman And a Forensic Psychologist who must Build a Sumo Wrestler in An Abandoned Mine Shaft',2006,1,NULL,6,'0.99',111,'12.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(977,'WINDOW SIDE','A Astounding Character Study of a Womanizer And a Hunter who must Escape a Robot in A Monastery',2006,1,NULL,3,'2.99',85,'25.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(978,'WISDOM WORKER','A Unbelieveable Saga of a Forensic Psychologist And a Student who must Face a Squirrel in The First Manned Space Station',2006,1,NULL,3,'0.99',98,'12.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(979,'WITCHES PANIC','A Awe-Inspiring Drama of a Secret Agent And a Hunter who must Fight a Moose in Nigeria',2006,1,NULL,6,'4.99',100,'10.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(980,'WIZARD COLDBLOODED','A Lacklusture Display of a Robot And a Girl who must Defeat a Sumo Wrestler in A MySQL Convention',2006,1,NULL,4,'4.99',75,'12.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(981,'WOLVES DESIRE','A Fast-Paced Drama of a Squirrel And a Robot who must Succumb a Technical Writer in A Manhattan Penthouse',2006,1,NULL,7,'0.99',55,'13.99','NC-17','Behind the Scenes','2006-02-15 05:03:42'),(982,'WOMEN DORADO','A Insightful Documentary of a Waitress And a Butler who must Vanquish a Composer in Australia',2006,1,NULL,4,'0.99',126,'23.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(983,'WON DARES','A Unbelieveable Documentary of a Teacher And a Monkey who must Defeat a Explorer in A U-Boat',2006,1,NULL,7,'2.99',105,'18.99','PG','Behind the Scenes','2006-02-15 05:03:42'),(984,'WONDERFUL DROP','A Boring Panorama of a Woman And a Madman who must Overcome a Butler in A U-Boat',2006,1,NULL,3,'2.99',126,'20.99','NC-17','Commentaries','2006-02-15 05:03:42'),(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',2006,1,NULL,4,'4.99',111,'19.99','PG','Commentaries','2006-02-15 05:03:42'),(986,'WONKA SEA','A Brilliant Saga of a Boat And a Mad Scientist who must Meet a Moose in Ancient India',2006,1,NULL,6,'2.99',85,'24.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'),(987,'WORDS HUNTER','A Action-Packed Reflection of a Composer And a Mad Scientist who must Face a Pioneer in A MySQL Convention',2006,1,NULL,3,'2.99',116,'13.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(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',2006,1,NULL,7,'2.99',139,'26.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'),(989,'WORKING MICROCOSMOS','A Stunning Epistle of a Dentist And a Dog who must Kill a Madman in Ancient China',2006,1,NULL,4,'4.99',74,'22.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(990,'WORLD LEATHERNECKS','A Unbelieveable Tale of a Pioneer And a Astronaut who must Overcome a Robot in An Abandoned Amusement Park',2006,1,NULL,3,'0.99',171,'13.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(991,'WORST BANGER','A Thrilling Drama of a Madman And a Dentist who must Conquer a Boy in The Outback',2006,1,NULL,4,'2.99',185,'26.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42'),(992,'WRATH MILE','A Intrepid Reflection of a Technical Writer And a Hunter who must Defeat a Sumo Wrestler in A Monastery',2006,1,NULL,5,'0.99',176,'17.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42'),(993,'WRONG BEHAVIOR','A Emotional Saga of a Crocodile And a Sumo Wrestler who must Discover a Mad Cow in New Orleans',2006,1,NULL,6,'2.99',178,'10.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(994,'WYOMING STORM','A Awe-Inspiring Panorama of a Robot And a Boat who must Overcome a Feminist in A U-Boat',2006,1,NULL,6,'4.99',100,'29.99','PG-13','Deleted Scenes','2006-02-15 05:03:42'),(995,'YENTL IDAHO','A Amazing Display of a Robot And a Astronaut who must Fight a Womanizer in Berlin',2006,1,NULL,5,'4.99',86,'11.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42'),(996,'YOUNG LANGUAGE','A Unbelieveable Yarn of a Boat And a Database Administrator who must Meet a Boy in The First Manned Space Station',2006,1,NULL,6,'0.99',183,'9.99','G','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(997,'YOUTH KICK','A Touching Drama of a Teacher And a Cat who must Challenge a Technical Writer in A U-Boat',2006,1,NULL,4,'0.99',179,'14.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42'),(998,'ZHIVAGO CORE','A Fateful Yarn of a Composer And a Man who must Face a Boy in The Canadian Rockies',2006,1,NULL,6,'0.99',105,'10.99','NC-17','Deleted Scenes','2006-02-15 05:03:42'),(999,'ZOOLANDER FICTION','A Fateful Reflection of a Waitress And a Boat who must Discover a Sumo Wrestler in Ancient China',2006,1,NULL,5,'2.99',101,'28.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42'),(1000,'ZORRO ARK','A Intrepid Panorama of a Mad Scientist And a Boy who must Redeem a Boy in A Monastery',2006,1,NULL,3,'4.99',50,'18.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42'); INSERT INTO film_actor VALUES (1,1,'2006-02-15 05:05:03'),(1,23,'2006-02-15 05:05:03'),(1,25,'2006-02-15 05:05:03'),(1,106,'2006-02-15 05:05:03'),(1,140,'2006-02-15 05:05:03'),(1,166,'2006-02-15 05:05:03'),(1,277,'2006-02-15 05:05:03'),(1,361,'2006-02-15 05:05:03'),(1,438,'2006-02-15 05:05:03'),(1,499,'2006-02-15 05:05:03'),(1,506,'2006-02-15 05:05:03'),(1,509,'2006-02-15 05:05:03'),(1,605,'2006-02-15 05:05:03'),(1,635,'2006-02-15 05:05:03'),(1,749,'2006-02-15 05:05:03'),(1,832,'2006-02-15 05:05:03'),(1,939,'2006-02-15 05:05:03'),(1,970,'2006-02-15 05:05:03'),(1,980,'2006-02-15 05:05:03'),(2,3,'2006-02-15 05:05:03'),(2,31,'2006-02-15 05:05:03'),(2,47,'2006-02-15 05:05:03'),(2,105,'2006-02-15 05:05:03'),(2,132,'2006-02-15 05:05:03'),(2,145,'2006-02-15 05:05:03'),(2,226,'2006-02-15 05:05:03'),(2,249,'2006-02-15 05:05:03'),(2,314,'2006-02-15 05:05:03'),(2,321,'2006-02-15 05:05:03'),(2,357,'2006-02-15 05:05:03'),(2,369,'2006-02-15 05:05:03'),(2,399,'2006-02-15 05:05:03'),(2,458,'2006-02-15 05:05:03'),(2,481,'2006-02-15 05:05:03'),(2,485,'2006-02-15 05:05:03'),(2,518,'2006-02-15 05:05:03'),(2,540,'2006-02-15 05:05:03'),(2,550,'2006-02-15 05:05:03'),(2,555,'2006-02-15 05:05:03'),(2,561,'2006-02-15 05:05:03'),(2,742,'2006-02-15 05:05:03'),(2,754,'2006-02-15 05:05:03'),(2,811,'2006-02-15 05:05:03'),(2,958,'2006-02-15 05:05:03'),(3,17,'2006-02-15 05:05:03'),(3,40,'2006-02-15 05:05:03'),(3,42,'2006-02-15 05:05:03'),(3,87,'2006-02-15 05:05:03'),(3,111,'2006-02-15 05:05:03'),(3,185,'2006-02-15 05:05:03'),(3,289,'2006-02-15 05:05:03'),(3,329,'2006-02-15 05:05:03'),(3,336,'2006-02-15 05:05:03'),(3,341,'2006-02-15 05:05:03'),(3,393,'2006-02-15 05:05:03'),(3,441,'2006-02-15 05:05:03'),(3,453,'2006-02-15 05:05:03'),(3,480,'2006-02-15 05:05:03'),(3,539,'2006-02-15 05:05:03'),(3,618,'2006-02-15 05:05:03'),(3,685,'2006-02-15 05:05:03'),(3,827,'2006-02-15 05:05:03'),(3,966,'2006-02-15 05:05:03'),(3,967,'2006-02-15 05:05:03'),(3,971,'2006-02-15 05:05:03'),(3,996,'2006-02-15 05:05:03'),(4,23,'2006-02-15 05:05:03'),(4,25,'2006-02-15 05:05:03'),(4,56,'2006-02-15 05:05:03'),(4,62,'2006-02-15 05:05:03'),(4,79,'2006-02-15 05:05:03'),(4,87,'2006-02-15 05:05:03'),(4,355,'2006-02-15 05:05:03'),(4,379,'2006-02-15 05:05:03'),(4,398,'2006-02-15 05:05:03'),(4,463,'2006-02-15 05:05:03'),(4,490,'2006-02-15 05:05:03'),(4,616,'2006-02-15 05:05:03'),(4,635,'2006-02-15 05:05:03'),(4,691,'2006-02-15 05:05:03'),(4,712,'2006-02-15 05:05:03'),(4,714,'2006-02-15 05:05:03'),(4,721,'2006-02-15 05:05:03'),(4,798,'2006-02-15 05:05:03'),(4,832,'2006-02-15 05:05:03'),(4,858,'2006-02-15 05:05:03'),(4,909,'2006-02-15 05:05:03'),(4,924,'2006-02-15 05:05:03'),(5,19,'2006-02-15 05:05:03'),(5,54,'2006-02-15 05:05:03'),(5,85,'2006-02-15 05:05:03'),(5,146,'2006-02-15 05:05:03'),(5,171,'2006-02-15 05:05:03'),(5,172,'2006-02-15 05:05:03'),(5,202,'2006-02-15 05:05:03'),(5,203,'2006-02-15 05:05:03'),(5,286,'2006-02-15 05:05:03'),(5,288,'2006-02-15 05:05:03'),(5,316,'2006-02-15 05:05:03'),(5,340,'2006-02-15 05:05:03'),(5,369,'2006-02-15 05:05:03'),(5,375,'2006-02-15 05:05:03'),(5,383,'2006-02-15 05:05:03'),(5,392,'2006-02-15 05:05:03'),(5,411,'2006-02-15 05:05:03'),(5,503,'2006-02-15 05:05:03'),(5,535,'2006-02-15 05:05:03'),(5,571,'2006-02-15 05:05:03'),(5,650,'2006-02-15 05:05:03'),(5,665,'2006-02-15 05:05:03'),(5,687,'2006-02-15 05:05:03'),(5,730,'2006-02-15 05:05:03'),(5,732,'2006-02-15 05:05:03'),(5,811,'2006-02-15 05:05:03'),(5,817,'2006-02-15 05:05:03'),(5,841,'2006-02-15 05:05:03'),(5,865,'2006-02-15 05:05:03'),(6,29,'2006-02-15 05:05:03'),(6,53,'2006-02-15 05:05:03'),(6,60,'2006-02-15 05:05:03'),(6,70,'2006-02-15 05:05:03'),(6,112,'2006-02-15 05:05:03'),(6,164,'2006-02-15 05:05:03'),(6,165,'2006-02-15 05:05:03'),(6,193,'2006-02-15 05:05:03'),(6,256,'2006-02-15 05:05:03'),(6,451,'2006-02-15 05:05:03'),(6,503,'2006-02-15 05:05:03'),(6,509,'2006-02-15 05:05:03'),(6,517,'2006-02-15 05:05:03'),(6,519,'2006-02-15 05:05:03'),(6,605,'2006-02-15 05:05:03'),(6,692,'2006-02-15 05:05:03'),(6,826,'2006-02-15 05:05:03'),(6,892,'2006-02-15 05:05:03'),(6,902,'2006-02-15 05:05:03'),(6,994,'2006-02-15 05:05:03'),(7,25,'2006-02-15 05:05:03'),(7,27,'2006-02-15 05:05:03'),(7,35,'2006-02-15 05:05:03'),(7,67,'2006-02-15 05:05:03'),(7,96,'2006-02-15 05:05:03'),(7,170,'2006-02-15 05:05:03'),(7,173,'2006-02-15 05:05:03'),(7,217,'2006-02-15 05:05:03'),(7,218,'2006-02-15 05:05:03'),(7,225,'2006-02-15 05:05:03'),(7,292,'2006-02-15 05:05:03'),(7,351,'2006-02-15 05:05:03'),(7,414,'2006-02-15 05:05:03'),(7,463,'2006-02-15 05:05:03'),(7,554,'2006-02-15 05:05:03'),(7,618,'2006-02-15 05:05:03'),(7,633,'2006-02-15 05:05:03'),(7,637,'2006-02-15 05:05:03'),(7,691,'2006-02-15 05:05:03'),(7,758,'2006-02-15 05:05:03'),(7,766,'2006-02-15 05:05:03'),(7,770,'2006-02-15 05:05:03'),(7,805,'2006-02-15 05:05:03'),(7,806,'2006-02-15 05:05:03'),(7,846,'2006-02-15 05:05:03'),(7,900,'2006-02-15 05:05:03'),(7,901,'2006-02-15 05:05:03'),(7,910,'2006-02-15 05:05:03'),(7,957,'2006-02-15 05:05:03'),(7,959,'2006-02-15 05:05:03'),(8,47,'2006-02-15 05:05:03'),(8,115,'2006-02-15 05:05:03'),(8,158,'2006-02-15 05:05:03'),(8,179,'2006-02-15 05:05:03'),(8,195,'2006-02-15 05:05:03'),(8,205,'2006-02-15 05:05:03'),(8,255,'2006-02-15 05:05:03'),(8,263,'2006-02-15 05:05:03'),(8,321,'2006-02-15 05:05:03'),(8,396,'2006-02-15 05:05:03'),(8,458,'2006-02-15 05:05:03'),(8,523,'2006-02-15 05:05:03'),(8,532,'2006-02-15 05:05:03'),(8,554,'2006-02-15 05:05:03'),(8,752,'2006-02-15 05:05:03'),(8,769,'2006-02-15 05:05:03'),(8,771,'2006-02-15 05:05:03'),(8,859,'2006-02-15 05:05:03'),(8,895,'2006-02-15 05:05:03'),(8,936,'2006-02-15 05:05:03'),(9,30,'2006-02-15 05:05:03'),(9,74,'2006-02-15 05:05:03'),(9,147,'2006-02-15 05:05:03'),(9,148,'2006-02-15 05:05:03'),(9,191,'2006-02-15 05:05:03'),(9,200,'2006-02-15 05:05:03'),(9,204,'2006-02-15 05:05:03'),(9,434,'2006-02-15 05:05:03'),(9,510,'2006-02-15 05:05:03'),(9,514,'2006-02-15 05:05:03'),(9,552,'2006-02-15 05:05:03'),(9,650,'2006-02-15 05:05:03'),(9,671,'2006-02-15 05:05:03'),(9,697,'2006-02-15 05:05:03'),(9,722,'2006-02-15 05:05:03'),(9,752,'2006-02-15 05:05:03'),(9,811,'2006-02-15 05:05:03'),(9,815,'2006-02-15 05:05:03'),(9,865,'2006-02-15 05:05:03'),(9,873,'2006-02-15 05:05:03'),(9,889,'2006-02-15 05:05:03'),(9,903,'2006-02-15 05:05:03'),(9,926,'2006-02-15 05:05:03'),(9,964,'2006-02-15 05:05:03'),(9,974,'2006-02-15 05:05:03'),(10,1,'2006-02-15 05:05:03'),(10,9,'2006-02-15 05:05:03'),(10,191,'2006-02-15 05:05:03'),(10,236,'2006-02-15 05:05:03'),(10,251,'2006-02-15 05:05:03'),(10,366,'2006-02-15 05:05:03'),(10,477,'2006-02-15 05:05:03'),(10,480,'2006-02-15 05:05:03'),(10,522,'2006-02-15 05:05:03'),(10,530,'2006-02-15 05:05:03'),(10,587,'2006-02-15 05:05:03'),(10,694,'2006-02-15 05:05:03'),(10,703,'2006-02-15 05:05:03'),(10,716,'2006-02-15 05:05:03'),(10,782,'2006-02-15 05:05:03'),(10,914,'2006-02-15 05:05:03'),(10,929,'2006-02-15 05:05:03'),(10,930,'2006-02-15 05:05:03'),(10,964,'2006-02-15 05:05:03'),(10,966,'2006-02-15 05:05:03'),(10,980,'2006-02-15 05:05:03'),(10,983,'2006-02-15 05:05:03'),(11,118,'2006-02-15 05:05:03'),(11,205,'2006-02-15 05:05:03'),(11,281,'2006-02-15 05:05:03'),(11,283,'2006-02-15 05:05:03'),(11,348,'2006-02-15 05:05:03'),(11,364,'2006-02-15 05:05:03'),(11,395,'2006-02-15 05:05:03'),(11,429,'2006-02-15 05:05:03'),(11,433,'2006-02-15 05:05:03'),(11,453,'2006-02-15 05:05:03'),(11,485,'2006-02-15 05:05:03'),(11,532,'2006-02-15 05:05:03'),(11,567,'2006-02-15 05:05:03'),(11,587,'2006-02-15 05:05:03'),(11,597,'2006-02-15 05:05:03'),(11,636,'2006-02-15 05:05:03'),(11,709,'2006-02-15 05:05:03'),(11,850,'2006-02-15 05:05:03'),(11,854,'2006-02-15 05:05:03'),(11,888,'2006-02-15 05:05:03'),(11,896,'2006-02-15 05:05:03'),(11,928,'2006-02-15 05:05:03'),(11,938,'2006-02-15 05:05:03'),(11,969,'2006-02-15 05:05:03'),(11,988,'2006-02-15 05:05:03'),(12,16,'2006-02-15 05:05:03'),(12,17,'2006-02-15 05:05:03'),(12,34,'2006-02-15 05:05:03'),(12,37,'2006-02-15 05:05:03'),(12,91,'2006-02-15 05:05:03'),(12,92,'2006-02-15 05:05:03'),(12,107,'2006-02-15 05:05:03'),(12,155,'2006-02-15 05:05:03'),(12,177,'2006-02-15 05:05:03'),(12,208,'2006-02-15 05:05:03'),(12,213,'2006-02-15 05:05:03'),(12,216,'2006-02-15 05:05:03'),(12,243,'2006-02-15 05:05:03'),(12,344,'2006-02-15 05:05:03'),(12,400,'2006-02-15 05:05:03'),(12,416,'2006-02-15 05:05:03'),(12,420,'2006-02-15 05:05:03'),(12,457,'2006-02-15 05:05:03'),(12,513,'2006-02-15 05:05:03'),(12,540,'2006-02-15 05:05:03'),(12,593,'2006-02-15 05:05:03'),(12,631,'2006-02-15 05:05:03'),(12,635,'2006-02-15 05:05:03'),(12,672,'2006-02-15 05:05:03'),(12,716,'2006-02-15 05:05:03'),(12,728,'2006-02-15 05:05:03'),(12,812,'2006-02-15 05:05:03'),(12,838,'2006-02-15 05:05:03'),(12,871,'2006-02-15 05:05:03'),(12,880,'2006-02-15 05:05:03'),(12,945,'2006-02-15 05:05:03'),(13,17,'2006-02-15 05:05:03'),(13,29,'2006-02-15 05:05:03'),(13,45,'2006-02-15 05:05:03'),(13,87,'2006-02-15 05:05:03'),(13,110,'2006-02-15 05:05:03'),(13,144,'2006-02-15 05:05:03'),(13,154,'2006-02-15 05:05:03'),(13,162,'2006-02-15 05:05:03'),(13,203,'2006-02-15 05:05:03'),(13,254,'2006-02-15 05:05:03'),(13,337,'2006-02-15 05:05:03'),(13,346,'2006-02-15 05:05:03'),(13,381,'2006-02-15 05:05:03'),(13,385,'2006-02-15 05:05:03'),(13,427,'2006-02-15 05:05:03'),(13,456,'2006-02-15 05:05:03'),(13,513,'2006-02-15 05:05:03'),(13,515,'2006-02-15 05:05:03'),(13,522,'2006-02-15 05:05:03'),(13,524,'2006-02-15 05:05:03'),(13,528,'2006-02-15 05:05:03'),(13,571,'2006-02-15 05:05:03'),(13,588,'2006-02-15 05:05:03'),(13,597,'2006-02-15 05:05:03'),(13,600,'2006-02-15 05:05:03'),(13,718,'2006-02-15 05:05:03'),(13,729,'2006-02-15 05:05:03'),(13,816,'2006-02-15 05:05:03'),(13,817,'2006-02-15 05:05:03'),(13,832,'2006-02-15 05:05:03'),(13,833,'2006-02-15 05:05:03'),(13,843,'2006-02-15 05:05:03'),(13,897,'2006-02-15 05:05:03'),(13,966,'2006-02-15 05:05:03'),(13,998,'2006-02-15 05:05:03'),(14,154,'2006-02-15 05:05:03'),(14,187,'2006-02-15 05:05:03'),(14,232,'2006-02-15 05:05:03'),(14,241,'2006-02-15 05:05:03'),(14,253,'2006-02-15 05:05:03'),(14,255,'2006-02-15 05:05:03'),(14,258,'2006-02-15 05:05:03'),(14,284,'2006-02-15 05:05:03'),(14,292,'2006-02-15 05:05:03'),(14,370,'2006-02-15 05:05:03'),(14,415,'2006-02-15 05:05:03'),(14,417,'2006-02-15 05:05:03'),(14,418,'2006-02-15 05:05:03'),(14,454,'2006-02-15 05:05:03'),(14,472,'2006-02-15 05:05:03'),(14,475,'2006-02-15 05:05:03'),(14,495,'2006-02-15 05:05:03'),(14,536,'2006-02-15 05:05:03'),(14,537,'2006-02-15 05:05:03'),(14,612,'2006-02-15 05:05:03'),(14,688,'2006-02-15 05:05:03'),(14,759,'2006-02-15 05:05:03'),(14,764,'2006-02-15 05:05:03'),(14,847,'2006-02-15 05:05:03'),(14,856,'2006-02-15 05:05:03'),(14,890,'2006-02-15 05:05:03'),(14,908,'2006-02-15 05:05:03'),(14,919,'2006-02-15 05:05:03'),(14,948,'2006-02-15 05:05:03'),(14,970,'2006-02-15 05:05:03'),(15,31,'2006-02-15 05:05:03'),(15,89,'2006-02-15 05:05:03'),(15,91,'2006-02-15 05:05:03'),(15,108,'2006-02-15 05:05:03'),(15,125,'2006-02-15 05:05:03'),(15,236,'2006-02-15 05:05:03'),(15,275,'2006-02-15 05:05:03'),(15,280,'2006-02-15 05:05:03'),(15,326,'2006-02-15 05:05:03'),(15,342,'2006-02-15 05:05:03'),(15,414,'2006-02-15 05:05:03'),(15,445,'2006-02-15 05:05:03'),(15,500,'2006-02-15 05:05:03'),(15,502,'2006-02-15 05:05:03'),(15,541,'2006-02-15 05:05:03'),(15,553,'2006-02-15 05:05:03'),(15,594,'2006-02-15 05:05:03'),(15,626,'2006-02-15 05:05:03'),(15,635,'2006-02-15 05:05:03'),(15,745,'2006-02-15 05:05:03'),(15,783,'2006-02-15 05:05:03'),(15,795,'2006-02-15 05:05:03'),(15,817,'2006-02-15 05:05:03'),(15,886,'2006-02-15 05:05:03'),(15,924,'2006-02-15 05:05:03'),(15,949,'2006-02-15 05:05:03'),(15,968,'2006-02-15 05:05:03'),(15,985,'2006-02-15 05:05:03'),(16,80,'2006-02-15 05:05:03'),(16,87,'2006-02-15 05:05:03'),(16,101,'2006-02-15 05:05:03'),(16,121,'2006-02-15 05:05:03'),(16,155,'2006-02-15 05:05:03'),(16,177,'2006-02-15 05:05:03'),(16,218,'2006-02-15 05:05:03'),(16,221,'2006-02-15 05:05:03'),(16,267,'2006-02-15 05:05:03'),(16,269,'2006-02-15 05:05:03'),(16,271,'2006-02-15 05:05:03'),(16,280,'2006-02-15 05:05:03'),(16,287,'2006-02-15 05:05:03'),(16,345,'2006-02-15 05:05:03'),(16,438,'2006-02-15 05:05:03'),(16,453,'2006-02-15 05:05:03'),(16,455,'2006-02-15 05:05:03'),(16,456,'2006-02-15 05:05:03'),(16,503,'2006-02-15 05:05:03'),(16,548,'2006-02-15 05:05:03'),(16,582,'2006-02-15 05:05:03'),(16,583,'2006-02-15 05:05:03'),(16,717,'2006-02-15 05:05:03'),(16,758,'2006-02-15 05:05:03'),(16,779,'2006-02-15 05:05:03'),(16,886,'2006-02-15 05:05:03'),(16,967,'2006-02-15 05:05:03'),(17,96,'2006-02-15 05:05:03'),(17,119,'2006-02-15 05:05:03'),(17,124,'2006-02-15 05:05:03'),(17,127,'2006-02-15 05:05:03'),(17,154,'2006-02-15 05:05:03'),(17,199,'2006-02-15 05:05:03'),(17,201,'2006-02-15 05:05:03'),(17,236,'2006-02-15 05:05:03'),(17,280,'2006-02-15 05:05:03'),(17,310,'2006-02-15 05:05:03'),(17,313,'2006-02-15 05:05:03'),(17,378,'2006-02-15 05:05:03'),(17,457,'2006-02-15 05:05:03'),(17,469,'2006-02-15 05:05:03'),(17,478,'2006-02-15 05:05:03'),(17,500,'2006-02-15 05:05:03'),(17,515,'2006-02-15 05:05:03'),(17,521,'2006-02-15 05:05:03'),(17,573,'2006-02-15 05:05:03'),(17,603,'2006-02-15 05:05:03'),(17,606,'2006-02-15 05:05:03'),(17,734,'2006-02-15 05:05:03'),(17,770,'2006-02-15 05:05:03'),(17,794,'2006-02-15 05:05:03'),(17,800,'2006-02-15 05:05:03'),(17,853,'2006-02-15 05:05:03'),(17,873,'2006-02-15 05:05:03'),(17,874,'2006-02-15 05:05:03'),(17,880,'2006-02-15 05:05:03'),(17,948,'2006-02-15 05:05:03'),(17,957,'2006-02-15 05:05:03'),(17,959,'2006-02-15 05:05:03'),(18,44,'2006-02-15 05:05:03'),(18,84,'2006-02-15 05:05:03'),(18,144,'2006-02-15 05:05:03'),(18,172,'2006-02-15 05:05:03'),(18,268,'2006-02-15 05:05:03'),(18,279,'2006-02-15 05:05:03'),(18,280,'2006-02-15 05:05:03'),(18,321,'2006-02-15 05:05:03'),(18,386,'2006-02-15 05:05:03'),(18,460,'2006-02-15 05:05:03'),(18,462,'2006-02-15 05:05:03'),(18,484,'2006-02-15 05:05:03'),(18,536,'2006-02-15 05:05:03'),(18,561,'2006-02-15 05:05:03'),(18,612,'2006-02-15 05:05:03'),(18,717,'2006-02-15 05:05:03'),(18,808,'2006-02-15 05:05:03'),(18,842,'2006-02-15 05:05:03'),(18,863,'2006-02-15 05:05:03'),(18,883,'2006-02-15 05:05:03'),(18,917,'2006-02-15 05:05:03'),(18,944,'2006-02-15 05:05:03'),(19,2,'2006-02-15 05:05:03'),(19,3,'2006-02-15 05:05:03'),(19,144,'2006-02-15 05:05:03'),(19,152,'2006-02-15 05:05:03'),(19,182,'2006-02-15 05:05:03'),(19,208,'2006-02-15 05:05:03'),(19,212,'2006-02-15 05:05:03'),(19,217,'2006-02-15 05:05:03'),(19,266,'2006-02-15 05:05:03'),(19,404,'2006-02-15 05:05:03'),(19,428,'2006-02-15 05:05:03'),(19,473,'2006-02-15 05:05:03'),(19,490,'2006-02-15 05:05:03'),(19,510,'2006-02-15 05:05:03'),(19,513,'2006-02-15 05:05:03'),(19,644,'2006-02-15 05:05:03'),(19,670,'2006-02-15 05:05:03'),(19,673,'2006-02-15 05:05:03'),(19,711,'2006-02-15 05:05:03'),(19,750,'2006-02-15 05:05:03'),(19,752,'2006-02-15 05:05:03'),(19,756,'2006-02-15 05:05:03'),(19,771,'2006-02-15 05:05:03'),(19,785,'2006-02-15 05:05:03'),(19,877,'2006-02-15 05:05:03'),(20,1,'2006-02-15 05:05:03'),(20,54,'2006-02-15 05:05:03'),(20,63,'2006-02-15 05:05:03'),(20,140,'2006-02-15 05:05:03'),(20,146,'2006-02-15 05:05:03'),(20,165,'2006-02-15 05:05:03'),(20,231,'2006-02-15 05:05:03'),(20,243,'2006-02-15 05:05:03'),(20,269,'2006-02-15 05:05:03'),(20,274,'2006-02-15 05:05:03'),(20,348,'2006-02-15 05:05:03'),(20,366,'2006-02-15 05:05:03'),(20,445,'2006-02-15 05:05:03'),(20,478,'2006-02-15 05:05:03'),(20,492,'2006-02-15 05:05:03'),(20,499,'2006-02-15 05:05:03'),(20,527,'2006-02-15 05:05:03'),(20,531,'2006-02-15 05:05:03'),(20,538,'2006-02-15 05:05:03'),(20,589,'2006-02-15 05:05:03'),(20,643,'2006-02-15 05:05:03'),(20,652,'2006-02-15 05:05:03'),(20,663,'2006-02-15 05:05:03'),(20,714,'2006-02-15 05:05:03'),(20,717,'2006-02-15 05:05:03'),(20,757,'2006-02-15 05:05:03'),(20,784,'2006-02-15 05:05:03'),(20,863,'2006-02-15 05:05:03'),(20,962,'2006-02-15 05:05:03'),(20,977,'2006-02-15 05:05:03'),(21,6,'2006-02-15 05:05:03'),(21,87,'2006-02-15 05:05:03'),(21,88,'2006-02-15 05:05:03'),(21,142,'2006-02-15 05:05:03'),(21,159,'2006-02-15 05:05:03'),(21,179,'2006-02-15 05:05:03'),(21,253,'2006-02-15 05:05:03'),(21,281,'2006-02-15 05:05:03'),(21,321,'2006-02-15 05:05:03'),(21,398,'2006-02-15 05:05:03'),(21,426,'2006-02-15 05:05:03'),(21,429,'2006-02-15 05:05:03'),(21,497,'2006-02-15 05:05:03'),(21,507,'2006-02-15 05:05:03'),(21,530,'2006-02-15 05:05:03'),(21,680,'2006-02-15 05:05:03'),(21,686,'2006-02-15 05:05:03'),(21,700,'2006-02-15 05:05:03'),(21,702,'2006-02-15 05:05:03'),(21,733,'2006-02-15 05:05:03'),(21,734,'2006-02-15 05:05:03'),(21,798,'2006-02-15 05:05:03'),(21,804,'2006-02-15 05:05:03'),(21,887,'2006-02-15 05:05:03'),(21,893,'2006-02-15 05:05:03'),(21,920,'2006-02-15 05:05:03'),(21,983,'2006-02-15 05:05:03'),(22,9,'2006-02-15 05:05:03'),(22,23,'2006-02-15 05:05:03'),(22,56,'2006-02-15 05:05:03'),(22,89,'2006-02-15 05:05:03'),(22,111,'2006-02-15 05:05:03'),(22,146,'2006-02-15 05:05:03'),(22,291,'2006-02-15 05:05:03'),(22,294,'2006-02-15 05:05:03'),(22,349,'2006-02-15 05:05:03'),(22,369,'2006-02-15 05:05:03'),(22,418,'2006-02-15 05:05:03'),(22,430,'2006-02-15 05:05:03'),(22,483,'2006-02-15 05:05:03'),(22,491,'2006-02-15 05:05:03'),(22,495,'2006-02-15 05:05:03'),(22,536,'2006-02-15 05:05:03'),(22,600,'2006-02-15 05:05:03'),(22,634,'2006-02-15 05:05:03'),(22,648,'2006-02-15 05:05:03'),(22,688,'2006-02-15 05:05:03'),(22,731,'2006-02-15 05:05:03'),(22,742,'2006-02-15 05:05:03'),(22,775,'2006-02-15 05:05:03'),(22,802,'2006-02-15 05:05:03'),(22,912,'2006-02-15 05:05:03'),(22,964,'2006-02-15 05:05:03'),(23,6,'2006-02-15 05:05:03'),(23,42,'2006-02-15 05:05:03'),(23,78,'2006-02-15 05:05:03'),(23,105,'2006-02-15 05:05:03'),(23,116,'2006-02-15 05:05:03'),(23,117,'2006-02-15 05:05:03'),(23,125,'2006-02-15 05:05:03'),(23,212,'2006-02-15 05:05:03'),(23,226,'2006-02-15 05:05:03'),(23,235,'2006-02-15 05:05:03'),(23,254,'2006-02-15 05:05:03'),(23,367,'2006-02-15 05:05:03'),(23,370,'2006-02-15 05:05:03'),(23,414,'2006-02-15 05:05:03'),(23,419,'2006-02-15 05:05:03'),(23,435,'2006-02-15 05:05:03'),(23,449,'2006-02-15 05:05:03'),(23,491,'2006-02-15 05:05:03'),(23,536,'2006-02-15 05:05:03'),(23,549,'2006-02-15 05:05:03'),(23,636,'2006-02-15 05:05:03'),(23,649,'2006-02-15 05:05:03'),(23,673,'2006-02-15 05:05:03'),(23,691,'2006-02-15 05:05:03'),(23,766,'2006-02-15 05:05:03'),(23,782,'2006-02-15 05:05:03'),(23,804,'2006-02-15 05:05:03'),(23,820,'2006-02-15 05:05:03'),(23,826,'2006-02-15 05:05:03'),(23,833,'2006-02-15 05:05:03'),(23,842,'2006-02-15 05:05:03'),(23,853,'2006-02-15 05:05:03'),(23,855,'2006-02-15 05:05:03'),(23,856,'2006-02-15 05:05:03'),(23,935,'2006-02-15 05:05:03'),(23,981,'2006-02-15 05:05:03'),(23,997,'2006-02-15 05:05:03'),(24,3,'2006-02-15 05:05:03'),(24,83,'2006-02-15 05:05:03'),(24,112,'2006-02-15 05:05:03'),(24,126,'2006-02-15 05:05:03'),(24,148,'2006-02-15 05:05:03'),(24,164,'2006-02-15 05:05:03'),(24,178,'2006-02-15 05:05:03'),(24,194,'2006-02-15 05:05:03'),(24,199,'2006-02-15 05:05:03'),(24,242,'2006-02-15 05:05:03'),(24,256,'2006-02-15 05:05:03'),(24,277,'2006-02-15 05:05:03'),(24,335,'2006-02-15 05:05:03'),(24,405,'2006-02-15 05:05:03'),(24,463,'2006-02-15 05:05:03'),(24,515,'2006-02-15 05:05:03'),(24,585,'2006-02-15 05:05:03'),(24,603,'2006-02-15 05:05:03'),(24,653,'2006-02-15 05:05:03'),(24,704,'2006-02-15 05:05:03'),(24,781,'2006-02-15 05:05:03'),(24,829,'2006-02-15 05:05:03'),(24,832,'2006-02-15 05:05:03'),(24,969,'2006-02-15 05:05:03'),(25,21,'2006-02-15 05:05:03'),(25,86,'2006-02-15 05:05:03'),(25,153,'2006-02-15 05:05:03'),(25,179,'2006-02-15 05:05:03'),(25,204,'2006-02-15 05:05:03'),(25,213,'2006-02-15 05:05:03'),(25,226,'2006-02-15 05:05:03'),(25,245,'2006-02-15 05:05:03'),(25,311,'2006-02-15 05:05:03'),(25,404,'2006-02-15 05:05:03'),(25,411,'2006-02-15 05:05:03'),(25,420,'2006-02-15 05:05:03'),(25,538,'2006-02-15 05:05:03'),(25,564,'2006-02-15 05:05:03'),(25,583,'2006-02-15 05:05:03'),(25,606,'2006-02-15 05:05:03'),(25,688,'2006-02-15 05:05:03'),(25,697,'2006-02-15 05:05:03'),(25,755,'2006-02-15 05:05:03'),(25,871,'2006-02-15 05:05:03'),(25,914,'2006-02-15 05:05:03'),(26,9,'2006-02-15 05:05:03'),(26,21,'2006-02-15 05:05:03'),(26,34,'2006-02-15 05:05:03'),(26,90,'2006-02-15 05:05:03'),(26,93,'2006-02-15 05:05:03'),(26,103,'2006-02-15 05:05:03'),(26,147,'2006-02-15 05:05:03'),(26,186,'2006-02-15 05:05:03'),(26,201,'2006-02-15 05:05:03'),(26,225,'2006-02-15 05:05:03'),(26,241,'2006-02-15 05:05:03'),(26,327,'2006-02-15 05:05:03'),(26,329,'2006-02-15 05:05:03'),(26,340,'2006-02-15 05:05:03'),(26,345,'2006-02-15 05:05:03'),(26,390,'2006-02-15 05:05:03'),(26,392,'2006-02-15 05:05:03'),(26,529,'2006-02-15 05:05:03'),(26,544,'2006-02-15 05:05:03'),(26,564,'2006-02-15 05:05:03'),(26,635,'2006-02-15 05:05:03'),(26,644,'2006-02-15 05:05:03'),(26,682,'2006-02-15 05:05:03'),(26,688,'2006-02-15 05:05:03'),(26,715,'2006-02-15 05:05:03'),(26,732,'2006-02-15 05:05:03'),(26,758,'2006-02-15 05:05:03'),(26,764,'2006-02-15 05:05:03'),(26,795,'2006-02-15 05:05:03'),(26,821,'2006-02-15 05:05:03'),(26,885,'2006-02-15 05:05:03'),(26,904,'2006-02-15 05:05:03'),(26,906,'2006-02-15 05:05:03'),(27,19,'2006-02-15 05:05:03'),(27,34,'2006-02-15 05:05:03'),(27,85,'2006-02-15 05:05:03'),(27,150,'2006-02-15 05:05:03'),(27,172,'2006-02-15 05:05:03'),(27,273,'2006-02-15 05:05:03'),(27,334,'2006-02-15 05:05:03'),(27,347,'2006-02-15 05:05:03'),(27,359,'2006-02-15 05:05:03'),(27,398,'2006-02-15 05:05:03'),(27,415,'2006-02-15 05:05:03'),(27,462,'2006-02-15 05:05:03'),(27,477,'2006-02-15 05:05:03'),(27,500,'2006-02-15 05:05:03'),(27,503,'2006-02-15 05:05:03'),(27,540,'2006-02-15 05:05:03'),(27,586,'2006-02-15 05:05:03'),(27,593,'2006-02-15 05:05:03'),(27,637,'2006-02-15 05:05:03'),(27,679,'2006-02-15 05:05:03'),(27,682,'2006-02-15 05:05:03'),(27,695,'2006-02-15 05:05:03'),(27,771,'2006-02-15 05:05:03'),(27,805,'2006-02-15 05:05:03'),(27,830,'2006-02-15 05:05:03'),(27,854,'2006-02-15 05:05:03'),(27,873,'2006-02-15 05:05:03'),(27,880,'2006-02-15 05:05:03'),(27,889,'2006-02-15 05:05:03'),(27,904,'2006-02-15 05:05:03'),(27,967,'2006-02-15 05:05:03'),(27,986,'2006-02-15 05:05:03'),(27,996,'2006-02-15 05:05:03'),(28,14,'2006-02-15 05:05:03'),(28,43,'2006-02-15 05:05:03'),(28,58,'2006-02-15 05:05:03'),(28,74,'2006-02-15 05:05:03'),(28,96,'2006-02-15 05:05:03'),(28,107,'2006-02-15 05:05:03'),(28,259,'2006-02-15 05:05:03'),(28,263,'2006-02-15 05:05:03'),(28,287,'2006-02-15 05:05:03'),(28,358,'2006-02-15 05:05:03'),(28,502,'2006-02-15 05:05:03'),(28,508,'2006-02-15 05:05:03'),(28,532,'2006-02-15 05:05:03'),(28,551,'2006-02-15 05:05:03'),(28,574,'2006-02-15 05:05:03'),(28,597,'2006-02-15 05:05:03'),(28,619,'2006-02-15 05:05:03'),(28,625,'2006-02-15 05:05:03'),(28,652,'2006-02-15 05:05:03'),(28,679,'2006-02-15 05:05:03'),(28,743,'2006-02-15 05:05:03'),(28,790,'2006-02-15 05:05:03'),(28,793,'2006-02-15 05:05:03'),(28,816,'2006-02-15 05:05:03'),(28,827,'2006-02-15 05:05:03'),(28,835,'2006-02-15 05:05:03'),(28,879,'2006-02-15 05:05:03'),(28,908,'2006-02-15 05:05:03'),(28,953,'2006-02-15 05:05:03'),(28,973,'2006-02-15 05:05:03'),(28,994,'2006-02-15 05:05:03'),(29,10,'2006-02-15 05:05:03'),(29,79,'2006-02-15 05:05:03'),(29,105,'2006-02-15 05:05:03'),(29,110,'2006-02-15 05:05:03'),(29,131,'2006-02-15 05:05:03'),(29,133,'2006-02-15 05:05:03'),(29,172,'2006-02-15 05:05:03'),(29,226,'2006-02-15 05:05:03'),(29,273,'2006-02-15 05:05:03'),(29,282,'2006-02-15 05:05:03'),(29,296,'2006-02-15 05:05:03'),(29,311,'2006-02-15 05:05:03'),(29,335,'2006-02-15 05:05:03'),(29,342,'2006-02-15 05:05:03'),(29,436,'2006-02-15 05:05:03'),(29,444,'2006-02-15 05:05:03'),(29,449,'2006-02-15 05:05:03'),(29,462,'2006-02-15 05:05:03'),(29,482,'2006-02-15 05:05:03'),(29,488,'2006-02-15 05:05:03'),(29,519,'2006-02-15 05:05:03'),(29,547,'2006-02-15 05:05:03'),(29,590,'2006-02-15 05:05:03'),(29,646,'2006-02-15 05:05:03'),(29,723,'2006-02-15 05:05:03'),(29,812,'2006-02-15 05:05:03'),(29,862,'2006-02-15 05:05:03'),(29,928,'2006-02-15 05:05:03'),(29,944,'2006-02-15 05:05:03'),(30,1,'2006-02-15 05:05:03'),(30,53,'2006-02-15 05:05:03'),(30,64,'2006-02-15 05:05:03'),(30,69,'2006-02-15 05:05:03'),(30,77,'2006-02-15 05:05:03'),(30,87,'2006-02-15 05:05:03'),(30,260,'2006-02-15 05:05:03'),(30,262,'2006-02-15 05:05:03'),(30,286,'2006-02-15 05:05:03'),(30,292,'2006-02-15 05:05:03'),(30,301,'2006-02-15 05:05:03'),(30,318,'2006-02-15 05:05:03'),(30,321,'2006-02-15 05:05:03'),(30,357,'2006-02-15 05:05:03'),(30,565,'2006-02-15 05:05:03'),(30,732,'2006-02-15 05:05:03'),(30,797,'2006-02-15 05:05:03'),(30,838,'2006-02-15 05:05:03'),(30,945,'2006-02-15 05:05:03'),(31,88,'2006-02-15 05:05:03'),(31,146,'2006-02-15 05:05:03'),(31,163,'2006-02-15 05:05:03'),(31,164,'2006-02-15 05:05:03'),(31,188,'2006-02-15 05:05:03'),(31,299,'2006-02-15 05:05:03'),(31,308,'2006-02-15 05:05:03'),(31,368,'2006-02-15 05:05:03'),(31,380,'2006-02-15 05:05:03'),(31,431,'2006-02-15 05:05:03'),(31,585,'2006-02-15 05:05:03'),(31,637,'2006-02-15 05:05:03'),(31,700,'2006-02-15 05:05:03'),(31,739,'2006-02-15 05:05:03'),(31,793,'2006-02-15 05:05:03'),(31,802,'2006-02-15 05:05:03'),(31,880,'2006-02-15 05:05:03'),(31,978,'2006-02-15 05:05:03'),(32,65,'2006-02-15 05:05:03'),(32,84,'2006-02-15 05:05:03'),(32,103,'2006-02-15 05:05:03'),(32,112,'2006-02-15 05:05:03'),(32,136,'2006-02-15 05:05:03'),(32,197,'2006-02-15 05:05:03'),(32,199,'2006-02-15 05:05:03'),(32,219,'2006-02-15 05:05:03'),(32,309,'2006-02-15 05:05:03'),(32,312,'2006-02-15 05:05:03'),(32,401,'2006-02-15 05:05:03'),(32,427,'2006-02-15 05:05:03'),(32,431,'2006-02-15 05:05:03'),(32,523,'2006-02-15 05:05:03'),(32,567,'2006-02-15 05:05:03'),(32,585,'2006-02-15 05:05:03'),(32,606,'2006-02-15 05:05:03'),(32,651,'2006-02-15 05:05:03'),(32,667,'2006-02-15 05:05:03'),(32,669,'2006-02-15 05:05:03'),(32,815,'2006-02-15 05:05:03'),(32,928,'2006-02-15 05:05:03'),(32,980,'2006-02-15 05:05:03'),(33,56,'2006-02-15 05:05:03'),(33,112,'2006-02-15 05:05:03'),(33,135,'2006-02-15 05:05:03'),(33,154,'2006-02-15 05:05:03'),(33,214,'2006-02-15 05:05:03'),(33,252,'2006-02-15 05:05:03'),(33,305,'2006-02-15 05:05:03'),(33,306,'2006-02-15 05:05:03'),(33,473,'2006-02-15 05:05:03'),(33,489,'2006-02-15 05:05:03'),(33,574,'2006-02-15 05:05:03'),(33,618,'2006-02-15 05:05:03'),(33,667,'2006-02-15 05:05:03'),(33,694,'2006-02-15 05:05:03'),(33,712,'2006-02-15 05:05:03'),(33,735,'2006-02-15 05:05:03'),(33,737,'2006-02-15 05:05:03'),(33,754,'2006-02-15 05:05:03'),(33,775,'2006-02-15 05:05:03'),(33,878,'2006-02-15 05:05:03'),(33,881,'2006-02-15 05:05:03'),(33,965,'2006-02-15 05:05:03'),(33,972,'2006-02-15 05:05:03'),(33,993,'2006-02-15 05:05:03'),(34,43,'2006-02-15 05:05:03'),(34,90,'2006-02-15 05:05:03'),(34,119,'2006-02-15 05:05:03'),(34,125,'2006-02-15 05:05:03'),(34,172,'2006-02-15 05:05:03'),(34,182,'2006-02-15 05:05:03'),(34,244,'2006-02-15 05:05:03'),(34,336,'2006-02-15 05:05:03'),(34,389,'2006-02-15 05:05:03'),(34,393,'2006-02-15 05:05:03'),(34,438,'2006-02-15 05:05:03'),(34,493,'2006-02-15 05:05:03'),(34,502,'2006-02-15 05:05:03'),(34,525,'2006-02-15 05:05:03'),(34,668,'2006-02-15 05:05:03'),(34,720,'2006-02-15 05:05:03'),(34,779,'2006-02-15 05:05:03'),(34,788,'2006-02-15 05:05:03'),(34,794,'2006-02-15 05:05:03'),(34,836,'2006-02-15 05:05:03'),(34,846,'2006-02-15 05:05:03'),(34,853,'2006-02-15 05:05:03'),(34,929,'2006-02-15 05:05:03'),(34,950,'2006-02-15 05:05:03'),(34,971,'2006-02-15 05:05:03'),(35,10,'2006-02-15 05:05:03'),(35,35,'2006-02-15 05:05:03'),(35,52,'2006-02-15 05:05:03'),(35,201,'2006-02-15 05:05:03'),(35,256,'2006-02-15 05:05:03'),(35,389,'2006-02-15 05:05:03'),(35,589,'2006-02-15 05:05:03'),(35,612,'2006-02-15 05:05:03'),(35,615,'2006-02-15 05:05:03'),(35,707,'2006-02-15 05:05:03'),(35,732,'2006-02-15 05:05:03'),(35,738,'2006-02-15 05:05:03'),(35,748,'2006-02-15 05:05:03'),(35,817,'2006-02-15 05:05:03'),(35,914,'2006-02-15 05:05:03'),(36,15,'2006-02-15 05:05:03'),(36,81,'2006-02-15 05:05:03'),(36,171,'2006-02-15 05:05:03'),(36,231,'2006-02-15 05:05:03'),(36,245,'2006-02-15 05:05:03'),(36,283,'2006-02-15 05:05:03'),(36,380,'2006-02-15 05:05:03'),(36,381,'2006-02-15 05:05:03'),(36,387,'2006-02-15 05:05:03'),(36,390,'2006-02-15 05:05:03'),(36,410,'2006-02-15 05:05:03'),(36,426,'2006-02-15 05:05:03'),(36,427,'2006-02-15 05:05:03'),(36,453,'2006-02-15 05:05:03'),(36,466,'2006-02-15 05:05:03'),(36,484,'2006-02-15 05:05:03'),(36,493,'2006-02-15 05:05:03'),(36,499,'2006-02-15 05:05:03'),(36,569,'2006-02-15 05:05:03'),(36,590,'2006-02-15 05:05:03'),(36,600,'2006-02-15 05:05:03'),(36,714,'2006-02-15 05:05:03'),(36,715,'2006-02-15 05:05:03'),(36,716,'2006-02-15 05:05:03'),(36,731,'2006-02-15 05:05:03'),(36,875,'2006-02-15 05:05:03'),(36,915,'2006-02-15 05:05:03'),(36,931,'2006-02-15 05:05:03'),(36,956,'2006-02-15 05:05:03'),(37,10,'2006-02-15 05:05:03'),(37,12,'2006-02-15 05:05:03'),(37,19,'2006-02-15 05:05:03'),(37,118,'2006-02-15 05:05:03'),(37,119,'2006-02-15 05:05:03'),(37,122,'2006-02-15 05:05:03'),(37,146,'2006-02-15 05:05:03'),(37,204,'2006-02-15 05:05:03'),(37,253,'2006-02-15 05:05:03'),(37,260,'2006-02-15 05:05:03'),(37,277,'2006-02-15 05:05:03'),(37,317,'2006-02-15 05:05:03'),(37,467,'2006-02-15 05:05:03'),(37,477,'2006-02-15 05:05:03'),(37,485,'2006-02-15 05:05:03'),(37,508,'2006-02-15 05:05:03'),(37,529,'2006-02-15 05:05:03'),(37,553,'2006-02-15 05:05:03'),(37,555,'2006-02-15 05:05:03'),(37,572,'2006-02-15 05:05:03'),(37,588,'2006-02-15 05:05:03'),(37,662,'2006-02-15 05:05:03'),(37,663,'2006-02-15 05:05:03'),(37,694,'2006-02-15 05:05:03'),(37,697,'2006-02-15 05:05:03'),(37,785,'2006-02-15 05:05:03'),(37,839,'2006-02-15 05:05:03'),(37,840,'2006-02-15 05:05:03'),(37,853,'2006-02-15 05:05:03'),(37,900,'2006-02-15 05:05:03'),(37,925,'2006-02-15 05:05:03'),(37,963,'2006-02-15 05:05:03'),(37,966,'2006-02-15 05:05:03'),(37,989,'2006-02-15 05:05:03'),(37,997,'2006-02-15 05:05:03'),(38,24,'2006-02-15 05:05:03'),(38,111,'2006-02-15 05:05:03'),(38,160,'2006-02-15 05:05:03'),(38,176,'2006-02-15 05:05:03'),(38,223,'2006-02-15 05:05:03'),(38,241,'2006-02-15 05:05:03'),(38,274,'2006-02-15 05:05:03'),(38,335,'2006-02-15 05:05:03'),(38,338,'2006-02-15 05:05:03'),(38,353,'2006-02-15 05:05:03'),(38,448,'2006-02-15 05:05:03'),(38,450,'2006-02-15 05:05:03'),(38,458,'2006-02-15 05:05:03'),(38,501,'2006-02-15 05:05:03'),(38,516,'2006-02-15 05:05:03'),(38,547,'2006-02-15 05:05:03'),(38,583,'2006-02-15 05:05:03'),(38,618,'2006-02-15 05:05:03'),(38,619,'2006-02-15 05:05:03'),(38,705,'2006-02-15 05:05:03'),(38,793,'2006-02-15 05:05:03'),(38,827,'2006-02-15 05:05:03'),(38,839,'2006-02-15 05:05:03'),(38,853,'2006-02-15 05:05:03'),(38,876,'2006-02-15 05:05:03'),(39,71,'2006-02-15 05:05:03'),(39,73,'2006-02-15 05:05:03'),(39,168,'2006-02-15 05:05:03'),(39,203,'2006-02-15 05:05:03'),(39,222,'2006-02-15 05:05:03'),(39,290,'2006-02-15 05:05:03'),(39,293,'2006-02-15 05:05:03'),(39,320,'2006-02-15 05:05:03'),(39,415,'2006-02-15 05:05:03'),(39,425,'2006-02-15 05:05:03'),(39,431,'2006-02-15 05:05:03'),(39,456,'2006-02-15 05:05:03'),(39,476,'2006-02-15 05:05:03'),(39,559,'2006-02-15 05:05:03'),(39,587,'2006-02-15 05:05:03'),(39,598,'2006-02-15 05:05:03'),(39,606,'2006-02-15 05:05:03'),(39,648,'2006-02-15 05:05:03'),(39,683,'2006-02-15 05:05:03'),(39,689,'2006-02-15 05:05:03'),(39,696,'2006-02-15 05:05:03'),(39,700,'2006-02-15 05:05:03'),(39,703,'2006-02-15 05:05:03'),(39,736,'2006-02-15 05:05:03'),(39,772,'2006-02-15 05:05:03'),(39,815,'2006-02-15 05:05:03'),(39,831,'2006-02-15 05:05:03'),(39,920,'2006-02-15 05:05:03'),(40,1,'2006-02-15 05:05:03'),(40,11,'2006-02-15 05:05:03'),(40,34,'2006-02-15 05:05:03'),(40,107,'2006-02-15 05:05:03'),(40,128,'2006-02-15 05:05:03'),(40,163,'2006-02-15 05:05:03'),(40,177,'2006-02-15 05:05:03'),(40,223,'2006-02-15 05:05:03'),(40,233,'2006-02-15 05:05:03'),(40,326,'2006-02-15 05:05:03'),(40,374,'2006-02-15 05:05:03'),(40,394,'2006-02-15 05:05:03'),(40,396,'2006-02-15 05:05:03'),(40,463,'2006-02-15 05:05:03'),(40,466,'2006-02-15 05:05:03'),(40,494,'2006-02-15 05:05:03'),(40,521,'2006-02-15 05:05:03'),(40,723,'2006-02-15 05:05:03'),(40,737,'2006-02-15 05:05:03'),(40,744,'2006-02-15 05:05:03'),(40,747,'2006-02-15 05:05:03'),(40,754,'2006-02-15 05:05:03'),(40,799,'2006-02-15 05:05:03'),(40,835,'2006-02-15 05:05:03'),(40,868,'2006-02-15 05:05:03'),(40,869,'2006-02-15 05:05:03'),(40,887,'2006-02-15 05:05:03'),(40,933,'2006-02-15 05:05:03'),(40,938,'2006-02-15 05:05:03'),(41,4,'2006-02-15 05:05:03'),(41,60,'2006-02-15 05:05:03'),(41,69,'2006-02-15 05:05:03'),(41,86,'2006-02-15 05:05:03'),(41,100,'2006-02-15 05:05:03'),(41,150,'2006-02-15 05:05:03'),(41,159,'2006-02-15 05:05:03'),(41,194,'2006-02-15 05:05:03'),(41,203,'2006-02-15 05:05:03'),(41,212,'2006-02-15 05:05:03'),(41,230,'2006-02-15 05:05:03'),(41,249,'2006-02-15 05:05:03'),(41,252,'2006-02-15 05:05:03'),(41,305,'2006-02-15 05:05:03'),(41,336,'2006-02-15 05:05:03'),(41,383,'2006-02-15 05:05:03'),(41,544,'2006-02-15 05:05:03'),(41,596,'2006-02-15 05:05:03'),(41,657,'2006-02-15 05:05:03'),(41,674,'2006-02-15 05:05:03'),(41,678,'2006-02-15 05:05:03'),(41,721,'2006-02-15 05:05:03'),(41,724,'2006-02-15 05:05:03'),(41,779,'2006-02-15 05:05:03'),(41,784,'2006-02-15 05:05:03'),(41,799,'2006-02-15 05:05:03'),(41,894,'2006-02-15 05:05:03'),(41,912,'2006-02-15 05:05:03'),(41,942,'2006-02-15 05:05:03'),(42,24,'2006-02-15 05:05:03'),(42,139,'2006-02-15 05:05:03'),(42,309,'2006-02-15 05:05:03'),(42,320,'2006-02-15 05:05:03'),(42,333,'2006-02-15 05:05:03'),(42,500,'2006-02-15 05:05:03'),(42,502,'2006-02-15 05:05:03'),(42,505,'2006-02-15 05:05:03'),(42,527,'2006-02-15 05:05:03'),(42,535,'2006-02-15 05:05:03'),(42,546,'2006-02-15 05:05:03'),(42,568,'2006-02-15 05:05:03'),(42,648,'2006-02-15 05:05:03'),(42,665,'2006-02-15 05:05:03'),(42,673,'2006-02-15 05:05:03'),(42,687,'2006-02-15 05:05:03'),(42,713,'2006-02-15 05:05:03'),(42,738,'2006-02-15 05:05:03'),(42,798,'2006-02-15 05:05:03'),(42,861,'2006-02-15 05:05:03'),(42,865,'2006-02-15 05:05:03'),(42,867,'2006-02-15 05:05:03'),(42,876,'2006-02-15 05:05:03'),(42,890,'2006-02-15 05:05:03'),(42,907,'2006-02-15 05:05:03'),(42,922,'2006-02-15 05:05:03'),(42,932,'2006-02-15 05:05:03'),(43,19,'2006-02-15 05:05:03'),(43,42,'2006-02-15 05:05:03'),(43,56,'2006-02-15 05:05:03'),(43,89,'2006-02-15 05:05:03'),(43,105,'2006-02-15 05:05:03'),(43,147,'2006-02-15 05:05:03'),(43,161,'2006-02-15 05:05:03'),(43,180,'2006-02-15 05:05:03'),(43,239,'2006-02-15 05:05:03'),(43,276,'2006-02-15 05:05:03'),(43,330,'2006-02-15 05:05:03'),(43,344,'2006-02-15 05:05:03'),(43,359,'2006-02-15 05:05:03'),(43,377,'2006-02-15 05:05:03'),(43,410,'2006-02-15 05:05:03'),(43,462,'2006-02-15 05:05:03'),(43,533,'2006-02-15 05:05:03'),(43,598,'2006-02-15 05:05:03'),(43,605,'2006-02-15 05:05:03'),(43,608,'2006-02-15 05:05:03'),(43,621,'2006-02-15 05:05:03'),(43,753,'2006-02-15 05:05:03'),(43,827,'2006-02-15 05:05:03'),(43,833,'2006-02-15 05:05:03'),(43,917,'2006-02-15 05:05:03'),(43,958,'2006-02-15 05:05:03'),(44,58,'2006-02-15 05:05:03'),(44,84,'2006-02-15 05:05:03'),(44,88,'2006-02-15 05:05:03'),(44,94,'2006-02-15 05:05:03'),(44,109,'2006-02-15 05:05:03'),(44,176,'2006-02-15 05:05:03'),(44,242,'2006-02-15 05:05:03'),(44,273,'2006-02-15 05:05:03'),(44,322,'2006-02-15 05:05:03'),(44,420,'2006-02-15 05:05:03'),(44,434,'2006-02-15 05:05:03'),(44,490,'2006-02-15 05:05:03'),(44,591,'2006-02-15 05:05:03'),(44,598,'2006-02-15 05:05:03'),(44,604,'2006-02-15 05:05:03'),(44,699,'2006-02-15 05:05:03'),(44,751,'2006-02-15 05:05:03'),(44,784,'2006-02-15 05:05:03'),(44,825,'2006-02-15 05:05:03'),(44,854,'2006-02-15 05:05:03'),(44,875,'2006-02-15 05:05:03'),(44,878,'2006-02-15 05:05:03'),(44,883,'2006-02-15 05:05:03'),(44,896,'2006-02-15 05:05:03'),(44,902,'2006-02-15 05:05:03'),(44,937,'2006-02-15 05:05:03'),(44,944,'2006-02-15 05:05:03'),(44,952,'2006-02-15 05:05:03'),(44,982,'2006-02-15 05:05:03'),(44,998,'2006-02-15 05:05:03'),(45,18,'2006-02-15 05:05:03'),(45,65,'2006-02-15 05:05:03'),(45,66,'2006-02-15 05:05:03'),(45,115,'2006-02-15 05:05:03'),(45,117,'2006-02-15 05:05:03'),(45,164,'2006-02-15 05:05:03'),(45,187,'2006-02-15 05:05:03'),(45,198,'2006-02-15 05:05:03'),(45,219,'2006-02-15 05:05:03'),(45,330,'2006-02-15 05:05:03'),(45,407,'2006-02-15 05:05:03'),(45,416,'2006-02-15 05:05:03'),(45,463,'2006-02-15 05:05:03'),(45,467,'2006-02-15 05:05:03'),(45,484,'2006-02-15 05:05:03'),(45,502,'2006-02-15 05:05:03'),(45,503,'2006-02-15 05:05:03'),(45,508,'2006-02-15 05:05:03'),(45,537,'2006-02-15 05:05:03'),(45,680,'2006-02-15 05:05:03'),(45,714,'2006-02-15 05:05:03'),(45,767,'2006-02-15 05:05:03'),(45,778,'2006-02-15 05:05:03'),(45,797,'2006-02-15 05:05:03'),(45,810,'2006-02-15 05:05:03'),(45,895,'2006-02-15 05:05:03'),(45,900,'2006-02-15 05:05:03'),(45,901,'2006-02-15 05:05:03'),(45,920,'2006-02-15 05:05:03'),(45,925,'2006-02-15 05:05:03'),(45,975,'2006-02-15 05:05:03'),(45,978,'2006-02-15 05:05:03'),(46,38,'2006-02-15 05:05:03'),(46,51,'2006-02-15 05:05:03'),(46,174,'2006-02-15 05:05:03'),(46,254,'2006-02-15 05:05:03'),(46,296,'2006-02-15 05:05:03'),(46,319,'2006-02-15 05:05:03'),(46,407,'2006-02-15 05:05:03'),(46,448,'2006-02-15 05:05:03'),(46,456,'2006-02-15 05:05:03'),(46,463,'2006-02-15 05:05:03'),(46,478,'2006-02-15 05:05:03'),(46,538,'2006-02-15 05:05:03'),(46,540,'2006-02-15 05:05:03'),(46,567,'2006-02-15 05:05:03'),(46,731,'2006-02-15 05:05:03'),(46,766,'2006-02-15 05:05:03'),(46,768,'2006-02-15 05:05:03'),(46,820,'2006-02-15 05:05:03'),(46,829,'2006-02-15 05:05:03'),(46,830,'2006-02-15 05:05:03'),(46,836,'2006-02-15 05:05:03'),(46,889,'2006-02-15 05:05:03'),(46,980,'2006-02-15 05:05:03'),(46,991,'2006-02-15 05:05:03'),(47,25,'2006-02-15 05:05:03'),(47,36,'2006-02-15 05:05:03'),(47,53,'2006-02-15 05:05:03'),(47,67,'2006-02-15 05:05:03'),(47,172,'2006-02-15 05:05:03'),(47,233,'2006-02-15 05:05:03'),(47,273,'2006-02-15 05:05:03'),(47,351,'2006-02-15 05:05:03'),(47,385,'2006-02-15 05:05:03'),(47,484,'2006-02-15 05:05:03'),(47,508,'2006-02-15 05:05:03'),(47,576,'2006-02-15 05:05:03'),(47,670,'2006-02-15 05:05:03'),(47,734,'2006-02-15 05:05:03'),(47,737,'2006-02-15 05:05:03'),(47,770,'2006-02-15 05:05:03'),(47,777,'2006-02-15 05:05:03'),(47,787,'2006-02-15 05:05:03'),(47,790,'2006-02-15 05:05:03'),(47,913,'2006-02-15 05:05:03'),(47,923,'2006-02-15 05:05:03'),(47,924,'2006-02-15 05:05:03'),(47,944,'2006-02-15 05:05:03'),(47,973,'2006-02-15 05:05:03'),(48,99,'2006-02-15 05:05:03'),(48,101,'2006-02-15 05:05:03'),(48,134,'2006-02-15 05:05:03'),(48,150,'2006-02-15 05:05:03'),(48,164,'2006-02-15 05:05:03'),(48,211,'2006-02-15 05:05:03'),(48,245,'2006-02-15 05:05:03'),(48,267,'2006-02-15 05:05:03'),(48,287,'2006-02-15 05:05:03'),(48,295,'2006-02-15 05:05:03'),(48,312,'2006-02-15 05:05:03'),(48,315,'2006-02-15 05:05:03'),(48,345,'2006-02-15 05:05:03'),(48,349,'2006-02-15 05:05:03'),(48,428,'2006-02-15 05:05:03'),(48,506,'2006-02-15 05:05:03'),(48,545,'2006-02-15 05:05:03'),(48,559,'2006-02-15 05:05:03'),(48,570,'2006-02-15 05:05:03'),(48,599,'2006-02-15 05:05:03'),(48,645,'2006-02-15 05:05:03'),(48,705,'2006-02-15 05:05:03'),(48,757,'2006-02-15 05:05:03'),(48,792,'2006-02-15 05:05:03'),(48,922,'2006-02-15 05:05:03'),(48,926,'2006-02-15 05:05:03'),(49,31,'2006-02-15 05:05:03'),(49,151,'2006-02-15 05:05:03'),(49,195,'2006-02-15 05:05:03'),(49,207,'2006-02-15 05:05:03'),(49,250,'2006-02-15 05:05:03'),(49,282,'2006-02-15 05:05:03'),(49,348,'2006-02-15 05:05:03'),(49,391,'2006-02-15 05:05:03'),(49,400,'2006-02-15 05:05:03'),(49,407,'2006-02-15 05:05:03'),(49,423,'2006-02-15 05:05:03'),(49,433,'2006-02-15 05:05:03'),(49,469,'2006-02-15 05:05:03'),(49,506,'2006-02-15 05:05:03'),(49,542,'2006-02-15 05:05:03'),(49,558,'2006-02-15 05:05:03'),(49,579,'2006-02-15 05:05:03'),(49,595,'2006-02-15 05:05:03'),(49,662,'2006-02-15 05:05:03'),(49,709,'2006-02-15 05:05:03'),(49,716,'2006-02-15 05:05:03'),(49,725,'2006-02-15 05:05:03'),(49,729,'2006-02-15 05:05:03'),(49,811,'2006-02-15 05:05:03'),(49,927,'2006-02-15 05:05:03'),(49,977,'2006-02-15 05:05:03'),(49,980,'2006-02-15 05:05:03'),(50,111,'2006-02-15 05:05:03'),(50,178,'2006-02-15 05:05:03'),(50,243,'2006-02-15 05:05:03'),(50,248,'2006-02-15 05:05:03'),(50,274,'2006-02-15 05:05:03'),(50,288,'2006-02-15 05:05:03'),(50,303,'2006-02-15 05:05:03'),(50,306,'2006-02-15 05:05:03'),(50,327,'2006-02-15 05:05:03'),(50,372,'2006-02-15 05:05:03'),(50,401,'2006-02-15 05:05:03'),(50,417,'2006-02-15 05:05:03'),(50,420,'2006-02-15 05:05:03'),(50,437,'2006-02-15 05:05:03'),(50,476,'2006-02-15 05:05:03'),(50,504,'2006-02-15 05:05:03'),(50,520,'2006-02-15 05:05:03'),(50,552,'2006-02-15 05:05:03'),(50,591,'2006-02-15 05:05:03'),(50,621,'2006-02-15 05:05:03'),(50,632,'2006-02-15 05:05:03'),(50,645,'2006-02-15 05:05:03'),(50,672,'2006-02-15 05:05:03'),(50,717,'2006-02-15 05:05:03'),(50,732,'2006-02-15 05:05:03'),(50,795,'2006-02-15 05:05:03'),(50,829,'2006-02-15 05:05:03'),(50,840,'2006-02-15 05:05:03'),(50,897,'2006-02-15 05:05:03'),(50,918,'2006-02-15 05:05:03'),(50,924,'2006-02-15 05:05:03'),(50,957,'2006-02-15 05:05:03'),(51,5,'2006-02-15 05:05:03'),(51,63,'2006-02-15 05:05:03'),(51,103,'2006-02-15 05:05:03'),(51,112,'2006-02-15 05:05:03'),(51,121,'2006-02-15 05:05:03'),(51,153,'2006-02-15 05:05:03'),(51,395,'2006-02-15 05:05:03'),(51,408,'2006-02-15 05:05:03'),(51,420,'2006-02-15 05:05:03'),(51,461,'2006-02-15 05:05:03'),(51,490,'2006-02-15 05:05:03'),(51,525,'2006-02-15 05:05:03'),(51,627,'2006-02-15 05:05:03'),(51,678,'2006-02-15 05:05:03'),(51,733,'2006-02-15 05:05:03'),(51,734,'2006-02-15 05:05:03'),(51,737,'2006-02-15 05:05:03'),(51,750,'2006-02-15 05:05:03'),(51,847,'2006-02-15 05:05:03'),(51,891,'2006-02-15 05:05:03'),(51,895,'2006-02-15 05:05:03'),(51,940,'2006-02-15 05:05:03'),(51,974,'2006-02-15 05:05:03'),(51,990,'2006-02-15 05:05:03'),(51,993,'2006-02-15 05:05:03'),(52,20,'2006-02-15 05:05:03'),(52,92,'2006-02-15 05:05:03'),(52,96,'2006-02-15 05:05:03'),(52,108,'2006-02-15 05:05:03'),(52,203,'2006-02-15 05:05:03'),(52,249,'2006-02-15 05:05:03'),(52,341,'2006-02-15 05:05:03'),(52,376,'2006-02-15 05:05:03'),(52,388,'2006-02-15 05:05:03'),(52,407,'2006-02-15 05:05:03'),(52,424,'2006-02-15 05:05:03'),(52,474,'2006-02-15 05:05:03'),(52,515,'2006-02-15 05:05:03'),(52,517,'2006-02-15 05:05:03'),(52,584,'2006-02-15 05:05:03'),(52,596,'2006-02-15 05:05:03'),(52,664,'2006-02-15 05:05:03'),(52,675,'2006-02-15 05:05:03'),(52,689,'2006-02-15 05:05:03'),(52,714,'2006-02-15 05:05:03'),(52,812,'2006-02-15 05:05:03'),(52,878,'2006-02-15 05:05:03'),(52,879,'2006-02-15 05:05:03'),(52,915,'2006-02-15 05:05:03'),(52,951,'2006-02-15 05:05:03'),(52,999,'2006-02-15 05:05:03'),(53,1,'2006-02-15 05:05:03'),(53,9,'2006-02-15 05:05:03'),(53,51,'2006-02-15 05:05:03'),(53,58,'2006-02-15 05:05:03'),(53,109,'2006-02-15 05:05:03'),(53,122,'2006-02-15 05:05:03'),(53,126,'2006-02-15 05:05:03'),(53,181,'2006-02-15 05:05:03'),(53,256,'2006-02-15 05:05:03'),(53,268,'2006-02-15 05:05:03'),(53,285,'2006-02-15 05:05:03'),(53,307,'2006-02-15 05:05:03'),(53,358,'2006-02-15 05:05:03'),(53,386,'2006-02-15 05:05:03'),(53,447,'2006-02-15 05:05:03'),(53,465,'2006-02-15 05:05:03'),(53,490,'2006-02-15 05:05:03'),(53,492,'2006-02-15 05:05:03'),(53,508,'2006-02-15 05:05:03'),(53,518,'2006-02-15 05:05:03'),(53,573,'2006-02-15 05:05:03'),(53,576,'2006-02-15 05:05:03'),(53,577,'2006-02-15 05:05:03'),(53,697,'2006-02-15 05:05:03'),(53,725,'2006-02-15 05:05:03'),(53,727,'2006-02-15 05:05:03'),(53,937,'2006-02-15 05:05:03'),(53,947,'2006-02-15 05:05:03'),(53,961,'2006-02-15 05:05:03'),(53,980,'2006-02-15 05:05:03'),(54,84,'2006-02-15 05:05:03'),(54,129,'2006-02-15 05:05:03'),(54,150,'2006-02-15 05:05:03'),(54,184,'2006-02-15 05:05:03'),(54,285,'2006-02-15 05:05:03'),(54,292,'2006-02-15 05:05:03'),(54,301,'2006-02-15 05:05:03'),(54,348,'2006-02-15 05:05:03'),(54,489,'2006-02-15 05:05:03'),(54,510,'2006-02-15 05:05:03'),(54,524,'2006-02-15 05:05:03'),(54,546,'2006-02-15 05:05:03'),(54,600,'2006-02-15 05:05:03'),(54,636,'2006-02-15 05:05:03'),(54,649,'2006-02-15 05:05:03'),(54,658,'2006-02-15 05:05:03'),(54,754,'2006-02-15 05:05:03'),(54,764,'2006-02-15 05:05:03'),(54,842,'2006-02-15 05:05:03'),(54,858,'2006-02-15 05:05:03'),(54,861,'2006-02-15 05:05:03'),(54,913,'2006-02-15 05:05:03'),(54,970,'2006-02-15 05:05:03'),(54,988,'2006-02-15 05:05:03'),(54,990,'2006-02-15 05:05:03'),(55,8,'2006-02-15 05:05:03'),(55,27,'2006-02-15 05:05:03'),(55,75,'2006-02-15 05:05:03'),(55,197,'2006-02-15 05:05:03'),(55,307,'2006-02-15 05:05:03'),(55,320,'2006-02-15 05:05:03'),(55,340,'2006-02-15 05:05:03'),(55,403,'2006-02-15 05:05:03'),(55,485,'2006-02-15 05:05:03'),(55,486,'2006-02-15 05:05:03'),(55,603,'2006-02-15 05:05:03'),(55,612,'2006-02-15 05:05:03'),(55,620,'2006-02-15 05:05:03'),(55,709,'2006-02-15 05:05:03'),(55,776,'2006-02-15 05:05:03'),(55,790,'2006-02-15 05:05:03'),(55,815,'2006-02-15 05:05:03'),(55,827,'2006-02-15 05:05:03'),(55,930,'2006-02-15 05:05:03'),(55,963,'2006-02-15 05:05:03'),(56,63,'2006-02-15 05:05:03'),(56,87,'2006-02-15 05:05:03'),(56,226,'2006-02-15 05:05:03'),(56,236,'2006-02-15 05:05:03'),(56,298,'2006-02-15 05:05:03'),(56,307,'2006-02-15 05:05:03'),(56,354,'2006-02-15 05:05:03'),(56,383,'2006-02-15 05:05:03'),(56,417,'2006-02-15 05:05:03'),(56,421,'2006-02-15 05:05:03'),(56,457,'2006-02-15 05:05:03'),(56,462,'2006-02-15 05:05:03'),(56,474,'2006-02-15 05:05:03'),(56,521,'2006-02-15 05:05:03'),(56,593,'2006-02-15 05:05:03'),(56,728,'2006-02-15 05:05:03'),(56,750,'2006-02-15 05:05:03'),(56,769,'2006-02-15 05:05:03'),(56,781,'2006-02-15 05:05:03'),(56,795,'2006-02-15 05:05:03'),(56,844,'2006-02-15 05:05:03'),(56,851,'2006-02-15 05:05:03'),(56,862,'2006-02-15 05:05:03'),(56,868,'2006-02-15 05:05:03'),(56,892,'2006-02-15 05:05:03'),(56,893,'2006-02-15 05:05:03'),(56,936,'2006-02-15 05:05:03'),(56,965,'2006-02-15 05:05:03'),(57,16,'2006-02-15 05:05:03'),(57,34,'2006-02-15 05:05:03'),(57,101,'2006-02-15 05:05:03'),(57,114,'2006-02-15 05:05:03'),(57,122,'2006-02-15 05:05:03'),(57,134,'2006-02-15 05:05:03'),(57,144,'2006-02-15 05:05:03'),(57,153,'2006-02-15 05:05:03'),(57,192,'2006-02-15 05:05:03'),(57,213,'2006-02-15 05:05:03'),(57,258,'2006-02-15 05:05:03'),(57,267,'2006-02-15 05:05:03'),(57,317,'2006-02-15 05:05:03'),(57,340,'2006-02-15 05:05:03'),(57,393,'2006-02-15 05:05:03'),(57,437,'2006-02-15 05:05:03'),(57,447,'2006-02-15 05:05:03'),(57,502,'2006-02-15 05:05:03'),(57,592,'2006-02-15 05:05:03'),(57,605,'2006-02-15 05:05:03'),(57,637,'2006-02-15 05:05:03'),(57,685,'2006-02-15 05:05:03'),(57,707,'2006-02-15 05:05:03'),(57,714,'2006-02-15 05:05:03'),(57,717,'2006-02-15 05:05:03'),(57,737,'2006-02-15 05:05:03'),(57,767,'2006-02-15 05:05:03'),(57,852,'2006-02-15 05:05:03'),(57,891,'2006-02-15 05:05:03'),(57,918,'2006-02-15 05:05:03'),(58,48,'2006-02-15 05:05:03'),(58,68,'2006-02-15 05:05:03'),(58,119,'2006-02-15 05:05:03'),(58,128,'2006-02-15 05:05:03'),(58,135,'2006-02-15 05:05:03'),(58,175,'2006-02-15 05:05:03'),(58,199,'2006-02-15 05:05:03'),(58,235,'2006-02-15 05:05:03'),(58,242,'2006-02-15 05:05:03'),(58,243,'2006-02-15 05:05:03'),(58,254,'2006-02-15 05:05:03'),(58,306,'2006-02-15 05:05:03'),(58,316,'2006-02-15 05:05:03'),(58,417,'2006-02-15 05:05:03'),(58,426,'2006-02-15 05:05:03'),(58,460,'2006-02-15 05:05:03'),(58,477,'2006-02-15 05:05:03'),(58,541,'2006-02-15 05:05:03'),(58,549,'2006-02-15 05:05:03'),(58,551,'2006-02-15 05:05:03'),(58,553,'2006-02-15 05:05:03'),(58,578,'2006-02-15 05:05:03'),(58,602,'2006-02-15 05:05:03'),(58,632,'2006-02-15 05:05:03'),(58,635,'2006-02-15 05:05:03'),(58,638,'2006-02-15 05:05:03'),(58,698,'2006-02-15 05:05:03'),(58,726,'2006-02-15 05:05:03'),(58,755,'2006-02-15 05:05:03'),(58,800,'2006-02-15 05:05:03'),(58,856,'2006-02-15 05:05:03'),(58,858,'2006-02-15 05:05:03'),(59,5,'2006-02-15 05:05:03'),(59,46,'2006-02-15 05:05:03'),(59,54,'2006-02-15 05:05:03'),(59,72,'2006-02-15 05:05:03'),(59,88,'2006-02-15 05:05:03'),(59,121,'2006-02-15 05:05:03'),(59,129,'2006-02-15 05:05:03'),(59,130,'2006-02-15 05:05:03'),(59,183,'2006-02-15 05:05:03'),(59,210,'2006-02-15 05:05:03'),(59,241,'2006-02-15 05:05:03'),(59,295,'2006-02-15 05:05:03'),(59,418,'2006-02-15 05:05:03'),(59,572,'2006-02-15 05:05:03'),(59,644,'2006-02-15 05:05:03'),(59,650,'2006-02-15 05:05:03'),(59,689,'2006-02-15 05:05:03'),(59,694,'2006-02-15 05:05:03'),(59,702,'2006-02-15 05:05:03'),(59,713,'2006-02-15 05:05:03'),(59,749,'2006-02-15 05:05:03'),(59,772,'2006-02-15 05:05:03'),(59,853,'2006-02-15 05:05:03'),(59,862,'2006-02-15 05:05:03'),(59,943,'2006-02-15 05:05:03'),(59,946,'2006-02-15 05:05:03'),(59,984,'2006-02-15 05:05:03'),(60,31,'2006-02-15 05:05:03'),(60,85,'2006-02-15 05:05:03'),(60,133,'2006-02-15 05:05:03'),(60,142,'2006-02-15 05:05:03'),(60,177,'2006-02-15 05:05:03'),(60,179,'2006-02-15 05:05:03'),(60,186,'2006-02-15 05:05:03'),(60,222,'2006-02-15 05:05:03'),(60,235,'2006-02-15 05:05:03'),(60,239,'2006-02-15 05:05:03'),(60,253,'2006-02-15 05:05:03'),(60,262,'2006-02-15 05:05:03'),(60,297,'2006-02-15 05:05:03'),(60,299,'2006-02-15 05:05:03'),(60,334,'2006-02-15 05:05:03'),(60,376,'2006-02-15 05:05:03'),(60,423,'2006-02-15 05:05:03'),(60,436,'2006-02-15 05:05:03'),(60,493,'2006-02-15 05:05:03'),(60,534,'2006-02-15 05:05:03'),(60,551,'2006-02-15 05:05:03'),(60,658,'2006-02-15 05:05:03'),(60,665,'2006-02-15 05:05:03'),(60,679,'2006-02-15 05:05:03'),(60,754,'2006-02-15 05:05:03'),(60,771,'2006-02-15 05:05:03'),(60,783,'2006-02-15 05:05:03'),(60,784,'2006-02-15 05:05:03'),(60,805,'2006-02-15 05:05:03'),(60,830,'2006-02-15 05:05:03'),(60,835,'2006-02-15 05:05:03'),(60,928,'2006-02-15 05:05:03'),(60,952,'2006-02-15 05:05:03'),(60,971,'2006-02-15 05:05:03'),(60,986,'2006-02-15 05:05:03'),(61,235,'2006-02-15 05:05:03'),(61,237,'2006-02-15 05:05:03'),(61,307,'2006-02-15 05:05:03'),(61,362,'2006-02-15 05:05:03'),(61,372,'2006-02-15 05:05:03'),(61,374,'2006-02-15 05:05:03'),(61,423,'2006-02-15 05:05:03'),(61,433,'2006-02-15 05:05:03'),(61,508,'2006-02-15 05:05:03'),(61,518,'2006-02-15 05:05:03'),(61,519,'2006-02-15 05:05:03'),(61,535,'2006-02-15 05:05:03'),(61,537,'2006-02-15 05:05:03'),(61,585,'2006-02-15 05:05:03'),(61,639,'2006-02-15 05:05:03'),(61,648,'2006-02-15 05:05:03'),(61,649,'2006-02-15 05:05:03'),(61,703,'2006-02-15 05:05:03'),(61,752,'2006-02-15 05:05:03'),(61,766,'2006-02-15 05:05:03'),(61,767,'2006-02-15 05:05:03'),(61,780,'2006-02-15 05:05:03'),(61,831,'2006-02-15 05:05:03'),(61,832,'2006-02-15 05:05:03'),(61,990,'2006-02-15 05:05:03'),(62,6,'2006-02-15 05:05:03'),(62,42,'2006-02-15 05:05:03'),(62,54,'2006-02-15 05:05:03'),(62,100,'2006-02-15 05:05:03'),(62,101,'2006-02-15 05:05:03'),(62,129,'2006-02-15 05:05:03'),(62,198,'2006-02-15 05:05:03'),(62,211,'2006-02-15 05:05:03'),(62,231,'2006-02-15 05:05:03'),(62,272,'2006-02-15 05:05:03'),(62,295,'2006-02-15 05:05:03'),(62,337,'2006-02-15 05:05:03'),(62,375,'2006-02-15 05:05:03'),(62,385,'2006-02-15 05:05:03'),(62,393,'2006-02-15 05:05:03'),(62,398,'2006-02-15 05:05:03'),(62,406,'2006-02-15 05:05:03'),(62,413,'2006-02-15 05:05:03'),(62,428,'2006-02-15 05:05:03'),(62,445,'2006-02-15 05:05:03'),(62,457,'2006-02-15 05:05:03'),(62,465,'2006-02-15 05:05:03'),(62,688,'2006-02-15 05:05:03'),(62,707,'2006-02-15 05:05:03'),(62,719,'2006-02-15 05:05:03'),(62,951,'2006-02-15 05:05:03'),(62,981,'2006-02-15 05:05:03'),(62,988,'2006-02-15 05:05:03'),(62,990,'2006-02-15 05:05:03'),(63,73,'2006-02-15 05:05:03'),(63,134,'2006-02-15 05:05:03'),(63,167,'2006-02-15 05:05:03'),(63,208,'2006-02-15 05:05:03'),(63,225,'2006-02-15 05:05:03'),(63,248,'2006-02-15 05:05:03'),(63,249,'2006-02-15 05:05:03'),(63,278,'2006-02-15 05:05:03'),(63,392,'2006-02-15 05:05:03'),(63,517,'2006-02-15 05:05:03'),(63,633,'2006-02-15 05:05:03'),(63,763,'2006-02-15 05:05:03'),(63,781,'2006-02-15 05:05:03'),(63,809,'2006-02-15 05:05:03'),(63,893,'2006-02-15 05:05:03'),(63,932,'2006-02-15 05:05:03'),(63,944,'2006-02-15 05:05:03'),(63,945,'2006-02-15 05:05:03'),(63,981,'2006-02-15 05:05:03'),(64,3,'2006-02-15 05:05:03'),(64,10,'2006-02-15 05:05:03'),(64,37,'2006-02-15 05:05:03'),(64,87,'2006-02-15 05:05:03'),(64,88,'2006-02-15 05:05:03'),(64,124,'2006-02-15 05:05:03'),(64,197,'2006-02-15 05:05:03'),(64,280,'2006-02-15 05:05:03'),(64,291,'2006-02-15 05:05:03'),(64,307,'2006-02-15 05:05:03'),(64,335,'2006-02-15 05:05:03'),(64,345,'2006-02-15 05:05:03'),(64,448,'2006-02-15 05:05:03'),(64,469,'2006-02-15 05:05:03'),(64,471,'2006-02-15 05:05:03'),(64,506,'2006-02-15 05:05:03'),(64,543,'2006-02-15 05:05:03'),(64,557,'2006-02-15 05:05:03'),(64,569,'2006-02-15 05:05:03'),(64,572,'2006-02-15 05:05:03'),(64,597,'2006-02-15 05:05:03'),(64,616,'2006-02-15 05:05:03'),(64,646,'2006-02-15 05:05:03'),(64,694,'2006-02-15 05:05:03'),(64,832,'2006-02-15 05:05:03'),(64,852,'2006-02-15 05:05:03'),(64,860,'2006-02-15 05:05:03'),(64,921,'2006-02-15 05:05:03'),(64,925,'2006-02-15 05:05:03'),(64,980,'2006-02-15 05:05:03'),(65,39,'2006-02-15 05:05:03'),(65,46,'2006-02-15 05:05:03'),(65,97,'2006-02-15 05:05:03'),(65,106,'2006-02-15 05:05:03'),(65,117,'2006-02-15 05:05:03'),(65,125,'2006-02-15 05:05:03'),(65,158,'2006-02-15 05:05:03'),(65,276,'2006-02-15 05:05:03'),(65,305,'2006-02-15 05:05:03'),(65,338,'2006-02-15 05:05:03'),(65,347,'2006-02-15 05:05:03'),(65,371,'2006-02-15 05:05:03'),(65,398,'2006-02-15 05:05:03'),(65,471,'2006-02-15 05:05:03'),(65,475,'2006-02-15 05:05:03'),(65,476,'2006-02-15 05:05:03'),(65,491,'2006-02-15 05:05:03'),(65,496,'2006-02-15 05:05:03'),(65,516,'2006-02-15 05:05:03'),(65,517,'2006-02-15 05:05:03'),(65,541,'2006-02-15 05:05:03'),(65,556,'2006-02-15 05:05:03'),(65,571,'2006-02-15 05:05:03'),(65,577,'2006-02-15 05:05:03'),(65,615,'2006-02-15 05:05:03'),(65,658,'2006-02-15 05:05:03'),(65,683,'2006-02-15 05:05:03'),(65,694,'2006-02-15 05:05:03'),(65,714,'2006-02-15 05:05:03'),(65,735,'2006-02-15 05:05:03'),(65,852,'2006-02-15 05:05:03'),(65,938,'2006-02-15 05:05:03'),(65,951,'2006-02-15 05:05:03'),(65,965,'2006-02-15 05:05:03'),(66,55,'2006-02-15 05:05:03'),(66,143,'2006-02-15 05:05:03'),(66,207,'2006-02-15 05:05:03'),(66,226,'2006-02-15 05:05:03'),(66,229,'2006-02-15 05:05:03'),(66,230,'2006-02-15 05:05:03'),(66,283,'2006-02-15 05:05:03'),(66,300,'2006-02-15 05:05:03'),(66,342,'2006-02-15 05:05:03'),(66,350,'2006-02-15 05:05:03'),(66,361,'2006-02-15 05:05:03'),(66,376,'2006-02-15 05:05:03'),(66,424,'2006-02-15 05:05:03'),(66,434,'2006-02-15 05:05:03'),(66,553,'2006-02-15 05:05:03'),(66,608,'2006-02-15 05:05:03'),(66,676,'2006-02-15 05:05:03'),(66,697,'2006-02-15 05:05:03'),(66,706,'2006-02-15 05:05:03'),(66,725,'2006-02-15 05:05:03'),(66,769,'2006-02-15 05:05:03'),(66,793,'2006-02-15 05:05:03'),(66,829,'2006-02-15 05:05:03'),(66,871,'2006-02-15 05:05:03'),(66,909,'2006-02-15 05:05:03'),(66,915,'2006-02-15 05:05:03'),(66,928,'2006-02-15 05:05:03'),(66,951,'2006-02-15 05:05:03'),(66,957,'2006-02-15 05:05:03'),(66,960,'2006-02-15 05:05:03'),(66,999,'2006-02-15 05:05:03'),(67,24,'2006-02-15 05:05:03'),(67,57,'2006-02-15 05:05:03'),(67,67,'2006-02-15 05:05:03'),(67,144,'2006-02-15 05:05:03'),(67,242,'2006-02-15 05:05:03'),(67,244,'2006-02-15 05:05:03'),(67,256,'2006-02-15 05:05:03'),(67,408,'2006-02-15 05:05:03'),(67,477,'2006-02-15 05:05:03'),(67,496,'2006-02-15 05:05:03'),(67,512,'2006-02-15 05:05:03'),(67,576,'2006-02-15 05:05:03'),(67,601,'2006-02-15 05:05:03'),(67,725,'2006-02-15 05:05:03'),(67,726,'2006-02-15 05:05:03'),(67,731,'2006-02-15 05:05:03'),(67,766,'2006-02-15 05:05:03'),(67,861,'2006-02-15 05:05:03'),(67,870,'2006-02-15 05:05:03'),(67,915,'2006-02-15 05:05:03'),(67,945,'2006-02-15 05:05:03'),(67,972,'2006-02-15 05:05:03'),(67,981,'2006-02-15 05:05:03'),(68,9,'2006-02-15 05:05:03'),(68,45,'2006-02-15 05:05:03'),(68,133,'2006-02-15 05:05:03'),(68,161,'2006-02-15 05:05:03'),(68,205,'2006-02-15 05:05:03'),(68,213,'2006-02-15 05:05:03'),(68,215,'2006-02-15 05:05:03'),(68,255,'2006-02-15 05:05:03'),(68,296,'2006-02-15 05:05:03'),(68,315,'2006-02-15 05:05:03'),(68,325,'2006-02-15 05:05:03'),(68,331,'2006-02-15 05:05:03'),(68,347,'2006-02-15 05:05:03'),(68,357,'2006-02-15 05:05:03'),(68,378,'2006-02-15 05:05:03'),(68,380,'2006-02-15 05:05:03'),(68,386,'2006-02-15 05:05:03'),(68,396,'2006-02-15 05:05:03'),(68,435,'2006-02-15 05:05:03'),(68,497,'2006-02-15 05:05:03'),(68,607,'2006-02-15 05:05:03'),(68,654,'2006-02-15 05:05:03'),(68,665,'2006-02-15 05:05:03'),(68,671,'2006-02-15 05:05:03'),(68,706,'2006-02-15 05:05:03'),(68,747,'2006-02-15 05:05:03'),(68,834,'2006-02-15 05:05:03'),(68,839,'2006-02-15 05:05:03'),(68,840,'2006-02-15 05:05:03'),(68,971,'2006-02-15 05:05:03'),(69,15,'2006-02-15 05:05:03'),(69,88,'2006-02-15 05:05:03'),(69,111,'2006-02-15 05:05:03'),(69,202,'2006-02-15 05:05:03'),(69,236,'2006-02-15 05:05:03'),(69,292,'2006-02-15 05:05:03'),(69,300,'2006-02-15 05:05:03'),(69,306,'2006-02-15 05:05:03'),(69,374,'2006-02-15 05:05:03'),(69,396,'2006-02-15 05:05:03'),(69,452,'2006-02-15 05:05:03'),(69,466,'2006-02-15 05:05:03'),(69,529,'2006-02-15 05:05:03'),(69,612,'2006-02-15 05:05:03'),(69,720,'2006-02-15 05:05:03'),(69,722,'2006-02-15 05:05:03'),(69,761,'2006-02-15 05:05:03'),(69,791,'2006-02-15 05:05:03'),(69,864,'2006-02-15 05:05:03'),(69,877,'2006-02-15 05:05:03'),(69,914,'2006-02-15 05:05:03'),(70,50,'2006-02-15 05:05:03'),(70,53,'2006-02-15 05:05:03'),(70,92,'2006-02-15 05:05:03'),(70,202,'2006-02-15 05:05:03'),(70,227,'2006-02-15 05:05:03'),(70,249,'2006-02-15 05:05:03'),(70,290,'2006-02-15 05:05:03'),(70,304,'2006-02-15 05:05:03'),(70,343,'2006-02-15 05:05:03'),(70,414,'2006-02-15 05:05:03'),(70,453,'2006-02-15 05:05:03'),(70,466,'2006-02-15 05:05:03'),(70,504,'2006-02-15 05:05:03'),(70,584,'2006-02-15 05:05:03'),(70,628,'2006-02-15 05:05:03'),(70,654,'2006-02-15 05:05:03'),(70,725,'2006-02-15 05:05:03'),(70,823,'2006-02-15 05:05:03'),(70,834,'2006-02-15 05:05:03'),(70,856,'2006-02-15 05:05:03'),(70,869,'2006-02-15 05:05:03'),(70,953,'2006-02-15 05:05:03'),(70,964,'2006-02-15 05:05:03'),(71,26,'2006-02-15 05:05:03'),(71,52,'2006-02-15 05:05:03'),(71,233,'2006-02-15 05:05:03'),(71,317,'2006-02-15 05:05:03'),(71,359,'2006-02-15 05:05:03'),(71,362,'2006-02-15 05:05:03'),(71,385,'2006-02-15 05:05:03'),(71,399,'2006-02-15 05:05:03'),(71,450,'2006-02-15 05:05:03'),(71,532,'2006-02-15 05:05:03'),(71,560,'2006-02-15 05:05:03'),(71,574,'2006-02-15 05:05:03'),(71,638,'2006-02-15 05:05:03'),(71,773,'2006-02-15 05:05:03'),(71,833,'2006-02-15 05:05:03'),(71,874,'2006-02-15 05:05:03'),(71,918,'2006-02-15 05:05:03'),(71,956,'2006-02-15 05:05:03'),(72,34,'2006-02-15 05:05:03'),(72,144,'2006-02-15 05:05:03'),(72,237,'2006-02-15 05:05:03'),(72,249,'2006-02-15 05:05:03'),(72,286,'2006-02-15 05:05:03'),(72,296,'2006-02-15 05:05:03'),(72,325,'2006-02-15 05:05:03'),(72,331,'2006-02-15 05:05:03'),(72,405,'2006-02-15 05:05:03'),(72,450,'2006-02-15 05:05:03'),(72,550,'2006-02-15 05:05:03'),(72,609,'2006-02-15 05:05:03'),(72,623,'2006-02-15 05:05:03'),(72,636,'2006-02-15 05:05:03'),(72,640,'2006-02-15 05:05:03'),(72,665,'2006-02-15 05:05:03'),(72,718,'2006-02-15 05:05:03'),(72,743,'2006-02-15 05:05:03'),(72,757,'2006-02-15 05:05:03'),(72,773,'2006-02-15 05:05:03'),(72,854,'2006-02-15 05:05:03'),(72,865,'2006-02-15 05:05:03'),(72,938,'2006-02-15 05:05:03'),(72,956,'2006-02-15 05:05:03'),(72,964,'2006-02-15 05:05:03'),(72,969,'2006-02-15 05:05:03'),(73,36,'2006-02-15 05:05:03'),(73,45,'2006-02-15 05:05:03'),(73,51,'2006-02-15 05:05:03'),(73,77,'2006-02-15 05:05:03'),(73,148,'2006-02-15 05:05:03'),(73,245,'2006-02-15 05:05:03'),(73,275,'2006-02-15 05:05:03'),(73,322,'2006-02-15 05:05:03'),(73,374,'2006-02-15 05:05:03'),(73,379,'2006-02-15 05:05:03'),(73,467,'2006-02-15 05:05:03'),(73,548,'2006-02-15 05:05:03'),(73,561,'2006-02-15 05:05:03'),(73,562,'2006-02-15 05:05:03'),(73,565,'2006-02-15 05:05:03'),(73,627,'2006-02-15 05:05:03'),(73,666,'2006-02-15 05:05:03'),(73,667,'2006-02-15 05:05:03'),(73,707,'2006-02-15 05:05:03'),(73,748,'2006-02-15 05:05:03'),(73,772,'2006-02-15 05:05:03'),(73,823,'2006-02-15 05:05:03'),(73,936,'2006-02-15 05:05:03'),(73,946,'2006-02-15 05:05:03'),(73,950,'2006-02-15 05:05:03'),(73,998,'2006-02-15 05:05:03'),(74,28,'2006-02-15 05:05:03'),(74,44,'2006-02-15 05:05:03'),(74,117,'2006-02-15 05:05:03'),(74,185,'2006-02-15 05:05:03'),(74,192,'2006-02-15 05:05:03'),(74,203,'2006-02-15 05:05:03'),(74,263,'2006-02-15 05:05:03'),(74,321,'2006-02-15 05:05:03'),(74,415,'2006-02-15 05:05:03'),(74,484,'2006-02-15 05:05:03'),(74,503,'2006-02-15 05:05:03'),(74,537,'2006-02-15 05:05:03'),(74,543,'2006-02-15 05:05:03'),(74,617,'2006-02-15 05:05:03'),(74,626,'2006-02-15 05:05:03'),(74,637,'2006-02-15 05:05:03'),(74,663,'2006-02-15 05:05:03'),(74,704,'2006-02-15 05:05:03'),(74,720,'2006-02-15 05:05:03'),(74,747,'2006-02-15 05:05:03'),(74,780,'2006-02-15 05:05:03'),(74,804,'2006-02-15 05:05:03'),(74,834,'2006-02-15 05:05:03'),(74,836,'2006-02-15 05:05:03'),(74,848,'2006-02-15 05:05:03'),(74,872,'2006-02-15 05:05:03'),(74,902,'2006-02-15 05:05:03'),(74,956,'2006-02-15 05:05:03'),(75,12,'2006-02-15 05:05:03'),(75,34,'2006-02-15 05:05:03'),(75,143,'2006-02-15 05:05:03'),(75,170,'2006-02-15 05:05:03'),(75,222,'2006-02-15 05:05:03'),(75,301,'2006-02-15 05:05:03'),(75,347,'2006-02-15 05:05:03'),(75,372,'2006-02-15 05:05:03'),(75,436,'2006-02-15 05:05:03'),(75,445,'2006-02-15 05:05:03'),(75,446,'2006-02-15 05:05:03'),(75,492,'2006-02-15 05:05:03'),(75,498,'2006-02-15 05:05:03'),(75,508,'2006-02-15 05:05:03'),(75,541,'2006-02-15 05:05:03'),(75,547,'2006-02-15 05:05:03'),(75,579,'2006-02-15 05:05:03'),(75,645,'2006-02-15 05:05:03'),(75,667,'2006-02-15 05:05:03'),(75,744,'2006-02-15 05:05:03'),(75,764,'2006-02-15 05:05:03'),(75,780,'2006-02-15 05:05:03'),(75,870,'2006-02-15 05:05:03'),(75,920,'2006-02-15 05:05:03'),(76,60,'2006-02-15 05:05:03'),(76,66,'2006-02-15 05:05:03'),(76,68,'2006-02-15 05:05:03'),(76,95,'2006-02-15 05:05:03'),(76,122,'2006-02-15 05:05:03'),(76,187,'2006-02-15 05:05:03'),(76,223,'2006-02-15 05:05:03'),(76,234,'2006-02-15 05:05:03'),(76,251,'2006-02-15 05:05:03'),(76,348,'2006-02-15 05:05:03'),(76,444,'2006-02-15 05:05:03'),(76,464,'2006-02-15 05:05:03'),(76,474,'2006-02-15 05:05:03'),(76,498,'2006-02-15 05:05:03'),(76,568,'2006-02-15 05:05:03'),(76,604,'2006-02-15 05:05:03'),(76,606,'2006-02-15 05:05:03'),(76,642,'2006-02-15 05:05:03'),(76,648,'2006-02-15 05:05:03'),(76,650,'2006-02-15 05:05:03'),(76,709,'2006-02-15 05:05:03'),(76,760,'2006-02-15 05:05:03'),(76,765,'2006-02-15 05:05:03'),(76,781,'2006-02-15 05:05:03'),(76,850,'2006-02-15 05:05:03'),(76,862,'2006-02-15 05:05:03'),(76,866,'2006-02-15 05:05:03'),(76,870,'2006-02-15 05:05:03'),(76,912,'2006-02-15 05:05:03'),(76,935,'2006-02-15 05:05:03'),(76,958,'2006-02-15 05:05:03'),(77,13,'2006-02-15 05:05:03'),(77,22,'2006-02-15 05:05:03'),(77,40,'2006-02-15 05:05:03'),(77,73,'2006-02-15 05:05:03'),(77,78,'2006-02-15 05:05:03'),(77,153,'2006-02-15 05:05:03'),(77,224,'2006-02-15 05:05:03'),(77,240,'2006-02-15 05:05:03'),(77,245,'2006-02-15 05:05:03'),(77,261,'2006-02-15 05:05:03'),(77,343,'2006-02-15 05:05:03'),(77,442,'2006-02-15 05:05:03'),(77,458,'2006-02-15 05:05:03'),(77,538,'2006-02-15 05:05:03'),(77,566,'2006-02-15 05:05:03'),(77,612,'2006-02-15 05:05:03'),(77,635,'2006-02-15 05:05:03'),(77,694,'2006-02-15 05:05:03'),(77,749,'2006-02-15 05:05:03'),(77,938,'2006-02-15 05:05:03'),(77,943,'2006-02-15 05:05:03'),(77,963,'2006-02-15 05:05:03'),(77,969,'2006-02-15 05:05:03'),(77,993,'2006-02-15 05:05:03'),(78,86,'2006-02-15 05:05:03'),(78,239,'2006-02-15 05:05:03'),(78,260,'2006-02-15 05:05:03'),(78,261,'2006-02-15 05:05:03'),(78,265,'2006-02-15 05:05:03'),(78,301,'2006-02-15 05:05:03'),(78,387,'2006-02-15 05:05:03'),(78,393,'2006-02-15 05:05:03'),(78,428,'2006-02-15 05:05:03'),(78,457,'2006-02-15 05:05:03'),(78,505,'2006-02-15 05:05:03'),(78,520,'2006-02-15 05:05:03'),(78,530,'2006-02-15 05:05:03'),(78,549,'2006-02-15 05:05:03'),(78,552,'2006-02-15 05:05:03'),(78,599,'2006-02-15 05:05:03'),(78,670,'2006-02-15 05:05:03'),(78,674,'2006-02-15 05:05:03'),(78,689,'2006-02-15 05:05:03'),(78,762,'2006-02-15 05:05:03'),(78,767,'2006-02-15 05:05:03'),(78,811,'2006-02-15 05:05:03'),(78,852,'2006-02-15 05:05:03'),(78,880,'2006-02-15 05:05:03'),(78,963,'2006-02-15 05:05:03'),(78,968,'2006-02-15 05:05:03'),(79,32,'2006-02-15 05:05:03'),(79,33,'2006-02-15 05:05:03'),(79,40,'2006-02-15 05:05:03'),(79,141,'2006-02-15 05:05:03'),(79,205,'2006-02-15 05:05:03'),(79,230,'2006-02-15 05:05:03'),(79,242,'2006-02-15 05:05:03'),(79,262,'2006-02-15 05:05:03'),(79,267,'2006-02-15 05:05:03'),(79,269,'2006-02-15 05:05:03'),(79,299,'2006-02-15 05:05:03'),(79,367,'2006-02-15 05:05:03'),(79,428,'2006-02-15 05:05:03'),(79,430,'2006-02-15 05:05:03'),(79,473,'2006-02-15 05:05:03'),(79,607,'2006-02-15 05:05:03'),(79,628,'2006-02-15 05:05:03'),(79,634,'2006-02-15 05:05:03'),(79,646,'2006-02-15 05:05:03'),(79,727,'2006-02-15 05:05:03'),(79,750,'2006-02-15 05:05:03'),(79,753,'2006-02-15 05:05:03'),(79,769,'2006-02-15 05:05:03'),(79,776,'2006-02-15 05:05:03'),(79,788,'2006-02-15 05:05:03'),(79,840,'2006-02-15 05:05:03'),(79,853,'2006-02-15 05:05:03'),(79,916,'2006-02-15 05:05:03'),(80,69,'2006-02-15 05:05:03'),(80,118,'2006-02-15 05:05:03'),(80,124,'2006-02-15 05:05:03'),(80,175,'2006-02-15 05:05:03'),(80,207,'2006-02-15 05:05:03'),(80,212,'2006-02-15 05:05:03'),(80,260,'2006-02-15 05:05:03'),(80,262,'2006-02-15 05:05:03'),(80,280,'2006-02-15 05:05:03'),(80,341,'2006-02-15 05:05:03'),(80,342,'2006-02-15 05:05:03'),(80,343,'2006-02-15 05:05:03'),(80,362,'2006-02-15 05:05:03'),(80,436,'2006-02-15 05:05:03'),(80,475,'2006-02-15 05:05:03'),(80,553,'2006-02-15 05:05:03'),(80,619,'2006-02-15 05:05:03'),(80,622,'2006-02-15 05:05:03'),(80,680,'2006-02-15 05:05:03'),(80,687,'2006-02-15 05:05:03'),(80,688,'2006-02-15 05:05:03'),(80,709,'2006-02-15 05:05:03'),(80,788,'2006-02-15 05:05:03'),(80,807,'2006-02-15 05:05:03'),(80,858,'2006-02-15 05:05:03'),(80,888,'2006-02-15 05:05:03'),(80,941,'2006-02-15 05:05:03'),(80,979,'2006-02-15 05:05:03'),(81,4,'2006-02-15 05:05:03'),(81,11,'2006-02-15 05:05:03'),(81,59,'2006-02-15 05:05:03'),(81,89,'2006-02-15 05:05:03'),(81,178,'2006-02-15 05:05:03'),(81,186,'2006-02-15 05:05:03'),(81,194,'2006-02-15 05:05:03'),(81,215,'2006-02-15 05:05:03'),(81,219,'2006-02-15 05:05:03'),(81,232,'2006-02-15 05:05:03'),(81,260,'2006-02-15 05:05:03'),(81,267,'2006-02-15 05:05:03'),(81,268,'2006-02-15 05:05:03'),(81,304,'2006-02-15 05:05:03'),(81,332,'2006-02-15 05:05:03'),(81,389,'2006-02-15 05:05:03'),(81,398,'2006-02-15 05:05:03'),(81,453,'2006-02-15 05:05:03'),(81,458,'2006-02-15 05:05:03'),(81,465,'2006-02-15 05:05:03'),(81,505,'2006-02-15 05:05:03'),(81,508,'2006-02-15 05:05:03'),(81,527,'2006-02-15 05:05:03'),(81,545,'2006-02-15 05:05:03'),(81,564,'2006-02-15 05:05:03'),(81,578,'2006-02-15 05:05:03'),(81,579,'2006-02-15 05:05:03'),(81,613,'2006-02-15 05:05:03'),(81,619,'2006-02-15 05:05:03'),(81,643,'2006-02-15 05:05:03'),(81,692,'2006-02-15 05:05:03'),(81,710,'2006-02-15 05:05:03'),(81,729,'2006-02-15 05:05:03'),(81,761,'2006-02-15 05:05:03'),(81,827,'2006-02-15 05:05:03'),(81,910,'2006-02-15 05:05:03'),(82,17,'2006-02-15 05:05:03'),(82,33,'2006-02-15 05:05:03'),(82,104,'2006-02-15 05:05:03'),(82,143,'2006-02-15 05:05:03'),(82,188,'2006-02-15 05:05:03'),(82,242,'2006-02-15 05:05:03'),(82,247,'2006-02-15 05:05:03'),(82,290,'2006-02-15 05:05:03'),(82,306,'2006-02-15 05:05:03'),(82,316,'2006-02-15 05:05:03'),(82,344,'2006-02-15 05:05:03'),(82,453,'2006-02-15 05:05:03'),(82,468,'2006-02-15 05:05:03'),(82,480,'2006-02-15 05:05:03'),(82,497,'2006-02-15 05:05:03'),(82,503,'2006-02-15 05:05:03'),(82,527,'2006-02-15 05:05:03'),(82,551,'2006-02-15 05:05:03'),(82,561,'2006-02-15 05:05:03'),(82,750,'2006-02-15 05:05:03'),(82,787,'2006-02-15 05:05:03'),(82,802,'2006-02-15 05:05:03'),(82,838,'2006-02-15 05:05:03'),(82,839,'2006-02-15 05:05:03'),(82,870,'2006-02-15 05:05:03'),(82,877,'2006-02-15 05:05:03'),(82,893,'2006-02-15 05:05:03'),(82,911,'2006-02-15 05:05:03'),(82,954,'2006-02-15 05:05:03'),(82,978,'2006-02-15 05:05:03'),(82,985,'2006-02-15 05:05:03'),(83,49,'2006-02-15 05:05:03'),(83,52,'2006-02-15 05:05:03'),(83,58,'2006-02-15 05:05:03'),(83,110,'2006-02-15 05:05:03'),(83,120,'2006-02-15 05:05:03'),(83,121,'2006-02-15 05:05:03'),(83,135,'2006-02-15 05:05:03'),(83,165,'2006-02-15 05:05:03'),(83,217,'2006-02-15 05:05:03'),(83,247,'2006-02-15 05:05:03'),(83,249,'2006-02-15 05:05:03'),(83,263,'2006-02-15 05:05:03'),(83,268,'2006-02-15 05:05:03'),(83,279,'2006-02-15 05:05:03'),(83,281,'2006-02-15 05:05:03'),(83,339,'2006-02-15 05:05:03'),(83,340,'2006-02-15 05:05:03'),(83,369,'2006-02-15 05:05:03'),(83,412,'2006-02-15 05:05:03'),(83,519,'2006-02-15 05:05:03'),(83,529,'2006-02-15 05:05:03'),(83,615,'2006-02-15 05:05:03'),(83,631,'2006-02-15 05:05:03'),(83,655,'2006-02-15 05:05:03'),(83,672,'2006-02-15 05:05:03'),(83,686,'2006-02-15 05:05:03'),(83,719,'2006-02-15 05:05:03'),(83,764,'2006-02-15 05:05:03'),(83,777,'2006-02-15 05:05:03'),(83,784,'2006-02-15 05:05:03'),(83,833,'2006-02-15 05:05:03'),(83,873,'2006-02-15 05:05:03'),(83,932,'2006-02-15 05:05:03'),(84,19,'2006-02-15 05:05:03'),(84,39,'2006-02-15 05:05:03'),(84,46,'2006-02-15 05:05:03'),(84,175,'2006-02-15 05:05:03'),(84,238,'2006-02-15 05:05:03'),(84,281,'2006-02-15 05:05:03'),(84,290,'2006-02-15 05:05:03'),(84,312,'2006-02-15 05:05:03'),(84,317,'2006-02-15 05:05:03'),(84,413,'2006-02-15 05:05:03'),(84,414,'2006-02-15 05:05:03'),(84,460,'2006-02-15 05:05:03'),(84,479,'2006-02-15 05:05:03'),(84,491,'2006-02-15 05:05:03'),(84,529,'2006-02-15 05:05:03'),(84,540,'2006-02-15 05:05:03'),(84,566,'2006-02-15 05:05:03'),(84,574,'2006-02-15 05:05:03'),(84,589,'2006-02-15 05:05:03'),(84,616,'2006-02-15 05:05:03'),(84,646,'2006-02-15 05:05:03'),(84,703,'2006-02-15 05:05:03'),(84,729,'2006-02-15 05:05:03'),(84,764,'2006-02-15 05:05:03'),(84,782,'2006-02-15 05:05:03'),(84,809,'2006-02-15 05:05:03'),(84,830,'2006-02-15 05:05:03'),(84,843,'2006-02-15 05:05:03'),(84,887,'2006-02-15 05:05:03'),(84,975,'2006-02-15 05:05:03'),(84,996,'2006-02-15 05:05:03'),(85,2,'2006-02-15 05:05:03'),(85,14,'2006-02-15 05:05:03'),(85,72,'2006-02-15 05:05:03'),(85,85,'2006-02-15 05:05:03'),(85,92,'2006-02-15 05:05:03'),(85,148,'2006-02-15 05:05:03'),(85,216,'2006-02-15 05:05:03'),(85,290,'2006-02-15 05:05:03'),(85,296,'2006-02-15 05:05:03'),(85,297,'2006-02-15 05:05:03'),(85,337,'2006-02-15 05:05:03'),(85,383,'2006-02-15 05:05:03'),(85,421,'2006-02-15 05:05:03'),(85,446,'2006-02-15 05:05:03'),(85,461,'2006-02-15 05:05:03'),(85,475,'2006-02-15 05:05:03'),(85,478,'2006-02-15 05:05:03'),(85,522,'2006-02-15 05:05:03'),(85,543,'2006-02-15 05:05:03'),(85,558,'2006-02-15 05:05:03'),(85,591,'2006-02-15 05:05:03'),(85,630,'2006-02-15 05:05:03'),(85,678,'2006-02-15 05:05:03'),(85,711,'2006-02-15 05:05:03'),(85,761,'2006-02-15 05:05:03'),(85,812,'2006-02-15 05:05:03'),(85,869,'2006-02-15 05:05:03'),(85,875,'2006-02-15 05:05:03'),(85,895,'2006-02-15 05:05:03'),(85,957,'2006-02-15 05:05:03'),(85,960,'2006-02-15 05:05:03'),(86,137,'2006-02-15 05:05:03'),(86,163,'2006-02-15 05:05:03'),(86,196,'2006-02-15 05:05:03'),(86,216,'2006-02-15 05:05:03'),(86,249,'2006-02-15 05:05:03'),(86,303,'2006-02-15 05:05:03'),(86,331,'2006-02-15 05:05:03'),(86,364,'2006-02-15 05:05:03'),(86,391,'2006-02-15 05:05:03'),(86,432,'2006-02-15 05:05:03'),(86,482,'2006-02-15 05:05:03'),(86,486,'2006-02-15 05:05:03'),(86,519,'2006-02-15 05:05:03'),(86,520,'2006-02-15 05:05:03'),(86,548,'2006-02-15 05:05:03'),(86,623,'2006-02-15 05:05:03'),(86,631,'2006-02-15 05:05:03'),(86,636,'2006-02-15 05:05:03'),(86,752,'2006-02-15 05:05:03'),(86,760,'2006-02-15 05:05:03'),(86,808,'2006-02-15 05:05:03'),(86,857,'2006-02-15 05:05:03'),(86,878,'2006-02-15 05:05:03'),(86,893,'2006-02-15 05:05:03'),(86,905,'2006-02-15 05:05:03'),(86,923,'2006-02-15 05:05:03'),(86,929,'2006-02-15 05:05:03'),(87,48,'2006-02-15 05:05:03'),(87,157,'2006-02-15 05:05:03'),(87,161,'2006-02-15 05:05:03'),(87,199,'2006-02-15 05:05:03'),(87,207,'2006-02-15 05:05:03'),(87,250,'2006-02-15 05:05:03'),(87,253,'2006-02-15 05:05:03'),(87,312,'2006-02-15 05:05:03'),(87,421,'2006-02-15 05:05:03'),(87,570,'2006-02-15 05:05:03'),(87,599,'2006-02-15 05:05:03'),(87,606,'2006-02-15 05:05:03'),(87,654,'2006-02-15 05:05:03'),(87,679,'2006-02-15 05:05:03'),(87,706,'2006-02-15 05:05:03'),(87,718,'2006-02-15 05:05:03'),(87,721,'2006-02-15 05:05:03'),(87,830,'2006-02-15 05:05:03'),(87,870,'2006-02-15 05:05:03'),(87,952,'2006-02-15 05:05:03'),(87,961,'2006-02-15 05:05:03'),(88,4,'2006-02-15 05:05:03'),(88,76,'2006-02-15 05:05:03'),(88,87,'2006-02-15 05:05:03'),(88,128,'2006-02-15 05:05:03'),(88,170,'2006-02-15 05:05:03'),(88,193,'2006-02-15 05:05:03'),(88,234,'2006-02-15 05:05:03'),(88,304,'2006-02-15 05:05:03'),(88,602,'2006-02-15 05:05:03'),(88,620,'2006-02-15 05:05:03'),(88,668,'2006-02-15 05:05:03'),(88,717,'2006-02-15 05:05:03'),(88,785,'2006-02-15 05:05:03'),(88,819,'2006-02-15 05:05:03'),(88,839,'2006-02-15 05:05:03'),(88,881,'2006-02-15 05:05:03'),(88,908,'2006-02-15 05:05:03'),(88,929,'2006-02-15 05:05:03'),(88,940,'2006-02-15 05:05:03'),(88,968,'2006-02-15 05:05:03'),(89,47,'2006-02-15 05:05:03'),(89,103,'2006-02-15 05:05:03'),(89,117,'2006-02-15 05:05:03'),(89,162,'2006-02-15 05:05:03'),(89,182,'2006-02-15 05:05:03'),(89,187,'2006-02-15 05:05:03'),(89,212,'2006-02-15 05:05:03'),(89,254,'2006-02-15 05:05:03'),(89,266,'2006-02-15 05:05:03'),(89,306,'2006-02-15 05:05:03'),(89,342,'2006-02-15 05:05:03'),(89,406,'2006-02-15 05:05:03'),(89,410,'2006-02-15 05:05:03'),(89,446,'2006-02-15 05:05:03'),(89,473,'2006-02-15 05:05:03'),(89,488,'2006-02-15 05:05:03'),(89,529,'2006-02-15 05:05:03'),(89,542,'2006-02-15 05:05:03'),(89,564,'2006-02-15 05:05:03'),(89,697,'2006-02-15 05:05:03'),(89,833,'2006-02-15 05:05:03'),(89,864,'2006-02-15 05:05:03'),(89,970,'2006-02-15 05:05:03'),(89,976,'2006-02-15 05:05:03'),(90,2,'2006-02-15 05:05:03'),(90,11,'2006-02-15 05:05:03'),(90,100,'2006-02-15 05:05:03'),(90,197,'2006-02-15 05:05:03'),(90,212,'2006-02-15 05:05:03'),(90,262,'2006-02-15 05:05:03'),(90,303,'2006-02-15 05:05:03'),(90,330,'2006-02-15 05:05:03'),(90,363,'2006-02-15 05:05:03'),(90,374,'2006-02-15 05:05:03'),(90,384,'2006-02-15 05:05:03'),(90,385,'2006-02-15 05:05:03'),(90,391,'2006-02-15 05:05:03'),(90,406,'2006-02-15 05:05:03'),(90,433,'2006-02-15 05:05:03'),(90,442,'2006-02-15 05:05:03'),(90,451,'2006-02-15 05:05:03'),(90,520,'2006-02-15 05:05:03'),(90,529,'2006-02-15 05:05:03'),(90,542,'2006-02-15 05:05:03'),(90,586,'2006-02-15 05:05:03'),(90,633,'2006-02-15 05:05:03'),(90,663,'2006-02-15 05:05:03'),(90,676,'2006-02-15 05:05:03'),(90,771,'2006-02-15 05:05:03'),(90,817,'2006-02-15 05:05:03'),(90,838,'2006-02-15 05:05:03'),(90,855,'2006-02-15 05:05:03'),(90,858,'2006-02-15 05:05:03'),(90,868,'2006-02-15 05:05:03'),(90,880,'2006-02-15 05:05:03'),(90,901,'2006-02-15 05:05:03'),(90,925,'2006-02-15 05:05:03'),(91,13,'2006-02-15 05:05:03'),(91,25,'2006-02-15 05:05:03'),(91,48,'2006-02-15 05:05:03'),(91,176,'2006-02-15 05:05:03'),(91,181,'2006-02-15 05:05:03'),(91,190,'2006-02-15 05:05:03'),(91,335,'2006-02-15 05:05:03'),(91,416,'2006-02-15 05:05:03'),(91,447,'2006-02-15 05:05:03'),(91,480,'2006-02-15 05:05:03'),(91,493,'2006-02-15 05:05:03'),(91,509,'2006-02-15 05:05:03'),(91,511,'2006-02-15 05:05:03'),(91,608,'2006-02-15 05:05:03'),(91,807,'2006-02-15 05:05:03'),(91,829,'2006-02-15 05:05:03'),(91,849,'2006-02-15 05:05:03'),(91,859,'2006-02-15 05:05:03'),(91,941,'2006-02-15 05:05:03'),(91,982,'2006-02-15 05:05:03'),(92,90,'2006-02-15 05:05:03'),(92,94,'2006-02-15 05:05:03'),(92,103,'2006-02-15 05:05:03'),(92,104,'2006-02-15 05:05:03'),(92,123,'2006-02-15 05:05:03'),(92,137,'2006-02-15 05:05:03'),(92,207,'2006-02-15 05:05:03'),(92,229,'2006-02-15 05:05:03'),(92,338,'2006-02-15 05:05:03'),(92,381,'2006-02-15 05:05:03'),(92,436,'2006-02-15 05:05:03'),(92,443,'2006-02-15 05:05:03'),(92,453,'2006-02-15 05:05:03'),(92,470,'2006-02-15 05:05:03'),(92,505,'2006-02-15 05:05:03'),(92,512,'2006-02-15 05:05:03'),(92,543,'2006-02-15 05:05:03'),(92,545,'2006-02-15 05:05:03'),(92,547,'2006-02-15 05:05:03'),(92,553,'2006-02-15 05:05:03'),(92,564,'2006-02-15 05:05:03'),(92,568,'2006-02-15 05:05:03'),(92,618,'2006-02-15 05:05:03'),(92,662,'2006-02-15 05:05:03'),(92,686,'2006-02-15 05:05:03'),(92,699,'2006-02-15 05:05:03'),(92,712,'2006-02-15 05:05:03'),(92,728,'2006-02-15 05:05:03'),(92,802,'2006-02-15 05:05:03'),(92,825,'2006-02-15 05:05:03'),(92,838,'2006-02-15 05:05:03'),(92,889,'2006-02-15 05:05:03'),(92,929,'2006-02-15 05:05:03'),(92,991,'2006-02-15 05:05:03'),(93,71,'2006-02-15 05:05:03'),(93,120,'2006-02-15 05:05:03'),(93,124,'2006-02-15 05:05:03'),(93,280,'2006-02-15 05:05:03'),(93,325,'2006-02-15 05:05:03'),(93,339,'2006-02-15 05:05:03'),(93,427,'2006-02-15 05:05:03'),(93,445,'2006-02-15 05:05:03'),(93,453,'2006-02-15 05:05:03'),(93,473,'2006-02-15 05:05:03'),(93,573,'2006-02-15 05:05:03'),(93,621,'2006-02-15 05:05:03'),(93,644,'2006-02-15 05:05:03'),(93,678,'2006-02-15 05:05:03'),(93,680,'2006-02-15 05:05:03'),(93,699,'2006-02-15 05:05:03'),(93,744,'2006-02-15 05:05:03'),(93,768,'2006-02-15 05:05:03'),(93,777,'2006-02-15 05:05:03'),(93,835,'2006-02-15 05:05:03'),(93,856,'2006-02-15 05:05:03'),(93,874,'2006-02-15 05:05:03'),(93,909,'2006-02-15 05:05:03'),(93,916,'2006-02-15 05:05:03'),(93,982,'2006-02-15 05:05:03'),(94,13,'2006-02-15 05:05:03'),(94,60,'2006-02-15 05:05:03'),(94,76,'2006-02-15 05:05:03'),(94,122,'2006-02-15 05:05:03'),(94,153,'2006-02-15 05:05:03'),(94,193,'2006-02-15 05:05:03'),(94,206,'2006-02-15 05:05:03'),(94,228,'2006-02-15 05:05:03'),(94,270,'2006-02-15 05:05:03'),(94,275,'2006-02-15 05:05:03'),(94,320,'2006-02-15 05:05:03'),(94,322,'2006-02-15 05:05:03'),(94,337,'2006-02-15 05:05:03'),(94,354,'2006-02-15 05:05:03'),(94,402,'2006-02-15 05:05:03'),(94,428,'2006-02-15 05:05:03'),(94,457,'2006-02-15 05:05:03'),(94,473,'2006-02-15 05:05:03'),(94,475,'2006-02-15 05:05:03'),(94,512,'2006-02-15 05:05:03'),(94,517,'2006-02-15 05:05:03'),(94,521,'2006-02-15 05:05:03'),(94,533,'2006-02-15 05:05:03'),(94,540,'2006-02-15 05:05:03'),(94,548,'2006-02-15 05:05:03'),(94,551,'2006-02-15 05:05:03'),(94,712,'2006-02-15 05:05:03'),(94,713,'2006-02-15 05:05:03'),(94,724,'2006-02-15 05:05:03'),(94,775,'2006-02-15 05:05:03'),(94,788,'2006-02-15 05:05:03'),(94,950,'2006-02-15 05:05:03'),(94,989,'2006-02-15 05:05:03'),(95,22,'2006-02-15 05:05:03'),(95,35,'2006-02-15 05:05:03'),(95,47,'2006-02-15 05:05:03'),(95,52,'2006-02-15 05:05:03'),(95,65,'2006-02-15 05:05:03'),(95,74,'2006-02-15 05:05:03'),(95,126,'2006-02-15 05:05:03'),(95,207,'2006-02-15 05:05:03'),(95,245,'2006-02-15 05:05:03'),(95,294,'2006-02-15 05:05:03'),(95,301,'2006-02-15 05:05:03'),(95,312,'2006-02-15 05:05:03'),(95,329,'2006-02-15 05:05:03'),(95,353,'2006-02-15 05:05:03'),(95,375,'2006-02-15 05:05:03'),(95,420,'2006-02-15 05:05:03'),(95,424,'2006-02-15 05:05:03'),(95,431,'2006-02-15 05:05:03'),(95,498,'2006-02-15 05:05:03'),(95,522,'2006-02-15 05:05:03'),(95,546,'2006-02-15 05:05:03'),(95,551,'2006-02-15 05:05:03'),(95,619,'2006-02-15 05:05:03'),(95,627,'2006-02-15 05:05:03'),(95,690,'2006-02-15 05:05:03'),(95,748,'2006-02-15 05:05:03'),(95,813,'2006-02-15 05:05:03'),(95,828,'2006-02-15 05:05:03'),(95,855,'2006-02-15 05:05:03'),(95,903,'2006-02-15 05:05:03'),(95,923,'2006-02-15 05:05:03'),(96,8,'2006-02-15 05:05:03'),(96,36,'2006-02-15 05:05:03'),(96,40,'2006-02-15 05:05:03'),(96,54,'2006-02-15 05:05:03'),(96,58,'2006-02-15 05:05:03'),(96,66,'2006-02-15 05:05:03'),(96,134,'2006-02-15 05:05:03'),(96,209,'2006-02-15 05:05:03'),(96,244,'2006-02-15 05:05:03'),(96,320,'2006-02-15 05:05:03'),(96,430,'2006-02-15 05:05:03'),(96,452,'2006-02-15 05:05:03'),(96,486,'2006-02-15 05:05:03'),(96,572,'2006-02-15 05:05:03'),(96,590,'2006-02-15 05:05:03'),(96,661,'2006-02-15 05:05:03'),(96,778,'2006-02-15 05:05:03'),(96,832,'2006-02-15 05:05:03'),(96,846,'2006-02-15 05:05:03'),(96,874,'2006-02-15 05:05:03'),(96,945,'2006-02-15 05:05:03'),(96,968,'2006-02-15 05:05:03'),(96,987,'2006-02-15 05:05:03'),(97,143,'2006-02-15 05:05:03'),(97,177,'2006-02-15 05:05:03'),(97,188,'2006-02-15 05:05:03'),(97,197,'2006-02-15 05:05:03'),(97,256,'2006-02-15 05:05:03'),(97,312,'2006-02-15 05:05:03'),(97,342,'2006-02-15 05:05:03'),(97,348,'2006-02-15 05:05:03'),(97,358,'2006-02-15 05:05:03'),(97,370,'2006-02-15 05:05:03'),(97,437,'2006-02-15 05:05:03'),(97,446,'2006-02-15 05:05:03'),(97,466,'2006-02-15 05:05:03'),(97,518,'2006-02-15 05:05:03'),(97,553,'2006-02-15 05:05:03'),(97,561,'2006-02-15 05:05:03'),(97,641,'2006-02-15 05:05:03'),(97,656,'2006-02-15 05:05:03'),(97,728,'2006-02-15 05:05:03'),(97,755,'2006-02-15 05:05:03'),(97,757,'2006-02-15 05:05:03'),(97,826,'2006-02-15 05:05:03'),(97,862,'2006-02-15 05:05:03'),(97,930,'2006-02-15 05:05:03'),(97,933,'2006-02-15 05:05:03'),(97,947,'2006-02-15 05:05:03'),(97,951,'2006-02-15 05:05:03'),(98,66,'2006-02-15 05:05:03'),(98,72,'2006-02-15 05:05:03'),(98,81,'2006-02-15 05:05:03'),(98,87,'2006-02-15 05:05:03'),(98,107,'2006-02-15 05:05:03'),(98,120,'2006-02-15 05:05:03'),(98,183,'2006-02-15 05:05:03'),(98,194,'2006-02-15 05:05:03'),(98,212,'2006-02-15 05:05:03'),(98,297,'2006-02-15 05:05:03'),(98,607,'2006-02-15 05:05:03'),(98,634,'2006-02-15 05:05:03'),(98,686,'2006-02-15 05:05:03'),(98,705,'2006-02-15 05:05:03'),(98,710,'2006-02-15 05:05:03'),(98,721,'2006-02-15 05:05:03'),(98,725,'2006-02-15 05:05:03'),(98,734,'2006-02-15 05:05:03'),(98,738,'2006-02-15 05:05:03'),(98,765,'2006-02-15 05:05:03'),(98,782,'2006-02-15 05:05:03'),(98,824,'2006-02-15 05:05:03'),(98,829,'2006-02-15 05:05:03'),(98,912,'2006-02-15 05:05:03'),(98,955,'2006-02-15 05:05:03'),(98,985,'2006-02-15 05:05:03'),(98,990,'2006-02-15 05:05:03'),(99,7,'2006-02-15 05:05:03'),(99,27,'2006-02-15 05:05:03'),(99,84,'2006-02-15 05:05:03'),(99,250,'2006-02-15 05:05:03'),(99,322,'2006-02-15 05:05:03'),(99,325,'2006-02-15 05:05:03'),(99,381,'2006-02-15 05:05:03'),(99,414,'2006-02-15 05:05:03'),(99,475,'2006-02-15 05:05:03'),(99,490,'2006-02-15 05:05:03'),(99,512,'2006-02-15 05:05:03'),(99,540,'2006-02-15 05:05:03'),(99,572,'2006-02-15 05:05:03'),(99,600,'2006-02-15 05:05:03'),(99,618,'2006-02-15 05:05:03'),(99,620,'2006-02-15 05:05:03'),(99,622,'2006-02-15 05:05:03'),(99,636,'2006-02-15 05:05:03'),(99,672,'2006-02-15 05:05:03'),(99,726,'2006-02-15 05:05:03'),(99,741,'2006-02-15 05:05:03'),(99,796,'2006-02-15 05:05:03'),(99,835,'2006-02-15 05:05:03'),(99,967,'2006-02-15 05:05:03'),(99,978,'2006-02-15 05:05:03'),(99,982,'2006-02-15 05:05:03'),(100,17,'2006-02-15 05:05:03'),(100,118,'2006-02-15 05:05:03'),(100,250,'2006-02-15 05:05:03'),(100,411,'2006-02-15 05:05:03'),(100,414,'2006-02-15 05:05:03'),(100,513,'2006-02-15 05:05:03'),(100,563,'2006-02-15 05:05:03'),(100,642,'2006-02-15 05:05:03'),(100,714,'2006-02-15 05:05:03'),(100,718,'2006-02-15 05:05:03'),(100,759,'2006-02-15 05:05:03'),(100,779,'2006-02-15 05:05:03'),(100,815,'2006-02-15 05:05:03'),(100,846,'2006-02-15 05:05:03'),(100,850,'2006-02-15 05:05:03'),(100,872,'2006-02-15 05:05:03'),(100,877,'2006-02-15 05:05:03'),(100,909,'2006-02-15 05:05:03'),(100,919,'2006-02-15 05:05:03'),(100,944,'2006-02-15 05:05:03'),(100,967,'2006-02-15 05:05:03'),(100,979,'2006-02-15 05:05:03'),(100,991,'2006-02-15 05:05:03'),(100,992,'2006-02-15 05:05:03'),(101,60,'2006-02-15 05:05:03'),(101,66,'2006-02-15 05:05:03'),(101,85,'2006-02-15 05:05:03'),(101,146,'2006-02-15 05:05:03'),(101,189,'2006-02-15 05:05:03'),(101,250,'2006-02-15 05:05:03'),(101,255,'2006-02-15 05:05:03'),(101,263,'2006-02-15 05:05:03'),(101,275,'2006-02-15 05:05:03'),(101,289,'2006-02-15 05:05:03'),(101,491,'2006-02-15 05:05:03'),(101,494,'2006-02-15 05:05:03'),(101,511,'2006-02-15 05:05:03'),(101,568,'2006-02-15 05:05:03'),(101,608,'2006-02-15 05:05:03'),(101,617,'2006-02-15 05:05:03'),(101,655,'2006-02-15 05:05:03'),(101,662,'2006-02-15 05:05:03'),(101,700,'2006-02-15 05:05:03'),(101,702,'2006-02-15 05:05:03'),(101,758,'2006-02-15 05:05:03'),(101,774,'2006-02-15 05:05:03'),(101,787,'2006-02-15 05:05:03'),(101,828,'2006-02-15 05:05:03'),(101,841,'2006-02-15 05:05:03'),(101,928,'2006-02-15 05:05:03'),(101,932,'2006-02-15 05:05:03'),(101,936,'2006-02-15 05:05:03'),(101,941,'2006-02-15 05:05:03'),(101,978,'2006-02-15 05:05:03'),(101,980,'2006-02-15 05:05:03'),(101,984,'2006-02-15 05:05:03'),(101,988,'2006-02-15 05:05:03'),(102,20,'2006-02-15 05:05:03'),(102,34,'2006-02-15 05:05:03'),(102,53,'2006-02-15 05:05:03'),(102,123,'2006-02-15 05:05:03'),(102,124,'2006-02-15 05:05:03'),(102,194,'2006-02-15 05:05:03'),(102,200,'2006-02-15 05:05:03'),(102,205,'2006-02-15 05:05:03'),(102,268,'2006-02-15 05:05:03'),(102,326,'2006-02-15 05:05:03'),(102,329,'2006-02-15 05:05:03'),(102,334,'2006-02-15 05:05:03'),(102,351,'2006-02-15 05:05:03'),(102,418,'2006-02-15 05:05:03'),(102,431,'2006-02-15 05:05:03'),(102,446,'2006-02-15 05:05:03'),(102,485,'2006-02-15 05:05:03'),(102,508,'2006-02-15 05:05:03'),(102,517,'2006-02-15 05:05:03'),(102,521,'2006-02-15 05:05:03'),(102,526,'2006-02-15 05:05:03'),(102,529,'2006-02-15 05:05:03'),(102,544,'2006-02-15 05:05:03'),(102,600,'2006-02-15 05:05:03'),(102,605,'2006-02-15 05:05:03'),(102,606,'2006-02-15 05:05:03'),(102,624,'2006-02-15 05:05:03'),(102,631,'2006-02-15 05:05:03'),(102,712,'2006-02-15 05:05:03'),(102,728,'2006-02-15 05:05:03'),(102,744,'2006-02-15 05:05:03'),(102,796,'2006-02-15 05:05:03'),(102,802,'2006-02-15 05:05:03'),(102,810,'2006-02-15 05:05:03'),(102,828,'2006-02-15 05:05:03'),(102,837,'2006-02-15 05:05:03'),(102,845,'2006-02-15 05:05:03'),(102,852,'2006-02-15 05:05:03'),(102,958,'2006-02-15 05:05:03'),(102,979,'2006-02-15 05:05:03'),(102,980,'2006-02-15 05:05:03'),(103,5,'2006-02-15 05:05:03'),(103,118,'2006-02-15 05:05:03'),(103,130,'2006-02-15 05:05:03'),(103,197,'2006-02-15 05:05:03'),(103,199,'2006-02-15 05:05:03'),(103,206,'2006-02-15 05:05:03'),(103,215,'2006-02-15 05:05:03'),(103,221,'2006-02-15 05:05:03'),(103,271,'2006-02-15 05:05:03'),(103,285,'2006-02-15 05:05:03'),(103,315,'2006-02-15 05:05:03'),(103,318,'2006-02-15 05:05:03'),(103,333,'2006-02-15 05:05:03'),(103,347,'2006-02-15 05:05:03'),(103,356,'2006-02-15 05:05:03'),(103,360,'2006-02-15 05:05:03'),(103,378,'2006-02-15 05:05:03'),(103,437,'2006-02-15 05:05:03'),(103,585,'2006-02-15 05:05:03'),(103,609,'2006-02-15 05:05:03'),(103,639,'2006-02-15 05:05:03'),(103,643,'2006-02-15 05:05:03'),(103,692,'2006-02-15 05:05:03'),(103,735,'2006-02-15 05:05:03'),(103,822,'2006-02-15 05:05:03'),(103,895,'2006-02-15 05:05:03'),(103,903,'2006-02-15 05:05:03'),(103,912,'2006-02-15 05:05:03'),(103,942,'2006-02-15 05:05:03'),(103,956,'2006-02-15 05:05:03'),(104,19,'2006-02-15 05:05:03'),(104,39,'2006-02-15 05:05:03'),(104,40,'2006-02-15 05:05:03'),(104,59,'2006-02-15 05:05:03'),(104,70,'2006-02-15 05:05:03'),(104,136,'2006-02-15 05:05:03'),(104,156,'2006-02-15 05:05:03'),(104,184,'2006-02-15 05:05:03'),(104,198,'2006-02-15 05:05:03'),(104,233,'2006-02-15 05:05:03'),(104,259,'2006-02-15 05:05:03'),(104,287,'2006-02-15 05:05:03'),(104,309,'2006-02-15 05:05:03'),(104,313,'2006-02-15 05:05:03'),(104,394,'2006-02-15 05:05:03'),(104,401,'2006-02-15 05:05:03'),(104,463,'2006-02-15 05:05:03'),(104,506,'2006-02-15 05:05:03'),(104,516,'2006-02-15 05:05:03'),(104,583,'2006-02-15 05:05:03'),(104,600,'2006-02-15 05:05:03'),(104,607,'2006-02-15 05:05:03'),(104,657,'2006-02-15 05:05:03'),(104,677,'2006-02-15 05:05:03'),(104,739,'2006-02-15 05:05:03'),(104,892,'2006-02-15 05:05:03'),(104,904,'2006-02-15 05:05:03'),(104,926,'2006-02-15 05:05:03'),(104,945,'2006-02-15 05:05:03'),(104,984,'2006-02-15 05:05:03'),(104,999,'2006-02-15 05:05:03'),(105,12,'2006-02-15 05:05:03'),(105,15,'2006-02-15 05:05:03'),(105,21,'2006-02-15 05:05:03'),(105,29,'2006-02-15 05:05:03'),(105,42,'2006-02-15 05:05:03'),(105,116,'2006-02-15 05:05:03'),(105,158,'2006-02-15 05:05:03'),(105,239,'2006-02-15 05:05:03'),(105,280,'2006-02-15 05:05:03'),(105,283,'2006-02-15 05:05:03'),(105,315,'2006-02-15 05:05:03'),(105,333,'2006-02-15 05:05:03'),(105,372,'2006-02-15 05:05:03'),(105,377,'2006-02-15 05:05:03'),(105,530,'2006-02-15 05:05:03'),(105,558,'2006-02-15 05:05:03'),(105,561,'2006-02-15 05:05:03'),(105,606,'2006-02-15 05:05:03'),(105,649,'2006-02-15 05:05:03'),(105,686,'2006-02-15 05:05:03'),(105,750,'2006-02-15 05:05:03'),(105,795,'2006-02-15 05:05:03'),(105,831,'2006-02-15 05:05:03'),(105,835,'2006-02-15 05:05:03'),(105,858,'2006-02-15 05:05:03'),(105,864,'2006-02-15 05:05:03'),(105,893,'2006-02-15 05:05:03'),(105,906,'2006-02-15 05:05:03'),(105,910,'2006-02-15 05:05:03'),(105,915,'2006-02-15 05:05:03'),(105,954,'2006-02-15 05:05:03'),(105,990,'2006-02-15 05:05:03'),(105,993,'2006-02-15 05:05:03'),(105,994,'2006-02-15 05:05:03'),(106,44,'2006-02-15 05:05:03'),(106,83,'2006-02-15 05:05:03'),(106,108,'2006-02-15 05:05:03'),(106,126,'2006-02-15 05:05:03'),(106,136,'2006-02-15 05:05:03'),(106,166,'2006-02-15 05:05:03'),(106,189,'2006-02-15 05:05:03'),(106,194,'2006-02-15 05:05:03'),(106,204,'2006-02-15 05:05:03'),(106,229,'2006-02-15 05:05:03'),(106,241,'2006-02-15 05:05:03'),(106,345,'2006-02-15 05:05:03'),(106,365,'2006-02-15 05:05:03'),(106,399,'2006-02-15 05:05:03'),(106,439,'2006-02-15 05:05:03'),(106,457,'2006-02-15 05:05:03'),(106,469,'2006-02-15 05:05:03'),(106,500,'2006-02-15 05:05:03'),(106,505,'2006-02-15 05:05:03'),(106,559,'2006-02-15 05:05:03'),(106,566,'2006-02-15 05:05:03'),(106,585,'2006-02-15 05:05:03'),(106,639,'2006-02-15 05:05:03'),(106,654,'2006-02-15 05:05:03'),(106,659,'2006-02-15 05:05:03'),(106,675,'2006-02-15 05:05:03'),(106,687,'2006-02-15 05:05:03'),(106,752,'2006-02-15 05:05:03'),(106,763,'2006-02-15 05:05:03'),(106,780,'2006-02-15 05:05:03'),(106,858,'2006-02-15 05:05:03'),(106,866,'2006-02-15 05:05:03'),(106,881,'2006-02-15 05:05:03'),(106,894,'2006-02-15 05:05:03'),(106,934,'2006-02-15 05:05:03'),(107,62,'2006-02-15 05:05:03'),(107,112,'2006-02-15 05:05:03'),(107,133,'2006-02-15 05:05:03'),(107,136,'2006-02-15 05:05:03'),(107,138,'2006-02-15 05:05:03'),(107,162,'2006-02-15 05:05:03'),(107,165,'2006-02-15 05:05:03'),(107,172,'2006-02-15 05:05:03'),(107,209,'2006-02-15 05:05:03'),(107,220,'2006-02-15 05:05:03'),(107,239,'2006-02-15 05:05:03'),(107,277,'2006-02-15 05:05:03'),(107,292,'2006-02-15 05:05:03'),(107,338,'2006-02-15 05:05:03'),(107,348,'2006-02-15 05:05:03'),(107,369,'2006-02-15 05:05:03'),(107,388,'2006-02-15 05:05:03'),(107,392,'2006-02-15 05:05:03'),(107,409,'2006-02-15 05:05:03'),(107,430,'2006-02-15 05:05:03'),(107,445,'2006-02-15 05:05:03'),(107,454,'2006-02-15 05:05:03'),(107,458,'2006-02-15 05:05:03'),(107,467,'2006-02-15 05:05:03'),(107,520,'2006-02-15 05:05:03'),(107,534,'2006-02-15 05:05:03'),(107,548,'2006-02-15 05:05:03'),(107,571,'2006-02-15 05:05:03'),(107,574,'2006-02-15 05:05:03'),(107,603,'2006-02-15 05:05:03'),(107,606,'2006-02-15 05:05:03'),(107,637,'2006-02-15 05:05:03'),(107,774,'2006-02-15 05:05:03'),(107,781,'2006-02-15 05:05:03'),(107,796,'2006-02-15 05:05:03'),(107,831,'2006-02-15 05:05:03'),(107,849,'2006-02-15 05:05:03'),(107,859,'2006-02-15 05:05:03'),(107,879,'2006-02-15 05:05:03'),(107,905,'2006-02-15 05:05:03'),(107,973,'2006-02-15 05:05:03'),(107,977,'2006-02-15 05:05:03'),(108,1,'2006-02-15 05:05:03'),(108,6,'2006-02-15 05:05:03'),(108,9,'2006-02-15 05:05:03'),(108,137,'2006-02-15 05:05:03'),(108,208,'2006-02-15 05:05:03'),(108,219,'2006-02-15 05:05:03'),(108,242,'2006-02-15 05:05:03'),(108,278,'2006-02-15 05:05:03'),(108,302,'2006-02-15 05:05:03'),(108,350,'2006-02-15 05:05:03'),(108,378,'2006-02-15 05:05:03'),(108,379,'2006-02-15 05:05:03'),(108,495,'2006-02-15 05:05:03'),(108,507,'2006-02-15 05:05:03'),(108,517,'2006-02-15 05:05:03'),(108,561,'2006-02-15 05:05:03'),(108,567,'2006-02-15 05:05:03'),(108,648,'2006-02-15 05:05:03'),(108,652,'2006-02-15 05:05:03'),(108,655,'2006-02-15 05:05:03'),(108,673,'2006-02-15 05:05:03'),(108,693,'2006-02-15 05:05:03'),(108,696,'2006-02-15 05:05:03'),(108,702,'2006-02-15 05:05:03'),(108,721,'2006-02-15 05:05:03'),(108,733,'2006-02-15 05:05:03'),(108,741,'2006-02-15 05:05:03'),(108,744,'2006-02-15 05:05:03'),(108,887,'2006-02-15 05:05:03'),(108,892,'2006-02-15 05:05:03'),(108,894,'2006-02-15 05:05:03'),(108,920,'2006-02-15 05:05:03'),(108,958,'2006-02-15 05:05:03'),(108,966,'2006-02-15 05:05:03'),(109,12,'2006-02-15 05:05:03'),(109,48,'2006-02-15 05:05:03'),(109,77,'2006-02-15 05:05:03'),(109,157,'2006-02-15 05:05:03'),(109,174,'2006-02-15 05:05:03'),(109,190,'2006-02-15 05:05:03'),(109,243,'2006-02-15 05:05:03'),(109,281,'2006-02-15 05:05:03'),(109,393,'2006-02-15 05:05:03'),(109,463,'2006-02-15 05:05:03'),(109,622,'2006-02-15 05:05:03'),(109,657,'2006-02-15 05:05:03'),(109,694,'2006-02-15 05:05:03'),(109,700,'2006-02-15 05:05:03'),(109,732,'2006-02-15 05:05:03'),(109,753,'2006-02-15 05:05:03'),(109,785,'2006-02-15 05:05:03'),(109,786,'2006-02-15 05:05:03'),(109,863,'2006-02-15 05:05:03'),(109,885,'2006-02-15 05:05:03'),(109,955,'2006-02-15 05:05:03'),(109,967,'2006-02-15 05:05:03'),(110,8,'2006-02-15 05:05:03'),(110,27,'2006-02-15 05:05:03'),(110,62,'2006-02-15 05:05:03'),(110,120,'2006-02-15 05:05:03'),(110,126,'2006-02-15 05:05:03'),(110,156,'2006-02-15 05:05:03'),(110,292,'2006-02-15 05:05:03'),(110,343,'2006-02-15 05:05:03'),(110,360,'2006-02-15 05:05:03'),(110,369,'2006-02-15 05:05:03'),(110,435,'2006-02-15 05:05:03'),(110,513,'2006-02-15 05:05:03'),(110,525,'2006-02-15 05:05:03'),(110,539,'2006-02-15 05:05:03'),(110,545,'2006-02-15 05:05:03'),(110,625,'2006-02-15 05:05:03'),(110,650,'2006-02-15 05:05:03'),(110,801,'2006-02-15 05:05:03'),(110,912,'2006-02-15 05:05:03'),(110,961,'2006-02-15 05:05:03'),(110,987,'2006-02-15 05:05:03'),(111,61,'2006-02-15 05:05:03'),(111,78,'2006-02-15 05:05:03'),(111,98,'2006-02-15 05:05:03'),(111,162,'2006-02-15 05:05:03'),(111,179,'2006-02-15 05:05:03'),(111,194,'2006-02-15 05:05:03'),(111,325,'2006-02-15 05:05:03'),(111,359,'2006-02-15 05:05:03'),(111,382,'2006-02-15 05:05:03'),(111,403,'2006-02-15 05:05:03'),(111,407,'2006-02-15 05:05:03'),(111,414,'2006-02-15 05:05:03'),(111,474,'2006-02-15 05:05:03'),(111,489,'2006-02-15 05:05:03'),(111,508,'2006-02-15 05:05:03'),(111,555,'2006-02-15 05:05:03'),(111,603,'2006-02-15 05:05:03'),(111,608,'2006-02-15 05:05:03'),(111,643,'2006-02-15 05:05:03'),(111,669,'2006-02-15 05:05:03'),(111,679,'2006-02-15 05:05:03'),(111,680,'2006-02-15 05:05:03'),(111,699,'2006-02-15 05:05:03'),(111,731,'2006-02-15 05:05:03'),(111,732,'2006-02-15 05:05:03'),(111,737,'2006-02-15 05:05:03'),(111,744,'2006-02-15 05:05:03'),(111,777,'2006-02-15 05:05:03'),(111,847,'2006-02-15 05:05:03'),(111,894,'2006-02-15 05:05:03'),(111,919,'2006-02-15 05:05:03'),(111,962,'2006-02-15 05:05:03'),(111,973,'2006-02-15 05:05:03'),(112,34,'2006-02-15 05:05:03'),(112,37,'2006-02-15 05:05:03'),(112,151,'2006-02-15 05:05:03'),(112,173,'2006-02-15 05:05:03'),(112,188,'2006-02-15 05:05:03'),(112,231,'2006-02-15 05:05:03'),(112,312,'2006-02-15 05:05:03'),(112,322,'2006-02-15 05:05:03'),(112,443,'2006-02-15 05:05:03'),(112,450,'2006-02-15 05:05:03'),(112,565,'2006-02-15 05:05:03'),(112,603,'2006-02-15 05:05:03'),(112,606,'2006-02-15 05:05:03'),(112,654,'2006-02-15 05:05:03'),(112,666,'2006-02-15 05:05:03'),(112,700,'2006-02-15 05:05:03'),(112,728,'2006-02-15 05:05:03'),(112,772,'2006-02-15 05:05:03'),(112,796,'2006-02-15 05:05:03'),(112,817,'2006-02-15 05:05:03'),(112,829,'2006-02-15 05:05:03'),(112,856,'2006-02-15 05:05:03'),(112,865,'2006-02-15 05:05:03'),(112,869,'2006-02-15 05:05:03'),(112,988,'2006-02-15 05:05:03'),(113,35,'2006-02-15 05:05:03'),(113,84,'2006-02-15 05:05:03'),(113,116,'2006-02-15 05:05:03'),(113,181,'2006-02-15 05:05:03'),(113,218,'2006-02-15 05:05:03'),(113,249,'2006-02-15 05:05:03'),(113,258,'2006-02-15 05:05:03'),(113,292,'2006-02-15 05:05:03'),(113,322,'2006-02-15 05:05:03'),(113,353,'2006-02-15 05:05:03'),(113,403,'2006-02-15 05:05:03'),(113,525,'2006-02-15 05:05:03'),(113,642,'2006-02-15 05:05:03'),(113,656,'2006-02-15 05:05:03'),(113,674,'2006-02-15 05:05:03'),(113,680,'2006-02-15 05:05:03'),(113,700,'2006-02-15 05:05:03'),(113,719,'2006-02-15 05:05:03'),(113,723,'2006-02-15 05:05:03'),(113,726,'2006-02-15 05:05:03'),(113,732,'2006-02-15 05:05:03'),(113,748,'2006-02-15 05:05:03'),(113,838,'2006-02-15 05:05:03'),(113,890,'2006-02-15 05:05:03'),(113,921,'2006-02-15 05:05:03'),(113,969,'2006-02-15 05:05:03'),(113,981,'2006-02-15 05:05:03'),(114,13,'2006-02-15 05:05:03'),(114,68,'2006-02-15 05:05:03'),(114,90,'2006-02-15 05:05:03'),(114,162,'2006-02-15 05:05:03'),(114,188,'2006-02-15 05:05:03'),(114,194,'2006-02-15 05:05:03'),(114,210,'2006-02-15 05:05:03'),(114,237,'2006-02-15 05:05:03'),(114,254,'2006-02-15 05:05:03'),(114,305,'2006-02-15 05:05:03'),(114,339,'2006-02-15 05:05:03'),(114,420,'2006-02-15 05:05:03'),(114,425,'2006-02-15 05:05:03'),(114,452,'2006-02-15 05:05:03'),(114,538,'2006-02-15 05:05:03'),(114,619,'2006-02-15 05:05:03'),(114,757,'2006-02-15 05:05:03'),(114,807,'2006-02-15 05:05:03'),(114,827,'2006-02-15 05:05:03'),(114,841,'2006-02-15 05:05:03'),(114,861,'2006-02-15 05:05:03'),(114,866,'2006-02-15 05:05:03'),(114,913,'2006-02-15 05:05:03'),(114,961,'2006-02-15 05:05:03'),(114,993,'2006-02-15 05:05:03'),(115,49,'2006-02-15 05:05:03'),(115,52,'2006-02-15 05:05:03'),(115,245,'2006-02-15 05:05:03'),(115,246,'2006-02-15 05:05:03'),(115,277,'2006-02-15 05:05:03'),(115,302,'2006-02-15 05:05:03'),(115,379,'2006-02-15 05:05:03'),(115,383,'2006-02-15 05:05:03'),(115,391,'2006-02-15 05:05:03'),(115,428,'2006-02-15 05:05:03'),(115,506,'2006-02-15 05:05:03'),(115,531,'2006-02-15 05:05:03'),(115,607,'2006-02-15 05:05:03'),(115,615,'2006-02-15 05:05:03'),(115,661,'2006-02-15 05:05:03'),(115,671,'2006-02-15 05:05:03'),(115,686,'2006-02-15 05:05:03'),(115,703,'2006-02-15 05:05:03'),(115,714,'2006-02-15 05:05:03'),(115,740,'2006-02-15 05:05:03'),(115,754,'2006-02-15 05:05:03'),(115,846,'2006-02-15 05:05:03'),(115,887,'2006-02-15 05:05:03'),(115,952,'2006-02-15 05:05:03'),(115,955,'2006-02-15 05:05:03'),(115,966,'2006-02-15 05:05:03'),(115,985,'2006-02-15 05:05:03'),(115,994,'2006-02-15 05:05:03'),(116,36,'2006-02-15 05:05:03'),(116,48,'2006-02-15 05:05:03'),(116,88,'2006-02-15 05:05:03'),(116,90,'2006-02-15 05:05:03'),(116,105,'2006-02-15 05:05:03'),(116,128,'2006-02-15 05:05:03'),(116,336,'2006-02-15 05:05:03'),(116,338,'2006-02-15 05:05:03'),(116,384,'2006-02-15 05:05:03'),(116,412,'2006-02-15 05:05:03'),(116,420,'2006-02-15 05:05:03'),(116,451,'2006-02-15 05:05:03'),(116,481,'2006-02-15 05:05:03'),(116,492,'2006-02-15 05:05:03'),(116,584,'2006-02-15 05:05:03'),(116,606,'2006-02-15 05:05:03'),(116,622,'2006-02-15 05:05:03'),(116,647,'2006-02-15 05:05:03'),(116,653,'2006-02-15 05:05:03'),(116,742,'2006-02-15 05:05:03'),(116,784,'2006-02-15 05:05:03'),(116,844,'2006-02-15 05:05:03'),(116,939,'2006-02-15 05:05:03'),(116,956,'2006-02-15 05:05:03'),(117,10,'2006-02-15 05:05:03'),(117,15,'2006-02-15 05:05:03'),(117,42,'2006-02-15 05:05:03'),(117,167,'2006-02-15 05:05:03'),(117,178,'2006-02-15 05:05:03'),(117,190,'2006-02-15 05:05:03'),(117,197,'2006-02-15 05:05:03'),(117,224,'2006-02-15 05:05:03'),(117,246,'2006-02-15 05:05:03'),(117,273,'2006-02-15 05:05:03'),(117,298,'2006-02-15 05:05:03'),(117,316,'2006-02-15 05:05:03'),(117,337,'2006-02-15 05:05:03'),(117,395,'2006-02-15 05:05:03'),(117,423,'2006-02-15 05:05:03'),(117,432,'2006-02-15 05:05:03'),(117,459,'2006-02-15 05:05:03'),(117,468,'2006-02-15 05:05:03'),(117,550,'2006-02-15 05:05:03'),(117,578,'2006-02-15 05:05:03'),(117,707,'2006-02-15 05:05:03'),(117,710,'2006-02-15 05:05:03'),(117,738,'2006-02-15 05:05:03'),(117,739,'2006-02-15 05:05:03'),(117,778,'2006-02-15 05:05:03'),(117,783,'2006-02-15 05:05:03'),(117,785,'2006-02-15 05:05:03'),(117,797,'2006-02-15 05:05:03'),(117,812,'2006-02-15 05:05:03'),(117,831,'2006-02-15 05:05:03'),(117,864,'2006-02-15 05:05:03'),(117,887,'2006-02-15 05:05:03'),(117,926,'2006-02-15 05:05:03'),(118,35,'2006-02-15 05:05:03'),(118,39,'2006-02-15 05:05:03'),(118,41,'2006-02-15 05:05:03'),(118,49,'2006-02-15 05:05:03'),(118,55,'2006-02-15 05:05:03'),(118,136,'2006-02-15 05:05:03'),(118,141,'2006-02-15 05:05:03'),(118,151,'2006-02-15 05:05:03'),(118,311,'2006-02-15 05:05:03'),(118,384,'2006-02-15 05:05:03'),(118,399,'2006-02-15 05:05:03'),(118,499,'2006-02-15 05:05:03'),(118,517,'2006-02-15 05:05:03'),(118,553,'2006-02-15 05:05:03'),(118,558,'2006-02-15 05:05:03'),(118,572,'2006-02-15 05:05:03'),(118,641,'2006-02-15 05:05:03'),(118,656,'2006-02-15 05:05:03'),(118,695,'2006-02-15 05:05:03'),(118,735,'2006-02-15 05:05:03'),(118,788,'2006-02-15 05:05:03'),(118,852,'2006-02-15 05:05:03'),(118,938,'2006-02-15 05:05:03'),(118,957,'2006-02-15 05:05:03'),(118,969,'2006-02-15 05:05:03'),(119,21,'2006-02-15 05:05:03'),(119,49,'2006-02-15 05:05:03'),(119,64,'2006-02-15 05:05:03'),(119,87,'2006-02-15 05:05:03'),(119,143,'2006-02-15 05:05:03'),(119,171,'2006-02-15 05:05:03'),(119,172,'2006-02-15 05:05:03'),(119,173,'2006-02-15 05:05:03'),(119,381,'2006-02-15 05:05:03'),(119,394,'2006-02-15 05:05:03'),(119,412,'2006-02-15 05:05:03'),(119,418,'2006-02-15 05:05:03'),(119,454,'2006-02-15 05:05:03'),(119,509,'2006-02-15 05:05:03'),(119,521,'2006-02-15 05:05:03'),(119,567,'2006-02-15 05:05:03'),(119,570,'2006-02-15 05:05:03'),(119,592,'2006-02-15 05:05:03'),(119,614,'2006-02-15 05:05:03'),(119,636,'2006-02-15 05:05:03'),(119,649,'2006-02-15 05:05:03'),(119,693,'2006-02-15 05:05:03'),(119,738,'2006-02-15 05:05:03'),(119,751,'2006-02-15 05:05:03'),(119,782,'2006-02-15 05:05:03'),(119,786,'2006-02-15 05:05:03'),(119,788,'2006-02-15 05:05:03'),(119,802,'2006-02-15 05:05:03'),(119,858,'2006-02-15 05:05:03'),(119,868,'2006-02-15 05:05:03'),(119,900,'2006-02-15 05:05:03'),(119,939,'2006-02-15 05:05:03'),(120,57,'2006-02-15 05:05:03'),(120,63,'2006-02-15 05:05:03'),(120,144,'2006-02-15 05:05:03'),(120,149,'2006-02-15 05:05:03'),(120,208,'2006-02-15 05:05:03'),(120,231,'2006-02-15 05:05:03'),(120,238,'2006-02-15 05:05:03'),(120,255,'2006-02-15 05:05:03'),(120,414,'2006-02-15 05:05:03'),(120,424,'2006-02-15 05:05:03'),(120,489,'2006-02-15 05:05:03'),(120,513,'2006-02-15 05:05:03'),(120,590,'2006-02-15 05:05:03'),(120,641,'2006-02-15 05:05:03'),(120,642,'2006-02-15 05:05:03'),(120,659,'2006-02-15 05:05:03'),(120,682,'2006-02-15 05:05:03'),(120,691,'2006-02-15 05:05:03'),(120,715,'2006-02-15 05:05:03'),(120,717,'2006-02-15 05:05:03'),(120,722,'2006-02-15 05:05:03'),(120,746,'2006-02-15 05:05:03'),(120,830,'2006-02-15 05:05:03'),(120,894,'2006-02-15 05:05:03'),(120,898,'2006-02-15 05:05:03'),(120,911,'2006-02-15 05:05:03'),(120,994,'2006-02-15 05:05:03'),(121,141,'2006-02-15 05:05:03'),(121,154,'2006-02-15 05:05:03'),(121,161,'2006-02-15 05:05:03'),(121,170,'2006-02-15 05:05:03'),(121,186,'2006-02-15 05:05:03'),(121,198,'2006-02-15 05:05:03'),(121,220,'2006-02-15 05:05:03'),(121,222,'2006-02-15 05:05:03'),(121,284,'2006-02-15 05:05:03'),(121,297,'2006-02-15 05:05:03'),(121,338,'2006-02-15 05:05:03'),(121,353,'2006-02-15 05:05:03'),(121,449,'2006-02-15 05:05:03'),(121,479,'2006-02-15 05:05:03'),(121,517,'2006-02-15 05:05:03'),(121,633,'2006-02-15 05:05:03'),(121,654,'2006-02-15 05:05:03'),(121,658,'2006-02-15 05:05:03'),(121,666,'2006-02-15 05:05:03'),(121,771,'2006-02-15 05:05:03'),(121,780,'2006-02-15 05:05:03'),(121,847,'2006-02-15 05:05:03'),(121,884,'2006-02-15 05:05:03'),(121,885,'2006-02-15 05:05:03'),(121,966,'2006-02-15 05:05:03'),(122,22,'2006-02-15 05:05:03'),(122,29,'2006-02-15 05:05:03'),(122,76,'2006-02-15 05:05:03'),(122,83,'2006-02-15 05:05:03'),(122,157,'2006-02-15 05:05:03'),(122,158,'2006-02-15 05:05:03'),(122,166,'2006-02-15 05:05:03'),(122,227,'2006-02-15 05:05:03'),(122,238,'2006-02-15 05:05:03'),(122,300,'2006-02-15 05:05:03'),(122,307,'2006-02-15 05:05:03'),(122,363,'2006-02-15 05:05:03'),(122,470,'2006-02-15 05:05:03'),(122,489,'2006-02-15 05:05:03'),(122,491,'2006-02-15 05:05:03'),(122,542,'2006-02-15 05:05:03'),(122,620,'2006-02-15 05:05:03'),(122,649,'2006-02-15 05:05:03'),(122,654,'2006-02-15 05:05:03'),(122,673,'2006-02-15 05:05:03'),(122,718,'2006-02-15 05:05:03'),(122,795,'2006-02-15 05:05:03'),(122,957,'2006-02-15 05:05:03'),(122,961,'2006-02-15 05:05:03'),(122,998,'2006-02-15 05:05:03'),(123,3,'2006-02-15 05:05:03'),(123,43,'2006-02-15 05:05:03'),(123,67,'2006-02-15 05:05:03'),(123,105,'2006-02-15 05:05:03'),(123,148,'2006-02-15 05:05:03'),(123,151,'2006-02-15 05:05:03'),(123,185,'2006-02-15 05:05:03'),(123,223,'2006-02-15 05:05:03'),(123,234,'2006-02-15 05:05:03'),(123,245,'2006-02-15 05:05:03'),(123,246,'2006-02-15 05:05:03'),(123,266,'2006-02-15 05:05:03'),(123,286,'2006-02-15 05:05:03'),(123,429,'2006-02-15 05:05:03'),(123,442,'2006-02-15 05:05:03'),(123,446,'2006-02-15 05:05:03'),(123,479,'2006-02-15 05:05:03'),(123,480,'2006-02-15 05:05:03'),(123,494,'2006-02-15 05:05:03'),(123,503,'2006-02-15 05:05:03'),(123,530,'2006-02-15 05:05:03'),(123,576,'2006-02-15 05:05:03'),(123,577,'2006-02-15 05:05:03'),(123,589,'2006-02-15 05:05:03'),(123,593,'2006-02-15 05:05:03'),(123,725,'2006-02-15 05:05:03'),(123,730,'2006-02-15 05:05:03'),(123,786,'2006-02-15 05:05:03'),(123,860,'2006-02-15 05:05:03'),(123,892,'2006-02-15 05:05:03'),(123,926,'2006-02-15 05:05:03'),(123,988,'2006-02-15 05:05:03'),(124,22,'2006-02-15 05:05:03'),(124,64,'2006-02-15 05:05:03'),(124,106,'2006-02-15 05:05:03'),(124,113,'2006-02-15 05:05:03'),(124,190,'2006-02-15 05:05:03'),(124,246,'2006-02-15 05:05:03'),(124,260,'2006-02-15 05:05:03'),(124,263,'2006-02-15 05:05:03'),(124,289,'2006-02-15 05:05:03'),(124,306,'2006-02-15 05:05:03'),(124,312,'2006-02-15 05:05:03'),(124,322,'2006-02-15 05:05:03'),(124,343,'2006-02-15 05:05:03'),(124,449,'2006-02-15 05:05:03'),(124,468,'2006-02-15 05:05:03'),(124,539,'2006-02-15 05:05:03'),(124,601,'2006-02-15 05:05:03'),(124,726,'2006-02-15 05:05:03'),(124,742,'2006-02-15 05:05:03'),(124,775,'2006-02-15 05:05:03'),(124,785,'2006-02-15 05:05:03'),(124,814,'2006-02-15 05:05:03'),(124,858,'2006-02-15 05:05:03'),(124,882,'2006-02-15 05:05:03'),(124,987,'2006-02-15 05:05:03'),(124,997,'2006-02-15 05:05:03'),(125,62,'2006-02-15 05:05:03'),(125,98,'2006-02-15 05:05:03'),(125,100,'2006-02-15 05:05:03'),(125,114,'2006-02-15 05:05:03'),(125,175,'2006-02-15 05:05:03'),(125,188,'2006-02-15 05:05:03'),(125,204,'2006-02-15 05:05:03'),(125,238,'2006-02-15 05:05:03'),(125,250,'2006-02-15 05:05:03'),(125,324,'2006-02-15 05:05:03'),(125,338,'2006-02-15 05:05:03'),(125,361,'2006-02-15 05:05:03'),(125,367,'2006-02-15 05:05:03'),(125,395,'2006-02-15 05:05:03'),(125,414,'2006-02-15 05:05:03'),(125,428,'2006-02-15 05:05:03'),(125,429,'2006-02-15 05:05:03'),(125,450,'2006-02-15 05:05:03'),(125,497,'2006-02-15 05:05:03'),(125,557,'2006-02-15 05:05:03'),(125,568,'2006-02-15 05:05:03'),(125,584,'2006-02-15 05:05:03'),(125,602,'2006-02-15 05:05:03'),(125,623,'2006-02-15 05:05:03'),(125,664,'2006-02-15 05:05:03'),(125,683,'2006-02-15 05:05:03'),(125,710,'2006-02-15 05:05:03'),(125,877,'2006-02-15 05:05:03'),(125,908,'2006-02-15 05:05:03'),(125,949,'2006-02-15 05:05:03'),(125,965,'2006-02-15 05:05:03'),(126,21,'2006-02-15 05:05:03'),(126,34,'2006-02-15 05:05:03'),(126,43,'2006-02-15 05:05:03'),(126,58,'2006-02-15 05:05:03'),(126,85,'2006-02-15 05:05:03'),(126,96,'2006-02-15 05:05:03'),(126,193,'2006-02-15 05:05:03'),(126,194,'2006-02-15 05:05:03'),(126,199,'2006-02-15 05:05:03'),(126,256,'2006-02-15 05:05:03'),(126,263,'2006-02-15 05:05:03'),(126,288,'2006-02-15 05:05:03'),(126,317,'2006-02-15 05:05:03'),(126,347,'2006-02-15 05:05:03'),(126,369,'2006-02-15 05:05:03'),(126,370,'2006-02-15 05:05:03'),(126,419,'2006-02-15 05:05:03'),(126,468,'2006-02-15 05:05:03'),(126,469,'2006-02-15 05:05:03'),(126,545,'2006-02-15 05:05:03'),(126,685,'2006-02-15 05:05:03'),(126,836,'2006-02-15 05:05:03'),(126,860,'2006-02-15 05:05:03'),(127,36,'2006-02-15 05:05:03'),(127,47,'2006-02-15 05:05:03'),(127,48,'2006-02-15 05:05:03'),(127,79,'2006-02-15 05:05:03'),(127,119,'2006-02-15 05:05:03'),(127,141,'2006-02-15 05:05:03'),(127,157,'2006-02-15 05:05:03'),(127,202,'2006-02-15 05:05:03'),(127,286,'2006-02-15 05:05:03'),(127,333,'2006-02-15 05:05:03'),(127,354,'2006-02-15 05:05:03'),(127,366,'2006-02-15 05:05:03'),(127,382,'2006-02-15 05:05:03'),(127,388,'2006-02-15 05:05:03'),(127,411,'2006-02-15 05:05:03'),(127,459,'2006-02-15 05:05:03'),(127,553,'2006-02-15 05:05:03'),(127,573,'2006-02-15 05:05:03'),(127,613,'2006-02-15 05:05:03'),(127,617,'2006-02-15 05:05:03'),(127,641,'2006-02-15 05:05:03'),(127,710,'2006-02-15 05:05:03'),(127,727,'2006-02-15 05:05:03'),(127,749,'2006-02-15 05:05:03'),(127,763,'2006-02-15 05:05:03'),(127,771,'2006-02-15 05:05:03'),(127,791,'2006-02-15 05:05:03'),(127,819,'2006-02-15 05:05:03'),(127,839,'2006-02-15 05:05:03'),(127,846,'2006-02-15 05:05:03'),(127,911,'2006-02-15 05:05:03'),(127,953,'2006-02-15 05:05:03'),(127,970,'2006-02-15 05:05:03'),(128,26,'2006-02-15 05:05:03'),(128,82,'2006-02-15 05:05:03'),(128,119,'2006-02-15 05:05:03'),(128,168,'2006-02-15 05:05:03'),(128,212,'2006-02-15 05:05:03'),(128,238,'2006-02-15 05:05:03'),(128,299,'2006-02-15 05:05:03'),(128,312,'2006-02-15 05:05:03'),(128,326,'2006-02-15 05:05:03'),(128,336,'2006-02-15 05:05:03'),(128,345,'2006-02-15 05:05:03'),(128,407,'2006-02-15 05:05:03'),(128,462,'2006-02-15 05:05:03'),(128,485,'2006-02-15 05:05:03'),(128,516,'2006-02-15 05:05:03'),(128,564,'2006-02-15 05:05:03'),(128,614,'2006-02-15 05:05:03'),(128,650,'2006-02-15 05:05:03'),(128,665,'2006-02-15 05:05:03'),(128,671,'2006-02-15 05:05:03'),(128,693,'2006-02-15 05:05:03'),(128,696,'2006-02-15 05:05:03'),(128,759,'2006-02-15 05:05:03'),(128,774,'2006-02-15 05:05:03'),(128,814,'2006-02-15 05:05:03'),(128,899,'2006-02-15 05:05:03'),(128,912,'2006-02-15 05:05:03'),(128,944,'2006-02-15 05:05:03'),(128,949,'2006-02-15 05:05:03'),(128,965,'2006-02-15 05:05:03'),(129,56,'2006-02-15 05:05:03'),(129,89,'2006-02-15 05:05:03'),(129,101,'2006-02-15 05:05:03'),(129,166,'2006-02-15 05:05:03'),(129,202,'2006-02-15 05:05:03'),(129,230,'2006-02-15 05:05:03'),(129,247,'2006-02-15 05:05:03'),(129,249,'2006-02-15 05:05:03'),(129,348,'2006-02-15 05:05:03'),(129,367,'2006-02-15 05:05:03'),(129,391,'2006-02-15 05:05:03'),(129,418,'2006-02-15 05:05:03'),(129,431,'2006-02-15 05:05:03'),(129,452,'2006-02-15 05:05:03'),(129,471,'2006-02-15 05:05:03'),(129,520,'2006-02-15 05:05:03'),(129,597,'2006-02-15 05:05:03'),(129,602,'2006-02-15 05:05:03'),(129,640,'2006-02-15 05:05:03'),(129,669,'2006-02-15 05:05:03'),(129,684,'2006-02-15 05:05:03'),(129,705,'2006-02-15 05:05:03'),(129,805,'2006-02-15 05:05:03'),(129,826,'2006-02-15 05:05:03'),(129,834,'2006-02-15 05:05:03'),(129,857,'2006-02-15 05:05:03'),(129,910,'2006-02-15 05:05:03'),(129,920,'2006-02-15 05:05:03'),(129,938,'2006-02-15 05:05:03'),(129,962,'2006-02-15 05:05:03'),(130,9,'2006-02-15 05:05:03'),(130,26,'2006-02-15 05:05:03'),(130,37,'2006-02-15 05:05:03'),(130,43,'2006-02-15 05:05:03'),(130,49,'2006-02-15 05:05:03'),(130,57,'2006-02-15 05:05:03'),(130,107,'2006-02-15 05:05:03'),(130,112,'2006-02-15 05:05:03'),(130,208,'2006-02-15 05:05:03'),(130,326,'2006-02-15 05:05:03'),(130,375,'2006-02-15 05:05:03'),(130,416,'2006-02-15 05:05:03'),(130,431,'2006-02-15 05:05:03'),(130,452,'2006-02-15 05:05:03'),(130,453,'2006-02-15 05:05:03'),(130,478,'2006-02-15 05:05:03'),(130,507,'2006-02-15 05:05:03'),(130,525,'2006-02-15 05:05:03'),(130,549,'2006-02-15 05:05:03'),(130,592,'2006-02-15 05:05:03'),(130,702,'2006-02-15 05:05:03'),(130,725,'2006-02-15 05:05:03'),(130,764,'2006-02-15 05:05:03'),(130,809,'2006-02-15 05:05:03'),(130,869,'2006-02-15 05:05:03'),(130,930,'2006-02-15 05:05:03'),(130,981,'2006-02-15 05:05:03'),(131,48,'2006-02-15 05:05:03'),(131,66,'2006-02-15 05:05:03'),(131,94,'2006-02-15 05:05:03'),(131,120,'2006-02-15 05:05:03'),(131,147,'2006-02-15 05:05:03'),(131,206,'2006-02-15 05:05:03'),(131,320,'2006-02-15 05:05:03'),(131,383,'2006-02-15 05:05:03'),(131,432,'2006-02-15 05:05:03'),(131,436,'2006-02-15 05:05:03'),(131,450,'2006-02-15 05:05:03'),(131,479,'2006-02-15 05:05:03'),(131,494,'2006-02-15 05:05:03'),(131,515,'2006-02-15 05:05:03'),(131,539,'2006-02-15 05:05:03'),(131,590,'2006-02-15 05:05:03'),(131,647,'2006-02-15 05:05:03'),(131,693,'2006-02-15 05:05:03'),(131,713,'2006-02-15 05:05:03'),(131,770,'2006-02-15 05:05:03'),(131,798,'2006-02-15 05:05:03'),(131,809,'2006-02-15 05:05:03'),(131,875,'2006-02-15 05:05:03'),(131,881,'2006-02-15 05:05:03'),(131,921,'2006-02-15 05:05:03'),(132,81,'2006-02-15 05:05:03'),(132,82,'2006-02-15 05:05:03'),(132,133,'2006-02-15 05:05:03'),(132,156,'2006-02-15 05:05:03'),(132,162,'2006-02-15 05:05:03'),(132,311,'2006-02-15 05:05:03'),(132,345,'2006-02-15 05:05:03'),(132,377,'2006-02-15 05:05:03'),(132,410,'2006-02-15 05:05:03'),(132,538,'2006-02-15 05:05:03'),(132,562,'2006-02-15 05:05:03'),(132,586,'2006-02-15 05:05:03'),(132,626,'2006-02-15 05:05:03'),(132,637,'2006-02-15 05:05:03'),(132,698,'2006-02-15 05:05:03'),(132,756,'2006-02-15 05:05:03'),(132,806,'2006-02-15 05:05:03'),(132,897,'2006-02-15 05:05:03'),(132,899,'2006-02-15 05:05:03'),(132,904,'2006-02-15 05:05:03'),(132,930,'2006-02-15 05:05:03'),(132,987,'2006-02-15 05:05:03'),(133,7,'2006-02-15 05:05:03'),(133,51,'2006-02-15 05:05:03'),(133,133,'2006-02-15 05:05:03'),(133,172,'2006-02-15 05:05:03'),(133,210,'2006-02-15 05:05:03'),(133,270,'2006-02-15 05:05:03'),(133,280,'2006-02-15 05:05:03'),(133,286,'2006-02-15 05:05:03'),(133,338,'2006-02-15 05:05:03'),(133,342,'2006-02-15 05:05:03'),(133,351,'2006-02-15 05:05:03'),(133,368,'2006-02-15 05:05:03'),(133,385,'2006-02-15 05:05:03'),(133,390,'2006-02-15 05:05:03'),(133,397,'2006-02-15 05:05:03'),(133,410,'2006-02-15 05:05:03'),(133,452,'2006-02-15 05:05:03'),(133,463,'2006-02-15 05:05:03'),(133,514,'2006-02-15 05:05:03'),(133,588,'2006-02-15 05:05:03'),(133,594,'2006-02-15 05:05:03'),(133,635,'2006-02-15 05:05:03'),(133,652,'2006-02-15 05:05:03'),(133,727,'2006-02-15 05:05:03'),(133,806,'2006-02-15 05:05:03'),(133,868,'2006-02-15 05:05:03'),(133,882,'2006-02-15 05:05:03'),(133,894,'2006-02-15 05:05:03'),(133,933,'2006-02-15 05:05:03'),(133,952,'2006-02-15 05:05:03'),(134,132,'2006-02-15 05:05:03'),(134,145,'2006-02-15 05:05:03'),(134,161,'2006-02-15 05:05:03'),(134,219,'2006-02-15 05:05:03'),(134,243,'2006-02-15 05:05:03'),(134,250,'2006-02-15 05:05:03'),(134,278,'2006-02-15 05:05:03'),(134,341,'2006-02-15 05:05:03'),(134,386,'2006-02-15 05:05:03'),(134,413,'2006-02-15 05:05:03'),(134,558,'2006-02-15 05:05:03'),(134,588,'2006-02-15 05:05:03'),(134,624,'2006-02-15 05:05:03'),(134,655,'2006-02-15 05:05:03'),(134,683,'2006-02-15 05:05:03'),(134,690,'2006-02-15 05:05:03'),(134,861,'2006-02-15 05:05:03'),(134,896,'2006-02-15 05:05:03'),(134,897,'2006-02-15 05:05:03'),(134,915,'2006-02-15 05:05:03'),(134,927,'2006-02-15 05:05:03'),(134,936,'2006-02-15 05:05:03'),(135,35,'2006-02-15 05:05:03'),(135,41,'2006-02-15 05:05:03'),(135,65,'2006-02-15 05:05:03'),(135,88,'2006-02-15 05:05:03'),(135,170,'2006-02-15 05:05:03'),(135,269,'2006-02-15 05:05:03'),(135,320,'2006-02-15 05:05:03'),(135,353,'2006-02-15 05:05:03'),(135,357,'2006-02-15 05:05:03'),(135,364,'2006-02-15 05:05:03'),(135,455,'2006-02-15 05:05:03'),(135,458,'2006-02-15 05:05:03'),(135,484,'2006-02-15 05:05:03'),(135,541,'2006-02-15 05:05:03'),(135,553,'2006-02-15 05:05:03'),(135,616,'2006-02-15 05:05:03'),(135,628,'2006-02-15 05:05:03'),(135,719,'2006-02-15 05:05:03'),(135,814,'2006-02-15 05:05:03'),(135,905,'2006-02-15 05:05:03'),(136,20,'2006-02-15 05:05:03'),(136,25,'2006-02-15 05:05:03'),(136,33,'2006-02-15 05:05:03'),(136,56,'2006-02-15 05:05:03'),(136,61,'2006-02-15 05:05:03'),(136,193,'2006-02-15 05:05:03'),(136,214,'2006-02-15 05:05:03'),(136,229,'2006-02-15 05:05:03'),(136,243,'2006-02-15 05:05:03'),(136,256,'2006-02-15 05:05:03'),(136,262,'2006-02-15 05:05:03'),(136,271,'2006-02-15 05:05:03'),(136,288,'2006-02-15 05:05:03'),(136,300,'2006-02-15 05:05:03'),(136,364,'2006-02-15 05:05:03'),(136,401,'2006-02-15 05:05:03'),(136,414,'2006-02-15 05:05:03'),(136,420,'2006-02-15 05:05:03'),(136,474,'2006-02-15 05:05:03'),(136,485,'2006-02-15 05:05:03'),(136,542,'2006-02-15 05:05:03'),(136,552,'2006-02-15 05:05:03'),(136,620,'2006-02-15 05:05:03'),(136,649,'2006-02-15 05:05:03'),(136,686,'2006-02-15 05:05:03'),(136,781,'2006-02-15 05:05:03'),(136,806,'2006-02-15 05:05:03'),(136,808,'2006-02-15 05:05:03'),(136,818,'2006-02-15 05:05:03'),(136,842,'2006-02-15 05:05:03'),(136,933,'2006-02-15 05:05:03'),(136,993,'2006-02-15 05:05:03'),(137,6,'2006-02-15 05:05:03'),(137,14,'2006-02-15 05:05:03'),(137,56,'2006-02-15 05:05:03'),(137,96,'2006-02-15 05:05:03'),(137,160,'2006-02-15 05:05:03'),(137,224,'2006-02-15 05:05:03'),(137,249,'2006-02-15 05:05:03'),(137,254,'2006-02-15 05:05:03'),(137,263,'2006-02-15 05:05:03'),(137,268,'2006-02-15 05:05:03'),(137,304,'2006-02-15 05:05:03'),(137,390,'2006-02-15 05:05:03'),(137,410,'2006-02-15 05:05:03'),(137,433,'2006-02-15 05:05:03'),(137,446,'2006-02-15 05:05:03'),(137,489,'2006-02-15 05:05:03'),(137,530,'2006-02-15 05:05:03'),(137,564,'2006-02-15 05:05:03'),(137,603,'2006-02-15 05:05:03'),(137,610,'2006-02-15 05:05:03'),(137,688,'2006-02-15 05:05:03'),(137,703,'2006-02-15 05:05:03'),(137,745,'2006-02-15 05:05:03'),(137,758,'2006-02-15 05:05:03'),(137,832,'2006-02-15 05:05:03'),(137,841,'2006-02-15 05:05:03'),(137,917,'2006-02-15 05:05:03'),(138,8,'2006-02-15 05:05:03'),(138,52,'2006-02-15 05:05:03'),(138,61,'2006-02-15 05:05:03'),(138,125,'2006-02-15 05:05:03'),(138,157,'2006-02-15 05:05:03'),(138,214,'2006-02-15 05:05:03'),(138,258,'2006-02-15 05:05:03'),(138,376,'2006-02-15 05:05:03'),(138,403,'2006-02-15 05:05:03'),(138,446,'2006-02-15 05:05:03'),(138,453,'2006-02-15 05:05:03'),(138,508,'2006-02-15 05:05:03'),(138,553,'2006-02-15 05:05:03'),(138,561,'2006-02-15 05:05:03'),(138,583,'2006-02-15 05:05:03'),(138,627,'2006-02-15 05:05:03'),(138,639,'2006-02-15 05:05:03'),(138,695,'2006-02-15 05:05:03'),(138,747,'2006-02-15 05:05:03'),(138,879,'2006-02-15 05:05:03'),(138,885,'2006-02-15 05:05:03'),(138,923,'2006-02-15 05:05:03'),(138,970,'2006-02-15 05:05:03'),(138,989,'2006-02-15 05:05:03'),(139,20,'2006-02-15 05:05:03'),(139,35,'2006-02-15 05:05:03'),(139,57,'2006-02-15 05:05:03'),(139,74,'2006-02-15 05:05:03'),(139,90,'2006-02-15 05:05:03'),(139,107,'2006-02-15 05:05:03'),(139,155,'2006-02-15 05:05:03'),(139,170,'2006-02-15 05:05:03'),(139,181,'2006-02-15 05:05:03'),(139,200,'2006-02-15 05:05:03'),(139,229,'2006-02-15 05:05:03'),(139,233,'2006-02-15 05:05:03'),(139,261,'2006-02-15 05:05:03'),(139,262,'2006-02-15 05:05:03'),(139,266,'2006-02-15 05:05:03'),(139,282,'2006-02-15 05:05:03'),(139,284,'2006-02-15 05:05:03'),(139,373,'2006-02-15 05:05:03'),(139,447,'2006-02-15 05:05:03'),(139,489,'2006-02-15 05:05:03'),(139,529,'2006-02-15 05:05:03'),(139,540,'2006-02-15 05:05:03'),(139,570,'2006-02-15 05:05:03'),(139,602,'2006-02-15 05:05:03'),(139,605,'2006-02-15 05:05:03'),(139,636,'2006-02-15 05:05:03'),(139,691,'2006-02-15 05:05:03'),(139,706,'2006-02-15 05:05:03'),(139,719,'2006-02-15 05:05:03'),(139,744,'2006-02-15 05:05:03'),(139,746,'2006-02-15 05:05:03'),(139,862,'2006-02-15 05:05:03'),(139,892,'2006-02-15 05:05:03'),(140,27,'2006-02-15 05:05:03'),(140,77,'2006-02-15 05:05:03'),(140,112,'2006-02-15 05:05:03'),(140,135,'2006-02-15 05:05:03'),(140,185,'2006-02-15 05:05:03'),(140,258,'2006-02-15 05:05:03'),(140,370,'2006-02-15 05:05:03'),(140,373,'2006-02-15 05:05:03'),(140,498,'2006-02-15 05:05:03'),(140,509,'2006-02-15 05:05:03'),(140,576,'2006-02-15 05:05:03'),(140,587,'2006-02-15 05:05:03'),(140,599,'2006-02-15 05:05:03'),(140,608,'2006-02-15 05:05:03'),(140,647,'2006-02-15 05:05:03'),(140,665,'2006-02-15 05:05:03'),(140,670,'2006-02-15 05:05:03'),(140,693,'2006-02-15 05:05:03'),(140,702,'2006-02-15 05:05:03'),(140,729,'2006-02-15 05:05:03'),(140,730,'2006-02-15 05:05:03'),(140,731,'2006-02-15 05:05:03'),(140,736,'2006-02-15 05:05:03'),(140,742,'2006-02-15 05:05:03'),(140,778,'2006-02-15 05:05:03'),(140,820,'2006-02-15 05:05:03'),(140,830,'2006-02-15 05:05:03'),(140,835,'2006-02-15 05:05:03'),(140,857,'2006-02-15 05:05:03'),(140,923,'2006-02-15 05:05:03'),(140,934,'2006-02-15 05:05:03'),(140,999,'2006-02-15 05:05:03'),(141,43,'2006-02-15 05:05:03'),(141,67,'2006-02-15 05:05:03'),(141,188,'2006-02-15 05:05:03'),(141,191,'2006-02-15 05:05:03'),(141,207,'2006-02-15 05:05:03'),(141,223,'2006-02-15 05:05:03'),(141,341,'2006-02-15 05:05:03'),(141,358,'2006-02-15 05:05:03'),(141,380,'2006-02-15 05:05:03'),(141,395,'2006-02-15 05:05:03'),(141,467,'2006-02-15 05:05:03'),(141,491,'2006-02-15 05:05:03'),(141,589,'2006-02-15 05:05:03'),(141,607,'2006-02-15 05:05:03'),(141,673,'2006-02-15 05:05:03'),(141,740,'2006-02-15 05:05:03'),(141,752,'2006-02-15 05:05:03'),(141,768,'2006-02-15 05:05:03'),(141,772,'2006-02-15 05:05:03'),(141,787,'2006-02-15 05:05:03'),(141,821,'2006-02-15 05:05:03'),(141,829,'2006-02-15 05:05:03'),(141,840,'2006-02-15 05:05:03'),(141,849,'2006-02-15 05:05:03'),(141,862,'2006-02-15 05:05:03'),(141,863,'2006-02-15 05:05:03'),(141,909,'2006-02-15 05:05:03'),(141,992,'2006-02-15 05:05:03'),(142,10,'2006-02-15 05:05:03'),(142,18,'2006-02-15 05:05:03'),(142,107,'2006-02-15 05:05:03'),(142,139,'2006-02-15 05:05:03'),(142,186,'2006-02-15 05:05:03'),(142,199,'2006-02-15 05:05:03'),(142,248,'2006-02-15 05:05:03'),(142,328,'2006-02-15 05:05:03'),(142,350,'2006-02-15 05:05:03'),(142,371,'2006-02-15 05:05:03'),(142,470,'2006-02-15 05:05:03'),(142,481,'2006-02-15 05:05:03'),(142,494,'2006-02-15 05:05:03'),(142,501,'2006-02-15 05:05:03'),(142,504,'2006-02-15 05:05:03'),(142,540,'2006-02-15 05:05:03'),(142,554,'2006-02-15 05:05:03'),(142,575,'2006-02-15 05:05:03'),(142,608,'2006-02-15 05:05:03'),(142,710,'2006-02-15 05:05:03'),(142,712,'2006-02-15 05:05:03'),(142,735,'2006-02-15 05:05:03'),(142,759,'2006-02-15 05:05:03'),(142,794,'2006-02-15 05:05:03'),(142,842,'2006-02-15 05:05:03'),(142,859,'2006-02-15 05:05:03'),(142,863,'2006-02-15 05:05:03'),(142,875,'2006-02-15 05:05:03'),(142,906,'2006-02-15 05:05:03'),(142,914,'2006-02-15 05:05:03'),(142,999,'2006-02-15 05:05:03'),(143,47,'2006-02-15 05:05:03'),(143,79,'2006-02-15 05:05:03'),(143,141,'2006-02-15 05:05:03'),(143,175,'2006-02-15 05:05:03'),(143,232,'2006-02-15 05:05:03'),(143,239,'2006-02-15 05:05:03'),(143,316,'2006-02-15 05:05:03'),(143,339,'2006-02-15 05:05:03'),(143,361,'2006-02-15 05:05:03'),(143,386,'2006-02-15 05:05:03'),(143,404,'2006-02-15 05:05:03'),(143,457,'2006-02-15 05:05:03'),(143,485,'2006-02-15 05:05:03'),(143,497,'2006-02-15 05:05:03'),(143,560,'2006-02-15 05:05:03'),(143,576,'2006-02-15 05:05:03'),(143,603,'2006-02-15 05:05:03'),(143,613,'2006-02-15 05:05:03'),(143,659,'2006-02-15 05:05:03'),(143,660,'2006-02-15 05:05:03'),(143,680,'2006-02-15 05:05:03'),(143,687,'2006-02-15 05:05:03'),(143,690,'2006-02-15 05:05:03'),(143,706,'2006-02-15 05:05:03'),(143,792,'2006-02-15 05:05:03'),(143,821,'2006-02-15 05:05:03'),(143,830,'2006-02-15 05:05:03'),(143,872,'2006-02-15 05:05:03'),(143,878,'2006-02-15 05:05:03'),(143,906,'2006-02-15 05:05:03'),(143,958,'2006-02-15 05:05:03'),(144,18,'2006-02-15 05:05:03'),(144,67,'2006-02-15 05:05:03'),(144,79,'2006-02-15 05:05:03'),(144,90,'2006-02-15 05:05:03'),(144,99,'2006-02-15 05:05:03'),(144,105,'2006-02-15 05:05:03'),(144,123,'2006-02-15 05:05:03'),(144,125,'2006-02-15 05:05:03'),(144,127,'2006-02-15 05:05:03'),(144,130,'2006-02-15 05:05:03'),(144,135,'2006-02-15 05:05:03'),(144,164,'2006-02-15 05:05:03'),(144,184,'2006-02-15 05:05:03'),(144,216,'2006-02-15 05:05:03'),(144,228,'2006-02-15 05:05:03'),(144,260,'2006-02-15 05:05:03'),(144,272,'2006-02-15 05:05:03'),(144,291,'2006-02-15 05:05:03'),(144,293,'2006-02-15 05:05:03'),(144,312,'2006-02-15 05:05:03'),(144,393,'2006-02-15 05:05:03'),(144,396,'2006-02-15 05:05:03'),(144,473,'2006-02-15 05:05:03'),(144,504,'2006-02-15 05:05:03'),(144,540,'2006-02-15 05:05:03'),(144,599,'2006-02-15 05:05:03'),(144,668,'2006-02-15 05:05:03'),(144,702,'2006-02-15 05:05:03'),(144,753,'2006-02-15 05:05:03'),(144,762,'2006-02-15 05:05:03'),(144,776,'2006-02-15 05:05:03'),(144,785,'2006-02-15 05:05:03'),(144,845,'2006-02-15 05:05:03'),(144,894,'2006-02-15 05:05:03'),(144,953,'2006-02-15 05:05:03'),(145,39,'2006-02-15 05:05:03'),(145,109,'2006-02-15 05:05:03'),(145,120,'2006-02-15 05:05:03'),(145,154,'2006-02-15 05:05:03'),(145,155,'2006-02-15 05:05:03'),(145,243,'2006-02-15 05:05:03'),(145,293,'2006-02-15 05:05:03'),(145,402,'2006-02-15 05:05:03'),(145,409,'2006-02-15 05:05:03'),(145,457,'2006-02-15 05:05:03'),(145,475,'2006-02-15 05:05:03'),(145,487,'2006-02-15 05:05:03'),(145,494,'2006-02-15 05:05:03'),(145,527,'2006-02-15 05:05:03'),(145,592,'2006-02-15 05:05:03'),(145,625,'2006-02-15 05:05:03'),(145,629,'2006-02-15 05:05:03'),(145,641,'2006-02-15 05:05:03'),(145,661,'2006-02-15 05:05:03'),(145,664,'2006-02-15 05:05:03'),(145,692,'2006-02-15 05:05:03'),(145,713,'2006-02-15 05:05:03'),(145,726,'2006-02-15 05:05:03'),(145,748,'2006-02-15 05:05:03'),(145,822,'2006-02-15 05:05:03'),(145,893,'2006-02-15 05:05:03'),(145,923,'2006-02-15 05:05:03'),(145,953,'2006-02-15 05:05:03'),(146,12,'2006-02-15 05:05:03'),(146,16,'2006-02-15 05:05:03'),(146,33,'2006-02-15 05:05:03'),(146,117,'2006-02-15 05:05:03'),(146,177,'2006-02-15 05:05:03'),(146,191,'2006-02-15 05:05:03'),(146,197,'2006-02-15 05:05:03'),(146,207,'2006-02-15 05:05:03'),(146,218,'2006-02-15 05:05:03'),(146,278,'2006-02-15 05:05:03'),(146,296,'2006-02-15 05:05:03'),(146,314,'2006-02-15 05:05:03'),(146,320,'2006-02-15 05:05:03'),(146,372,'2006-02-15 05:05:03'),(146,384,'2006-02-15 05:05:03'),(146,402,'2006-02-15 05:05:03'),(146,410,'2006-02-15 05:05:03'),(146,427,'2006-02-15 05:05:03'),(146,429,'2006-02-15 05:05:03'),(146,512,'2006-02-15 05:05:03'),(146,514,'2006-02-15 05:05:03'),(146,571,'2006-02-15 05:05:03'),(146,591,'2006-02-15 05:05:03'),(146,720,'2006-02-15 05:05:03'),(146,731,'2006-02-15 05:05:03'),(146,734,'2006-02-15 05:05:03'),(146,871,'2006-02-15 05:05:03'),(146,909,'2006-02-15 05:05:03'),(146,922,'2006-02-15 05:05:03'),(146,945,'2006-02-15 05:05:03'),(146,955,'2006-02-15 05:05:03'),(146,966,'2006-02-15 05:05:03'),(146,969,'2006-02-15 05:05:03'),(147,4,'2006-02-15 05:05:03'),(147,85,'2006-02-15 05:05:03'),(147,131,'2006-02-15 05:05:03'),(147,139,'2006-02-15 05:05:03'),(147,145,'2006-02-15 05:05:03'),(147,178,'2006-02-15 05:05:03'),(147,251,'2006-02-15 05:05:03'),(147,254,'2006-02-15 05:05:03'),(147,295,'2006-02-15 05:05:03'),(147,298,'2006-02-15 05:05:03'),(147,305,'2006-02-15 05:05:03'),(147,310,'2006-02-15 05:05:03'),(147,318,'2006-02-15 05:05:03'),(147,333,'2006-02-15 05:05:03'),(147,341,'2006-02-15 05:05:03'),(147,351,'2006-02-15 05:05:03'),(147,394,'2006-02-15 05:05:03'),(147,402,'2006-02-15 05:05:03'),(147,405,'2006-02-15 05:05:03'),(147,410,'2006-02-15 05:05:03'),(147,431,'2006-02-15 05:05:03'),(147,443,'2006-02-15 05:05:03'),(147,508,'2006-02-15 05:05:03'),(147,554,'2006-02-15 05:05:03'),(147,563,'2006-02-15 05:05:03'),(147,649,'2006-02-15 05:05:03'),(147,688,'2006-02-15 05:05:03'),(147,708,'2006-02-15 05:05:03'),(147,864,'2006-02-15 05:05:03'),(147,957,'2006-02-15 05:05:03'),(147,987,'2006-02-15 05:05:03'),(148,27,'2006-02-15 05:05:03'),(148,57,'2006-02-15 05:05:03'),(148,133,'2006-02-15 05:05:03'),(148,149,'2006-02-15 05:05:03'),(148,226,'2006-02-15 05:05:03'),(148,342,'2006-02-15 05:05:03'),(148,368,'2006-02-15 05:05:03'),(148,422,'2006-02-15 05:05:03'),(148,468,'2006-02-15 05:05:03'),(148,633,'2006-02-15 05:05:03'),(148,718,'2006-02-15 05:05:03'),(148,768,'2006-02-15 05:05:03'),(148,772,'2006-02-15 05:05:03'),(148,792,'2006-02-15 05:05:03'),(149,53,'2006-02-15 05:05:03'),(149,72,'2006-02-15 05:05:03'),(149,95,'2006-02-15 05:05:03'),(149,118,'2006-02-15 05:05:03'),(149,139,'2006-02-15 05:05:03'),(149,146,'2006-02-15 05:05:03'),(149,153,'2006-02-15 05:05:03'),(149,159,'2006-02-15 05:05:03'),(149,169,'2006-02-15 05:05:03'),(149,178,'2006-02-15 05:05:03'),(149,188,'2006-02-15 05:05:03'),(149,193,'2006-02-15 05:05:03'),(149,339,'2006-02-15 05:05:03'),(149,354,'2006-02-15 05:05:03'),(149,362,'2006-02-15 05:05:03'),(149,365,'2006-02-15 05:05:03'),(149,458,'2006-02-15 05:05:03'),(149,631,'2006-02-15 05:05:03'),(149,670,'2006-02-15 05:05:03'),(149,685,'2006-02-15 05:05:03'),(149,761,'2006-02-15 05:05:03'),(149,782,'2006-02-15 05:05:03'),(149,810,'2006-02-15 05:05:03'),(149,811,'2006-02-15 05:05:03'),(149,899,'2006-02-15 05:05:03'),(149,905,'2006-02-15 05:05:03'),(149,913,'2006-02-15 05:05:03'),(149,921,'2006-02-15 05:05:03'),(149,947,'2006-02-15 05:05:03'),(149,949,'2006-02-15 05:05:03'),(149,992,'2006-02-15 05:05:03'),(150,23,'2006-02-15 05:05:03'),(150,63,'2006-02-15 05:05:03'),(150,75,'2006-02-15 05:05:03'),(150,94,'2006-02-15 05:05:03'),(150,105,'2006-02-15 05:05:03'),(150,168,'2006-02-15 05:05:03'),(150,190,'2006-02-15 05:05:03'),(150,206,'2006-02-15 05:05:03'),(150,233,'2006-02-15 05:05:03'),(150,270,'2006-02-15 05:05:03'),(150,285,'2006-02-15 05:05:03'),(150,306,'2006-02-15 05:05:03'),(150,386,'2006-02-15 05:05:03'),(150,433,'2006-02-15 05:05:03'),(150,446,'2006-02-15 05:05:03'),(150,447,'2006-02-15 05:05:03'),(150,468,'2006-02-15 05:05:03'),(150,508,'2006-02-15 05:05:03'),(150,542,'2006-02-15 05:05:03'),(150,551,'2006-02-15 05:05:03'),(150,629,'2006-02-15 05:05:03'),(150,647,'2006-02-15 05:05:03'),(150,672,'2006-02-15 05:05:03'),(150,697,'2006-02-15 05:05:03'),(150,728,'2006-02-15 05:05:03'),(150,777,'2006-02-15 05:05:03'),(150,854,'2006-02-15 05:05:03'),(150,873,'2006-02-15 05:05:03'),(150,880,'2006-02-15 05:05:03'),(150,887,'2006-02-15 05:05:03'),(150,889,'2006-02-15 05:05:03'),(150,892,'2006-02-15 05:05:03'),(150,953,'2006-02-15 05:05:03'),(150,962,'2006-02-15 05:05:03'),(151,131,'2006-02-15 05:05:03'),(151,144,'2006-02-15 05:05:03'),(151,167,'2006-02-15 05:05:03'),(151,170,'2006-02-15 05:05:03'),(151,217,'2006-02-15 05:05:03'),(151,232,'2006-02-15 05:05:03'),(151,342,'2006-02-15 05:05:03'),(151,367,'2006-02-15 05:05:03'),(151,370,'2006-02-15 05:05:03'),(151,382,'2006-02-15 05:05:03'),(151,451,'2006-02-15 05:05:03'),(151,463,'2006-02-15 05:05:03'),(151,482,'2006-02-15 05:05:03'),(151,501,'2006-02-15 05:05:03'),(151,527,'2006-02-15 05:05:03'),(151,539,'2006-02-15 05:05:03'),(151,570,'2006-02-15 05:05:03'),(151,574,'2006-02-15 05:05:03'),(151,634,'2006-02-15 05:05:03'),(151,658,'2006-02-15 05:05:03'),(151,665,'2006-02-15 05:05:03'),(151,703,'2006-02-15 05:05:03'),(151,880,'2006-02-15 05:05:03'),(151,892,'2006-02-15 05:05:03'),(151,895,'2006-02-15 05:05:03'),(151,989,'2006-02-15 05:05:03'),(152,59,'2006-02-15 05:05:03'),(152,153,'2006-02-15 05:05:03'),(152,217,'2006-02-15 05:05:03'),(152,248,'2006-02-15 05:05:03'),(152,318,'2006-02-15 05:05:03'),(152,332,'2006-02-15 05:05:03'),(152,475,'2006-02-15 05:05:03'),(152,476,'2006-02-15 05:05:03'),(152,578,'2006-02-15 05:05:03'),(152,607,'2006-02-15 05:05:03'),(152,611,'2006-02-15 05:05:03'),(152,615,'2006-02-15 05:05:03'),(152,674,'2006-02-15 05:05:03'),(152,680,'2006-02-15 05:05:03'),(152,729,'2006-02-15 05:05:03'),(152,768,'2006-02-15 05:05:03'),(152,821,'2006-02-15 05:05:03'),(152,846,'2006-02-15 05:05:03'),(152,891,'2006-02-15 05:05:03'),(152,898,'2006-02-15 05:05:03'),(152,927,'2006-02-15 05:05:03'),(152,964,'2006-02-15 05:05:03'),(152,968,'2006-02-15 05:05:03'),(153,47,'2006-02-15 05:05:03'),(153,64,'2006-02-15 05:05:03'),(153,136,'2006-02-15 05:05:03'),(153,180,'2006-02-15 05:05:03'),(153,203,'2006-02-15 05:05:03'),(153,231,'2006-02-15 05:05:03'),(153,444,'2006-02-15 05:05:03'),(153,476,'2006-02-15 05:05:03'),(153,480,'2006-02-15 05:05:03'),(153,486,'2006-02-15 05:05:03'),(153,536,'2006-02-15 05:05:03'),(153,627,'2006-02-15 05:05:03'),(153,732,'2006-02-15 05:05:03'),(153,756,'2006-02-15 05:05:03'),(153,766,'2006-02-15 05:05:03'),(153,817,'2006-02-15 05:05:03'),(153,847,'2006-02-15 05:05:03'),(153,919,'2006-02-15 05:05:03'),(153,938,'2006-02-15 05:05:03'),(153,988,'2006-02-15 05:05:03'),(154,27,'2006-02-15 05:05:03'),(154,111,'2006-02-15 05:05:03'),(154,141,'2006-02-15 05:05:03'),(154,158,'2006-02-15 05:05:03'),(154,169,'2006-02-15 05:05:03'),(154,170,'2006-02-15 05:05:03'),(154,193,'2006-02-15 05:05:03'),(154,208,'2006-02-15 05:05:03'),(154,274,'2006-02-15 05:05:03'),(154,276,'2006-02-15 05:05:03'),(154,282,'2006-02-15 05:05:03'),(154,299,'2006-02-15 05:05:03'),(154,314,'2006-02-15 05:05:03'),(154,396,'2006-02-15 05:05:03'),(154,399,'2006-02-15 05:05:03'),(154,421,'2006-02-15 05:05:03'),(154,440,'2006-02-15 05:05:03'),(154,467,'2006-02-15 05:05:03'),(154,474,'2006-02-15 05:05:03'),(154,489,'2006-02-15 05:05:03'),(154,588,'2006-02-15 05:05:03'),(154,602,'2006-02-15 05:05:03'),(154,680,'2006-02-15 05:05:03'),(154,698,'2006-02-15 05:05:03'),(154,802,'2006-02-15 05:05:03'),(154,842,'2006-02-15 05:05:03'),(154,954,'2006-02-15 05:05:03'),(154,988,'2006-02-15 05:05:03'),(155,20,'2006-02-15 05:05:03'),(155,67,'2006-02-15 05:05:03'),(155,128,'2006-02-15 05:05:03'),(155,153,'2006-02-15 05:05:03'),(155,220,'2006-02-15 05:05:03'),(155,249,'2006-02-15 05:05:03'),(155,303,'2006-02-15 05:05:03'),(155,312,'2006-02-15 05:05:03'),(155,359,'2006-02-15 05:05:03'),(155,361,'2006-02-15 05:05:03'),(155,383,'2006-02-15 05:05:03'),(155,387,'2006-02-15 05:05:03'),(155,407,'2006-02-15 05:05:03'),(155,427,'2006-02-15 05:05:03'),(155,459,'2006-02-15 05:05:03'),(155,513,'2006-02-15 05:05:03'),(155,584,'2006-02-15 05:05:03'),(155,590,'2006-02-15 05:05:03'),(155,630,'2006-02-15 05:05:03'),(155,688,'2006-02-15 05:05:03'),(155,757,'2006-02-15 05:05:03'),(155,768,'2006-02-15 05:05:03'),(155,785,'2006-02-15 05:05:03'),(155,849,'2006-02-15 05:05:03'),(155,885,'2006-02-15 05:05:03'),(155,890,'2006-02-15 05:05:03'),(155,941,'2006-02-15 05:05:03'),(155,966,'2006-02-15 05:05:03'),(155,987,'2006-02-15 05:05:03'),(155,997,'2006-02-15 05:05:03'),(155,1000,'2006-02-15 05:05:03'),(156,53,'2006-02-15 05:05:03'),(156,155,'2006-02-15 05:05:03'),(156,198,'2006-02-15 05:05:03'),(156,244,'2006-02-15 05:05:03'),(156,262,'2006-02-15 05:05:03'),(156,263,'2006-02-15 05:05:03'),(156,285,'2006-02-15 05:05:03'),(156,297,'2006-02-15 05:05:03'),(156,301,'2006-02-15 05:05:03'),(156,349,'2006-02-15 05:05:03'),(156,379,'2006-02-15 05:05:03'),(156,448,'2006-02-15 05:05:03'),(156,462,'2006-02-15 05:05:03'),(156,467,'2006-02-15 05:05:03'),(156,504,'2006-02-15 05:05:03'),(156,518,'2006-02-15 05:05:03'),(156,593,'2006-02-15 05:05:03'),(156,646,'2006-02-15 05:05:03'),(156,705,'2006-02-15 05:05:03'),(156,754,'2006-02-15 05:05:03'),(156,775,'2006-02-15 05:05:03'),(156,844,'2006-02-15 05:05:03'),(157,10,'2006-02-15 05:05:03'),(157,24,'2006-02-15 05:05:03'),(157,34,'2006-02-15 05:05:03'),(157,122,'2006-02-15 05:05:03'),(157,159,'2006-02-15 05:05:03'),(157,183,'2006-02-15 05:05:03'),(157,210,'2006-02-15 05:05:03'),(157,217,'2006-02-15 05:05:03'),(157,291,'2006-02-15 05:05:03'),(157,303,'2006-02-15 05:05:03'),(157,321,'2006-02-15 05:05:03'),(157,326,'2006-02-15 05:05:03'),(157,353,'2006-02-15 05:05:03'),(157,400,'2006-02-15 05:05:03'),(157,406,'2006-02-15 05:05:03'),(157,431,'2006-02-15 05:05:03'),(157,496,'2006-02-15 05:05:03'),(157,535,'2006-02-15 05:05:03'),(157,573,'2006-02-15 05:05:03'),(157,574,'2006-02-15 05:05:03'),(157,604,'2006-02-15 05:05:03'),(157,616,'2006-02-15 05:05:03'),(157,642,'2006-02-15 05:05:03'),(157,661,'2006-02-15 05:05:03'),(157,696,'2006-02-15 05:05:03'),(157,713,'2006-02-15 05:05:03'),(157,802,'2006-02-15 05:05:03'),(157,835,'2006-02-15 05:05:03'),(157,874,'2006-02-15 05:05:03'),(157,913,'2006-02-15 05:05:03'),(157,967,'2006-02-15 05:05:03'),(157,973,'2006-02-15 05:05:03'),(158,32,'2006-02-15 05:05:03'),(158,47,'2006-02-15 05:05:03'),(158,64,'2006-02-15 05:05:03'),(158,66,'2006-02-15 05:05:03'),(158,102,'2006-02-15 05:05:03'),(158,121,'2006-02-15 05:05:03'),(158,177,'2006-02-15 05:05:03'),(158,178,'2006-02-15 05:05:03'),(158,188,'2006-02-15 05:05:03'),(158,215,'2006-02-15 05:05:03'),(158,241,'2006-02-15 05:05:03'),(158,293,'2006-02-15 05:05:03'),(158,437,'2006-02-15 05:05:03'),(158,473,'2006-02-15 05:05:03'),(158,483,'2006-02-15 05:05:03'),(158,532,'2006-02-15 05:05:03'),(158,555,'2006-02-15 05:05:03'),(158,581,'2006-02-15 05:05:03'),(158,601,'2006-02-15 05:05:03'),(158,616,'2006-02-15 05:05:03'),(158,626,'2006-02-15 05:05:03'),(158,637,'2006-02-15 05:05:03'),(158,799,'2006-02-15 05:05:03'),(158,812,'2006-02-15 05:05:03'),(158,824,'2006-02-15 05:05:03'),(158,830,'2006-02-15 05:05:03'),(158,840,'2006-02-15 05:05:03'),(158,869,'2006-02-15 05:05:03'),(158,879,'2006-02-15 05:05:03'),(158,880,'2006-02-15 05:05:03'),(158,894,'2006-02-15 05:05:03'),(158,896,'2006-02-15 05:05:03'),(158,967,'2006-02-15 05:05:03'),(158,968,'2006-02-15 05:05:03'),(158,990,'2006-02-15 05:05:03'),(159,20,'2006-02-15 05:05:03'),(159,82,'2006-02-15 05:05:03'),(159,127,'2006-02-15 05:05:03'),(159,187,'2006-02-15 05:05:03'),(159,206,'2006-02-15 05:05:03'),(159,208,'2006-02-15 05:05:03'),(159,223,'2006-02-15 05:05:03'),(159,248,'2006-02-15 05:05:03'),(159,342,'2006-02-15 05:05:03'),(159,343,'2006-02-15 05:05:03'),(159,344,'2006-02-15 05:05:03'),(159,364,'2006-02-15 05:05:03'),(159,418,'2006-02-15 05:05:03'),(159,549,'2006-02-15 05:05:03'),(159,561,'2006-02-15 05:05:03'),(159,600,'2006-02-15 05:05:03'),(159,674,'2006-02-15 05:05:03'),(159,680,'2006-02-15 05:05:03'),(159,784,'2006-02-15 05:05:03'),(159,789,'2006-02-15 05:05:03'),(159,800,'2006-02-15 05:05:03'),(159,802,'2006-02-15 05:05:03'),(159,818,'2006-02-15 05:05:03'),(159,876,'2006-02-15 05:05:03'),(159,907,'2006-02-15 05:05:03'),(159,978,'2006-02-15 05:05:03'),(160,2,'2006-02-15 05:05:03'),(160,17,'2006-02-15 05:05:03'),(160,43,'2006-02-15 05:05:03'),(160,242,'2006-02-15 05:05:03'),(160,267,'2006-02-15 05:05:03'),(160,275,'2006-02-15 05:05:03'),(160,368,'2006-02-15 05:05:03'),(160,455,'2006-02-15 05:05:03'),(160,469,'2006-02-15 05:05:03'),(160,484,'2006-02-15 05:05:03'),(160,579,'2006-02-15 05:05:03'),(160,660,'2006-02-15 05:05:03'),(160,755,'2006-02-15 05:05:03'),(160,767,'2006-02-15 05:05:03'),(160,769,'2006-02-15 05:05:03'),(160,794,'2006-02-15 05:05:03'),(160,826,'2006-02-15 05:05:03'),(160,883,'2006-02-15 05:05:03'),(160,950,'2006-02-15 05:05:03'),(160,954,'2006-02-15 05:05:03'),(161,43,'2006-02-15 05:05:03'),(161,58,'2006-02-15 05:05:03'),(161,89,'2006-02-15 05:05:03'),(161,90,'2006-02-15 05:05:03'),(161,120,'2006-02-15 05:05:03'),(161,188,'2006-02-15 05:05:03'),(161,247,'2006-02-15 05:05:03'),(161,269,'2006-02-15 05:05:03'),(161,281,'2006-02-15 05:05:03'),(161,340,'2006-02-15 05:05:03'),(161,353,'2006-02-15 05:05:03'),(161,401,'2006-02-15 05:05:03'),(161,414,'2006-02-15 05:05:03'),(161,425,'2006-02-15 05:05:03'),(161,469,'2006-02-15 05:05:03'),(161,526,'2006-02-15 05:05:03'),(161,588,'2006-02-15 05:05:03'),(161,644,'2006-02-15 05:05:03'),(161,653,'2006-02-15 05:05:03'),(161,655,'2006-02-15 05:05:03'),(161,669,'2006-02-15 05:05:03'),(161,684,'2006-02-15 05:05:03'),(161,714,'2006-02-15 05:05:03'),(161,749,'2006-02-15 05:05:03'),(161,807,'2006-02-15 05:05:03'),(161,825,'2006-02-15 05:05:03'),(161,850,'2006-02-15 05:05:03'),(161,880,'2006-02-15 05:05:03'),(161,920,'2006-02-15 05:05:03'),(161,921,'2006-02-15 05:05:03'),(161,924,'2006-02-15 05:05:03'),(161,927,'2006-02-15 05:05:03'),(162,1,'2006-02-15 05:05:03'),(162,4,'2006-02-15 05:05:03'),(162,7,'2006-02-15 05:05:03'),(162,18,'2006-02-15 05:05:03'),(162,28,'2006-02-15 05:05:03'),(162,32,'2006-02-15 05:05:03'),(162,33,'2006-02-15 05:05:03'),(162,41,'2006-02-15 05:05:03'),(162,85,'2006-02-15 05:05:03'),(162,121,'2006-02-15 05:05:03'),(162,164,'2006-02-15 05:05:03'),(162,274,'2006-02-15 05:05:03'),(162,279,'2006-02-15 05:05:03'),(162,409,'2006-02-15 05:05:03'),(162,410,'2006-02-15 05:05:03'),(162,415,'2006-02-15 05:05:03'),(162,500,'2006-02-15 05:05:03'),(162,574,'2006-02-15 05:05:03'),(162,612,'2006-02-15 05:05:03'),(162,636,'2006-02-15 05:05:03'),(162,659,'2006-02-15 05:05:03'),(162,786,'2006-02-15 05:05:03'),(162,844,'2006-02-15 05:05:03'),(162,909,'2006-02-15 05:05:03'),(162,968,'2006-02-15 05:05:03'),(163,30,'2006-02-15 05:05:03'),(163,45,'2006-02-15 05:05:03'),(163,166,'2006-02-15 05:05:03'),(163,180,'2006-02-15 05:05:03'),(163,239,'2006-02-15 05:05:03'),(163,283,'2006-02-15 05:05:03'),(163,303,'2006-02-15 05:05:03'),(163,304,'2006-02-15 05:05:03'),(163,307,'2006-02-15 05:05:03'),(163,394,'2006-02-15 05:05:03'),(163,409,'2006-02-15 05:05:03'),(163,434,'2006-02-15 05:05:03'),(163,444,'2006-02-15 05:05:03'),(163,522,'2006-02-15 05:05:03'),(163,719,'2006-02-15 05:05:03'),(163,785,'2006-02-15 05:05:03'),(163,833,'2006-02-15 05:05:03'),(163,881,'2006-02-15 05:05:03'),(163,891,'2006-02-15 05:05:03'),(163,947,'2006-02-15 05:05:03'),(163,996,'2006-02-15 05:05:03'),(164,15,'2006-02-15 05:05:03'),(164,23,'2006-02-15 05:05:03'),(164,148,'2006-02-15 05:05:03'),(164,169,'2006-02-15 05:05:03'),(164,252,'2006-02-15 05:05:03'),(164,324,'2006-02-15 05:05:03'),(164,347,'2006-02-15 05:05:03'),(164,367,'2006-02-15 05:05:03'),(164,431,'2006-02-15 05:05:03'),(164,448,'2006-02-15 05:05:03'),(164,469,'2006-02-15 05:05:03'),(164,545,'2006-02-15 05:05:03'),(164,610,'2006-02-15 05:05:03'),(164,613,'2006-02-15 05:05:03'),(164,673,'2006-02-15 05:05:03'),(164,681,'2006-02-15 05:05:03'),(164,698,'2006-02-15 05:05:03'),(164,801,'2006-02-15 05:05:03'),(164,820,'2006-02-15 05:05:03'),(164,832,'2006-02-15 05:05:03'),(164,834,'2006-02-15 05:05:03'),(164,851,'2006-02-15 05:05:03'),(164,884,'2006-02-15 05:05:03'),(164,908,'2006-02-15 05:05:03'),(164,957,'2006-02-15 05:05:03'),(164,984,'2006-02-15 05:05:03'),(165,72,'2006-02-15 05:05:03'),(165,95,'2006-02-15 05:05:03'),(165,146,'2006-02-15 05:05:03'),(165,204,'2006-02-15 05:05:03'),(165,253,'2006-02-15 05:05:03'),(165,286,'2006-02-15 05:05:03'),(165,360,'2006-02-15 05:05:03'),(165,375,'2006-02-15 05:05:03'),(165,395,'2006-02-15 05:05:03'),(165,421,'2006-02-15 05:05:03'),(165,437,'2006-02-15 05:05:03'),(165,473,'2006-02-15 05:05:03'),(165,607,'2006-02-15 05:05:03'),(165,644,'2006-02-15 05:05:03'),(165,659,'2006-02-15 05:05:03'),(165,693,'2006-02-15 05:05:03'),(165,737,'2006-02-15 05:05:03'),(165,779,'2006-02-15 05:05:03'),(165,798,'2006-02-15 05:05:03'),(165,807,'2006-02-15 05:05:03'),(165,809,'2006-02-15 05:05:03'),(165,832,'2006-02-15 05:05:03'),(165,833,'2006-02-15 05:05:03'),(165,947,'2006-02-15 05:05:03'),(165,948,'2006-02-15 05:05:03'),(165,962,'2006-02-15 05:05:03'),(166,25,'2006-02-15 05:05:03'),(166,38,'2006-02-15 05:05:03'),(166,55,'2006-02-15 05:05:03'),(166,61,'2006-02-15 05:05:03'),(166,68,'2006-02-15 05:05:03'),(166,86,'2006-02-15 05:05:03'),(166,146,'2006-02-15 05:05:03'),(166,255,'2006-02-15 05:05:03'),(166,297,'2006-02-15 05:05:03'),(166,306,'2006-02-15 05:05:03'),(166,326,'2006-02-15 05:05:03'),(166,361,'2006-02-15 05:05:03'),(166,366,'2006-02-15 05:05:03'),(166,426,'2006-02-15 05:05:03'),(166,580,'2006-02-15 05:05:03'),(166,622,'2006-02-15 05:05:03'),(166,674,'2006-02-15 05:05:03'),(166,714,'2006-02-15 05:05:03'),(166,788,'2006-02-15 05:05:03'),(166,867,'2006-02-15 05:05:03'),(166,944,'2006-02-15 05:05:03'),(166,1000,'2006-02-15 05:05:03'),(167,17,'2006-02-15 05:05:03'),(167,25,'2006-02-15 05:05:03'),(167,63,'2006-02-15 05:05:03'),(167,72,'2006-02-15 05:05:03'),(167,107,'2006-02-15 05:05:03'),(167,120,'2006-02-15 05:05:03'),(167,191,'2006-02-15 05:05:03'),(167,294,'2006-02-15 05:05:03'),(167,319,'2006-02-15 05:05:03'),(167,339,'2006-02-15 05:05:03'),(167,341,'2006-02-15 05:05:03'),(167,496,'2006-02-15 05:05:03'),(167,554,'2006-02-15 05:05:03'),(167,626,'2006-02-15 05:05:03'),(167,628,'2006-02-15 05:05:03'),(167,672,'2006-02-15 05:05:03'),(167,692,'2006-02-15 05:05:03'),(167,717,'2006-02-15 05:05:03'),(167,734,'2006-02-15 05:05:03'),(167,794,'2006-02-15 05:05:03'),(167,800,'2006-02-15 05:05:03'),(167,802,'2006-02-15 05:05:03'),(167,856,'2006-02-15 05:05:03'),(167,864,'2006-02-15 05:05:03'),(167,882,'2006-02-15 05:05:03'),(167,923,'2006-02-15 05:05:03'),(168,32,'2006-02-15 05:05:03'),(168,56,'2006-02-15 05:05:03'),(168,92,'2006-02-15 05:05:03'),(168,115,'2006-02-15 05:05:03'),(168,188,'2006-02-15 05:05:03'),(168,196,'2006-02-15 05:05:03'),(168,208,'2006-02-15 05:05:03'),(168,237,'2006-02-15 05:05:03'),(168,241,'2006-02-15 05:05:03'),(168,255,'2006-02-15 05:05:03'),(168,305,'2006-02-15 05:05:03'),(168,336,'2006-02-15 05:05:03'),(168,387,'2006-02-15 05:05:03'),(168,433,'2006-02-15 05:05:03'),(168,438,'2006-02-15 05:05:03'),(168,519,'2006-02-15 05:05:03'),(168,602,'2006-02-15 05:05:03'),(168,619,'2006-02-15 05:05:03'),(168,626,'2006-02-15 05:05:03'),(168,652,'2006-02-15 05:05:03'),(168,678,'2006-02-15 05:05:03'),(168,685,'2006-02-15 05:05:03'),(168,804,'2006-02-15 05:05:03'),(168,807,'2006-02-15 05:05:03'),(168,826,'2006-02-15 05:05:03'),(168,841,'2006-02-15 05:05:03'),(168,886,'2006-02-15 05:05:03'),(168,889,'2006-02-15 05:05:03'),(168,892,'2006-02-15 05:05:03'),(168,927,'2006-02-15 05:05:03'),(168,959,'2006-02-15 05:05:03'),(169,6,'2006-02-15 05:05:03'),(169,78,'2006-02-15 05:05:03'),(169,93,'2006-02-15 05:05:03'),(169,246,'2006-02-15 05:05:03'),(169,248,'2006-02-15 05:05:03'),(169,289,'2006-02-15 05:05:03'),(169,301,'2006-02-15 05:05:03'),(169,326,'2006-02-15 05:05:03'),(169,349,'2006-02-15 05:05:03'),(169,372,'2006-02-15 05:05:03'),(169,398,'2006-02-15 05:05:03'),(169,434,'2006-02-15 05:05:03'),(169,505,'2006-02-15 05:05:03'),(169,564,'2006-02-15 05:05:03'),(169,571,'2006-02-15 05:05:03'),(169,634,'2006-02-15 05:05:03'),(169,642,'2006-02-15 05:05:03'),(169,673,'2006-02-15 05:05:03'),(169,694,'2006-02-15 05:05:03'),(169,727,'2006-02-15 05:05:03'),(169,778,'2006-02-15 05:05:03'),(169,815,'2006-02-15 05:05:03'),(169,847,'2006-02-15 05:05:03'),(169,849,'2006-02-15 05:05:03'),(169,894,'2006-02-15 05:05:03'),(169,897,'2006-02-15 05:05:03'),(169,954,'2006-02-15 05:05:03'),(169,992,'2006-02-15 05:05:03'),(169,998,'2006-02-15 05:05:03'),(170,7,'2006-02-15 05:05:03'),(170,15,'2006-02-15 05:05:03'),(170,27,'2006-02-15 05:05:03'),(170,33,'2006-02-15 05:05:03'),(170,102,'2006-02-15 05:05:03'),(170,139,'2006-02-15 05:05:03'),(170,180,'2006-02-15 05:05:03'),(170,184,'2006-02-15 05:05:03'),(170,212,'2006-02-15 05:05:03'),(170,299,'2006-02-15 05:05:03'),(170,322,'2006-02-15 05:05:03'),(170,358,'2006-02-15 05:05:03'),(170,416,'2006-02-15 05:05:03'),(170,508,'2006-02-15 05:05:03'),(170,537,'2006-02-15 05:05:03'),(170,705,'2006-02-15 05:05:03'),(170,758,'2006-02-15 05:05:03'),(170,764,'2006-02-15 05:05:03'),(170,868,'2006-02-15 05:05:03'),(170,877,'2006-02-15 05:05:03'),(170,886,'2006-02-15 05:05:03'),(170,925,'2006-02-15 05:05:03'),(170,993,'2006-02-15 05:05:03'),(170,996,'2006-02-15 05:05:03'),(171,49,'2006-02-15 05:05:03'),(171,146,'2006-02-15 05:05:03'),(171,166,'2006-02-15 05:05:03'),(171,181,'2006-02-15 05:05:03'),(171,219,'2006-02-15 05:05:03'),(171,273,'2006-02-15 05:05:03'),(171,296,'2006-02-15 05:05:03'),(171,318,'2006-02-15 05:05:03'),(171,342,'2006-02-15 05:05:03'),(171,397,'2006-02-15 05:05:03'),(171,447,'2006-02-15 05:05:03'),(171,450,'2006-02-15 05:05:03'),(171,466,'2006-02-15 05:05:03'),(171,549,'2006-02-15 05:05:03'),(171,560,'2006-02-15 05:05:03'),(171,566,'2006-02-15 05:05:03'),(171,608,'2006-02-15 05:05:03'),(171,625,'2006-02-15 05:05:03'),(171,645,'2006-02-15 05:05:03'),(171,701,'2006-02-15 05:05:03'),(171,761,'2006-02-15 05:05:03'),(171,779,'2006-02-15 05:05:03'),(171,849,'2006-02-15 05:05:03'),(171,872,'2006-02-15 05:05:03'),(171,892,'2006-02-15 05:05:03'),(171,898,'2006-02-15 05:05:03'),(171,903,'2006-02-15 05:05:03'),(171,953,'2006-02-15 05:05:03'),(172,57,'2006-02-15 05:05:03'),(172,100,'2006-02-15 05:05:03'),(172,148,'2006-02-15 05:05:03'),(172,215,'2006-02-15 05:05:03'),(172,302,'2006-02-15 05:05:03'),(172,345,'2006-02-15 05:05:03'),(172,368,'2006-02-15 05:05:03'),(172,385,'2006-02-15 05:05:03'),(172,423,'2006-02-15 05:05:03'),(172,487,'2006-02-15 05:05:03'),(172,493,'2006-02-15 05:05:03'),(172,529,'2006-02-15 05:05:03'),(172,538,'2006-02-15 05:05:03'),(172,567,'2006-02-15 05:05:03'),(172,609,'2006-02-15 05:05:03'),(172,639,'2006-02-15 05:05:03'),(172,649,'2006-02-15 05:05:03'),(172,661,'2006-02-15 05:05:03'),(172,667,'2006-02-15 05:05:03'),(172,710,'2006-02-15 05:05:03'),(172,744,'2006-02-15 05:05:03'),(172,758,'2006-02-15 05:05:03'),(172,771,'2006-02-15 05:05:03'),(172,833,'2006-02-15 05:05:03'),(172,959,'2006-02-15 05:05:03'),(173,49,'2006-02-15 05:05:03'),(173,55,'2006-02-15 05:05:03'),(173,74,'2006-02-15 05:05:03'),(173,80,'2006-02-15 05:05:03'),(173,106,'2006-02-15 05:05:03'),(173,154,'2006-02-15 05:05:03'),(173,162,'2006-02-15 05:05:03'),(173,188,'2006-02-15 05:05:03'),(173,235,'2006-02-15 05:05:03'),(173,313,'2006-02-15 05:05:03'),(173,379,'2006-02-15 05:05:03'),(173,405,'2006-02-15 05:05:03'),(173,491,'2006-02-15 05:05:03'),(173,496,'2006-02-15 05:05:03'),(173,529,'2006-02-15 05:05:03'),(173,550,'2006-02-15 05:05:03'),(173,564,'2006-02-15 05:05:03'),(173,571,'2006-02-15 05:05:03'),(173,592,'2006-02-15 05:05:03'),(173,688,'2006-02-15 05:05:03'),(173,753,'2006-02-15 05:05:03'),(173,757,'2006-02-15 05:05:03'),(173,852,'2006-02-15 05:05:03'),(173,857,'2006-02-15 05:05:03'),(173,921,'2006-02-15 05:05:03'),(173,928,'2006-02-15 05:05:03'),(173,933,'2006-02-15 05:05:03'),(174,11,'2006-02-15 05:05:03'),(174,61,'2006-02-15 05:05:03'),(174,168,'2006-02-15 05:05:03'),(174,298,'2006-02-15 05:05:03'),(174,352,'2006-02-15 05:05:03'),(174,442,'2006-02-15 05:05:03'),(174,451,'2006-02-15 05:05:03'),(174,496,'2006-02-15 05:05:03'),(174,610,'2006-02-15 05:05:03'),(174,618,'2006-02-15 05:05:03'),(174,622,'2006-02-15 05:05:03'),(174,659,'2006-02-15 05:05:03'),(174,677,'2006-02-15 05:05:03'),(174,705,'2006-02-15 05:05:03'),(174,722,'2006-02-15 05:05:03'),(174,780,'2006-02-15 05:05:03'),(174,797,'2006-02-15 05:05:03'),(174,809,'2006-02-15 05:05:03'),(174,827,'2006-02-15 05:05:03'),(174,830,'2006-02-15 05:05:03'),(174,852,'2006-02-15 05:05:03'),(174,853,'2006-02-15 05:05:03'),(174,879,'2006-02-15 05:05:03'),(174,982,'2006-02-15 05:05:03'),(175,9,'2006-02-15 05:05:03'),(175,29,'2006-02-15 05:05:03'),(175,67,'2006-02-15 05:05:03'),(175,129,'2006-02-15 05:05:03'),(175,155,'2006-02-15 05:05:03'),(175,190,'2006-02-15 05:05:03'),(175,191,'2006-02-15 05:05:03'),(175,362,'2006-02-15 05:05:03'),(175,405,'2006-02-15 05:05:03'),(175,424,'2006-02-15 05:05:03'),(175,439,'2006-02-15 05:05:03'),(175,442,'2006-02-15 05:05:03'),(175,483,'2006-02-15 05:05:03'),(175,591,'2006-02-15 05:05:03'),(175,596,'2006-02-15 05:05:03'),(175,616,'2006-02-15 05:05:03'),(175,719,'2006-02-15 05:05:03'),(175,729,'2006-02-15 05:05:03'),(175,772,'2006-02-15 05:05:03'),(175,778,'2006-02-15 05:05:03'),(175,828,'2006-02-15 05:05:03'),(175,842,'2006-02-15 05:05:03'),(175,890,'2006-02-15 05:05:03'),(175,908,'2006-02-15 05:05:03'),(175,977,'2006-02-15 05:05:03'),(175,978,'2006-02-15 05:05:03'),(175,998,'2006-02-15 05:05:03'),(176,13,'2006-02-15 05:05:03'),(176,73,'2006-02-15 05:05:03'),(176,89,'2006-02-15 05:05:03'),(176,150,'2006-02-15 05:05:03'),(176,162,'2006-02-15 05:05:03'),(176,238,'2006-02-15 05:05:03'),(176,252,'2006-02-15 05:05:03'),(176,303,'2006-02-15 05:05:03'),(176,320,'2006-02-15 05:05:03'),(176,401,'2006-02-15 05:05:03'),(176,417,'2006-02-15 05:05:03'),(176,441,'2006-02-15 05:05:03'),(176,458,'2006-02-15 05:05:03'),(176,461,'2006-02-15 05:05:03'),(176,517,'2006-02-15 05:05:03'),(176,521,'2006-02-15 05:05:03'),(176,543,'2006-02-15 05:05:03'),(176,573,'2006-02-15 05:05:03'),(176,699,'2006-02-15 05:05:03'),(176,726,'2006-02-15 05:05:03'),(176,740,'2006-02-15 05:05:03'),(176,746,'2006-02-15 05:05:03'),(176,758,'2006-02-15 05:05:03'),(176,802,'2006-02-15 05:05:03'),(176,827,'2006-02-15 05:05:03'),(176,839,'2006-02-15 05:05:03'),(176,859,'2006-02-15 05:05:03'),(176,872,'2006-02-15 05:05:03'),(176,946,'2006-02-15 05:05:03'),(177,12,'2006-02-15 05:05:03'),(177,39,'2006-02-15 05:05:03'),(177,52,'2006-02-15 05:05:03'),(177,55,'2006-02-15 05:05:03'),(177,86,'2006-02-15 05:05:03'),(177,175,'2006-02-15 05:05:03'),(177,188,'2006-02-15 05:05:03'),(177,235,'2006-02-15 05:05:03'),(177,237,'2006-02-15 05:05:03'),(177,289,'2006-02-15 05:05:03'),(177,363,'2006-02-15 05:05:03'),(177,401,'2006-02-15 05:05:03'),(177,433,'2006-02-15 05:05:03'),(177,458,'2006-02-15 05:05:03'),(177,522,'2006-02-15 05:05:03'),(177,543,'2006-02-15 05:05:03'),(177,563,'2006-02-15 05:05:03'),(177,649,'2006-02-15 05:05:03'),(177,683,'2006-02-15 05:05:03'),(177,684,'2006-02-15 05:05:03'),(177,726,'2006-02-15 05:05:03'),(177,751,'2006-02-15 05:05:03'),(177,763,'2006-02-15 05:05:03'),(177,764,'2006-02-15 05:05:03'),(177,827,'2006-02-15 05:05:03'),(177,910,'2006-02-15 05:05:03'),(177,956,'2006-02-15 05:05:03'),(178,30,'2006-02-15 05:05:03'),(178,34,'2006-02-15 05:05:03'),(178,109,'2006-02-15 05:05:03'),(178,146,'2006-02-15 05:05:03'),(178,160,'2006-02-15 05:05:03'),(178,164,'2006-02-15 05:05:03'),(178,194,'2006-02-15 05:05:03'),(178,197,'2006-02-15 05:05:03'),(178,273,'2006-02-15 05:05:03'),(178,311,'2006-02-15 05:05:03'),(178,397,'2006-02-15 05:05:03'),(178,483,'2006-02-15 05:05:03'),(178,517,'2006-02-15 05:05:03'),(178,537,'2006-02-15 05:05:03'),(178,587,'2006-02-15 05:05:03'),(178,708,'2006-02-15 05:05:03'),(178,733,'2006-02-15 05:05:03'),(178,744,'2006-02-15 05:05:03'),(178,762,'2006-02-15 05:05:03'),(178,930,'2006-02-15 05:05:03'),(178,974,'2006-02-15 05:05:03'),(178,983,'2006-02-15 05:05:03'),(178,1000,'2006-02-15 05:05:03'),(179,24,'2006-02-15 05:05:03'),(179,27,'2006-02-15 05:05:03'),(179,65,'2006-02-15 05:05:03'),(179,85,'2006-02-15 05:05:03'),(179,109,'2006-02-15 05:05:03'),(179,131,'2006-02-15 05:05:03'),(179,159,'2006-02-15 05:05:03'),(179,193,'2006-02-15 05:05:03'),(179,250,'2006-02-15 05:05:03'),(179,291,'2006-02-15 05:05:03'),(179,353,'2006-02-15 05:05:03'),(179,415,'2006-02-15 05:05:03'),(179,463,'2006-02-15 05:05:03'),(179,468,'2006-02-15 05:05:03'),(179,489,'2006-02-15 05:05:03'),(179,566,'2006-02-15 05:05:03'),(179,588,'2006-02-15 05:05:03'),(179,650,'2006-02-15 05:05:03'),(179,698,'2006-02-15 05:05:03'),(179,732,'2006-02-15 05:05:03'),(179,737,'2006-02-15 05:05:03'),(179,769,'2006-02-15 05:05:03'),(179,811,'2006-02-15 05:05:03'),(179,817,'2006-02-15 05:05:03'),(179,852,'2006-02-15 05:05:03'),(179,924,'2006-02-15 05:05:03'),(179,931,'2006-02-15 05:05:03'),(179,960,'2006-02-15 05:05:03'),(179,976,'2006-02-15 05:05:03'),(180,12,'2006-02-15 05:05:03'),(180,33,'2006-02-15 05:05:03'),(180,144,'2006-02-15 05:05:03'),(180,195,'2006-02-15 05:05:03'),(180,258,'2006-02-15 05:05:03'),(180,441,'2006-02-15 05:05:03'),(180,506,'2006-02-15 05:05:03'),(180,561,'2006-02-15 05:05:03'),(180,609,'2006-02-15 05:05:03'),(180,622,'2006-02-15 05:05:03'),(180,628,'2006-02-15 05:05:03'),(180,657,'2006-02-15 05:05:03'),(180,724,'2006-02-15 05:05:03'),(180,729,'2006-02-15 05:05:03'),(180,732,'2006-02-15 05:05:03'),(180,777,'2006-02-15 05:05:03'),(180,809,'2006-02-15 05:05:03'),(180,811,'2006-02-15 05:05:03'),(180,820,'2006-02-15 05:05:03'),(180,824,'2006-02-15 05:05:03'),(180,847,'2006-02-15 05:05:03'),(180,869,'2006-02-15 05:05:03'),(180,874,'2006-02-15 05:05:03'),(180,955,'2006-02-15 05:05:03'),(180,963,'2006-02-15 05:05:03'),(181,5,'2006-02-15 05:05:03'),(181,40,'2006-02-15 05:05:03'),(181,74,'2006-02-15 05:05:03'),(181,78,'2006-02-15 05:05:03'),(181,83,'2006-02-15 05:05:03'),(181,152,'2006-02-15 05:05:03'),(181,195,'2006-02-15 05:05:03'),(181,233,'2006-02-15 05:05:03'),(181,286,'2006-02-15 05:05:03'),(181,301,'2006-02-15 05:05:03'),(181,311,'2006-02-15 05:05:03'),(181,381,'2006-02-15 05:05:03'),(181,387,'2006-02-15 05:05:03'),(181,403,'2006-02-15 05:05:03'),(181,409,'2006-02-15 05:05:03'),(181,420,'2006-02-15 05:05:03'),(181,437,'2006-02-15 05:05:03'),(181,456,'2006-02-15 05:05:03'),(181,507,'2006-02-15 05:05:03'),(181,522,'2006-02-15 05:05:03'),(181,539,'2006-02-15 05:05:03'),(181,542,'2006-02-15 05:05:03'),(181,546,'2006-02-15 05:05:03'),(181,579,'2006-02-15 05:05:03'),(181,596,'2006-02-15 05:05:03'),(181,604,'2006-02-15 05:05:03'),(181,609,'2006-02-15 05:05:03'),(181,625,'2006-02-15 05:05:03'),(181,744,'2006-02-15 05:05:03'),(181,816,'2006-02-15 05:05:03'),(181,836,'2006-02-15 05:05:03'),(181,868,'2006-02-15 05:05:03'),(181,870,'2006-02-15 05:05:03'),(181,874,'2006-02-15 05:05:03'),(181,892,'2006-02-15 05:05:03'),(181,907,'2006-02-15 05:05:03'),(181,911,'2006-02-15 05:05:03'),(181,921,'2006-02-15 05:05:03'),(181,991,'2006-02-15 05:05:03'),(182,33,'2006-02-15 05:05:03'),(182,160,'2006-02-15 05:05:03'),(182,301,'2006-02-15 05:05:03'),(182,324,'2006-02-15 05:05:03'),(182,346,'2006-02-15 05:05:03'),(182,362,'2006-02-15 05:05:03'),(182,391,'2006-02-15 05:05:03'),(182,413,'2006-02-15 05:05:03'),(182,421,'2006-02-15 05:05:03'),(182,437,'2006-02-15 05:05:03'),(182,590,'2006-02-15 05:05:03'),(182,639,'2006-02-15 05:05:03'),(182,668,'2006-02-15 05:05:03'),(182,677,'2006-02-15 05:05:03'),(182,679,'2006-02-15 05:05:03'),(182,695,'2006-02-15 05:05:03'),(182,714,'2006-02-15 05:05:03'),(182,720,'2006-02-15 05:05:03'),(182,819,'2006-02-15 05:05:03'),(182,828,'2006-02-15 05:05:03'),(182,845,'2006-02-15 05:05:03'),(182,864,'2006-02-15 05:05:03'),(182,940,'2006-02-15 05:05:03'),(182,990,'2006-02-15 05:05:03'),(183,32,'2006-02-15 05:05:03'),(183,40,'2006-02-15 05:05:03'),(183,71,'2006-02-15 05:05:03'),(183,113,'2006-02-15 05:05:03'),(183,313,'2006-02-15 05:05:03'),(183,388,'2006-02-15 05:05:03'),(183,389,'2006-02-15 05:05:03'),(183,390,'2006-02-15 05:05:03'),(183,495,'2006-02-15 05:05:03'),(183,520,'2006-02-15 05:05:03'),(183,576,'2006-02-15 05:05:03'),(183,636,'2006-02-15 05:05:03'),(183,715,'2006-02-15 05:05:03'),(183,850,'2006-02-15 05:05:03'),(183,862,'2006-02-15 05:05:03'),(183,914,'2006-02-15 05:05:03'),(183,941,'2006-02-15 05:05:03'),(183,949,'2006-02-15 05:05:03'),(183,983,'2006-02-15 05:05:03'),(184,35,'2006-02-15 05:05:03'),(184,87,'2006-02-15 05:05:03'),(184,146,'2006-02-15 05:05:03'),(184,169,'2006-02-15 05:05:03'),(184,221,'2006-02-15 05:05:03'),(184,336,'2006-02-15 05:05:03'),(184,371,'2006-02-15 05:05:03'),(184,452,'2006-02-15 05:05:03'),(184,486,'2006-02-15 05:05:03'),(184,492,'2006-02-15 05:05:03'),(184,500,'2006-02-15 05:05:03'),(184,574,'2006-02-15 05:05:03'),(184,580,'2006-02-15 05:05:03'),(184,597,'2006-02-15 05:05:03'),(184,615,'2006-02-15 05:05:03'),(184,640,'2006-02-15 05:05:03'),(184,642,'2006-02-15 05:05:03'),(184,650,'2006-02-15 05:05:03'),(184,661,'2006-02-15 05:05:03'),(184,684,'2006-02-15 05:05:03'),(184,745,'2006-02-15 05:05:03'),(184,772,'2006-02-15 05:05:03'),(184,787,'2006-02-15 05:05:03'),(184,867,'2006-02-15 05:05:03'),(184,959,'2006-02-15 05:05:03'),(184,966,'2006-02-15 05:05:03'),(184,967,'2006-02-15 05:05:03'),(184,969,'2006-02-15 05:05:03'),(184,985,'2006-02-15 05:05:03'),(185,7,'2006-02-15 05:05:03'),(185,95,'2006-02-15 05:05:03'),(185,138,'2006-02-15 05:05:03'),(185,265,'2006-02-15 05:05:03'),(185,286,'2006-02-15 05:05:03'),(185,360,'2006-02-15 05:05:03'),(185,411,'2006-02-15 05:05:03'),(185,427,'2006-02-15 05:05:03'),(185,437,'2006-02-15 05:05:03'),(185,448,'2006-02-15 05:05:03'),(185,494,'2006-02-15 05:05:03'),(185,510,'2006-02-15 05:05:03'),(185,518,'2006-02-15 05:05:03'),(185,554,'2006-02-15 05:05:03'),(185,560,'2006-02-15 05:05:03'),(185,571,'2006-02-15 05:05:03'),(185,584,'2006-02-15 05:05:03'),(185,631,'2006-02-15 05:05:03'),(185,665,'2006-02-15 05:05:03'),(185,694,'2006-02-15 05:05:03'),(185,730,'2006-02-15 05:05:03'),(185,761,'2006-02-15 05:05:03'),(185,818,'2006-02-15 05:05:03'),(185,845,'2006-02-15 05:05:03'),(185,880,'2006-02-15 05:05:03'),(185,882,'2006-02-15 05:05:03'),(185,919,'2006-02-15 05:05:03'),(185,920,'2006-02-15 05:05:03'),(185,965,'2006-02-15 05:05:03'),(185,973,'2006-02-15 05:05:03'),(186,95,'2006-02-15 05:05:03'),(186,187,'2006-02-15 05:05:03'),(186,208,'2006-02-15 05:05:03'),(186,228,'2006-02-15 05:05:03'),(186,237,'2006-02-15 05:05:03'),(186,422,'2006-02-15 05:05:03'),(186,482,'2006-02-15 05:05:03'),(186,508,'2006-02-15 05:05:03'),(186,552,'2006-02-15 05:05:03'),(186,579,'2006-02-15 05:05:03'),(186,637,'2006-02-15 05:05:03'),(186,648,'2006-02-15 05:05:03'),(186,654,'2006-02-15 05:05:03'),(186,729,'2006-02-15 05:05:03'),(186,983,'2006-02-15 05:05:03'),(186,994,'2006-02-15 05:05:03'),(187,17,'2006-02-15 05:05:03'),(187,25,'2006-02-15 05:05:03'),(187,29,'2006-02-15 05:05:03'),(187,51,'2006-02-15 05:05:03'),(187,73,'2006-02-15 05:05:03'),(187,76,'2006-02-15 05:05:03'),(187,98,'2006-02-15 05:05:03'),(187,110,'2006-02-15 05:05:03'),(187,127,'2006-02-15 05:05:03'),(187,168,'2006-02-15 05:05:03'),(187,222,'2006-02-15 05:05:03'),(187,224,'2006-02-15 05:05:03'),(187,297,'2006-02-15 05:05:03'),(187,354,'2006-02-15 05:05:03'),(187,379,'2006-02-15 05:05:03'),(187,417,'2006-02-15 05:05:03'),(187,435,'2006-02-15 05:05:03'),(187,441,'2006-02-15 05:05:03'),(187,474,'2006-02-15 05:05:03'),(187,499,'2006-02-15 05:05:03'),(187,538,'2006-02-15 05:05:03'),(187,548,'2006-02-15 05:05:03'),(187,561,'2006-02-15 05:05:03'),(187,617,'2006-02-15 05:05:03'),(187,625,'2006-02-15 05:05:03'),(187,664,'2006-02-15 05:05:03'),(187,671,'2006-02-15 05:05:03'),(187,768,'2006-02-15 05:05:03'),(187,779,'2006-02-15 05:05:03'),(187,906,'2006-02-15 05:05:03'),(187,914,'2006-02-15 05:05:03'),(187,923,'2006-02-15 05:05:03'),(187,976,'2006-02-15 05:05:03'),(188,1,'2006-02-15 05:05:03'),(188,10,'2006-02-15 05:05:03'),(188,14,'2006-02-15 05:05:03'),(188,51,'2006-02-15 05:05:03'),(188,102,'2006-02-15 05:05:03'),(188,111,'2006-02-15 05:05:03'),(188,146,'2006-02-15 05:05:03'),(188,206,'2006-02-15 05:05:03'),(188,223,'2006-02-15 05:05:03'),(188,289,'2006-02-15 05:05:03'),(188,311,'2006-02-15 05:05:03'),(188,322,'2006-02-15 05:05:03'),(188,338,'2006-02-15 05:05:03'),(188,396,'2006-02-15 05:05:03'),(188,412,'2006-02-15 05:05:03'),(188,506,'2006-02-15 05:05:03'),(188,517,'2006-02-15 05:05:03'),(188,529,'2006-02-15 05:05:03'),(188,566,'2006-02-15 05:05:03'),(188,593,'2006-02-15 05:05:03'),(188,606,'2006-02-15 05:05:03'),(188,662,'2006-02-15 05:05:03'),(188,770,'2006-02-15 05:05:03'),(188,773,'2006-02-15 05:05:03'),(188,774,'2006-02-15 05:05:03'),(188,815,'2006-02-15 05:05:03'),(188,849,'2006-02-15 05:05:03'),(188,925,'2006-02-15 05:05:03'),(188,988,'2006-02-15 05:05:03'),(188,989,'2006-02-15 05:05:03'),(189,43,'2006-02-15 05:05:03'),(189,82,'2006-02-15 05:05:03'),(189,171,'2006-02-15 05:05:03'),(189,266,'2006-02-15 05:05:03'),(189,272,'2006-02-15 05:05:03'),(189,315,'2006-02-15 05:05:03'),(189,378,'2006-02-15 05:05:03'),(189,492,'2006-02-15 05:05:03'),(189,509,'2006-02-15 05:05:03'),(189,512,'2006-02-15 05:05:03'),(189,519,'2006-02-15 05:05:03'),(189,533,'2006-02-15 05:05:03'),(189,548,'2006-02-15 05:05:03'),(189,560,'2006-02-15 05:05:03'),(189,628,'2006-02-15 05:05:03'),(189,734,'2006-02-15 05:05:03'),(189,748,'2006-02-15 05:05:03'),(189,788,'2006-02-15 05:05:03'),(189,820,'2006-02-15 05:05:03'),(189,853,'2006-02-15 05:05:03'),(189,882,'2006-02-15 05:05:03'),(189,896,'2006-02-15 05:05:03'),(189,899,'2006-02-15 05:05:03'),(189,940,'2006-02-15 05:05:03'),(190,38,'2006-02-15 05:05:03'),(190,54,'2006-02-15 05:05:03'),(190,62,'2006-02-15 05:05:03'),(190,87,'2006-02-15 05:05:03'),(190,173,'2006-02-15 05:05:03'),(190,234,'2006-02-15 05:05:03'),(190,253,'2006-02-15 05:05:03'),(190,278,'2006-02-15 05:05:03'),(190,310,'2006-02-15 05:05:03'),(190,374,'2006-02-15 05:05:03'),(190,411,'2006-02-15 05:05:03'),(190,426,'2006-02-15 05:05:03'),(190,472,'2006-02-15 05:05:03'),(190,549,'2006-02-15 05:05:03'),(190,562,'2006-02-15 05:05:03'),(190,606,'2006-02-15 05:05:03'),(190,623,'2006-02-15 05:05:03'),(190,679,'2006-02-15 05:05:03'),(190,682,'2006-02-15 05:05:03'),(190,693,'2006-02-15 05:05:03'),(190,695,'2006-02-15 05:05:03'),(190,705,'2006-02-15 05:05:03'),(190,708,'2006-02-15 05:05:03'),(190,802,'2006-02-15 05:05:03'),(190,806,'2006-02-15 05:05:03'),(190,874,'2006-02-15 05:05:03'),(190,959,'2006-02-15 05:05:03'),(191,16,'2006-02-15 05:05:03'),(191,39,'2006-02-15 05:05:03'),(191,84,'2006-02-15 05:05:03'),(191,185,'2006-02-15 05:05:03'),(191,219,'2006-02-15 05:05:03'),(191,293,'2006-02-15 05:05:03'),(191,296,'2006-02-15 05:05:03'),(191,378,'2006-02-15 05:05:03'),(191,410,'2006-02-15 05:05:03'),(191,420,'2006-02-15 05:05:03'),(191,461,'2006-02-15 05:05:03'),(191,544,'2006-02-15 05:05:03'),(191,551,'2006-02-15 05:05:03'),(191,596,'2006-02-15 05:05:03'),(191,638,'2006-02-15 05:05:03'),(191,668,'2006-02-15 05:05:03'),(191,692,'2006-02-15 05:05:03'),(191,775,'2006-02-15 05:05:03'),(191,801,'2006-02-15 05:05:03'),(191,819,'2006-02-15 05:05:03'),(191,827,'2006-02-15 05:05:03'),(191,830,'2006-02-15 05:05:03'),(191,834,'2006-02-15 05:05:03'),(191,849,'2006-02-15 05:05:03'),(191,858,'2006-02-15 05:05:03'),(191,914,'2006-02-15 05:05:03'),(191,958,'2006-02-15 05:05:03'),(191,969,'2006-02-15 05:05:03'),(191,971,'2006-02-15 05:05:03'),(191,993,'2006-02-15 05:05:03'),(192,16,'2006-02-15 05:05:03'),(192,69,'2006-02-15 05:05:03'),(192,117,'2006-02-15 05:05:03'),(192,155,'2006-02-15 05:05:03'),(192,166,'2006-02-15 05:05:03'),(192,179,'2006-02-15 05:05:03'),(192,214,'2006-02-15 05:05:03'),(192,361,'2006-02-15 05:05:03'),(192,367,'2006-02-15 05:05:03'),(192,426,'2006-02-15 05:05:03'),(192,465,'2006-02-15 05:05:03'),(192,470,'2006-02-15 05:05:03'),(192,475,'2006-02-15 05:05:03'),(192,485,'2006-02-15 05:05:03'),(192,541,'2006-02-15 05:05:03'),(192,578,'2006-02-15 05:05:03'),(192,592,'2006-02-15 05:05:03'),(192,614,'2006-02-15 05:05:03'),(192,618,'2006-02-15 05:05:03'),(192,622,'2006-02-15 05:05:03'),(192,674,'2006-02-15 05:05:03'),(192,677,'2006-02-15 05:05:03'),(192,680,'2006-02-15 05:05:03'),(192,682,'2006-02-15 05:05:03'),(192,708,'2006-02-15 05:05:03'),(192,711,'2006-02-15 05:05:03'),(192,747,'2006-02-15 05:05:03'),(192,763,'2006-02-15 05:05:03'),(192,819,'2006-02-15 05:05:03'),(193,44,'2006-02-15 05:05:03'),(193,80,'2006-02-15 05:05:03'),(193,103,'2006-02-15 05:05:03'),(193,109,'2006-02-15 05:05:03'),(193,119,'2006-02-15 05:05:03'),(193,141,'2006-02-15 05:05:03'),(193,164,'2006-02-15 05:05:03'),(193,291,'2006-02-15 05:05:03'),(193,352,'2006-02-15 05:05:03'),(193,358,'2006-02-15 05:05:03'),(193,376,'2006-02-15 05:05:03'),(193,412,'2006-02-15 05:05:03'),(193,462,'2006-02-15 05:05:03'),(193,689,'2006-02-15 05:05:03'),(193,709,'2006-02-15 05:05:03'),(193,745,'2006-02-15 05:05:03'),(193,807,'2006-02-15 05:05:03'),(193,828,'2006-02-15 05:05:03'),(193,834,'2006-02-15 05:05:03'),(193,851,'2006-02-15 05:05:03'),(193,937,'2006-02-15 05:05:03'),(193,953,'2006-02-15 05:05:03'),(193,960,'2006-02-15 05:05:03'),(194,9,'2006-02-15 05:05:03'),(194,42,'2006-02-15 05:05:03'),(194,67,'2006-02-15 05:05:03'),(194,86,'2006-02-15 05:05:03'),(194,88,'2006-02-15 05:05:03'),(194,98,'2006-02-15 05:05:03'),(194,135,'2006-02-15 05:05:03'),(194,161,'2006-02-15 05:05:03'),(194,163,'2006-02-15 05:05:03'),(194,215,'2006-02-15 05:05:03'),(194,232,'2006-02-15 05:05:03'),(194,352,'2006-02-15 05:05:03'),(194,415,'2006-02-15 05:05:03'),(194,486,'2006-02-15 05:05:03'),(194,498,'2006-02-15 05:05:03'),(194,531,'2006-02-15 05:05:03'),(194,719,'2006-02-15 05:05:03'),(194,738,'2006-02-15 05:05:03'),(194,786,'2006-02-15 05:05:03'),(194,872,'2006-02-15 05:05:03'),(194,938,'2006-02-15 05:05:03'),(194,940,'2006-02-15 05:05:03'),(195,129,'2006-02-15 05:05:03'),(195,130,'2006-02-15 05:05:03'),(195,141,'2006-02-15 05:05:03'),(195,144,'2006-02-15 05:05:03'),(195,298,'2006-02-15 05:05:03'),(195,359,'2006-02-15 05:05:03'),(195,361,'2006-02-15 05:05:03'),(195,392,'2006-02-15 05:05:03'),(195,403,'2006-02-15 05:05:03'),(195,494,'2006-02-15 05:05:03'),(195,520,'2006-02-15 05:05:03'),(195,534,'2006-02-15 05:05:03'),(195,560,'2006-02-15 05:05:03'),(195,592,'2006-02-15 05:05:03'),(195,649,'2006-02-15 05:05:03'),(195,658,'2006-02-15 05:05:03'),(195,673,'2006-02-15 05:05:03'),(195,677,'2006-02-15 05:05:03'),(195,706,'2006-02-15 05:05:03'),(195,738,'2006-02-15 05:05:03'),(195,769,'2006-02-15 05:05:03'),(195,781,'2006-02-15 05:05:03'),(195,794,'2006-02-15 05:05:03'),(195,813,'2006-02-15 05:05:03'),(195,869,'2006-02-15 05:05:03'),(195,885,'2006-02-15 05:05:03'),(195,962,'2006-02-15 05:05:03'),(196,64,'2006-02-15 05:05:03'),(196,122,'2006-02-15 05:05:03'),(196,156,'2006-02-15 05:05:03'),(196,169,'2006-02-15 05:05:03'),(196,276,'2006-02-15 05:05:03'),(196,284,'2006-02-15 05:05:03'),(196,303,'2006-02-15 05:05:03'),(196,324,'2006-02-15 05:05:03'),(196,423,'2006-02-15 05:05:03'),(196,473,'2006-02-15 05:05:03'),(196,484,'2006-02-15 05:05:03'),(196,515,'2006-02-15 05:05:03'),(196,524,'2006-02-15 05:05:03'),(196,541,'2006-02-15 05:05:03'),(196,560,'2006-02-15 05:05:03'),(196,575,'2006-02-15 05:05:03'),(196,576,'2006-02-15 05:05:03'),(196,587,'2006-02-15 05:05:03'),(196,615,'2006-02-15 05:05:03'),(196,635,'2006-02-15 05:05:03'),(196,684,'2006-02-15 05:05:03'),(196,795,'2006-02-15 05:05:03'),(196,815,'2006-02-15 05:05:03'),(196,833,'2006-02-15 05:05:03'),(196,837,'2006-02-15 05:05:03'),(196,906,'2006-02-15 05:05:03'),(196,908,'2006-02-15 05:05:03'),(196,919,'2006-02-15 05:05:03'),(196,939,'2006-02-15 05:05:03'),(196,972,'2006-02-15 05:05:03'),(197,6,'2006-02-15 05:05:03'),(197,29,'2006-02-15 05:05:03'),(197,63,'2006-02-15 05:05:03'),(197,123,'2006-02-15 05:05:03'),(197,129,'2006-02-15 05:05:03'),(197,147,'2006-02-15 05:05:03'),(197,164,'2006-02-15 05:05:03'),(197,189,'2006-02-15 05:05:03'),(197,243,'2006-02-15 05:05:03'),(197,249,'2006-02-15 05:05:03'),(197,258,'2006-02-15 05:05:03'),(197,364,'2006-02-15 05:05:03'),(197,369,'2006-02-15 05:05:03'),(197,370,'2006-02-15 05:05:03'),(197,418,'2006-02-15 05:05:03'),(197,522,'2006-02-15 05:05:03'),(197,531,'2006-02-15 05:05:03'),(197,554,'2006-02-15 05:05:03'),(197,598,'2006-02-15 05:05:03'),(197,628,'2006-02-15 05:05:03'),(197,691,'2006-02-15 05:05:03'),(197,724,'2006-02-15 05:05:03'),(197,746,'2006-02-15 05:05:03'),(197,752,'2006-02-15 05:05:03'),(197,758,'2006-02-15 05:05:03'),(197,769,'2006-02-15 05:05:03'),(197,815,'2006-02-15 05:05:03'),(197,916,'2006-02-15 05:05:03'),(197,950,'2006-02-15 05:05:03'),(197,967,'2006-02-15 05:05:03'),(197,974,'2006-02-15 05:05:03'),(197,979,'2006-02-15 05:05:03'),(197,995,'2006-02-15 05:05:03'),(198,1,'2006-02-15 05:05:03'),(198,109,'2006-02-15 05:05:03'),(198,125,'2006-02-15 05:05:03'),(198,186,'2006-02-15 05:05:03'),(198,262,'2006-02-15 05:05:03'),(198,264,'2006-02-15 05:05:03'),(198,303,'2006-02-15 05:05:03'),(198,309,'2006-02-15 05:05:03'),(198,311,'2006-02-15 05:05:03'),(198,329,'2006-02-15 05:05:03'),(198,347,'2006-02-15 05:05:03'),(198,379,'2006-02-15 05:05:03'),(198,395,'2006-02-15 05:05:03'),(198,406,'2006-02-15 05:05:03'),(198,450,'2006-02-15 05:05:03'),(198,464,'2006-02-15 05:05:03'),(198,482,'2006-02-15 05:05:03'),(198,499,'2006-02-15 05:05:03'),(198,536,'2006-02-15 05:05:03'),(198,541,'2006-02-15 05:05:03'),(198,545,'2006-02-15 05:05:03'),(198,555,'2006-02-15 05:05:03'),(198,568,'2006-02-15 05:05:03'),(198,570,'2006-02-15 05:05:03'),(198,588,'2006-02-15 05:05:03'),(198,597,'2006-02-15 05:05:03'),(198,628,'2006-02-15 05:05:03'),(198,745,'2006-02-15 05:05:03'),(198,758,'2006-02-15 05:05:03'),(198,796,'2006-02-15 05:05:03'),(198,806,'2006-02-15 05:05:03'),(198,817,'2006-02-15 05:05:03'),(198,843,'2006-02-15 05:05:03'),(198,858,'2006-02-15 05:05:03'),(198,871,'2006-02-15 05:05:03'),(198,886,'2006-02-15 05:05:03'),(198,892,'2006-02-15 05:05:03'),(198,924,'2006-02-15 05:05:03'),(198,952,'2006-02-15 05:05:03'),(198,997,'2006-02-15 05:05:03'),(199,67,'2006-02-15 05:05:03'),(199,84,'2006-02-15 05:05:03'),(199,145,'2006-02-15 05:05:03'),(199,159,'2006-02-15 05:05:03'),(199,216,'2006-02-15 05:05:03'),(199,432,'2006-02-15 05:05:03'),(199,541,'2006-02-15 05:05:03'),(199,604,'2006-02-15 05:05:03'),(199,640,'2006-02-15 05:05:03'),(199,689,'2006-02-15 05:05:03'),(199,730,'2006-02-15 05:05:03'),(199,784,'2006-02-15 05:05:03'),(199,785,'2006-02-15 05:05:03'),(199,886,'2006-02-15 05:05:03'),(199,953,'2006-02-15 05:05:03'),(200,5,'2006-02-15 05:05:03'),(200,49,'2006-02-15 05:05:03'),(200,80,'2006-02-15 05:05:03'),(200,116,'2006-02-15 05:05:03'),(200,121,'2006-02-15 05:05:03'),(200,149,'2006-02-15 05:05:03'),(200,346,'2006-02-15 05:05:03'),(200,419,'2006-02-15 05:05:03'),(200,462,'2006-02-15 05:05:03'),(200,465,'2006-02-15 05:05:03'),(200,474,'2006-02-15 05:05:03'),(200,537,'2006-02-15 05:05:03'),(200,538,'2006-02-15 05:05:03'),(200,544,'2006-02-15 05:05:03'),(200,714,'2006-02-15 05:05:03'),(200,879,'2006-02-15 05:05:03'),(200,912,'2006-02-15 05:05:03'),(200,945,'2006-02-15 05:05:03'),(200,958,'2006-02-15 05:05:03'),(200,993,'2006-02-15 05:05:03'); --enable_result_log --enable_query_log EXPLAIN SELECT STRAIGHT_JOIN f.film_id FROM film AS f INNER JOIN film_actor AS fa ON f.film_id=fa.film_id AND fa.actor_id = 1 INNER JOIN actor AS a ON(a.actor_id = fa.actor_id); EXPLAIN SELECT STRAIGHT_JOIN f.film_id FROM film AS f, film_actor AS fa, actor AS a WHERE f.film_id=fa.film_id AND fa.actor_id = 1 AND a.actor_id = fa.actor_id;